* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: #f8fafc;
    color: #0f172a;
}

img {
    max-width: 100%;
    display: block;
}

/* ÜST BAR */
.top-bar {
    background: #0b1220;
    color: #cbd5e1;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 8px 15px;
    font-size: 13px;
}

/* HEADER */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, #0f172a, #1e3a5f);
    padding: 18px 20px;
    position: relative;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    z-index: 3000;
    overflow: visible;
}

header img.logo {
    width: 170px;
    height: auto;
}

nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
    margin: 0;
    padding: 0;
    transform: translateX(-40px);
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #93c5fd;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
}

/* HERO */
.hero {
    position: relative;
    min-height: 650px;
    background: url('hero.png') center center / cover no-repeat;
    display: flex;
    align-items: center;
    padding: 0 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10, 20, 40, 0.9),
        rgba(10, 20, 40, 0.4)
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    text-align: left;
    color: white;
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 18px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #e2e8f0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-btn {
    text-decoration: none;
    padding: 15px 28px;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.3s;
    display: inline-block;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.primary-btn {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.35);
}

.secondary-btn {
    background: rgba(255,255,255,0.10);
    color: white;
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(6px);
}

.secondary-btn:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.18);
}

/* GENEL SECTION */
section {
    padding: 75px 20px;
    text-align: center;
}

section h2 {
    font-size: 36px;
    color: #0f172a;
    margin-bottom: 12px;
}

.section-text {
    color: #475569;
    max-width: 760px;
    margin: 0 auto 34px auto;
    line-height: 1.8;
    font-size: 16px;
}

/* ABOUT */
#about {
    text-align: center;
}

#about h2 {
    text-align: center;
    margin-bottom: 18px;
}

#about p {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.9;
}
/* SERVICES */
#services {
    background: linear-gradient(180deg, #f8fbff, #eef4fb);
}

.services-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 35px auto 0 auto;
}

.service-card {
    background: white;
    padding: 30px 24px;
    border-radius: 18px;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
    transition: 0.35s;
    text-align: left;
    border: 1px solid rgba(30, 58, 95, 0.06);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.14);
}

.service-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    font-size: 26px;
    margin-bottom: 18px;
}

.service-card h3 {
    margin-bottom: 12px;
    color: #1e3a5f;
    font-size: 20px;
}

.service-card p {
    color: #475569;
    line-height: 1.8;
    margin: 0;
}

/* İSTATİSTİK */
.stats-section {
    padding: 40px 20px 20px;
    margin-top: -40px;
    position: relative;
    z-index: 5;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.stat-card {
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
    color: white;
    padding: 30px 20px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
    transition: 0.3s;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.26);
}

.stat-card h3 {
    margin: 0 0 10px;
    font-size: 42px;
    font-weight: 800;
    color: #60a5fa;
}

.stat-card p {
    margin: 0;
    color: #e2e8f0;
    font-size: 16px;
    font-weight: 600;
}

/* NEDEN BİZ */
.why-us-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #ffffff, #f1f6fc);
}

.why-us-container {
    max-width: 1200px;
    margin: 35px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: white;
    border-radius: 20px;
    padding: 30px 24px;
    text-align: left;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(30, 58, 95, 0.06);
    transition: 0.35s;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.why-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.why-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    color: #0f172a;
}

.why-card p {
    margin: 0;
    line-height: 1.8;
    color: #475569;
    font-size: 15px;
}

/* PROCESS */
.process {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(180deg, #ffffff, #f1f6fc);
}

.process-container {
    max-width: 1100px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-card {
    background: white;
    padding: 28px 22px;
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
    text-align: left;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 34px rgba(0,0,0,0.14);
}

.process-number {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: #1e3a5f;
    margin-bottom: 16px;
}

.process-card h3 {
    margin: 0 0 10px;
    font-size: 19px;
    color: #0f172a;
}

.process-card p {
    margin: 0;
    color: #475569;
    line-height: 1.8;
    font-size: 15px;
}

/* PROJECTS */
.project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1050px;
    margin: 36px auto 0 auto;
}

.project-grid img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.10);
    transition: 0.35s;
}

.project-grid img:hover {
    transform: scale(1.02);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.16);
}

.projects-button-area {
    margin-top: 34px;
}

.all-projects-btn {
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
    color: white;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.3s;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
}

.all-projects-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.26);
}

/* BRANDS */
.brands {
    background: #ffffff;
}

.brand-box {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
    max-width: 1150px;
    margin: 35px auto 0 auto;
}

.brand-box img {
    width: 110px;
    max-width: 100%;
    margin: auto;
    transition: 0.3s;
    filter: grayscale(20%);
}

.brand-box img:hover {
    transform: scale(1.08);
    filter: grayscale(0%);
}

/* CONTACT */
#contact {
    background: linear-gradient(180deg, #eef4fb, #e2ecf8);
}

