﻿
/* ══════════════════════════════════════════
           CANSU DAĞITIM — GLOBAL LAYOUT
        ══════════════════════════════════════════ */
:root {
    --brand: #1a3a5c;
    --brand-light: #2a5a8c;
    --brand-pale: #f4f7fa;
    --accent: #c8a96e;
    --accent-dark: #b8914a;
    --text-mid: #4a6a88;
    --text-muted: #7a9bb8;
    --border: rgba(26,58,92,0.12);
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(26,58,92,0.06);
    --radius: 6px;
    --nav-h: 72px; /* navbar yüksekliği */
    --logo-h: 72px; /* logo görsel yüksekliği */
    --topbar-h: 38px;
    --tr: 0.25s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Plus Jakarta Sans', 'Segoe UI', Arial, sans-serif;
    font-size: 15px;
    color: #0d1f33;
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--brand);
    text-decoration: none;
    transition: color var(--tr);
}

    a:hover {
        color: var(--brand-light);
    }

img {
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ══ TOP BAR ══════════════════════════════ */
.ca-topbar {
    background: #1c4f6e !important;
    height: var(--topbar-h);
    display: flex;
    align-items: center;
}

    .ca-topbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.ca-topbar-left {
    display: flex;
    align-items: center;
    gap: 0;
}

    .ca-topbar-left a {
        display: flex;
        align-items: center;
        gap: 6px;
        color: #a8c4d8;
        font-size: 12px;
        font-weight: 400;
        transition: color var(--tr);
    }

        .ca-topbar-left a:hover {
            color: #fff;
        }

        .ca-topbar-left a b {
            color: #fff;
            font-weight: 600;
        }

    .ca-topbar-left svg {
        opacity: 0.55;
        flex-shrink: 0;
    }

.tb-sep {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.15);
    margin: 0 14px;
}

.ca-social {
    display: flex;
    gap: 6px;
}

    .ca-social a {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #a8c4d8;
        font-size: 10px;
        font-weight: 700;
        transition: background var(--tr), color var(--tr);
    }

        .ca-social a:hover {
            background: rgba(255,255,255,0.2);
            color: #fff;
        }

/* ══ NAVBAR ═══════════════════════════════ */
.ca-navbar {
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--tr);
}

    .ca-navbar.scrolled {
        box-shadow: 0 4px 20px rgba(26,58,92,0.1);
    }

    .ca-navbar .container {
        display: flex;
        align-items: center;
        height: var(--nav-h);
        gap: 0;
    }

/* ── Logo ── */
.ca-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    /* Sıfıra sıfır: container padding'ini yok say */
    margin-left: -24px;
    padding-left: 0;
}

    .ca-logo img {
        height: 73px; /* eskiden ne idiyse artırın */
        width: auto;
        max-width: 260px; /* genişliği de buna göre artırın */
        object-fit: contain;
        object-position: left center;
        display: block;
    }

/* Resim yüklenemezse metin fallback */
.ca-logo-fallback {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 0 0 0 16px;
}

.ca-logo-fallback-icon {
    width: 42px;
    height: 42px;
    background: var(--brand);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .ca-logo-fallback-icon svg {
        fill: var(--accent);
        width: 22px;
        height: 22px;
    }

.ca-logo-fallback-text .name {
    font-size: 16px;
    font-weight: 700;
    color: var(--brand);
    line-height: 1.15;
}

.ca-logo-fallback-text .sub {
    font-size: 9.5px;
    color: var(--text-muted);
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

/* ── Desktop nav menü ── */
.ca-nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: auto; /* sağa it */
}

    .ca-nav-menu li a {
        display: flex;
        align-items: center;
        padding: 8px 12px;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.4px;
        color: var(--text-mid);
        text-transform: uppercase;
        white-space: nowrap;
        border-radius: var(--radius);
        position: relative;
        transition: color var(--tr), background var(--tr);
    }

        .ca-nav-menu li a::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 12px;
            right: 12px;
            height: 2px;
            background: #2f5a9e !important;
            border-radius: 2px;
            transform: scaleX(0);
            transition: transform var(--tr);
        }

        .ca-nav-menu li a:hover,
        .ca-nav-menu li a.ca-active {
            color: var(--brand);
            background: var(--brand-pale);
        }

            .ca-nav-menu li a.ca-active::after {
                transform: scaleX(1);
            }

.ca-nav-cta {
    background: #2f5a9e !important;
    color: #fff !important;
    border-radius: var(--radius) !important;
    padding: 9px 16px !important;
    margin-left: 8px;
}

    .ca-nav-cta::after {
        display: none !important;
    }

    .ca-nav-cta:hover {
        background: var(--brand-light) !important;
        color: #fff !important;
    }
/* ══ DROPDOWN ═════════════════════════════ */
.ca-nav-has-drop {
    position: static;
}
    /* absolute yerine navbar'a göre konumlan */

    .ca-nav-has-drop > a {
        gap: 5px;
    }

.ca-drop-arrow {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: 0.5;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.2s;
}

.ca-nav-has-drop:hover .ca-drop-arrow,
.ca-nav-has-drop:focus-within .ca-drop-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.ca-dropdown {
    position: fixed; /* viewport'a göre sabitle */
    top: auto; /* JS ile hesaplanacak */
    left: 30%;
    transform: translateX(-50%) translateY(-10px);
    background: #fff;
    border: 1px solid rgba(26,58,92,0.1);
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(26,58,92,0.06), 0 24px 64px rgba(26,58,92,0.12);
    padding: 10px;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.26s cubic-bezier(0.4,0,0.2,1);
    z-index: 2000;
}

    .ca-dropdown::before {
        content: '';
        position: absolute;
        top: -6px;
        left: 90%;
        transform: translateX(-50%) rotate(45deg);
        width: 11px;
        height: 11px;
        background: #fff;
        border-left: 1px solid rgba(26,58,92,0.1);
        border-top: 1px solid rgba(26,58,92,0.1);
        border-radius: 2px 0 0 0;
    }

.ca-nav-has-drop:hover .ca-dropdown,
.ca-nav-has-drop:focus-within .ca-dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.ca-drop-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    border-radius: 10px;
    text-decoration: none;
    transition: background var(--tr), transform 0.2s;
}

    .ca-drop-item:hover {
        background: var(--brand-pale);
        transform: translateY(-2px);
    }

.ca-drop-icon {
    width: 42px;
    height: 42px;
    background: rgba(26,58,92,0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--brand);
    transition: background var(--tr), color var(--tr);
}

.ca-drop-item:hover .ca-drop-icon {
    background: var(--brand);
    color: #fff;
}

.ca-drop-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ca-drop-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 4px;
    line-height: 1.2;
}

.ca-drop-desc {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.55;
    font-weight: 400;
}

.ca-nav-has-drop > a::after {
    display: none !important;
}

.ca-dropdown-footer {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px 8px;
    border-top: 1px solid var(--border);
    margin-top: 2px;
}

    .ca-dropdown-footer span {
        font-size: 11.5px;
        color: var(--text-muted);
    }

    .ca-dropdown-footer a {
        font-size: 12px;
        font-weight: 700;
        color: var(--brand);
        display: flex;
        align-items: center;
        gap: 5px;
        transition: gap 0.2s, color 0.2s;
    }

        .ca-dropdown-footer a:hover {
            gap: 8px;
            color: var(--accent);
        }
/* ══ MOBİL AKORDEON ══════════════════════════ */
.ca-mob-sub-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 22px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-mid);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: background var(--tr), color var(--tr);
}

    .ca-mob-sub-toggle:hover,
    .ca-mob-sub-toggle[aria-expanded="true"] {
        background: var(--brand-pale);
        color: var(--brand);
    }

.ca-mob-sub-arrow {
    flex-shrink: 0;
    opacity: 0.4;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.2s;
}

.ca-mob-sub-toggle[aria-expanded="true"] .ca-mob-sub-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.ca-mob-sub {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1);
    background: #f8fafc;
    border-top: 1px solid var(--border);
}

    .ca-mob-sub.is-open {
        max-height: 400px;
    }

    .ca-mob-sub li a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 22px 12px 32px;
        font-size: 13.5px;
        font-weight: 500;
        color: var(--text-mid);
        border-bottom: 1px solid rgba(26,58,92,0.04);
        transition: background var(--tr), color var(--tr), padding-left var(--tr);
    }

        .ca-mob-sub li a::before {
            content: '';
            width: 5px;
            height: 5px;
            background: var(--accent);
            border-radius: 50%;
            flex-shrink: 0;
            opacity: 0.6;
        }

        .ca-mob-sub li a:hover {
            background: var(--brand-pale);
            color: var(--brand);
            padding-left: 36px;
        }

.ca-mob-sub-all a {
    font-weight: 700 !important;
    color: var(--brand) !important;
    border-bottom: none !important;
}

    .ca-mob-sub-all a::before {
        background: var(--brand) !important;
        opacity: 1 !important;
    }
