/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   1. HERO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.ct-hero {
    position: relative;
    max-height: 70vh;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
   
}
 
.ct-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}
 
.ct-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: brightness(0.65) contrast(1.1) saturate(0.5);
}
 
.ct-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.05) 0%,
        rgba(0,0,0,0.5) 45%,
        rgba(0,0,0,1) 100%
    );
}
 
.ct-hero-dots {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}
 
.ct-hero-inner {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 80px 100px;
}
 
.ct-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
}
 
.ct-breadcrumb a,
.ct-breadcrumb span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.2s;
}
 
.ct-breadcrumb a:hover { color: #3db451; }
.ct-bc-sep { color: rgba(255,255,255,0.15) !important; }
.ct-bc-active { color: #3db451 !important; }
 
.ct-hero-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #3db451;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
 
.ct-hero-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: #3db451;
    flex-shrink: 0;
}
 
.ct-hero-title {
    font-size: clamp(44px, 6.5vw, 88px);
    font-weight: 800;
    color: #fff;
    line-height: 0.93;
    letter-spacing: -3px;
    max-width: 820px;
    margin-bottom: 26px;
    margin-top: 0;
}
 
.ct-hero-title em {
    font-style: italic;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
}
 
.ct-hero-sub {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    max-width: 500px;
    margin: 0;
}
 
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   2. INQUIRY TYPE CARDS  
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.ct-inq-types {
    background: #0c0c0c;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 64px 0;
}
 
.ct-inq-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}
 
.ct-inq-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
    margin-bottom: 36px;
}
 
.ct-inq-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}
 
.ct-inq-card {
    background: #0f0f0f;
    border: 1px solid rgba(255,255,255,0.07);
    padding: 40px 36px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.25s, border-color 0.25s;
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-align: left;
    font-family: 'Plus Jakarta Sans', sans-serif;
    appearance: none;
    -webkit-appearance: none;
}
 
.ct-inq-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: #3db451;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
 
.ct-inq-card:hover,
.ct-inq-card.active {
    background: #131313;
    border-color: rgba(255,255,255,0.11);
}
 
.ct-inq-card.active::after,
.ct-inq-card:hover::after { transform: scaleX(1); }
 
.ct-inq-icon {
    width: 46px;
    height: 46px;
    border-radius: 2px;
    background: rgba(61,180,81,0.1);
    border: 1px solid rgba(61,180,81,0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3db451;
    flex-shrink: 0;
    transition: background 0.2s;
}
 
.ct-inq-card.active .ct-inq-icon,
.ct-inq-card:hover .ct-inq-icon { background: rgba(61,180,81,0.18); }
 
.ct-inq-text { flex: 1; }
 
.ct-inq-title {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.3px;
    margin: 0 0 8px 0;
}
 
.ct-inq-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.45);
    line-height: 1.65;
    margin: 0;
}
 
.ct-inq-cta {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #3db451;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
}
 
.ct-inq-card:hover .ct-inq-cta,
.ct-inq-card.active .ct-inq-cta { gap: 12px; }
 
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   3. FORM SECTION  (accordion)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.ct-form-section {
    background: #000;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
 
.ct-form-section.open { max-height: 1800px; }
 
.ct-form-section-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s ease 0.15s, transform 0.35s ease 0.15s;
    pointer-events: none;
}
 
.ct-form-section.open .ct-form-section-inner {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}
 
.ct-form-pad { padding: 76px 0 88px; }
 
.ct-form-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 80px;
    align-items: start;
}
 
.ct-form-panel { display: none; }
.ct-form-panel.visible { display: block; }
 
/* Sidebar */
.ct-sidebar-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #3db451;
    margin-bottom: 14px;
}
 
.ct-sidebar-heading {
    font-size: clamp(22px, 2vw, 32px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -1.2px;
    line-height: 1.05;
    margin: 0 0 18px;
}
 
.ct-sidebar-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    line-height: 1.75;
    margin: 0 0 24px;
}
 
.ct-sidebar-note {
    font-size: 12px;
    color: rgba(255,255,255,0.22);
    line-height: 1.6;
    margin: 0 0 32px;
}
 
.ct-sidebar-note strong { color: rgba(255,255,255,0.4); }
 
.ct-sidebar-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.07);
}
 
.ct-sidebar-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s;
}
 
.ct-sidebar-contact:hover { color: #3db451; }
 
/* Form body */
.ct-form-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
 
/* Radio butonlar */
.ct-radios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 3px;
    margin-bottom: 3px;
}
 
.ct-radio {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.07);
    padding: 16px 15px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    transition: all 0.18s;
    user-select: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
 
.ct-radio:hover {
    border-color: rgba(61,180,81,0.25);
    color: rgba(255,255,255,0.8);
}
 
.ct-radio input[type="radio"] { display: none; }
 
.ct-radio-pip {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
    flex-shrink: 0;
    position: relative;
    transition: border-color 0.18s;
}
 
.ct-radio-pip::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: #3db451;
    opacity: 0;
    transition: opacity 0.18s;
}
 
.ct-radio.active {
    border-color: rgba(61,180,81,0.35);
    background: rgba(61,180,81,0.06);
    color: #fff;
}
 
.ct-radio.active .ct-radio-pip { border-color: #3db451; }
.ct-radio.active .ct-radio-pip::after { opacity: 1; }
 
/* Grid rows */
.ct-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
}
 
.ct-row-1 { display: block; }
 
/* Field */
.ct-field {
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.07);
    padding: 16px 20px 14px;
    transition: border-color 0.2s, background 0.2s;
    position: relative;
}
 