.contact-buttons {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.contact-btn {
    text-decoration: none;
    padding: 15px 28px;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.3s;
    display: inline-block;
    color: white;
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.call-btn {
    background: linear-gradient(135deg, #1e3a5f, #0f172a);
}

.call-btn:hover,
.whatsapp-btn:hover {
    transform: translateY(-2px);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.contact-flex {
    max-width: 1200px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.map-container {
    width: 100%;
    max-width: 1150px;
    height: 420px;
    margin: 28px auto 0 auto;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
}

.contact-form-box {
    max-width: 900px;
    margin: 40px auto 0 auto;
    background: white;
    padding: 35px 28px;
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.10);
}

.contact-form-box h3 {
    margin-top: 0;
    margin-bottom: 22px;
    color: #0f172a;
    font-size: 26px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    outline: none;
}

.contact-form textarea {
    grid-column: 1 / 3;
    min-height: 140px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #2563eb;
}

.contact-form button {
    grid-column: 1 / 3;
    padding: 16px 22px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
    color: white;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    transform: translateY(-2px);
}

/* FOOTER */
.site-footer {
    background: #0f172a;
    color: white;
    padding: 40px 20px 20px;
}

.footer-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    text-align: left;
}

.footer-box a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 6px;
    font-size: 14px;
}

.footer-box a:visited {
    color: #ffffff;
}

.footer-box a:hover {
    color: #ffffff;
}

/* FLOATING WHATSAPP */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 58px;
    height: 58px;
    z-index: 1000;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.18);
}

.floating-whatsapp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* ANİMASYON */
.hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

.left {
    transform: translateX(-50px);
}

.right {
    transform: translateX(50px);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .services-box,
    .stats-container,
    .why-us-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-box {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1000px) {
    .process-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .hero {
        padding: 0 30px;
        min-height: 520px;
    }

    @media (max-width: 768px) {
    .project-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .project-grid img {
        height: 230px;
    }
}

    .hero-content h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {

    header img.logo {
        width: 145px;
    }

    .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 320px;
    background: white;
    border-radius: 16px;
    padding: 10px 0;
    list-style: none;
    box-shadow: 0 16px 35px rgba(0,0,0,0.18);
    z-index: 4000;
    margin: 0;
}

    nav {
        display: none;
        position: absolute;
        top: 100%;
        right: 14px;
        width: 220px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.16);
        z-index: 2000;
        overflow: hidden;
        transform: none;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    nav ul li {
        border-bottom: 1px solid #e2e8f0;
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav ul li a {
        color: #0f172a;
        display: block;
        padding: 14px 16px;
        font-size: 15px;
    }

    nav ul li a:hover {
        background: #f1f5f9;
        color: #0f172a;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-form textarea,
    .contact-form button {
        grid-column: auto;
    }

    @media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-box,
    .footer-box h3,
    .footer-box p,
    .footer-box a {
        text-align: center;
    }
}
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        position: relative;
        z-index: 5001;
        background: transparent;
        border: none;
        color: #93c5fd; /* sitedeki mavi */
        font-size: 30px;
        cursor: pointer;
        line-height: 1;
    }

    nav {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: min(300px, 78vw); /* küçültüldü */
        height: 100vh;
        background: #ffffff;
        box-shadow: -10px 0 30px rgba(0,0,0,0.18);
        z-index: 5000;
        transition: right 0.35s ease;
        padding: 80px 0 24px;
        overflow-y: auto;
        border-radius: 0;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        transform: none;
        padding: 0 24px;
    }

    nav ul li {
        border-bottom: 1px solid #e5e7eb;
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav ul li a {
        color: #0f172a;
        display: block;
        padding: 18px 0;
        font-size: 17px;
        font-weight: 700;
        background: transparent;
    }

    nav ul li a:hover {
        background: transparent;
        color: #93c5fd; /* sitedeki mavi */
    }

    .dropdown-menu {
        position: static;
        min-width: unset;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        background: #ffffff;
        padding: 0 0 8px 0;
        margin-top: -4px;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        padding: 12px 0 12px 18px;
        font-size: 15px;
        font-weight: 600;
        color: #334155;
        white-space: normal;
        line-height: 1.5;
    }

    body.menu-open {
        overflow: hidden;
    }

    body.menu-open::before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.45);
        z-index: 4990;
    }
}
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        position: fixed;
        top: 18px;
        right: 18px;
        z-index: 5002;
        background: transparent;
        border: none;
        color: #1e3a5f; /* sitendeki koyu mavi */
        font-size: 32px;
        font-weight: 700;
        cursor: pointer;
        line-height: 1;
    }

    body:not(.menu-open) .menu-toggle {
        position: relative;
        top: auto;
        right: auto;
        color: #93c5fd;
    }
}
@media (max-width: 650px) {
    .services-box,
    .stats-container,
    .why-us-container,
    .process-container,
    .project-grid {
        grid-template-columns: 1fr;
    }

    .brand-box {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 16px;
    }

    section {
        padding: 58px 15px;
    }

    .stat-card h3 {
        font-size: 36px;
    }
}
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: " ▼";
    font-size: 11px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 320px;
    background: white;
    border-radius: 16px;
    padding: 10px 0;
    list-style: none;
    box-shadow: 0 16px 35px rgba(0,0,0,0.18);
    z-index: 4000;
    margin: 0;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 14px 18px;
    color: #0f172a;
    text-decoration: none;
    font-size: 15px;
    white-space: normal;
    line-height: 1.5;
    word-break: break-word;
}