/* ══ HAMBURGER ════════════════════════════ */
.ca-toggler {
    display: none; /* desktop'ta gizli */
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: transparent;
    padding: 8px;
    margin-left: auto; /* sağ kenara it */
    flex-shrink: 0;
    transition: background var(--tr);
}

    .ca-toggler:hover {
        background: var(--brand-pale);
    }

.ca-toggler-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--brand);
    border-radius: 2px;
    transform-origin: center;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.25s ease;
}

.ca-toggler.is-open .ca-toggler-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.ca-toggler.is-open .ca-toggler-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.ca-toggler.is-open .ca-toggler-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ══ MOBİL DRAWER ═════════════════════════ */
.ca-mobile-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 16px 40px rgba(26,58,92,0.14);
    z-index: 999;
    overflow: hidden;
    /* başlangıç: kapalı */
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: max-height 0.42s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease, transform 0.35s cubic-bezier(0.4,0,0.2,1);
}

    .ca-mobile-menu.is-open {
        max-height: 480px;
        opacity: 1;
        transform: none;
        pointer-events: all;
    }

.ca-mobile-menu-inner {
    padding: 8px 0 24px;
}

.ca-mobile-menu li {
    border-bottom: 1px solid rgba(26,58,92,0.05);
    /* stagger için başlangıç durumu */
    opacity: 0;
    transform: translateX(-16px);
    transition: opacity 0.28s ease, transform 0.32s cubic-bezier(0.4,0,0.2,1);
}

.ca-mobile-menu.is-open li {
    opacity: 1;
    transform: none;
}

    .ca-mobile-menu.is-open li:nth-child(1) {
        transition-delay: 0.06s;
    }

    .ca-mobile-menu.is-open li:nth-child(2) {
        transition-delay: 0.11s;
    }

    .ca-mobile-menu.is-open li:nth-child(3) {
        transition-delay: 0.16s;
    }

    .ca-mobile-menu.is-open li:nth-child(4) {
        transition-delay: 0.20s;
    }

    .ca-mobile-menu.is-open li:nth-child(5) {
        transition-delay: 0.24s;
    }

    .ca-mobile-menu.is-open li:nth-child(6) {
        transition-delay: 0.28s;
    }

    .ca-mobile-menu.is-open li:nth-child(7) {
        transition-delay: 0.32s;
    }

.ca-mobile-menu li:last-child {
    border-bottom: none;
}

.ca-mobile-menu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 22px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-mid);
    transition: background var(--tr), color var(--tr);
}

    .ca-mobile-menu li a:hover,
    .ca-mobile-menu li a.ca-active {
        background: var(--brand-pale);
        color: var(--brand);
    }

    .ca-mobile-menu li a svg {
        opacity: 0.3;
        flex-shrink: 0;
    }

/* CTA butonu mobil menüde */
.ca-mobile-cta-item {
    border-bottom: none !important;
}

    .ca-mobile-cta-item a {
        background: var(--brand) !important;
        color: #fff !important;
        margin: 12px 16px 0;
        border-radius: var(--radius);
        justify-content: center !important;
        padding: 14px 20px !important;
    }

        .ca-mobile-cta-item a svg {
            display: none !important;
        }

/* Overlay */
.ca-overlay {
    position: fixed;
    inset: 0;
    top: var(--nav-h);
    background: rgba(10,30,55,0.45);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}

    .ca-overlay.is-open {
        opacity: 1;
        pointer-events: all;
    }

/* ══ SAYFA WRAPPER ════════════════════════ */
.ca-page-wrapper {
    min-height: calc(100vh - var(--topbar-h) - var(--nav-h));
}

/* ══ İÇ SAYFA BAŞLIĞI ═════════════════════ */
.ca-page-header {
    background: linear-gradient(135deg, #0a1f38, var(--brand));
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

    .ca-page-header::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
        background-size: 48px 48px;
    }

    .ca-page-header .container {
        position: relative;
    }

    .ca-page-header h1 {
        font-size: 28px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 10px;
    }

.ca-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
}

    .ca-breadcrumb a {
        color: rgba(255,255,255,0.55);
    }

        .ca-breadcrumb a:hover {
            color: var(--accent);
        }

    .ca-breadcrumb .current {
        color: var(--accent);
    }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.ca-footer {
    background: #0b1c30;
    color: #fff;
}

/* ── Üst alan ── */
.ca-footer-top {
    padding: 72px 0 56px;
    border-bottom: 0.5px solid rgba(255, 255, 255, .07);
}

    .ca-footer-top .container {
        display: grid;
        grid-template-columns: 1.6fr 1fr 1fr 1fr;
        gap: 48px;
        align-items: flex-start;
    }

/* Marka bloğu */
.ca-footer-brand {
    display: flex;
    flex-direction: column;
}

.ca-footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 20px;
}

.ca-footer-logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: #00a394;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ca-footer-logo-text {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -.2px;
    line-height: 1.2;
}

    .ca-footer-logo-text small {
        display: block;
        font-size: 10px;
        font-weight: 400;
        color: rgba(255, 255, 255, .35);
        letter-spacing: .04em;
        margin-top: 2px;
    }

.ca-footer-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, .38);
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 280px;
}

/* İletişim linkleri */
.ca-footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

    .ca-footer-contacts a {
        display: flex;
        align-items: center;
        gap: 9px;
        font-size: 12px;
        color: rgba(255, 255, 255, .45);
        text-decoration: none;
        transition: color .2s;
    }

        .ca-footer-contacts a:hover {
            color: #00a394;
        }

        .ca-footer-contacts a svg {
            opacity: .5;
            flex-shrink: 0;
        }

/* Sosyal medya */
.ca-footer-social {
    display: flex;
    gap: 8px;
}

.ca-social-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 0.5px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
    transition: border-color .2s, color .2s;
}

    .ca-social-btn:hover {
        border-color: #00a394;
        color: #00a394;
    }

/* Kolon başlıkları */
.ca-footer-col h4 {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 20px;
}

.ca-footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .ca-footer-col ul li a {
        font-size: 12px;
        color: rgba(255, 255, 255, .48);
        text-decoration: none;
        transition: color .2s;
        line-height: 1.4;
    }

        .ca-footer-col ul li a:hover {
            color: #fff;
        }

/* ── Orta bant — çalışma saatleri ── */
.ca-footer-hours {
    background: rgba(0, 0, 0, .15);
    border-bottom: 0.5px solid rgba(255, 255, 255, .07);
    padding: 18px 0;
}

.ca-footer-hours-inner {
    display: flex;
    align-items: center;
    gap: 28px;
}

.ca-footer-hours-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: rgba(255, 255, 255, .32);
}

    .ca-footer-hours-item svg {
        color: #00a394;
        opacity: .8;
        flex-shrink: 0;
    }

.ca-footer-hours-sep {
    width: 0.5px;
    height: 16px;
    background: rgba(255, 255, 255, .08);
    flex-shrink: 0;
}

/* ── Alt bant — telif ── */
.ca-footer-bottom {
    padding: 20px 0;
}

    .ca-footer-bottom .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

.ca-footer-copy {
    font-size: 11px;
    color: rgba(255, 255, 255, .2);
    letter-spacing: .02em;
}

    .ca-footer-copy em {
        font-style: normal;
        color: rgba(0, 163, 148, .6);
    }

.ca-footer-links {
    display: flex;
    gap: 20px;
}

    .ca-footer-links a {
        font-size: 11px;
        color: rgba(255, 255, 255, .2);
        text-decoration: none;
        transition: color .2s;
    }

        .ca-footer-links a:hover {
            color: rgba(255, 255, 255, .5);
        }

/* ── Responsive ── */
@media (max-width: 960px) {
    .ca-footer-top .container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .ca-footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .ca-footer-top .container {
        grid-template-columns: 1fr;
    }

    .ca-footer-hours-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .ca-footer-hours-sep {
        display: none;
    }

    .ca-footer-bottom .container {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}

/* ── FOOTER SOSyal MEDYA ─────────────────────── */
.ca-footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.ca-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    transition: all 0.2s ease;
}

    .ca-social-btn:hover {
        border-color: #c8a96e;
        color: #c8a96e;
        background: rgba(200,169,110,0.08);
    }

/* ── FOOTER ÇALIŞMA SAATLERİ BANDI ─────────── */
.ca-footer-hours {
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 14px 0;
    background: rgba(255,255,255,0.02);
}

.ca-footer-hours-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.ca-footer-hours-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.3px;
}

    .ca-footer-hours-item svg {
        color: white;
        flex-shrink: 0;
    }

.ca-footer-hours-sep {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,0.1);
}

/* ── FOOTER LİNK LİSTELERİ ─────────────────── */
.ca-footer-col ul {
    padding-left: 0 !important;
    list-style: none;
}

    .ca-footer-col ul li a {
        position: relative;
        padding-left: 0;
        transition: padding-left 0.2s ease, color 0.2s ease;
    }

        .ca-footer-col ul li a:hover {
            padding-left: 8px;
            color: #c8a96e;
        }