.ct-field:focus-within {
    border-color: rgba(61,180,81,0.4);
    background: #101010;
}
 
.ct-field label {
    display: block;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    margin-bottom: 9px;
    transition: color 0.2s;
}
 
.ct-field:focus-within label { color: #3db451; }
 
.ct-field input,
.ct-field select,
.ct-field textarea {
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
}
 
.ct-field select option { background: #111; color: #fff; }
 
.ct-field textarea {
    resize: none;
    height: 120px;
    line-height: 1.65;
}
 
.ct-field input::placeholder,
.ct-field textarea::placeholder { color: rgba(255,255,255,0.18); }
 
/* Select arrow */
.ct-field.ct-select::after {
    content: '';
    position: absolute;
    right: 20px;
    bottom: 19px;
    border: 4px solid transparent;
    border-top-color: rgba(255,255,255,0.25);
    pointer-events: none;
}
 
/* Submit */
.ct-submit-row {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 3px;
}
 
.ct-btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 44px;
    background: #3db451;
    color: #000;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
 
.ct-btn-submit:hover {
    background: #49d460;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(61,180,81,0.3);
}
 
.ct-btn-submit svg { transition: transform 0.2s; }
.ct-btn-submit:hover svg { transform: translateX(4px); }
 
.ct-submit-note {
    font-size: 12px;
    color: rgba(255,255,255,0.22);
    line-height: 1.6;
    max-width: 280px;
    margin: 0;
}
 
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   4. LOCATIONS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.ct-locations {
    background: #000000;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 90px 0;
}
 
.ct-locations-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}
 
.ct-locations-header { margin-bottom: 56px; }
 
.ct-locations-header h2 {
    font-size: clamp(30px, 3.5vw, 46px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -1.8px;
    line-height: 1;
    margin: 12px 0 0;
}
 
.ct-locations-header h2 span { color: rgba(255,255,255,0.2); }
 
.ct-loc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}
 
.ct-loc-card {
    background: #0f0f0f;
    border: 1px solid rgba(255,255,255,0.07);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: background 0.22s;
}
 
.ct-loc-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: #3db451;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
 
.ct-loc-card:hover { background: #131313; }
.ct-loc-card:hover::before { transform: scaleX(1); }
 
.ct-loc-badge {
    display: inline-block;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #3db451;
    background: rgba(61,180,81,0.1);
    border: 1px solid rgba(61,180,81,0.22);
    padding: 4px 10px;
    margin-bottom: 16px;
}
 
.ct-loc-name {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.3px;
    margin: 0 0 12px;
    line-height: 1.25;
}
 
.ct-loc-addr {
    font-size: 16px;
    color: rgba(255,255,255,0.4);
    line-height: 1.8;
    margin: 0 0 20px;
}
 
.ct-loc-links { display: flex; flex-direction: column; gap: 8px; }
 
.ct-loc-links a {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 16px;
    color: rgba(255,255,255,0.38);
    text-decoration: none;
    transition: color 0.2s;
}
 
.ct-loc-links a:hover { color: #3db451; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   5. RESPONSIVE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 768px) {

    /* ── Hero ── */
    .sec-hero {
        height: 60vh !important;
        min-height: 60vh !important;
        max-height: 60vh !important;
    }

    /* ── Section 5: Speak to Vision ATK expert ── */
    #section5 {
        background: #fff !important;
        background-image: none !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden;
    }

    #section5 .section-content {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        min-width: 0 !important;
        overflow: hidden;
    }

    /* Görsel ALTA */
    #section5 .image-box {
        order: 1 !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        height: 280px !important;
        min-height: 280px !important;
        flex-shrink: 0;
        overflow: hidden;
        display: block !important;
    }

    #section5 .image-box img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center top !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        /* lazy-load animasyonlarını sıfırla */
        transform: none !important;
        filter: none !important;
    }

    /* lazy-load class override */
    #section5 .image-box img.img-lazy,
    #section5 .image-box img.img-loaded {
        opacity: 1 !important;
        transform: none !important;
    }

    /* Metin ÜSTE */
    #section5 .text-content {
        order: 0 !important;
        width: 100% !important;
        min-width: 0 !important;
        padding: 28px 20px 36px !important;
        box-sizing: border-box;
    }

    #section5 h2 {
        font-size: 26px !important;
        line-height: 1.2 !important;
    }

    #section5 h3 {
        font-size: 15px !important;
        line-height: 1.65 !important;
    }

    /* ── Inquiry cards — alt alta ── */
    .ct-inq-cards {
        grid-template-columns: 1fr !important;
    }
    .ct-inq-inner {
        padding: 0 20px !important;
    }

    /* ── Form ── */
    .ct-form-section-inner {
        padding: 0 20px !important;
    }
    .ct-form-pad {
        padding: 40px 0 !important;
    }
    .ct-form-layout {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    .ct-row-2 {
        grid-template-columns: 1fr !important;
    }

    /* ── Locations ── */
    .ct-loc-grid {
        grid-template-columns: 1fr !important;
    }
    .ct-locations-inner {
        padding: 0 20px !important;
    }

    /* ── Sidebar contact gizle ── */
    .ct-form-sidebar .ct-sidebar-contacts {
        display: none !important;
    }
    .ct-sidebar-heading {
        font-size: 22px !important;
    }
    .ct-form-panel.visible {
        display: block !important;
    }
}

#section5 {
    margin-bottom: 0 !important;
    padding-bottom: 0px !important;
}