.dropdown-menu li a:hover {
    background: #f1f5f9;
    color: #1e3a5f;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        min-width: unset;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        background: #f8fafc;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        padding-left: 24px;
    }
}
.projects-gallery-grid {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.projects-gallery-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}

@media (max-width: 900px) {
    .projects-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .projects-gallery-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    header {
        position: relative;
        z-index: 1000;
    }

    nav {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: min(300px, 78vw);
        height: 100vh;
        background: #fff;
        z-index: 6000;
        transition: right 0.35s ease;
        overflow-y: auto;
        pointer-events: auto;
    }

    nav.active {
        right: 0;
    }

    .menu-toggle {
        position: fixed;
        top: 18px;
        right: 18px;
        z-index: 7000;
        background: transparent;
        border: none;
        color: #1e3a5f;
        font-size: 32px;
        cursor: pointer;
    }
    body.menu-open::before {
    display: none;
}
}
@media (max-width: 768px) {
    header {
        position: sticky;
        top: 0;
        z-index: 3500;
    }

    nav {
        z-index: 6000;
    }

    .menu-toggle {
        z-index: 7000;
    }
}
/* HİZMET SAYFASI GENEL ALAN */
.service-detail {
    max-width: 1180px;
    margin: 70px auto;
    padding: 0 20px;
}

.service-header {
    text-align: center;
    margin-bottom: 40px;
}

.service-header h1 {
    font-size: 42px;
    color: #0f172a;
    margin-bottom: 14px;
    line-height: 1.2;
}

.service-header p {
    max-width: 780px;
    margin: 0 auto;
    color: #475569;
    line-height: 1.9;
    font-size: 17px;
}

/* ANA İÇERİK */
.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    align-items: start;
}

/* SOL YAZI KUTUSU */
.service-text {
    background: white;
    padding: 34px 30px;
    border-radius: 22px;
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(30, 58, 95, 0.06);
}

.service-text h3 {
    margin-top: 0;
    margin-bottom: 14px;
    color: #1e3a5f;
    font-size: 24px;
}

.service-text p {
    line-height: 1.9;
    color: #475569;
    margin-bottom: 18px;
    font-size: 16px;
}

/* BUTON ALANI */
.service-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.service-whatsapp-btn,
.service-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    padding: 15px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

.service-whatsapp-btn {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
}

.service-call-btn {
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
    color: white;
}

.service-whatsapp-btn:hover,
.service-call-btn:hover {
    transform: translateY(-2px);
}

/* SAĞ KISIM / MARKALAR */
.service-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* MARKALAR KUTUSU */
.service-brands {
    width: 130px;
    margin: 0 auto;
    text-align: center;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
}

.service-brands h3 {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #0f172a;
}

.brands-slider {
    width: 130px;
    height: 68px;
    overflow: hidden;
    position: relative;
    border-radius: 16px;
    background: white;
    display: flex;
    align-items: center;
    padding: 0 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border: 1px solid rgba(30, 58, 95, 0.06);
}

.brands-track {
    display: flex;
    align-items: center;
    gap: 24px;
    width: max-content;
    animation: scrollBrands 12s linear infinite;
}

.brands-track img {
    height: 34px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.brands-track {
    display: flex;
    align-items: center;
    gap: 34px;
    width: max-content;
    animation: scrollBrands 22s linear infinite;
}

.brands-track img {
    height: 48px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    filter: grayscale(10%);
    opacity: 0.95;
}

@keyframes scrollBrands {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* EK BİLGİ KUTUSU İSTERSEN */
.service-info-box {
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    border-radius: 22px;
    padding: 24px 20px;
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(30, 58, 95, 0.06);
    text-align: left;
}

.service-info-box h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #1e3a5f;
    font-size: 18px;
}

.service-info-box p {
    margin: 0;
    color: #475569;
    line-height: 1.8;
    font-size: 15px;
}

/* MOBİL */
@media (max-width: 900px) {
    .service-content {
        grid-template-columns: 1fr;
    }

    .service-side {
        order: 2;
    }

    .service-text {
        order: 1;
    }
}

@media (max-width: 768px) {
    .service-detail {
        margin: 50px auto;
        padding: 0 15px;
    }

    .service-header h1 {
        font-size: 32px;
    }

    .service-header p {
        font-size: 15px;
    }

    .service-text {
        padding: 26px 20px;
        border-radius: 18px;
    }

    .service-text h3 {
        font-size: 21px;
    }

    .service-buttons {
        flex-direction: column;
    }

    .service-whatsapp-btn,
    .service-call-btn {
        width: 100%;
    }

    .service-brands {
        border-radius: 18px;
        padding: 18px 14px;
    }

    .brands-slider {
        height: 80px;
    }

    .brands-track img {
        height: 42px;
    }
}
@media (max-width: 768px) {
    .contact-flex {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .map-container,
    .contact-form-box {
        width: 100%;
        margin: 0;
    }
}