/* ══ YARDIMCI SINIFLAR ════════════════════ */
.ca-section {
    padding: 40px 0;
}

.ca-section-sm {
    padding: 52px 0;
}

.ca-section-label {
    font-size: 16px;
    letter-spacing: 0px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
}

.ca-section-title {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    line-height: 1.25;
}

.ca-section-sub {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 12px;
    line-height: 1.75;
}

.ca-section-header {
    text-align: center;
    margin-bottom: 52px;
}

.ca-bg-pale {
    background: var(--brand-pale);
}

.ca-bg-dark {
    background: var(--brand);
}

.ca-bg-white {
    background: var(--white);
}

.ca-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    border: none;
    letter-spacing: 0.2px;
    white-space: nowrap;
    transition: background var(--tr), color var(--tr), transform var(--tr), box-shadow var(--tr);
}

.ca-btn-primary {
    background: #2f5a9e !important;
    color: #fff;
}

    .ca-btn-primary:hover {
        background: var(--brand-light);
        color: #fff;
        transform: translateY(-1px);
        box-shadow: 0 6px 18px rgba(26,58,92,0.25);
    }

.ca-btn-accent {
    background: #f2f2f0 !important;
    color: #1a1a1a;
}

    .ca-btn-accent:hover {
        background: var(--accent-dark);
        color: #1a1a1a;
        transform: translateY(-1px);
    }

.ca-btn-outline {
    background: transparent;
    color: var(--brand);
    border: 1.5px solid var(--border);
}

    .ca-btn-outline:hover {
        background: var(--brand-pale);
        color: var(--brand);
    }

/* ══ RESPONSIVE ═══════════════════════════ */
@media (max-width: 992px) {
    .ca-footer-top .container {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    /* Topbar gizle */
    .ca-topbar {
        display: none;
    }
    /* Desktop nav gizle */
    .ca-nav-menu {
        display: none !important;
    }
    /* Hamburger göster */
    .ca-toggler {
        display: flex !important;
    }
    /* Logo mobilde */
    .ca-logo {
        margin-left: -24px; /* container padding'ini geç */
    }

        .ca-logo img {
            height: calc(var(--nav-h) - 8px); /* -16px yerine -8px yapın */
            max-width: 200px; /* 160px yerine */
            margin-left: 30px;
        }

    .ca-section {
        padding: 52px 0;
    }

    .ca-footer-top .container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ca-footer-desc {
        max-width: 100%;
    }

    .ca-footer-bottom .container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 400px) {
    .ca-logo img {
        max-width: 130px;
    }
}
/* Sosyal medya ikonları — renkli */
.ca-social a {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s cubic-bezier(0.4,0,0.2,1), box-shadow 0.2s, filter 0.2s;
    border: none;
    background: transparent;
}

    .ca-social a:hover {
        transform: translateY(-3px) scale(1.12);
        filter: brightness(1.1);
        box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    }

/* Instagram — mor/turuncu gradient */
.ca-soc-instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    color: #fff !important;
}

/* LinkedIn — mavi */
.ca-soc-linkedin {
    background: #0a66c2 !important;
    color: #fff !important;
}

/* Facebook — koyu mavi */
.ca-soc-facebook {
    background: #1877f2 !important;
    color: #fff !important;
}

/* WhatsApp — yeşil */
.ca-soc-whatsapp {
    background: #25d366 !important;
    color: #fff !important;
}
/* Nav item'ın hemen altındaki boşluğu köprüle */
.ca-nav-has-drop::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px; /* nav ile dropdown arasındaki boşluk kadar */
    background: transparent;
}

/* Dropdown gecikmeli kapansın */
.ca-dropdown {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    transition-delay: 200ms;
}

.ca-nav-has-drop:hover .ca-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0ms;
}

/* ══════════════════════════════════════════════
   SAYFA HERO — tüm iç sayfalarda ortak kullanılır
══════════════════════════════════════════════ */
.ca-page-hero {
    background: linear-gradient(135deg, #071828 0%, #0f2744 40%, #1a3a5c 100%);
    position: relative;
    overflow: hidden;
    padding: 20px 0 20px;
}

.ca-page-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ca-page-hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 44px 44px;
}

.ca-page-hero-orb {
    position: absolute;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(200,169,110,0.12) 0%, transparent 70%);
    right: -80px;
    top: -120px;
    border-radius: 50%;
}

.ca-page-hero-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.ca-page-hero-content {
    flex: 1;
}

/* Breadcrumb */
.ca-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    margin-bottom: 18px;
}

    .ca-breadcrumb a {
        color: rgba(255,255,255,0.5);
        text-decoration: none;
        transition: color 0.2s;
    }

        .ca-breadcrumb a:hover {
            color: white;
        }

.ca-bc-sep {
    color: rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
}

.ca-bc-current {
    color: white;
    font-weight: 600;
}

.ca-page-hero-title {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}

.ca-page-hero-desc {
    font-size: 14.5px;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    max-width: 440px;
}

/* Hero sağ: bilgi kartları */
.ca-page-hero-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}

.ca-hero-info-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 9px 18px;
    min-width: 260px;
    backdrop-filter: blur(8px);
    transition: background 0.2s;
}

    .ca-hero-info-card:hover {
        background: rgba(255,255,255,0.1);
    }

.ca-hic-icon {
    width: 40px;
    height: 40px;
    background: rgba(200,169,110,0.15);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.ca-hic-label {
    font-size: 10.5px;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 3px;
}

.ca-hic-value {
    font-size: 13.5px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

a.ca-hic-value:hover {
    color: var(--accent);
}

/* ══════════════════════════════════════════════
   CONTACT BÖLÜMÜ
══════════════════════════════════════════════ */
.contact-section {
    padding: 30px 0 50px;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 56px;
    align-items: start;
}

/* ── FORM ── */
.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 20px 30px;
    box-shadow: 0 4px 24px rgba(26,58,92,0.06);
}

.contact-form-header {
    margin-bottom: 20px;
}

.contact-form-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--brand);
    margin: 8px 0 10px;
    line-height: 1.25;
}

.contact-form-sub {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Form elemanları */
.ca-form {
    flex-direction: column;
    gap: 20px;
}

.ca-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ca-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ca-form-label {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--brand);
    letter-spacing: 0.3px;
}

    .ca-form-label .req {
        color: var(--accent);
        margin-left: 2px;
    }

.ca-form-control {
    width: 100%;
    padding: 11px 14px;
    font-size: 14px;
    font-family: inherit;
    color: #0d1f33;
    background: #fafbfd;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    line-height: 1.5;
}

    .ca-form-control::placeholder {
        color: #b0c4d8;
    }

    .ca-form-control:hover {
        border-color: rgba(26,58,92,0.25);
        background: #fff;
    }

    .ca-form-control:focus {
        border-color: var(--brand);
        background: #fff;
        box-shadow: 0 0 0 3px rgba(26,58,92,0.08);
    }

    .ca-form-control.is-error {
        border-color: #e24b4a;
        box-shadow: 0 0 0 3px rgba(226,75,74,0.1);
    }

.ca-form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a9bb8' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.ca-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.ca-form-err {
    font-size: 12px;
    color: #e24b4a;
    min-height: 16px;
}

/* KVKK checkbox */
.ca-form-kvkk {
    gap: 8px;
}

.ca-check-wrap {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    line-height: 1.5;
}

    .ca-check-wrap input[type="checkbox"] {
        position: absolute;
        opacity: 0;
        width: 0;
        height: 0;
    }

.ca-check-box {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
    border: 1.5px solid var(--border);
    border-radius: 4px;
    background: #fafbfd;
    transition: background 0.2s, border-color 0.2s;
    position: relative;
}

.ca-check-wrap input:checked ~ .ca-check-box {
    background: var(--brand);
    border-color: var(--brand);
}

    .ca-check-wrap input:checked ~ .ca-check-box::after {
        content: '';
        position: absolute;
        left: 4px;
        top: 1px;
        width: 5px;
        height: 9px;
        border: 2px solid #fff;
        border-top: none;
        border-left: none;
        transform: rotate(45deg);
    }

.ca-check-label {
    font-size: 13px;
    color: var(--text-mid);
}

    .ca-check-label a {
        color: var(--brand);
        font-weight: 600;
        text-decoration: underline;
    }

/* Gönder butonu */
.ca-form-submit {
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
    justify-content: center;
    gap: 10px;
    border-radius: 10px;
    margin-top: 4px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

    .ca-form-submit:hover {
        background: var(--brand-light);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(26,58,92,0.22);
    }

    .ca-form-submit:active {
        transform: none;
    }

/* Başarı */
.ca-form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #eaf3de;
    border: 1px solid #c0dd97;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 500;
    color: #3b6d11;
    margin-top: 4px;
}

    .ca-form-success svg {
        stroke: #3b6d11;
        flex-shrink: 0;
    }

/* ── OFİSLER ── */
.contact-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 8px;
}

.contact-offices {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.office-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

    .office-card:hover {
        border-color: rgba(26,58,92,0.25);
        box-shadow: 0 4px 20px rgba(26,58,92,0.07);
    }

.office-card--active {
    border-color: #2f5a9e !important;
    background: linear-gradient(135deg, #fefdf9, var(--white));
}

.office-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

    .office-card-header h3 {
        font-size: 15px;
        font-weight: 700;
        color: var(--brand);
    }

.office-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    background: #2f5a9e !important;
    color: white;
}

.office-badge--secondary {
    color: white;
}

.office-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .office-details li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 13px;
        color: var(--text-mid);
        line-height: 1.5;
    }

        .office-details li svg {
            flex-shrink: 0;
            margin-top: 1px;
            stroke: #2f5a9e;
        }

    .office-details a {
        color: var(--brand);
        font-weight: 600;
        text-decoration: none;
    }

        .office-details a:hover {
            color: black
        }

.office-map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    border-bottom: 1.5px solid rgba(26,58,92,0.2);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

    .office-map-link:hover {
        color: black;
        border-color: black;
    }

    .office-map-link svg {
        stroke: currentColor;
    }

/* ══ HARİTA ══════════════════════════════════ */
.contact-map-wrap {
    background: var(--brand-pale);
    padding: 0;
}

.contact-map-header {
    background: var(--brand);
    padding: 36px 0;
}

.contact-map-title {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-top: 8px;
}

.contact-map-frame {
    position: relative;
    height: 440px;
}

    .contact-map-frame iframe {
        width: 100%;
        height: 100%;
        display: block;
        filter: grayscale(15%) contrast(1.02);
    }

/* Harita üstü pin kartı */
.map-pin-card {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(26,58,92,0.12);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
}

.map-pin-icon {
    width: 38px;
    height: 38px;
    background: var(--brand);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.map-pin-card strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--brand);
}

.map-pin-card span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ══ RESPONSIVE ══════════════════════════════ */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ca-page-hero-cards {
        display: none;
    }

    .ca-page-hero-title {
        font-size: 30px;
    }
}

@media (max-width: 640px) {
    .ca-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-wrap {
        padding: 28px 20px;
    }

    .contact-map-frame {
        height: 300px;
    }

    .ca-page-hero {
        padding: 40px 0 36px;
    }

    .ca-page-hero-title {
        font-size: 26px;
    }
}

/* ══════════════════════════════════════════════════
       INDEX SAYFASI STİLLERİ
    ══════════════════════════════════════════════════ */
/* AOS animasyonları */
[data-aos] {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos="fade-up"] {
    transform: translateY(32px);
}

[data-aos="fade-right"] {
    transform: translateX(-32px);
}

[data-aos="fade-left"] {
    transform: translateX(32px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: none;
}

/* ── HERO ─────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, #0a1f38 0%, #1a3a5c 55%, #1e4d70 100%);
    min-height: 620px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(200,169,110,0.08);
    right: -100px;
    top: -100px;
}

.hero-orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(26,58,92,0.6);
    left: -50px;
    bottom: -50px;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: center;
    padding-top: 72px;
    padding-bottom: 72px;
    flex: 1;
}

/* ── HERO BADGE ── */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(200,169,110,0.12);
    border: 1px solid rgba(200,169,110,0.35);
    border-radius: 40px;
    padding: 7px 16px;
    margin-bottom: 28px;
    font-size: 11.5px;
    color: #c8a96e;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: #c8a96e;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.65);
    }
}

/* ── HERO TITLE ── */
.hero-title {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 22px;
    letter-spacing: -1px;
    /* Her satır ayrı renk/stil alıyor */
}

.hero-title-accent {
    color: #a5a5a5 !important;
    display: inline;
}

.hero-title-italic {
    font-style: italic;
    font-weight: 700;
    /* İkinci kelimenin altına ince çizgi */
    /* text-decoration: underline;*/
    text-decoration-color: rgba(200,169,110,0.35);
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
}

/* ── HERO DESC ── */
.hero-desc {
    font-size: 15.5px;
    color: rgba(255,255,255,0.62);
    line-height: 1.85;
    max-width: 460px;
    margin-bottom: 36px;
    font-weight: 400;
    /* Em dash'li yapı için güzel boşluk */
    word-spacing: 0.5px;
}

/* ── BUTONLAR ── */
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.hero-btn-primary {
    background: #f2f2f0 !important;
    color: #0d1f33 !important;
    font-weight: 700;
    font-size: 14px;
    padding: 13px 28px !important;
    border-radius: 8px !important;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    letter-spacing: 0.3px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
    box-shadow: 0 4px 20px rgba(200,169,110,0.3);
}

    .hero-btn-primary:hover {
        background: #a5a5a5 !important;
        color: #0d1f33 !important;
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(200,169,110,0.4) !important;
    }

.hero-btn-outline {
    background: rgba(255,255,255,0.07) !important;
    color: #fff !important;
    border: 1.5px solid rgba(255,255,255,0.22) !important;
    font-size: 14px;
    padding: 12px 26px !important;
    border-radius: 8px !important;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: background 0.2s, border-color 0.2s !important;
    backdrop-filter: blur(4px);
}

    .hero-btn-outline:hover {
        background: rgba(255,255,255,0.13) !important;
        border-color: rgba(255,255,255,0.4) !important;
        color: #fff !important;
    }

/* ── STATS ── */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 32px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 32px 0 0;
}

    .hero-stat:first-child {
        padding-left: 0;
    }

.hero-stat-top {
    display: flex;
    align-items: baseline;
    gap: 2px;
    line-height: 1;
    margin-bottom: 5px;
}

.hero-stat-num {
    font-size: 34px;
    font-weight: 800;
    color: #c8a96e;
    letter-spacing: -1px;
    line-height: 1;
}

.hero-stat-sym {
    font-size: 22px;
    font-weight: 700;
    color: rgba(200,169,110,0.7);
    line-height: 1;
}

.hero-stat-lbl {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap;
}

.hero-stat-divider {
    width: 1px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    margin: 0 32px 0 0;
    flex-shrink: 0;
}

/* Mobil */
@media (max-width: 768px) {
    .hero-title {
        font-size: 34px;
        letter-spacing: -0.5px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-stat {
        padding: 0;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 28px;
    }
}

/* Hero visual */
.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 20px;
}

.hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(200,169,110,0.12);
    pointer-events: none;
}

.hero-ring-1 {
    width: 320px;
    height: 320px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ring-pulse 4s ease-in-out infinite;
}

.hero-ring-2 {
    width: 420px;
    height: 420px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ring-pulse 4s ease-in-out infinite 1s;
}

@keyframes ring-pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.15;
        transform: translate(-50%, -50%) scale(1.04);
    }
}

.hero-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    backdrop-filter: blur(10px);
    width: 240px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s, background 0.3s;
}

    .hero-card:hover {
        transform: translateY(-3px);
        background: rgba(255,255,255,0.1);
    }

.hero-card-main {
    align-self: flex-start;
    margin-left: 40px;
    animation: float-card 5s ease-in-out infinite;
}

.hero-card-delivery {
    align-self: flex-end;
    margin-right: 20px;
    background: rgba(255,255,255,0.92) !important;
    border-color: rgba(26,58,92,0.1) !important;
    animation: float-card 5s ease-in-out infinite 1.5s;
}

.hero-card-cert {
    align-self: flex-start;
    margin-left: 20px;
    background: rgba(255,255,255,0.92) !important;
    border-color: rgba(26,58,92,0.1) !important;
    animation: float-card 5s ease-in-out infinite 3s;
}

@keyframes float-card {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.hero-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(26,58,92,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-card-text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1a3a5c;
}

.hero-card-text span {
    font-size: 12px;
    color: #7a9bb8;
}

.hero-card-main .hero-card-text strong,
.hero-card-main .hero-card-text span {
    color: #fff;
}

.hero-card-main .hero-card-text span {
    color: #a8c4d8;
}

.hero-card-badge {
    margin-left: auto;
    width: 28px;
    height: 28px;
    background: #f2f2f0 !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #0d1f33;
}

/* Scroll hint */
.hero-scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-bottom: 28px;
    position: relative;
    z-index: 2;
}

    .hero-scroll-hint span {
        font-size: 10px;
        color: rgba(255,255,255,0.3);
        letter-spacing: 2px;
        text-transform: uppercase;
    }

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(200,169,110,0.6), transparent);
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% {
        transform: scaleY(1);
        opacity: 1;
    }

    50% {
        transform: scaleY(0.5);
        opacity: 0.4;
    }
}

/* ── MARQUEE ──────────────────────────────────── */
.marquee-wrap {
    background: #a5a5a5 !important;
    padding: 11px 0;
    overflow: hidden; /* ← BU SATIRI EKLEYİN */
    width: 100%;
}

.marquee-track {
    display: flex;
    gap: 0;
    animation: marquee-scroll 30s linear infinite;
    width: max-content;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.333%);
    }
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 24px;
    font-size: 12px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.marquee-dot {
    width: 4px;
    height: 4px;
    background: rgba(26,26,26,0.4);
    border-radius: 50%;
    display: block;
}

/* ── HAKKIMIZDA ───────────────────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 72px;
    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-img-placeholder {
    border-radius: 16px;
    height: 420px;
    display: flex;
    flex-direction: column;
    /* align-items: center;*/
    justify-content: center;
    gap: 16px;
}

    .about-img-placeholder span {
        font-size: 12px;
        color: #7a9bb8;
        letter-spacing: 1px;
    }

.about-exp-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #1a3a5c;
    color: #fff;
    border-radius: 14px;
    padding: 20px 24px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(26,58,92,0.25);
}

.about-exp-num {
    display: block;
    font-size: 40px;
    font-weight: 700;
    color: #c8a96e;
    line-height: 1;
}

.about-exp-lbl {
    font-size: 11px;
    color: #a8c4d8;
    letter-spacing: 0.5px;
    line-height: 1.5;
}

.about-text {
    font-size: 14px;
    color: #000000;
    line-height: 1.85;
    margin-bottom: 14px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 28px 0 32px;
}

.about-feat {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.about-feat-icon {
    width: 38px;
    height: 38px;
    background: rgba(26,58,92,0.07);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #1a3a5c;
}

.about-feat h4 {
    font-size: 13px;
    font-weight: 600;
    color: #1a3a5c;
    margin-bottom: 3px;
}

.about-feat p {
    font-size: 12px;
    color: #000000;
    line-height: 1.5;
}

.about-img-wrap .about-cta,
a.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ── ÜRÜNLER ──────────────────────────────────── */
.prod-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.prod-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(26,58,92,0.09);
    padding: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

    .prod-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(26,58,92,0.1);
    }

.prod-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 18px;
}

.prod-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26,58,92,0.07);
    color: #1a3a5c;
}

.prod-card-blue .prod-icon-wrap {
    background: rgba(30,80,150,0.08);
    color: #1e5096;
}

.prod-card-amber .prod-icon-wrap {
    background: rgba(180,130,30,0.1);
    color: #a07820;
}

.prod-card-green .prod-icon-wrap {
    background: rgba(40,140,80,0.09);
    color: #287840;
}

.prod-card-coral .prod-icon-wrap {
    background: rgba(200,80,60,0.08);
    color: #c84a3c;
}

.prod-card-silver .prod-icon-wrap {
    background: rgba(100,120,140,0.1);
    color: #607080;
}

.prod-card-navy .prod-icon-wrap {
    background: rgba(14,30,60,0.08);
    color: #1a3a5c;
}

.prod-tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.8px;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(26,58,92,0.07);
    color: #4a6a88;
    text-transform: uppercase;
}

.prod-title {
    font-size: 15px;
    font-weight: 600;
    color: #1a3a5c;
    margin-bottom: 8px;
}

.prod-desc {
    font-size: 12px;
    color: #7a9bb8;
    line-height: 1.7;
    margin-bottom: 18px;
}

.prod-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #1a3a5c;
    text-decoration: none;
    letter-spacing: 0.3px;
    border-bottom: 1.5px solid rgba(26,58,92,0.2);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

    .prod-link:hover {
        color: #c8a96e;
        border-color: #c8a96e;
    }

.prod-all-cta {
    text-align: center;
}

/* ── Why Section ── */
.why-section {
    background: #1c4f6e !important;
}

.why-wrap {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

/* Sol — eyebrow */
.why-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

.why-eyebrow-line {
    display: block;
    width: 28px;
    height: 1px;
    background: #00a394;
}

.why-eyebrow-txt {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #00a394;
}

/* Sol — başlık */
.why-title {
    font-size: 32px;
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -.3px;
    margin-bottom: 18px;
}

    .why-title strong {
        font-weight: 600;
    }

.why-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, .42);
    line-height: 1.85;
    margin-bottom: 40px;
    max-width: 360px;
}

/* Sol — istatistikler */
.why-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 40px;
}

.why-stat {
    padding: 18px 20px;
    border: 0.5px solid rgba(255, 255, 255, .08);
    border-radius: 10px;
    background: rgba(255, 255, 255, .03);
    transition: border-color .2s;
}

    .why-stat:hover {
        border-color: rgba(0, 163, 148, .3);
    }

.why-stat-num {
    font-size: 28px;
    font-weight: 300;
    color: #fff;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 6px;
}

    .why-stat-num em {
        font-size: 18px;
        font-style: normal;
        color: #00a394;
        font-weight: 400;
    }

.why-stat-lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, .35);
    letter-spacing: .03em;
}

/* Sol — buton */
.why-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: 8px;
    background: #00a394;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    letter-spacing: .01em;
    transition: background .2s;
}

    .why-cta:hover {
        background: #008f82;
    }

    .why-cta svg {
        transition: transform .2s;
    }

    .why-cta:hover svg {
        transform: translateX(3px);
    }

/* Sağ — liste */
.why-right {
    display: flex;
    flex-direction: column;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 26px 0;
    border-bottom: 0.5px solid rgba(255, 255, 255, .06);
    position: relative;
    cursor: default;
    transition: padding-left .25s ease;
}

    .why-item:first-child {
        padding-top: 0;
    }

    .why-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .why-item:hover {
        padding-left: 8px;
    }

/* Sol yeşil accent çizgisi */
.why-item-accent {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 0;
    background: #00a394;
    border-radius: 2px;
    transition: height .3s ease;
}

.why-item:hover .why-item-accent {
    height: 55%;
}

.why-item-num {
    font-size: 10px;
    font-weight: 500;
    color: #00a394;
    letter-spacing: .08em;
    padding-top: 3px;
    min-width: 24px;
    font-variant-numeric: tabular-nums;
    opacity: .65;
}

.why-item-body {
    flex: 1;
}

.why-item-title {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 7px;
    line-height: 1.3;
    letter-spacing: -.1px;
}

.why-item-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, .38);
    line-height: 1.75;
}

/* Sağ uç nokta */
.why-item-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: transparent;
    border: 0.5px solid transparent;
    margin-top: 6px;
    flex-shrink: 0;
    transition: background .25s, border-color .25s;
}

.why-item:hover .why-item-dot {
    background: #00a394;
    border-color: #00a394;
}

/* Responsive */
@media (max-width: 860px) {
    .why-wrap {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .why-desc {
        max-width: 100%;
    }
}

/* ── MARKALAR ─────────────────────────────────── */
.brands-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.brand-pill {
    background: #f4f7fa;
    border: 1px solid rgba(26,58,92,0.1);
    border-radius: 8px;
    padding: 14px 32px;
    font-size: 13px;
    font-weight: 600;
    color: #4a6a88;
    letter-spacing: 0.5px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    cursor: pointer;
}

    .brand-pill:hover {
        background: #1a3a5c;
        color: #fff;
        border-color: #1a3a5c;
    }

/* ── REFERANSLAR ──────────────────────────────── */
.refs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.ref-logo {
    background: #fff;
    border: 1px solid rgba(26,58,92,0.09);
    border-radius: 10px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #c8d8e8;
    font-weight: 500;
    transition: border-color 0.2s;
    cursor: pointer;
}

    .ref-logo:hover {
        border-color: rgba(26,58,92,0.25);
        color: #7a9bb8;
    }

/* ── CTA ──────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, #c8a96e 0%, #b08040 100%);
}

.cta-inner {
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient( 45deg, rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 40px );
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
    padding: 64px 0;
    position: relative;
}

.cta-text h2 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 10px;
}

    .cta-text h2 span {
        color: rgba(255,255,255,0.65);
    }

.cta-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    flex-shrink: 0;
}

.cta-btn-white {
    background: #fff;
    color: #1a3a5c;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
}

    .cta-btn-white:hover {
        background: #f0f0f0;
        color: #1a3a5c;
        transform: translateX(3px);
    }

.cta-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s;
}

    .cta-phone:hover {
        color: #fff;
    }

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .hero-title {
        font-size: 36px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        display: none;
    }

    .prod-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero-stat-divider {
        display: none;
    }

    .prod-grid {
        grid-template-columns: 1fr;
    }

    .refs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}





/* ── Products V2 ── */
.prod-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
}

.pv2-card {
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: background 0.2s;
}

    .pv2-card:hover {
        background: #f9f9f7;
    }

/* Görsel alanı */
.pv2-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f0f0ee;
    position: relative;
}

    .pv2-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.4s ease;
    }

.pv2-card:hover .pv2-img img {
    transform: scale(1.04);
}

.pv2-img-fallback {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    border: 1.5px dashed rgba(0, 0, 0, 0.12);
    color: rgba(0, 0, 0, 0.25);
}

    .pv2-img-fallback span {
        font-size: 10px;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: rgba(0, 0, 0, 0.3);
    }

/* Kart gövdesi */
.pv2-body {
    padding: 20px 22px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pv2-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pv2-tag {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 4px;
    background: #e6f4f3;
    color: #00756c;
}

.pv2-num {
    font-size: 10px;
    color: rgba(0, 0, 0, 0.3);
    font-variant-numeric: tabular-nums;
}

.pv2-title {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    line-height: 1.35;
}

.pv2-desc {
    font-size: 12px;
    color: #666;
    line-height: 1.65;
    flex: 1;
}

.pv2-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 0.5px solid rgba(0, 0, 0, 0.08);
}

.pv2-link {
    font-size: 12px;
    font-weight: 500;
    color: #00a394;
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

.pv2-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 0.5px solid rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    transition: background 0.2s, border-color 0.2s;
}

.pv2-card:hover .pv2-arrow {
    background: #00a394;
    border-color: #00a394;
    color: #fff;
}

@media (max-width: 900px) {
    .prod-grid-v2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .prod-grid-v2 {
        grid-template-columns: 1fr;
    }
}
/* ══════════════════════════════
   REFERANSLAR
══════════════════════════════ */
.refs-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
}

.refs-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.refs-eyebrow-line {
    display: block;
    width: 28px;
    height: 1px;
    background: #00a394;
}

.refs-eyebrow-txt {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #00a394;
}

.refs-title {
    font-size: 28px;
    font-weight: 400;
    color: #0b1c30;
    line-height: 1.2;
    letter-spacing: -.3px;
    margin-bottom: 8px;
}

    .refs-title strong {
        font-weight: 600;
    }

.refs-sub {
    font-size: 13px;
    color: rgba(11, 28, 48, .45);
    line-height: 1.7;
}

.refs-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    color: #00a394;
    text-decoration: none;
    letter-spacing: .02em;
    white-space: nowrap;
    padding-bottom: 2px;
    border-bottom: 0.5px solid rgba(0, 163, 148, .35);
    transition: border-color .2s;
}

    .refs-all-link:hover {
        border-color: #00a394;
    }

    .refs-all-link svg {
        transition: transform .2s;
    }

    .refs-all-link:hover svg {
        transform: translateX(3px);
    }

/* Logo grid */
.refs-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: rgba(11, 28, 48, .08);
    border: 0.5px solid rgba(11, 28, 48, .08);
    border-radius: 12px;
    overflow: hidden;
}

.ref-cell {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    min-height: 110px;
    transition: background .2s;
    cursor: default;
}

    .ref-cell:hover {
        background: #f0faf9;
    }

    .ref-cell img {
        max-width: 120px;
        max-height: 48px;
        width: auto;
        height: auto;
        object-fit: contain;
        filter: grayscale(1);
        opacity: .6;
        transition: filter .3s, opacity .3s;
    }

    .ref-cell:hover img {
        filter: grayscale(0);
        opacity: 1;
    }

.ref-fallback {
    font-size: 12px;
    color: rgba(11, 28, 48, .25);
    display: none;
    letter-spacing: .03em;
}


/* ══════════════════════════════
   CTA BANNER
══════════════════════════════ */
.cta-section {
    background: #1c4f6e !important;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

/* Arka plan ızgara çizgileri */
.cta-grid-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-gl {
    display: block;
    position: absolute;
    background: rgba(255, 255, 255, .04);
}

.cta-gl-h {
    height: 0.5px;
    width: 100%;
}

.cta-gl-v {
    width: 0.5px;
    height: 100%;
}

/* İçerik düzeni */
.cta-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 64px;
    align-items: center;
}

/* Eyebrow */
.cta-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.cta-eyebrow-line {
    display: block;
    width: 28px;
    height: 1px;
    background: #00a394;
}

.cta-eyebrow-txt {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #00a394;
}

/* Başlık */
.cta-title {
    font-size: 30px;
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -.3px;
    margin-bottom: 14px;
}

    .cta-title strong {
        font-weight: 600;
    }

.cta-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
    line-height: 1.8;
    max-width: 460px;
}

/* Aksiyonlar */
.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    flex-shrink: 0;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 28px;
    border-radius: 8px;
    background: #00a394;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s;
}

    .cta-btn-primary:hover {
        background: #008f82;
    }

    .cta-btn-primary svg {
        transition: transform .2s;
    }

    .cta-btn-primary:hover svg {
        transform: translateX(3px);
    }

.cta-actions-divider {
    width: 0.5px;
    height: 36px;
    background: rgba(255, 255, 255, .1);
    align-self: center;
}

.cta-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
    white-space: nowrap;
    transition: color .2s;
}

    .cta-phone-link:hover {
        color: #fff;
    }

    .cta-phone-link svg {
        opacity: .5;
    }

/* Responsive */
@media (max-width: 860px) {
    .refs-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .refs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-actions {
        align-items: flex-start;
    }
}
/* ══════════════════════════════
   SAYFA HERO — İletişim
══════════════════════════════ */
.ca-page-hero {
    background: #0b1c30;
    padding: 64px 0 56px;
    position: relative;
    overflow: hidden;
}

.ca-page-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ca-page-hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.ca-page-hero-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: #00a394;
    opacity: .06;
    top: -120px;
    right: -80px;
}

.ca-page-hero-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Breadcrumb */
.ca-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
}

    .ca-breadcrumb a,
    .ca-breadcrumb span {
        font-size: 11px;
        color: rgba(255,255,255,.35);
        text-decoration: none;
        letter-spacing: .03em;
    }

    .ca-breadcrumb svg {
        opacity: .3;
    }

.ca-bc-current {
    color: rgba(255,255,255,.55) !important;
}

/* Eyebrow */
.ca-page-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 16px;
}

.ca-phe-line {
    display: block;
    width: 24px;
    height: 1px;
    background: #00a394;
}

.ca-phe-txt {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #00a394;
}

/* Başlık */
.ca-page-hero-title {
    font-size: 36px;
    font-weight: 400;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -.4px;
    margin-bottom: 14px;
}

    .ca-page-hero-title strong {
        font-weight: 600;
    }

.ca-page-hero-desc {
    font-size: 13px;
    color: rgba(255,255,255,.42);
    line-height: 1.8;
    max-width: 420px;
}

/* Sağ hızlı iletişim kartları */
.ca-page-hero-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 250px;
}

.ca-hero-info-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 10px;
    border: 0.5px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.04);
}

.ca-hic-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(0,163,148,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #00a394;
}

.ca-hic-label {
    font-size: 10px;
    color: rgba(255,255,255,.35);
    letter-spacing: .04em;
    margin-bottom: 3px;
}

.ca-hic-value {
    font-size: 12px;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    transition: color .2s;
}

    .ca-hic-value:hover {
        color: #00a394;
    }


/* ══════════════════════════════
   İLETİŞİM ANA BÖLÜM
══════════════════════════════ */
.contact-section {
    padding: 64px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Eyebrow — form ve sağ kolon */
.contact-eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
}

.contact-eyebrow-line {
    display: block;
    width: 20px;
    height: 1px;
    background: #00a394;
}

.contact-eyebrow-txt {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #00a394;
}

/* Form kartı */
.contact-form-wrap {
    background: #fff;
    border-radius: 14px;
    border: 0.5px solid rgba(11,28,48,.08);
    padding: 36px;
}

.contact-form-title {
    font-size: 20px;
    font-weight: 500;
    color: #0b1c30;
    letter-spacing: -.2px;
    margin-bottom: 6px;
}

.contact-form-sub {
    font-size: 12px;
    color: rgba(11,28,48,.45);
    line-height: 1.7;
    margin-bottom: 28px;
}

/* Form elemanları */
.ca-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.ca-form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 14px;
}

    .ca-form-group:last-of-type {
        margin-bottom: 0;
    }

.ca-form-label {
    font-size: 11px;
    font-weight: 500;
    color: rgba(11,28,48,.55);
    letter-spacing: .03em;
}

    .ca-form-label .req {
        color: #00a394;
    }

.ca-form-control {
    width: 100%;
    padding: 10px 13px;
    border-radius: 8px;
    border: 0.5px solid rgba(11,28,48,.15);
    background: #fff;
    font-size: 12px;
    color: #0b1c30;
    outline: none;
    transition: border-color .2s;
    font-family: inherit;
}

    .ca-form-control:focus {
        border-color: #00a394;
    }

    .ca-form-control::placeholder {
        color: rgba(11,28,48,.25);
    }

    .ca-form-control.is-error {
        border-color: #e24b4a;
    }

.ca-form-select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230b1c3060' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
    cursor: pointer;
}

.ca-form-textarea {
    resize: vertical;
    min-height: 110px;
}

.ca-form-err {
    font-size: 11px;
    color: #e24b4a;
    min-height: 16px;
}

/* KVKK */
.ca-form-kvkk {
    margin-top: 4px;
    margin-bottom: 20px !important;
}

.ca-check-wrap {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    cursor: pointer;
}

.ca-check-box {
    width: 15px;
    height: 15px;
    border-radius: 4px;
    border: 0.5px solid rgba(11,28,48,.2);
    background: #fff;
    flex-shrink: 0;
    margin-top: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .2s, background .2s;
}

input[type="checkbox"]:checked + .ca-check-box {
    background: #00a394;
    border-color: #00a394;
}

input[type="checkbox"] {
    display: none;
}

.ca-check-label {
    font-size: 11px;
    color: rgba(11,28,48,.5);
    line-height: 1.6;
}

    .ca-check-label a {
        color: #00a394;
        text-decoration: none;
    }

/* Submit butonu */
.ca-form-submit {
    width: 100%;
    padding: 13px 24px;
    border-radius: 8px;
    background: #0b1c30;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    transition: background .2s;
    letter-spacing: .01em;
    font-family: inherit;
}

    .ca-form-submit:hover {
        background: #00a394;
    }

    .ca-form-submit:disabled {
        opacity: .7;
        cursor: not-allowed;
    }

/* Başarı mesajı */
.ca-form-success {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 8px;
    background: #e6f4f3;
    color: #00756c;
    font-size: 13px;
    line-height: 1.5;
    border: 0.5px solid rgba(0,163,148,.2);
}

/* ── Sağ kolon ── */
.contact-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-info-eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
}

/* Ofis kartı */
.office-card {
    background: #fff;
    border-radius: 14px;
    border: 0.5px solid rgba(11,28,48,.08);
    padding: 26px 28px;
}

.office-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 4px;
    background: #e6f4f3;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.office-name {
    font-size: 15px;
    font-weight: 500;
    color: #0b1c30;
    margin-bottom: 18px;
    letter-spacing: -.1px;
}

.office-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .office-details li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 12px;
        color: rgba(11,28,48,.55);
        line-height: 1.5;
    }

        .office-details li svg {
            flex-shrink: 0;
            color: #00a394;
            opacity: .8;
            margin-top: 1px;
        }

        .office-details li a {
            color: rgba(11,28,48,.55);
            text-decoration: none;
            transition: color .2s;
        }

            .office-details li a:hover {
                color: #00a394;
            }

.office-map-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 20px;
    font-size: 11px;
    font-weight: 500;
    color: #00a394;
    text-decoration: none;
    letter-spacing: .03em;
    border-bottom: 0.5px solid rgba(0,163,148,.3);
    padding-bottom: 2px;
}

    .office-map-link svg {
        transition: transform .2s;
    }

    .office-map-link:hover svg {
        transform: translateX(3px);
    }

/* Hızlı iletişim grid */
.quick-contacts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.qc-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 10px;
    border: 0.5px solid rgba(11,28,48,.08);
    background: #fff;
    transition: border-color .2s;
    cursor: default;
}

    .qc-card:hover {
        border-color: rgba(0,163,148,.3);
    }

.qc-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #f0faf9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #00a394;
}

.qc-lbl {
    font-size: 10px;
    color: rgba(11,28,48,.38);
    margin-bottom: 2px;
    letter-spacing: .03em;
}

.qc-val {
    font-size: 11px;
    font-weight: 500;
    color: #0b1c30;
}


/* ══════════════════════════════
   HARİTA
══════════════════════════════ */
.contact-map-wrap {
    position: relative;
    height: 380px;
    border-top: 0.5px solid rgba(11,28,48,.07);
}

    .contact-map-wrap iframe {
        width: 100%;
        height: 100%;
        border: 0;
        display: block;
        filter: grayscale(.15);
    }

.map-pin-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px 16px;
    border-radius: 10px;
    background: #fff;
    border: 0.5px solid rgba(11,28,48,.1);
}

.map-pin-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #00a394;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}

.map-pin-card strong {
    display: block;
    font-size: 12px;
    color: #0b1c30;
    margin-bottom: 2px;
}

.map-pin-card span {
    font-size: 10px;
    color: rgba(11,28,48,.45);
}


/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 960px) {
    .ca-page-hero-inner {
        grid-template-columns: 1fr;
    }

    .ca-page-hero-cards {
        flex-direction: row;
        flex-wrap: wrap;
        min-width: 0;
    }

    .ca-hero-info-card {
        flex: 1;
        min-width: 200px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .ca-form-row {
        grid-template-columns: 1fr;
    }

    .quick-contacts {
        grid-template-columns: 1fr;
    }

    .ca-page-hero-cards {
        flex-direction: column;
    }
}
/* ══════════════════════════════
   SAYFA HERO (about / contact paylaşımlı)
══════════════════════════════ */
.ca-page-hero {
    background: #0b1c30;
    padding: 64px 0 56px;
    position: relative;
    overflow: hidden;
}

.ca-page-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ca-page-hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.ca-page-hero-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: #00a394;
    opacity: .06;
    top: -120px;
    right: -80px;
}

.ca-page-hero-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ca-page-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 16px;
}

.ca-phe-line {
    display: block;
    width: 24px;
    height: 1px;
    background: #00a394;
}

.ca-phe-txt {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #00a394;
}

.ca-page-hero-title {
    font-size: 34px;
    font-weight: 400;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -.4px;
    margin-bottom: 14px;
}

    .ca-page-hero-title strong {
        font-weight: 600;
    }

.ca-page-hero-desc {
    font-size: 13px;
    color: rgba(255,255,255,.42);
    line-height: 1.8;
    max-width: 440px;
}

.ca-page-hero-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 240px;
}

.ca-hero-info-card {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 13px 17px;
    border-radius: 10px;
    border: 0.5px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.04);
}

.ca-hic-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(0,163,148,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #00a394;
}

.ca-hic-label {
    font-size: 10px;
    color: rgba(255,255,255,.35);
    margin-bottom: 2px;
}

.ca-hic-value {
    font-size: 12px;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
}

.ca-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
}

    .ca-breadcrumb a, .ca-breadcrumb span {
        font-size: 11px;
        color: rgba(255,255,255,.35);
        text-decoration: none;
    }

    .ca-breadcrumb svg {
        opacity: .3;
    }

.ca-bc-current {
    color: rgba(255,255,255,.55) !important;
}


/* ══════════════════════════════
   HİKAYE
══════════════════════════════ */
.about-story {
    background: #f7f6f3;
}

.about-eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 12px;
}

.about-eyebrow-line {
    display: block;
    width: 20px;
    height: 1px;
    background: #00a394;
}

.about-eyebrow-txt {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #00a394;
}

.about-section-title {
    font-size: 26px;
    font-weight: 400;
    color: #0b1c30;
    line-height: 1.2;
    letter-spacing: -.3px;
    margin-bottom: 18px;
}

    .about-section-title strong {
        font-weight: 600;
    }

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.about-story-text {
    font-size: 13px;
    color: rgba(11,28,48,.55);
    line-height: 1.85;
    margin-bottom: 14px;
}

.about-story-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.about-tag {
    padding: 5px 13px;
    border-radius: 6px;
    background: rgba(0,163,148,.08);
    color: #00756c;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .03em;
    border: 0.5px solid rgba(0,163,148,.2);
}

.about-story-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-story-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 22px;
    border-radius: 12px;
    background: #fff;
    border: 0.5px solid rgba(11,28,48,.07);
    transition: border-color .2s;
}

    .about-story-card:hover {
        border-color: rgba(0,163,148,.3);
    }

.about-story-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f0faf9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #00a394;
}

.about-story-card h4 {
    font-size: 13px;
    font-weight: 500;
    color: #0b1c30;
    margin-bottom: 5px;
}

.about-story-card p {
    font-size: 12px;
    color: rgba(11,28,48,.48);
    line-height: 1.65;
    margin: 0;
}


/* ══════════════════════════════
   MİSYON / VİZYON
══════════════════════════════ */
.about-mv {
    background: #0b1c30;
}

    .about-mv .ca-section-header {
        margin-bottom: 40px;
    }

.about-mv-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255,255,255,.07);
    border: 0.5px solid rgba(255,255,255,.07);
    border-radius: 14px;
    overflow: hidden;
}

.about-mv-card {
    background: #0b1c30;
    padding: 36px 32px;
    position: relative;
    transition: background .2s;
}

    .about-mv-card:hover {
        background: #112643;
    }

.about-mv-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 40px;
    background: #00a394;
    border-radius: 0 2px 2px 0;
}

.about-mv-num {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .1em;
    color: #00a394;
    margin-bottom: 20px;
    opacity: .7;
}

.about-mv-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(0,163,148,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: #00a394;
}

.about-mv-card h3 {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -.1px;
}

.about-mv-card p {
    font-size: 12px;
    color: rgba(255,255,255,.42);
    line-height: 1.75;
    margin: 0;
}

.about-values-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .about-values-list li {
        display: flex;
        align-items: flex-start;
        gap: 9px;
        font-size: 12px;
        color: rgba(255,255,255,.45);
        line-height: 1.5;
    }

        .about-values-list li svg {
            color: #00a394;
            flex-shrink: 0;
            margin-top: 1px;
            opacity: .8;
        }


/* ══════════════════════════════
   CTA
══════════════════════════════ */
.about-cta {
    background: #f7f6f3;
}

.about-cta-inner {
    text-align: center;
    max-width: 580px;
    margin: 0 auto;
}

.about-cta-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-bottom: 18px;
}

.about-cta-eline {
    display: block;
    width: 20px;
    height: 1px;
    background: #00a394;
}

.about-cta-title {
    font-size: 28px;
    font-weight: 400;
    color: #0b1c30;
    letter-spacing: -.3px;
    margin-bottom: 12px;
}

    .about-cta-title strong {
        font-weight: 600;
    }

.about-cta-desc {
    font-size: 13px;
    color: rgba(11,28,48,.45);
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}


/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 960px) {
    .ca-page-hero-inner {
        grid-template-columns: 1fr;
    }

    .ca-page-hero-cards {
        flex-direction: row;
        flex-wrap: wrap;
        min-width: 0;
    }

    .ca-hero-info-card {
        flex: 1;
        min-width: 180px;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-mv-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .ca-page-hero-cards {
        flex-direction: column;
    }

    .ca-page-hero-title {
        font-size: 26px;
    }
}

/* ══════════════════════════════
   SHOP LAYOUT
══════════════════════════════ */
.shop-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 24px;
    padding: 36px 0 72px;
    max-width: calc(var(--container-width, 1200px) + 48px);
    margin: 0 auto;
}

/* ── Sidebar ── */
.shop-sidebar {
    display: flex;
    flex-direction: column;
}

.shop-sb-card {
    background: #fff;
    border-radius: 12px;
    border: 0.5px solid rgba(11,28,48,.08);
    overflow: hidden;
    position: sticky;
    top: 24px;
}

.shop-sb-head {
    background: #0b1c30;
    padding: 20px 20px 18px;
}

.shop-sb-eyebrow {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
}

.shop-sb-line {
    display: block;
    width: 16px;
    height: 1px;
    background: #00a394;
}

.shop-sb-etxt {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: #00a394;
}

.shop-sb-title {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    letter-spacing: -.2px;
}

.shop-sb-search {
    padding: 12px 12px 8px;
    border-bottom: 0.5px solid rgba(11,28,48,.06);
}

.shop-search-wrap {
    position: relative;
}

    .shop-search-wrap svg {
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        stroke: rgba(11,28,48,.3);
        fill: none;
        pointer-events: none;
    }

.shop-search-input {
    width: 100%;
    padding: 8px 10px 8px 30px;
    font-size: 12px;
    font-family: inherit;
    border: 0.5px solid rgba(11,28,48,.12);
    border-radius: 7px;
    outline: none;
    background: #f7f6f3;
    color: #0b1c30;
    transition: border-color .2s;
}

    .shop-search-input:focus {
        border-color: #00a394;
        background: #fff;
    }

    .shop-search-input::placeholder {
        color: rgba(11,28,48,.28);
    }

.shop-cat-list {
    list-style: none;
    padding: 8px;
}

.shop-cat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background .15s;
    position: relative;
    user-select: none;
}

    .shop-cat-item:hover {
        background: #f7f6f3;
    }

    .shop-cat-item.active {
        background: rgba(0,163,148,.07);
    }

        .shop-cat-item.active::before {
            content: '';
            position: absolute;
            left: 0;
            top: 20%;
            height: 60%;
            width: 2px;
            background: #00a394;
            border-radius: 0 2px 2px 0;
        }

.shop-cat-icon {
    width: 32px;
    height: 32px;
    border-radius: 7px;
    background: #f7f6f3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: rgba(11,28,48,.4);
    transition: background .15s, color .15s;
}

.shop-cat-item.active .shop-cat-icon {
    background: #e6f4f3;
    color: #00a394;
}

.shop-cat-name {
    font-size: 12px;
    font-weight: 500;
    color: rgba(11,28,48,.5);
    flex: 1;
    transition: color .15s;
}

.shop-cat-item.active .shop-cat-name {
    color: #0b1c30;
}

.shop-cat-count {
    font-size: 10px;
    font-weight: 500;
    background: #f7f6f3;
    color: rgba(11,28,48,.35);
    padding: 2px 7px;
    border-radius: 10px;
}

.shop-cat-item.active .shop-cat-count {
    background: rgba(0,163,148,.1);
    color: #00756c;
}

/* ── Main ── */
.shop-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.shop-main-title {
    font-size: 18px;
    font-weight: 500;
    color: #0b1c30;
    letter-spacing: -.2px;
}

.shop-main-count {
    font-size: 12px;
    color: rgba(11,28,48,.38);
    margin-left: 8px;
}

.shop-sort-sel {
    font-family: inherit;
    font-size: 12px;
    color: #0b1c30;
    background: #fff;
    border: 0.5px solid rgba(11,28,48,.15);
    border-radius: 7px;
    padding: 8px 28px 8px 12px;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7' fill='none'%3E%3Cpath d='M1 1l4.5 5L10 1' stroke='%230b1c3060' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    transition: border-color .2s;
}

    .shop-sort-sel:focus {
        border-color: #00a394;
    }

/* ── Ürün grid ── */
.shop-prod-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: rgba(11,28,48,.07);
    border: 0.5px solid rgba(11,28,48,.07);
    border-radius: 12px;
    overflow: hidden;
}

/* Ürün kartı */
.shop-pc {
    background: #fff;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: background .2s;
    animation: shopFadeUp .35s ease both;
}

    .shop-pc:hover {
        background: #f9f9f7;
    }

@keyframes shopFadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Görsel alanı */
.shop-pc-img {
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f6f3;
    position: relative;
    overflow: hidden;
}

    .shop-pc-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .4s ease;
    }

.shop-pc:hover .shop-pc-img img {
    transform: scale(1.04);
}

.shop-pc-img-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: absolute;
    inset: 0;
    align-items: center;
    justify-content: center;
}

    .shop-pc-img-fallback svg {
        width: 36px;
        height: 36px;
        stroke: rgba(11,28,48,.18);
        fill: none;
        stroke-width: 1;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: stroke .2s, transform .3s;
    }

.shop-pc:hover .shop-pc-img-fallback svg {
    stroke: rgba(11,28,48,.3);
    transform: scale(1.06);
}

.shop-pc-img-txt {
    font-size: 9px;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: rgba(11,28,48,.22);
}

/* Badge & numara */
.shop-pc-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
}

    .shop-pc-badge.new {
        background: #e6f4f3;
        color: #00756c;
    }

    .shop-pc-badge.hot {
        background: #faeeda;
        color: #633806;
    }

.shop-pc-num {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 10px;
    color: rgba(11,28,48,.2);
    font-variant-numeric: tabular-nums;
}

/* Kart gövdesi */
.shop-pc-body {
    padding: 16px 18px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.shop-pc-cat {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #00a394;
}

.shop-pc-name {
    font-size: 13px;
    font-weight: 500;
    color: #0b1c30;
    line-height: 1.35;
    letter-spacing: -.1px;
}

.shop-pc-desc {
    font-size: 11px;
    color: rgba(11,28,48,.45);
    line-height: 1.65;
    flex: 1;
}

.shop-pc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 0.5px solid rgba(11,28,48,.06);
}

.shop-pc-tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.shop-pc-tag {
    font-size: 10px;
    padding: 2px 7px;
    border-radius: 4px;
    background: #f7f6f3;
    color: rgba(11,28,48,.45);
}

.shop-pc-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 500;
    color: #00a394;
    text-decoration: none;
    white-space: nowrap;
}

    .shop-pc-link svg {
        width: 11px;
        height: 11px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2.5;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: transform .2s;
    }

.shop-pc:hover .shop-pc-link svg {
    transform: translateX(2px);
}

/* Boş durum */
.shop-empty {
    grid-column: 1 / -1;
    padding: 64px;
    text-align: center;
    color: rgba(11,28,48,.3);
}

    .shop-empty svg {
        width: 36px;
        height: 36px;
        stroke: rgba(11,28,48,.2);
        fill: none;
        stroke-width: 1;
        display: block;
        margin: 0 auto 12px;
    }

    .shop-empty p {
        font-size: 13px;
    }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .shop-layout {
        grid-template-columns: 210px 1fr;
        gap: 18px;
    }

    .shop-prod-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-sb-card {
        position: static;
    }

    .shop-prod-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .shop-prod-grid {
        grid-template-columns: 1fr;
    }
}