/* ============================================
   KENT DEPO – Kurumsal Self Storage
   Renk Paleti: Lacivert + Koyu Gri + Turuncu (sadece CTA)
   Tasarım Dili: Minimal, Kurumsal, Güvenilir
   ============================================ */

:root {
    --navy:        #0B2547;
    --navy-dark:   #081a35;
    --navy-darker: #050f24;
    --navy-mid:    #1a3a6b;
    --navy-light:  #e8eef8;
    --navy-50:     #f4f7fc;

    --brand-orange:        #E8541A;
    --brand-orange-dark:   #c44513;
    --brand-orange-darker: #a33610;
    --brand-orange-light:  #fde8df;

    --bronze:        #E8541A;
    --bronze-dark:   #c44513;
    --bronze-darker: #a33610;
    --bronze-light:  #fde8df;
    --bronze-cream:  #fff8f5;

    --blue:        #0B2547;
    --blue-dark:   #081a35;
    --blue-light:  #e8eef8;
    --orange:      #E8541A;
    --orange-dark: #c44513;
    --orange-light:#fde8df;

    --green:      #1a9e4a;
    --green-dark: #157a39;

    --dark:     #0B2547;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50:  #f9fafb;

    --bg:    #f9fafb;
    --white: #ffffff;

    --shadow-sm:    0 1px 3px rgba(11,37,71,0.06), 0 1px 2px rgba(11,37,71,0.04);
    --shadow:       0 4px 16px rgba(11,37,71,0.08);
    --shadow-lg:    0 12px 40px rgba(11,37,71,0.10);
    --shadow-blue:  0 8px 24px rgba(11,37,71,0.18);
    --shadow-orange:0 6px 18px rgba(232,84,26,0.28);

    --radius:    12px;
    --radius-lg: 18px;
    --transition: cubic-bezier(0.4,0,0.2,1);

    --safe-top:    env(safe-area-inset-top, 0px);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
    --safe-left:   env(safe-area-inset-left, 0px);
    --safe-right:  env(safe-area-inset-right, 0px);
    --bnav-height: 64px;
}

/* ============================================
   RESET & BASE
   ============================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: all 0.25s var(--transition); }
ul { list-style: none; }
button, input, select { font-family: inherit; outline: none; border: none; background: none; }
button { cursor: pointer; }
h1, h2, h3, h4 { color: var(--dark); font-weight: 700; line-height: 1.25; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.text-blue { color: var(--brand-orange); }

/* ============================================
   TOP BAND
   ============================================ */
.top-band {
    background: var(--navy-darker);
    color: rgba(255,255,255,0.78);
    font-size: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
}
.top-band::before { display: none; }
.top-band-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: 34px;
}
.top-band-marquee {
    flex: 1;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.top-band-track {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    white-space: nowrap;
    width: max-content;
    animation: topBandScroll 40s linear infinite;
}
.top-band-track:hover { animation-play-state: paused; }
.top-band-track span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 500;
    letter-spacing: 0.2px;
}
.top-band-track i { color: var(--brand-orange); font-size: 10px; }
.top-band-dot { color: rgba(255,255,255,0.22); padding: 0 2px; }
@keyframes topBandScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.top-band-side {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}
.top-band-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.60);
    font-size: 12px;
    transition: color 0.2s;
}
.top-band-link i { color: var(--brand-orange); font-size: 10px; }
.top-band-link:hover { color: rgba(255,255,255,0.90); }

/* ============================================
   HEADER
   ============================================ */
.header {
    background: var(--white);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--gray-200);
    transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: 0 2px 16px rgba(11,37,71,0.08); }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 68px;
}

/* LOGO */
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 36px; width: auto; display: block; object-fit: contain; }
.logo-divider { width: 1px; height: 26px; background: var(--gray-200); }
.logo-sub { font-size: 17px; font-weight: 700; color: var(--navy); letter-spacing: -0.3px; }
.logo-footer .logo-sub { color: rgba(255,255,255,0.9); }
.logo-footer .logo-divider { background: rgba(255,255,255,0.15); }

.logo-textual {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.logo-textual:hover { opacity: 0.9; }

.logo-mark {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--navy);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.logo-mark i { position: relative; z-index: 1; }

.logo-word {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 21px;
    color: var(--navy);
    letter-spacing: -0.5px;
    line-height: 1;
    display: inline-flex;
    align-items: baseline;
}
.logo-word-accent { color: var(--brand-orange); margin-left: 3px; }

.logo-footer.logo-textual .logo-word { color: var(--white); }
.logo-footer.logo-textual .logo-word-accent { color: var(--brand-orange); }
.logo-footer.logo-textual .logo-mark {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.15);
}
.nav-mobile-logo-text { margin-bottom: 8px; }
.header.scrolled .logo-mark { width: 36px; height: 36px; font-size: 16px; }
.header.scrolled .logo-word { font-size: 19px; }

/* NAV */
.nav-mobile-head,
.nav-mobile-cta,
.nav-mobile-actions,
.nav-mobile-info { display: none; }

.nav-list {
    display: flex;
    gap: 2px;
    align-items: center;
}
.nav-list > li { position: relative; }
.nav-list > li > a {
    color: var(--gray-600);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s, background 0.2s;
}
.nav-list > li > a:hover { color: var(--navy); background: var(--gray-50); }
.nav-list > li > a.active { color: var(--navy); }
.nav-list > li > a.active { position: relative; }
.nav-list > li > a.active::after {
    content: '';
    position: absolute;
    left: 12px; right: 12px; bottom: 2px;
    height: 2px;
    background: var(--brand-orange);
    border-radius: 2px;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.dropdown {
    position: absolute;
    top: calc(100% + 4px); left: 0;
    background: var(--white);
    min-width: 230px;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(11,37,71,0.12);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s var(--transition);
    border: 1px solid var(--gray-200);
    pointer-events: none;
}
/* Görünmez hover köprüsü — parent link ile dropdown arasındaki 4px boşluğu kaplar
   böylece imleç dropdown'a giderken hover kaybolmaz */
.dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
}
/* Parent li'ye padding-bottom ekleyip hover hit-box'ını genişlet */
.has-dropdown { padding-bottom: 4px; margin-bottom: -4px; }
.dropdown li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    font-size: 13px;
    color: var(--gray-700);
    font-weight: 500;
    border-radius: 7px;
    transition: all 0.15s;
}
.dropdown li a i {
    width: 16px;
    color: var(--brand-orange);
    font-size: 11px;
    text-align: center;
    flex-shrink: 0;
}
.dropdown li a:hover { background: var(--gray-50); color: var(--navy); }

.header-right { display: flex; align-items: center; gap: 12px; }

.phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    transition: all 0.2s;
}
.phone-btn:hover { border-color: var(--navy); background: var(--navy-50); }
.phone-icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--navy-light);
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    position: relative;
    overflow: visible;
}
.phone-icon::before,
.phone-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px solid var(--navy);
    animation: phoneRing 2.8s cubic-bezier(0.25,0.9,0.5,1) infinite;
    pointer-events: none;
    opacity: 0;
}
.phone-icon::after { animation-delay: 1.4s; }
@keyframes phoneRing {
    0%   { transform: scale(1);   opacity: 0.5; }
    100% { transform: scale(1.8); opacity: 0; }
}
.phone-btn:hover .phone-icon { background: var(--navy); color: var(--white); }

.lang-switcher { position: relative; }
.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-600);
    cursor: pointer;
    background: var(--white);
    transition: all 0.2s;
}
.lang-btn .flag { font-size: 14px; }
.lang-btn .lang-arrow { font-size: 8px; color: var(--gray-400); transition: transform 0.25s; }
.lang-btn:hover { border-color: var(--navy); color: var(--navy); }
.lang-switcher.open .lang-arrow { transform: rotate(180deg); }
.lang-switcher.open .lang-btn { border-color: var(--navy); color: var(--navy); }
.lang-menu {
    position: absolute;
    top: calc(100% + 6px); right: 0;
    min-width: 160px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(11,37,71,0.12);
    border: 1px solid var(--gray-200);
    padding: 5px;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: all 0.2s var(--transition);
    z-index: 100;
}
.lang-switcher.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu li a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 10px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    transition: all 0.15s;
}
.lang-menu li a:hover { background: var(--gray-50); color: var(--navy); }
.lang-menu li a.active { background: var(--navy-light); color: var(--navy); }
.lang-menu li a .flag { font-size: 15px; }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}
.menu-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s var(--transition);
    transform-origin: center;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11,37,71,0.45);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 996;
}
body.nav-open .menu-overlay { opacity: 1; visibility: visible; }

/* ============================================
   HERO
   ============================================ */
.hero {
    background: var(--bg);
    padding: 40px 0 48px;
    position: relative;
    overflow: hidden;
    min-height: calc(100svh - 140px);
    display: flex;
    align-items: center;
}
.hero > .container { width: 100%; position: relative; z-index: 2; }
@media (min-height: 900px) { .hero { min-height: 0; padding: 48px 0 60px; } }
@media (max-width: 640px) { .hero { min-height: calc(100svh - 110px); padding: 28px 0 32px; } }

.hero-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.hero-deco-1 {
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(11,37,71,0.04) 0%, transparent 70%);
    top: -60px; right: -60px;
}
.hero-deco-2 {
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(232,84,26,0.04) 0%, transparent 70%);
    bottom: 40px; left: 30%;
}
.hero-deco-3 { display: none; }

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
    gap: 56px;
    align-items: start;
    position: relative;
    z-index: 2;
}
.hero-left { min-width: 0; display: flex; flex-direction: column; }
.hero-right { min-width: 0; }

.hero-eyebrow-mini {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    color: var(--gray-500);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.he-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--brand-orange);
    flex-shrink: 0;
}

.hero-title {
    font-size: clamp(2rem, 3.8vw, 3rem);
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 14px;
    color: var(--navy);
    line-height: 1.1;
}
.hero-desc {
    font-size: 15px;
    color: var(--gray-600);
    max-width: 500px;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Segment Tabs */
.hero-tabhero { position: relative; }
.hero-segments {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin: 24px 0 20px;
    padding: 5px;
    background: var(--gray-100);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
}
.hero-segment {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 12px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 9px;
    cursor: pointer;
    transition: all 0.2s var(--transition);
    text-align: left;
    color: var(--gray-500);
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
    position: relative;
}
.hero-segment:hover:not(.is-active) {
    background: rgba(255,255,255,0.6);
    color: var(--navy);
}
.hero-segment.is-active {
    background: var(--white);
    border-color: var(--gray-200);
    box-shadow: 0 2px 8px rgba(11,37,71,0.07);
    color: var(--navy);
}
.hero-segment.is-active::before {
    content: '';
    position: absolute;
    top: -1px; left: 14px; right: 14px;
    height: 2px;
    background: var(--brand-orange);
    border-radius: 2px;
}
.hero-segment-icon {
    width: 34px; height: 34px;
    border-radius: 8px;
    background: var(--navy-light);
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    transition: all 0.2s;
}
.hero-segment.is-active .hero-segment-icon {
    background: var(--navy);
    color: var(--white);
}
.hero-segment-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
    line-height: 1.2;
}
.hero-segment-text strong { font-size: 13px; font-weight: 700; color: inherit; }
.hero-segment-text small { font-size: 10.5px; font-weight: 500; color: var(--gray-400); }
.hero-segment.is-active .hero-segment-text small { color: var(--brand-orange); }

.hero-panels { position: relative; }
.hero-panel {
    display: none;
    animation: heroPanelFadeIn 0.3s var(--transition) forwards;
}
.hero-panel.is-active { display: block; }
.hero-panel.is-active:not([hidden]) { animation: heroPanelFadeIn 0.3s var(--transition) forwards; }
@keyframes heroPanelFadeIn {
    0%   { opacity: 0; transform: translateY(6px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-slide-features {
    list-style: none;
    margin: 16px 0 22px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.hero-slide-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    line-height: 1.5;
}
.hero-slide-features li i {
    color: var(--brand-orange);
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 24px 0 26px;
}
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    background: var(--brand-orange);
    color: var(--white);
    font-weight: 700;
    font-size: 14.5px;
    border-radius: 10px;
    transition: all 0.2s var(--transition);
    letter-spacing: -0.1px;
    box-shadow: 0 4px 14px rgba(232,84,26,0.25);
}
.btn-hero-primary:hover {
    background: var(--brand-orange-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(232,84,26,0.32);
}
.btn-hero-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 18px;
    color: var(--navy);
    font-weight: 600;
    font-size: 14px;
    border-radius: 10px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    transition: all 0.2s;
}
.btn-hero-link i { color: var(--brand-orange); font-size: 13px; }
.btn-hero-link:hover { border-color: var(--navy); background: var(--navy-50); }

.hero-trust-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 20px;
    padding: 16px 0 4px;
    border-top: 1px solid var(--gray-200);
    list-style: none;
    margin: 0;
}
.hero-trust-strip li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-600);
}
.hero-trust-strip li i { color: var(--brand-orange); font-size: 12px; }

/* ============================================
   BOOKING / CALC CARD
   ============================================ */
.booking-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px 26px 26px;
    box-shadow: 0 4px 24px rgba(11,37,71,0.09);
    border: 1px solid var(--gray-200);
}
.booking-head { margin-bottom: 16px; }
.booking-head h2 { font-size: 18px; color: var(--navy); margin-bottom: 3px; font-weight: 700; }
.booking-head p { color: var(--gray-500); font-size: 12.5px; }
.booking-form { display: flex; flex-direction: column; gap: 10px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; }
.form-group label {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--gray-500);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.input-icon { position: relative; }
.input-icon i {
    position: absolute;
    left: 14px; top: 50%;
    transform: translateY(-50%);
    color: var(--navy);
    font-size: 12px;
}
.input-icon input { padding-left: 36px !important; }
.form-group input, .form-group select {
    padding: 9px 12px;
    border: 1.5px solid var(--gray-200);
    border-radius: 8px;
    font-size: 13px;
    color: var(--dark);
    background: var(--white);
    transition: all 0.2s;
    width: 100%;
}
.form-group input:focus, .form-group select:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(11,37,71,0.08);
}
.form-group input::placeholder { color: var(--gray-400); }

.calc-card .booking-head h2 { display: flex; align-items: center; gap: 9px; }
.calc-card .booking-head h2 i { color: var(--brand-orange); font-size: 20px; }

.calc-items {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin: 4px 0 14px;
    max-height: 220px;
    overflow-y: auto;
    padding-right: 2px;
}
.calc-items::-webkit-scrollbar { width: 4px; }
.calc-items::-webkit-scrollbar-track { background: var(--gray-100); border-radius: 4px; }
.calc-items::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 4px; }

.calc-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 8px 10px;
    transition: all 0.2s;
}
.calc-item:hover { border-color: var(--navy); background: var(--white); }
.calc-item-info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
}
.calc-item-info i {
    color: var(--navy);
    font-size: 15px;
    width: 28px; height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-light);
    border-radius: 7px;
    flex-shrink: 0;
}
.calc-item-name {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--gray-800);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.calc-item-count {
    min-width: 28px;
    text-align: center;
    font-weight: 700;
    color: var(--navy);
    font-size: 15px;
    font-variant-numeric: tabular-nums;
}
.calc-item-btn {
    width: 28px; height: 28px;
    border-radius: 7px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
    flex-shrink: 0;
    font-size: 11px;
}
.calc-item-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

.calc-result {
    background: var(--navy);
    color: var(--white);
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 12px;
}
.calc-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    font-size: 13.5px;
}
.calc-result-row span { opacity: 0.75; }
.calc-result-row strong { font-size: 17px; font-weight: 700; }
.calc-result-price {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 10px;
    margin-top: 4px;
}
.calc-result-price span { opacity: 1; font-weight: 600; }
.calc-result-price strong { font-size: 22px; color: var(--brand-orange); font-weight: 800; }

/* ============================================
   BUTTONS
   ============================================ */
.btn-orange {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; padding: 12px 28px;
    background: var(--brand-orange); color: var(--white);
    border-radius: 10px; font-weight: 700; font-size: 14px;
    box-shadow: 0 4px 14px rgba(232,84,26,0.25);
    transition: all 0.2s; border: none; cursor: pointer; width: 100%; margin-top: 2px;
}
.btn-orange:hover { background: var(--brand-orange-dark); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(232,84,26,0.32); }
.btn-orange-sm { display: inline-flex; align-items: center; justify-content: center; padding: 9px 20px; background: var(--brand-orange); color: var(--white); border-radius: 8px; font-weight: 700; font-size: 12.5px; transition: all 0.2s; }
.btn-orange-sm:hover { background: var(--brand-orange-dark); transform: translateY(-1px); }
.btn-blue-sm { display: inline-flex; align-items: center; justify-content: center; padding: 9px 22px; background: var(--navy); color: var(--white); border-radius: 8px; font-weight: 700; font-size: 12.5px; transition: all 0.2s; }
.btn-blue-sm:hover { background: var(--navy-dark); transform: translateY(-1px); }
.btn-outline-blue { display: inline-flex; align-items: center; justify-content: center; padding: 12px 28px; background: transparent; color: var(--navy); border: 1.5px solid var(--navy); border-radius: 10px; font-weight: 700; font-size: 14px; transition: all 0.2s; }
.btn-outline-blue:hover { background: var(--navy); color: var(--white); }
.btn-white-outline { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 26px; background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); border-radius: 10px; font-weight: 700; font-size: 14px; transition: all 0.2s; }
.btn-white-outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.whatsapp-link { text-align: center; color: var(--gray-500); font-size: 12.5px; margin-top: -2px; }
.whatsapp-link strong { color: var(--green); }
.whatsapp-link:hover strong { color: var(--green-dark); }

/* ============================================
   TRUST BAND
   ============================================ */
.trust-band { background: var(--navy); padding: 32px 0; position: relative; }
.trust-band::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--brand-orange); }
.trust-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.trust-band-item { display: flex; align-items: center; gap: 14px; flex: 1; min-width: 0; justify-content: center; }
.trust-band-icon { width: 46px; height: 46px; border-radius: 10px; background: rgba(255,255,255,0.07); color: var(--brand-orange); display: inline-flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; border: 1px solid rgba(255,255,255,0.08); }
.trust-band-text { display: flex; flex-direction: column; gap: 2px; line-height: 1.15; }
.trust-band-text strong { font-size: 21px; font-weight: 800; color: var(--white); letter-spacing: -0.5px; white-space: nowrap; }
.trust-band-text span { font-size: 12px; color: rgba(255,255,255,0.55); font-weight: 500; white-space: nowrap; }
.trust-band-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.10); flex-shrink: 0; }

/* ============================================
   SECTION COMMON
   ============================================ */
.section-head { text-align: center; max-width: 680px; margin: 0 auto 36px; }
.section-tag { display: inline-flex; align-items: center; gap: 8px; padding: 5px 14px; background: var(--navy-light); color: var(--navy); border-radius: 6px; font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; }
.section-tag-icon { width: 20px; height: 20px; border-radius: 50%; background: var(--navy); color: var(--white); display: inline-flex; align-items: center; justify-content: center; font-size: 9px; flex-shrink: 0; }
.section-tag::after { display: none; }
.section-title { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-bottom: 0; letter-spacing: -0.8px; color: var(--navy); font-weight: 800; }
.section-title::after { display: none; }
.section-sub { color: var(--gray-600); font-size: 15px; max-width: 680px; margin: 12px auto 0; line-height: 1.65; }
.section-cta { text-align: center; margin-top: 32px; }

/* ============================================
   FLEET SLIDER
   ============================================ */
.fleet-section { padding: 80px 0; background: var(--white); overflow: hidden; }
.fleet-slider-wrap { position: relative; width: 100%; }
.fleet-slider { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 8px 0 28px; scrollbar-width: none; -ms-overflow-style: none; }
.fleet-slider::-webkit-scrollbar { display: none; }
.fleet-slider .fleet-card { flex: 0 0 calc((100% - 40px) / 3); scroll-snap-align: start; min-width: 0; }
.slider-arrow { position: absolute; top: 38%; transform: translateY(-50%); width: 44px; height: 44px; background: var(--white); border: 1px solid var(--gray-200); border-radius: 50%; color: var(--navy); font-size: 14px; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: var(--shadow-sm); z-index: 5; transition: all 0.2s; }
.slider-arrow:hover { background: var(--navy); color: var(--white); border-color: var(--navy); transform: translateY(-50%) scale(1.05); }
.slider-arrow:disabled { opacity: 0.3; cursor: not-allowed; }
.slider-arrow:disabled:hover { transform: translateY(-50%); background: var(--white); color: var(--gray-400); border-color: var(--gray-200); }
.slider-prev { left: 6px; }
.slider-next { right: 6px; }
.slider-dots { display: flex; justify-content: center; gap: 6px; margin-top: 16px; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gray-300); border: none; cursor: pointer; transition: all 0.25s; padding: 0; }
.slider-dot.active { background: var(--navy); width: 24px; border-radius: 4px; }
.slider-dot:hover:not(.active) { background: var(--gray-400); }

.fleet-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm); transition: all 0.3s var(--transition); }
.fleet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--navy); }
.fleet-img { position: relative; background: var(--bg); padding: 36px 28px; height: 220px; display: flex; align-items: center; justify-content: center; }
.fleet-img img { max-height: 150px; width: auto; object-fit: contain; filter: drop-shadow(0 10px 20px rgba(11,37,71,0.12)); }
.badge { position: absolute; top: 14px; left: 14px; padding: 5px 14px; border-radius: 6px; font-size: 10.5px; font-weight: 700; letter-spacing: 0.5px; }
.badge-green { background: var(--green); color: var(--white); }
.badge-gray { background: var(--gray-200); color: var(--gray-700); }
.badge-orange { background: var(--brand-orange); color: var(--white); }
.fleet-body { padding: 22px 24px; }
.fleet-body h3 { font-size: 20px; margin-bottom: 6px; color: var(--navy); font-weight: 700; }
.fleet-sub { color: var(--gray-500); font-size: 13px; margin-bottom: 16px; }
.fleet-specs { display: flex; gap: 14px; flex-wrap: wrap; padding-bottom: 16px; border-bottom: 1px solid var(--gray-100); margin-bottom: 16px; }
.fleet-specs li { display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; color: var(--gray-600); font-weight: 500; }
.fleet-specs i { color: var(--navy); }
.fleet-foot { display: flex; justify-content: space-between; align-items: center; }
.price-label { display: block; font-size: 11px; color: var(--gray-500); margin-bottom: 2px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.price-amount { font-size: 20px; font-weight: 800; color: var(--navy); }

/* Storage Photo Cards */
.fleet-slider .storage-card .fleet-img.storage-photo-wrap { position: relative !important; display: block !important; width: 100% !important; height: 0 !important; min-height: 0 !important; padding: 0 0 100% 0 !important; margin: 0 !important; overflow: hidden !important; background: var(--gray-100) !important; align-items: initial !important; justify-content: initial !important; border-radius: 0 !important; }
.fleet-slider .storage-card .fleet-img.storage-photo-wrap .storage-photo { position: absolute !important; top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important; width: 100% !important; height: 100% !important; max-width: none !important; max-height: none !important; object-fit: cover !important; object-position: center !important; display: block !important; filter: none !important; margin: 0 !important; padding: 0 !important; transition: transform 0.5s var(--transition); }
.fleet-slider .storage-card:hover .storage-photo { transform: scale(1.04); }
.fleet-slider .storage-card { overflow: hidden !important; display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--gray-200) !important; border-radius: 14px !important; box-shadow: 0 2px 8px rgba(11,37,71,0.05); transition: all 0.3s var(--transition); }
.fleet-slider .storage-card:hover { border-color: var(--navy) !important; box-shadow: 0 12px 32px rgba(11,37,71,0.10) !important; transform: translateY(-4px); }
.fleet-slider .storage-card .fleet-body { padding: 18px 20px 20px !important; background: var(--white); }
.fleet-slider .storage-card .fleet-body > h3 { font-size: 17px !important; font-weight: 700 !important; color: var(--navy) !important; margin: 0 0 5px 0 !important; letter-spacing: -0.3px !important; line-height: 1.25 !important; display: flex !important; align-items: center !important; gap: 8px !important; }
.fleet-slider .storage-card .fleet-body > h3::before { content: ''; width: 3px; height: 14px; background: var(--brand-orange); border-radius: 2px; flex-shrink: 0; }
.fleet-slider .storage-card .fleet-body > .fleet-sub { font-size: 12.5px !important; color: var(--gray-500) !important; margin: 0 0 14px 0 !important; line-height: 1.5 !important; font-weight: 500 !important; min-height: 38px; padding-left: 11px; }
.fleet-slider .storage-card .fleet-body > .fleet-specs { display: none !important; }
.fleet-slider .storage-card .fleet-foot { margin: 0 !important; padding: 12px 0 0 !important; border-top: 1px solid var(--gray-100) !important; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.fleet-slider .storage-card .fleet-foot .price-label { font-size: 10px; color: var(--gray-400); font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; display: block; margin-bottom: 2px; }
.fleet-slider .storage-card .fleet-foot .price-amount { font-size: 20px; font-weight: 800; color: var(--navy); letter-spacing: -0.4px; line-height: 1; }
.fleet-slider .storage-card .fleet-foot .btn-blue-sm { display: inline-flex; align-items: center; gap: 6px; padding: 9px 16px; font-size: 12.5px; font-weight: 700; border-radius: 8px; background: var(--navy); color: var(--white); border: none; transition: all 0.2s; white-space: nowrap; }
.fleet-slider .storage-card .fleet-foot .btn-blue-sm i { font-size: 10px; transition: transform 0.2s; }
.fleet-slider .storage-card .fleet-foot .btn-blue-sm:hover { background: var(--navy-dark); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(11,37,71,0.20); }
.fleet-slider .storage-card .fleet-foot .btn-blue-sm:hover i { transform: translateX(2px); }

/* ============================================
   NASIL ÇALIŞIR
   ============================================ */
.how-section { padding: 80px 0; background: var(--bg); }
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; list-style: none; padding: 0; }
.how-step { position: relative; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 28px 22px 24px; text-align: center; transition: all 0.25s var(--transition); }
.how-step:hover { border-color: var(--navy); transform: translateY(-4px); box-shadow: var(--shadow); }
.how-step:not(:last-child)::after { content: ''; position: absolute; top: 52px; right: -14px; width: 28px; height: 1px; background: var(--gray-300); z-index: 1; }
.how-step-no { position: absolute; top: 14px; right: 16px; font-size: 32px; font-weight: 800; color: var(--gray-100); line-height: 1; z-index: 0; }
.how-step-icon { width: 56px; height: 56px; margin: 0 auto 16px; background: var(--navy); border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; color: var(--white); font-size: 22px; position: relative; z-index: 2; }
.how-step h3 { font-size: 16px; margin-bottom: 8px; color: var(--navy); font-weight: 700; }
.how-step p { font-size: 13.5px; color: var(--gray-600); line-height: 1.6; }

/* ============================================
   HİZMETLER
   ============================================ */
.services-section { padding: 80px 0; background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { background: var(--white); border-radius: var(--radius); padding: 22px; border: 1px solid var(--gray-200); transition: all 0.25s var(--transition); }
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--navy); }
.service-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--navy-light); color: var(--navy); display: inline-flex; align-items: center; justify-content: center; font-size: 17px; margin-bottom: 14px; }
.service-icon.icon-orange { background: var(--brand-orange-light); color: var(--brand-orange); }
.service-card h3 { font-size: 16px; margin-bottom: 7px; color: var(--navy); font-weight: 700; }
.service-card p { color: var(--gray-600); font-size: 13px; margin-bottom: 12px; line-height: 1.6; }
.service-link { color: var(--navy); font-size: 13px; font-weight: 700; display: inline-flex; align-items: center; gap: 5px; }
.service-link:hover { color: var(--brand-orange); gap: 9px; }

/* ============================================
   LOKASYONLAR
   ============================================ */
.routes-section { padding: 80px 0; background: var(--bg); }
.routes-list { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); max-width: 960px; margin: 0 auto; }
.route-row { display: grid; grid-template-columns: minmax(0, 1fr) auto auto auto; align-items: center; gap: 24px; padding: 16px 26px; border-bottom: 1px solid var(--gray-100); transition: background 0.2s; }
.route-row:last-child { border-bottom: none; }
.route-row:hover { background: var(--gray-50); }
.route-line { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 14.5px; color: var(--dark); min-width: 0; }
.route-line .route-from { color: var(--gray-700); font-weight: 600; }
.route-line .route-to { color: var(--navy); font-weight: 700; }
.route-line i { color: var(--brand-orange); font-size: 11px; }
.route-time { font-size: 12.5px; color: var(--gray-500); font-weight: 500; white-space: nowrap; }
.route-price { font-size: 17px; font-weight: 800; color: var(--navy); white-space: nowrap; min-width: 80px; text-align: right; }
.route-action { display: inline-flex; align-items: center; gap: 5px; padding: 7px 14px; background: var(--navy-light); color: var(--navy); border-radius: 7px; font-size: 12.5px; font-weight: 700; transition: all 0.2s; white-space: nowrap; }
.route-action:hover { background: var(--navy); color: var(--white); gap: 8px; }
.route-action i { font-size: 10px; }
.location-row .route-from { color: var(--navy); font-weight: 700; }
.location-row .route-from i { color: var(--brand-orange); margin-right: 5px; }
.location-row .route-to { color: var(--gray-500); font-weight: 500; }
.location-row .route-time i { color: var(--brand-orange); margin-right: 3px; }

/* ============================================
   NEDEN BİZ
   ============================================ */
.why-section { padding: 80px 0; background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-item { background: var(--white); padding: 28px 24px; border-radius: var(--radius); border: 1px solid var(--gray-200); transition: all 0.25s; }
.why-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--navy); }
.why-icon { width: 50px; height: 50px; border-radius: 12px; background: var(--navy-light); color: var(--navy); display: inline-flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 16px; }
.why-item h3 { font-size: 16px; margin-bottom: 7px; color: var(--navy); font-weight: 700; }
.why-item p { color: var(--gray-600); font-size: 13.5px; line-height: 1.65; }

/* ============================================
   KARŞILAŞTIRMA TABLOSU
   ============================================ */
.compare-section { padding: 80px 0; background: var(--bg); }
.compare-table-wrap { margin-top: 40px; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--gray-200); overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.compare-table th, .compare-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--gray-200); font-size: 14px; }
.compare-table thead th { background: var(--navy); color: var(--white); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.4px; border-bottom: none; }
.compare-table th.compare-us { background: var(--brand-orange); position: relative; }
.compare-table th.compare-us::after { content: '⭐ Önerilen'; display: block; font-size: 10px; margin-top: 2px; opacity: 0.9; }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody td:first-child { font-weight: 600; color: var(--navy); }
.compare-table td.compare-us { background: rgba(232,84,26,0.05); color: var(--navy); font-weight: 700; }
.compare-table td.compare-us i.fa-circle-check { color: var(--brand-orange); }
.compare-table .fa-circle-check { color: #1a9e4a; font-size: 17px; }
.compare-table .fa-circle-xmark { color: #cc2222; font-size: 17px; }

/* ============================================
   MÜŞTERİ YORUMLARI
   ============================================ */
.reviews-section { padding: 80px 0; background: var(--white); }
.reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.review-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 24px 20px; transition: all 0.25s var(--transition); display: flex; flex-direction: column; }
.review-card:hover { transform: translateY(-3px); border-color: var(--navy); box-shadow: var(--shadow); }
.review-stars { color: #f5a623; margin-bottom: 12px; display: flex; gap: 2px; font-size: 13px; }
.review-text { color: var(--gray-700); font-size: 14px; line-height: 1.65; margin-bottom: 20px; flex: 1; }
.review-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--gray-100); padding-top: 14px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: var(--white); font-weight: 800; font-size: 13px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.review-author strong { display: block; font-size: 13.5px; color: var(--navy); font-weight: 700; }
.review-author span { font-size: 12px; color: var(--gray-500); }

/* ============================================
   BELGELER & SERTİFİKALAR
   ============================================ */
.certs-section { padding: 80px 0; background: var(--bg); position: relative; }
.certs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.cert-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 12px; padding: 26px 22px; transition: all 0.25s var(--transition); position: relative; display: flex; flex-direction: column; }
.cert-card::before { content: ''; position: absolute; top: 0; left: 20px; right: 20px; height: 2px; background: var(--brand-orange); border-radius: 0 0 3px 3px; opacity: 0; transition: opacity 0.25s; }
.cert-card:hover { border-color: var(--navy); box-shadow: var(--shadow); transform: translateY(-3px); }
.cert-card:hover::before { opacity: 1; }
.cert-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--navy-light); color: var(--navy); display: inline-flex; align-items: center; justify-content: center; font-size: 20px; border: 1px solid var(--gray-200); margin-bottom: 16px; }
.cert-card:nth-child(2) .cert-icon, .cert-card:nth-child(5) .cert-icon { background: var(--brand-orange-light); color: var(--brand-orange); }
.cert-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin: 0 0 7px 0; letter-spacing: -0.2px; }
.cert-card p { font-size: 13px; color: var(--gray-600); line-height: 1.6; margin: 0 0 14px 0; flex: 1; }
.cert-num { display: inline-flex; align-items: center; gap: 5px; font-family: 'SF Mono', 'Menlo', monospace; font-size: 11px; font-weight: 600; color: var(--brand-orange-darker); background: var(--brand-orange-light); padding: 4px 10px; border-radius: 5px; align-self: flex-start; }
.certs-foot { margin-top: 32px; text-align: center; }
.certs-foot-text { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--gray-700); padding: 10px 20px; background: var(--white); border-radius: 999px; border: 1px solid var(--gray-200); }
.certs-foot-text i { color: #1a9e4a; font-size: 15px; }
.certs-foot-text a { color: var(--brand-orange-darker); font-weight: 700; text-decoration: underline; text-decoration-color: var(--brand-orange-light); text-underline-offset: 3px; }
.certs-foot-text a:hover { text-decoration-color: var(--brand-orange); }

/* ============================================
   SSS
   ============================================ */
.faq-section { padding: 80px 0; background: var(--white); }
.faq-list { max-width: 820px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; transition: all 0.2s; }
.faq-item[open] { border-color: var(--navy); box-shadow: var(--shadow-sm); }
.faq-item summary { padding: 16px 22px; cursor: pointer; font-weight: 700; color: var(--navy); font-size: 15px; list-style: none; position: relative; padding-right: 52px; transition: color 0.2s; }
.faq-item summary:
:-webkit-details-marker { display: none; }
.faq-item summary::after { content: '\f067'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); width: 26px; height: 26px; background: var(--navy-light); color: var(--navy); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 10px; transition: all 0.2s; }
.faq-item[open] summary::after { content: '\f068'; background: var(--navy); color: var(--white); }
.faq-item summary:hover { color: var(--brand-orange); }
.faq-item p { padding: 0 22px 20px; color: var(--gray-700); font-size: 14px; line-height: 1.7; }
.faq-item p strong { color: var(--navy); }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section { padding: 80px 0; background: var(--navy); position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--brand-orange); }
.cta-section::after { display: none; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 28px; position: relative; z-index: 2; }
.cta-inner h2 { color: var(--white); font-size: clamp(1.5rem, 2.8vw, 2.2rem); line-height: 1.3; }
.cta-sub { color: rgba(255,255,255,0.75); font-size: 15px; margin: 10px 0 0; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-actions .btn-orange { width: auto; padding: 14px 28px; background: var(--brand-orange); border: none; box-shadow: 0 4px 14px rgba(232,84,26,0.35); }
.cta-actions .btn-orange:hover { background: var(--brand-orange-dark); box-shadow: 0 8px 20px rgba(232,84,26,0.45); }
.cta-actions .btn-orange::before { display: none; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--navy-darker); color: rgba(255,255,255,0.70); padding: 64px 0 0; position: relative; overflow: hidden; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--brand-orange); z-index: 2; }
.footer-pattern { display: none; }
.footer-orb { display: none; }
.footer .container { position: relative; z-index: 1; }
.footer .logo-img { filter: brightness(1.1); }

.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer-grid-5 { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr; gap: 36px; padding-bottom: 48px; }

.footer-col { opacity: 1; transform: none; }
.footer-col.is-visible { opacity: 1; transform: none; }

.footer-about { margin: 16px 0 20px; font-size: 13.5px; line-height: 1.75; color: rgba(255,255,255,0.60); }
.social { display: flex; gap: 8px; }
.social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.75); display: inline-flex; align-items: center; justify-content: center; font-size: 14px; transition: all 0.25s; border: 1px solid rgba(255,255,255,0.08); }
.social a::before { display: none; }
.social a i { position: relative; z-index: 1; }
.social a:hover { background: var(--brand-orange); color: var(--white); border-color: var(--brand-orange); transform: translateY(-2px); box-shadow: 0 6px 14px rgba(232,84,26,0.30); }

.footer-col h4 { color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 18px; position: relative; padding-bottom: 10px; display: flex; align-items: center; justify-content: space-between; letter-spacing: 0.2px; }
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 24px; height: 2px; background: var(--brand-orange); border-radius: 2px; }
.footer-acc-icon { display: none; color: rgba(255,255,255,0.4); font-size: 11px; transition: transform 0.3s; }

.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: 13.5px; color: rgba(255,255,255,0.60); display: inline-flex; align-items: center; gap: 7px; transition: all 0.2s; }
.footer-links a::before { content: '›'; color: var(--brand-orange); opacity: 0; width: 0; overflow: hidden; transition: all 0.2s; font-weight: 700; }
.footer-links a:hover { color: rgba(255,255,255,0.90); transform: translateX(2px); }
.footer-links a:hover::before { opacity: 1; width: 10px; }

.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; margin-bottom: 10px; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-contact li:hover { color: rgba(255,255,255,0.90); }
.footer-contact i { color: var(--brand-orange); margin-top: 3px; width: 14px; flex-shrink: 0; }

.footer-corporate { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 24px 0 20px; margin: 28px 0 0; border-top: 1px solid rgba(255,255,255,0.07); }
.footer-corp-item { display: flex; flex-direction: column; gap: 3px; }
.footer-corp-label { font-size: 10px; font-weight: 700; letter-spacing: 1.2px; color: var(--brand-orange); text-transform: uppercase; }
.footer-corp-value { font-size: 12.5px; color: rgba(255,255,255,0.80); font-weight: 500; line-height: 1.4; }

.footer-bottom { padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.07); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 12.5px; color: rgba(255,255,255,0.45); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.80); }

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.float-stack { position: fixed; right: 20px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; align-items: flex-end; gap: 10px; z-index: 999; }
.float-btn { position: relative; width: 46px; height: 46px; border-radius: 50%; color: var(--white); display: inline-flex; align-items: center; justify-content: center; font-size: 18px; box-shadow: 0 4px 14px rgba(0,0,0,0.15); transition: all 0.25s; border: none; cursor: pointer; }
.float-btn:hover { transform: translateX(-2px) scale(1.05); box-shadow: 0 8px 20px rgba(0,0,0,0.20); }
.float-btn .float-tip { position: absolute; right: calc(100% + 10px); top: 50%; transform: translateY(-50%); background: var(--navy); color: var(--white); padding: 5px 12px; border-radius: 6px; font-size: 12px; font-weight: 600; white-space: nowrap; opacity: 0; visibility: hidden; transition: all 0.25s; pointer-events: none; }
.float-btn .float-tip::after { content: ''; position: absolute; left: 100%; top: 50%; transform: translateY(-50%); border: 5px solid transparent; border-left-color: var(--navy); }
.float-btn:hover .float-tip { opacity: 1; visibility: visible; transform: translateY(-50%) translateX(-2px); }
.float-ig { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.float-tel { background: var(--navy); }
.float-tel .float-ring { position: absolute; inset: 0; border-radius: 50%; border: 1.5px solid var(--navy); animation: floatPulse 2.2s ease-out infinite; }
@keyframes floatPulse { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.7); opacity: 0; } }

.chat-wrap { display: inline-flex; align-items: center; gap: 10px; position: relative; }
.chat-btn { width: 48px; height: 48px; border-radius: 50%; background: #25D366; color: var(--white); display: inline-flex; align-items: center; justify-content: center; font-size: 22px; box-shadow: 0 6px 18px rgba(37,211,102,0.40); transition: all 0.25s; position: relative; flex-shrink: 0; text-decoration: none; }
.chat-btn::before { content: ''; position: absolute; inset: 0; border-radius: 50%; background: #25D366; animation: floatPulse 2.4s ease-out infinite; z-index: -1; }
.chat-btn:hover { transform: scale(1.06); box-shadow: 0 10px 24px rgba(37,211,102,0.50); }
.chat-btn-online { position: absolute; top: 2px; right: 2px; width: 11px; height: 11px; background: #fff; border-radius: 50%; }
.chat-btn-online::after { content: ''; position: absolute; inset: 3px; background: #44ff7d; border-radius: 50%; }
.chat-bubble { display: inline-flex; align-items: center; gap: 9px; padding: 9px 13px 9px 11px; background: var(--white); border-radius: 12px; box-shadow: 0 8px 24px rgba(11,37,71,0.12); position: relative; max-width: 210px; animation: chatBubbleIn 0.4s var(--transition) 1.2s both; }
.chat-bubble::after { content: ''; position: absolute; right: -5px; top: 50%; transform: translateY(-50%) rotate(45deg); width: 10px; height: 10px; background: var(--white); box-shadow: 2px -2px 4px rgba(11,37,71,0.05); }
@keyframes chatBubbleIn { from { opacity: 0; transform: translateX(8px); } to { opacity: 1; transform: translateX(0); } }
.chat-bubble.is-hidden { display: none; }
.chat-bubble-dot { width: 8px; height: 8px; border-radius: 50%; background: #25D366; flex-shrink: 0; }
.chat-bubble-text { display: flex; flex-direction: column; line-height: 1.2; }
.chat-bubble-text strong { font-size: 13px; font-weight: 700; color: var(--dark); }
.chat-bubble-text span { font-size: 11.5px; color: var(--gray-500); margin-top: 2px; }
.chat-bubble-close { width: 20px; height: 20px; border-radius: 50%; background: transparent; color: var(--gray-400); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; transition: all 0.2s; flex-shrink: 0; }
.chat-bubble-close:hover { background: var(--gray-100); color: var(--gray-700); }

.scroll-top-btn { position: fixed; right: 20px; bottom: 20px; width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color: var(--white); display: inline-flex; align-items: center; justify-content: center; font-size: 14px; box-shadow: 0 4px 14px rgba(11,37,71,0.25); cursor: pointer; border: none; z-index: 998; opacity: 0; visibility: hidden; transform: translateY(16px); transition: all 0.25s; }
.scroll-top-btn.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top-btn:hover { background: var(--navy-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(11,37,71,0.30); }

/* ============================================
   MOBILE BOTTOM NAV
   ============================================ */
.mobile-bnav { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: rgba(255,255,255,0.96); -webkit-backdrop-filter: saturate(180%) blur(20px); backdrop-filter: saturate(180%) blur(20px); border-top: 1px solid var(--gray-200); box-shadow: 0 -4px 16px rgba(11,37,71,0.06); padding: 8px 4px calc(8px + var(--safe-bottom)); gap: 2px; align-items: center; justify-content: space-around; }
.mobile-bnav-item, .mobile-bnav-cta { -webkit-tap-highlight-color: transparent; user-select: none; }
.mobile-bnav-item { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; padding: 8px 6px; min-width: 56px; min-height: 56px; color: var(--gray-500); transition: color 0.2s, transform 0.15s; text-decoration: none; flex: 1; border-radius: 10px; }
.mobile-bnav-item:active { transform: scale(0.92); color: var(--brand-orange); }
.mobile-bnav-icon { font-size: 18px; line-height: 1; }
.mobile-bnav-label { font-size: 10px; font-weight: 600; letter-spacing: -0.2px; }
.mobile-bnav-cta { position: relative; display: flex; flex-direction: column; align-items: center; gap: 3px; flex: 1.1; text-decoration: none; color: var(--brand-orange); transform: translateY(-8px); }
.mobile-bnav-cta-circle { position: relative; z-index: 2; width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, #25D366, #1eaa54); color: var(--white); display: inline-flex; align-items: center; justify-content: center; font-size: 22px; box-shadow: 0 6px 18px rgba(37,211,102,0.38), 0 0 0 4px var(--white); }
.mobile-bnav-cta-ring { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 50px; height: 50px; border-radius: 50%; border: 2px solid rgba(37,211,102,0.35); animation: bnavCtaPulse 2.2s ease-out infinite; z-index: 1; }
@keyframes bnavCtaPulse { 0% { transform: translateX(-50%) scale(1); opacity: 1; } 100% { transform: translateX(-50%) scale(1.55); opacity: 0; } }
.mobile-bnav-cta-label { font-size: 10px; font-weight: 700; color: var(--brand-orange-darker); }
.mobile-bnav-cta:active .mobile-bnav-cta-circle { transform: scale(0.9); }

/* ============================================
   FADE UP ANIMATION
   ============================================ */
.fade-up { opacity: 0; transform: translateY(24px); transition: all 0.6s var(--transition); }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   STORAGE VISUAL (eski uyumluluk)
   ============================================ */
.storage-img { background: var(--navy-50) !important; display: flex !important; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.storage-visual { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--navy); }
.storage-visual i { font-size: 64px; color: var(--navy); filter: drop-shadow(0 6px 12px rgba(11,37,71,0.12)); }
.storage-dim { font-weight: 800; font-size: 15px; color: var(--navy-dark); background: var(--white); padding: 4px 12px; border-radius: 999px; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); }

/* ============================================
   AUTOCOMPLETE / SUGGEST
   ============================================ */
.autocomplete-group { position: relative; }
.suggest-dropdown { position: absolute; top: calc(100% + 4px); left: 0; right: 0; background: var(--white); border: 1px solid var(--gray-200); border-radius: 10px; box-shadow: 0 10px 28px rgba(11,37,71,0.10); max-height: 260px; overflow-y: auto; z-index: 50; padding: 5px; opacity: 0; visibility: hidden; transform: translateY(-4px); transition: opacity 0.2s, transform 0.2s, visibility 0.2s; }
.suggest-dropdown.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.suggest-item { display: flex; align-items: center; gap: 9px; padding: 8px 10px; border-radius: 7px; cursor: pointer; transition: background 0.15s; font-size: 13px; color: var(--gray-800); }
.suggest-item:hover, .suggest-item.is-active { background: var(--navy-light); color: var(--navy); }
.suggest-item i { color: var(--brand-orange); font-size: 11px; width: 14px; text-align: center; }

/* ============================================
   RESPONSIVE — TABLET LANDSCAPE (1180px)
   ============================================ */
@media (max-width: 1180px) {
    .container { padding: 0 24px; }
    .nav { display: none; }
    .menu-toggle { display: flex; }
    .nav.open { display: block; position: fixed; top: 0; right: 0; width: 320px; max-width: 90vw; height: 100vh; background: var(--navy-darker); padding: 0; z-index: 998; overflow-y: auto; box-shadow: -8px 0 32px rgba(0,0,0,0.25); }
    .nav.open .nav-mobile-head { display: flex; }
    .nav.open .nav-mobile-cta { display: flex; }
    .nav.open .nav-mobile-actions { display: grid; }
    .nav.open .nav-mobile-info { display: flex; }
    .nav-mobile-head { display: flex; align-items: center; justify-content: center; padding: 24px 20px 18px; background: rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.08); }
    .nav-mobile-cta { display: flex; align-items: center; justify-content: center; gap: 9px; margin: 16px 18px 0; padding: 13px 18px; background: var(--brand-orange); color: var(--white); border-radius: 10px; font-weight: 700; font-size: 14px; transition: all 0.2s; }
    .nav-mobile-cta:hover { background: var(--brand-orange-dark); }
    .nav-mobile-cta i { font-size: 14px; }
    .nav-mobile-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 10px 18px 0; }
    .nav-mobile-action { display: inline-flex; flex-direction: column; align-items: center; gap: 4px; padding: 10px 6px; border-radius: 10px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.80); font-size: 11px; font-weight: 600; transition: all 0.2s; }
    .nav-mobile-action i { font-size: 16px; color: rgba(255,255,255,0.60); }
    .nav-mobile-action:hover { background: rgba(255,255,255,0.10); }
    .nav-mobile-action-wp i { color: #25D366; }
    .nav-mobile-info { margin: 12px 18px 6px; padding: 12px 14px; background: rgba(0,0,0,0.2); border-radius: 10px; display: flex; flex-direction: column; gap: 8px; }
    .nav-mobile-info-row { display: flex; align-items: flex-start; gap: 9px; font-size: 12px; color: rgba(255,255,255,0.70); line-height: 1.45; }
    .nav-mobile-info-row i { color: var(--brand-orange); font-size: 11px; width: 14px; text-align: center; margin-top: 3px; flex-shrink: 0; }
    .nav.open .nav-list { flex-direction: column; align-items: stretch; gap: 2px; padding: 14px 18px 24px; border-top: 1px solid rgba(255,255,255,0.07); margin-top: 14px; }
    .nav.open .nav-list > li > a { padding: 12px 14px; border-radius: 9px; font-size: 14px; color: rgba(255,255,255,0.85); font-weight: 600; display: flex; align-items: center; justify-content: space-between; transition: all 0.2s; }
    .nav.open .nav-list > li > a:hover { background: rgba(255,255,255,0.07); color: var(--white); }
    .nav.open .nav-list > li > a.active::after { display: none; }
    .nav.open .nav-list > li > a.active { background: rgba(232,84,26,0.15); color: var(--white); }
    .has-dropdown > a .fa-chevron-down { transition: transform 0.3s; font-size: 10px; margin-left: 6px; }
    .has-dropdown.is-open > a .fa-chevron-down { transform: rotate(180deg); }
    .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: rgba(0,0,0,0.2); margin: 0; border: 0; padding: 0; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease, margin 0.3s ease; border-radius: 9px; }
    .has-dropdown.is-open .dropdown { max-height: 600px; padding: 5px; margin: 4px 0 8px; }
    .dropdown li a { padding: 9px 12px; font-size: 13px; color: rgba(255,255,255,0.75); border-radius: 7px; display: flex; align-items: center; gap: 9px; }
    .dropdown li a i { color: var(--brand-orange); width: 14px; font-size: 11px; }
    .dropdown li a:hover { background: rgba(255,255,255,0.08); color: var(--white); padding-left: 16px; }
    .menu-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); backdrop-filter: blur(2px); z-index: 997; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; }
    body.nav-open .menu-overlay, .menu-overlay.is-open { opacity: 1; visibility: visible; }
    .phone-btn span { display: none; }
    body.nav-open { overflow: hidden; }
    .hero-grid { gap: 28px; grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr); }
    .services-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
    .fleet-slider .fleet-card { flex: 0 0 calc((100% - 20px) / 2); }
    .slider-prev { left: -6px; }
    .slider-next { right: -6px; }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 28px; }
    .footer-grid-5 { grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
    .footer-col-brand { grid-column: 1 / -1; }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .how-grid { grid-template-columns: repeat(2, 1fr); }
    .how-step:not(:last-child)::after { display: none; }
    .certs-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-corporate { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ============================================
   RESPONSIVE — STACK HERO (880px)
   ============================================ */
@media (max-width: 880px) {
    .top-band { display: none !important; }
    .header { background: rgba(255,255,255,0.95) !important; -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); padding: 0 !important; }
    .header-inner { height: 60px; }
    .lang-switcher { display: none !important; }
    .phone-btn span { display: none; }
    .phone-icon { width: 36px !important; height: 36px !important; }
    .menu-toggle { display: flex !important; width: 40px; height: 40px; align-items: center; justify-content: center; }
    .hero { padding: 28px 0 36px !important; min-height: calc(100svh - 100px); }
    .hero-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
    .hero-deco { display: none !important; }
    .hero-right { width: 100%; max-width: 520px; margin: 0 auto; }
    .hero-title { font-size: clamp(1.8rem, 7vw, 2.4rem) !important; }
    .hero-cta-group { flex-direction: column !important; gap: 8px !important; margin: 18px 0 !important; }
    .btn-hero-primary, .btn-hero-link { width: 100% !important; justify-content: center !important; padding: 15px 20px !important; min-height: 48px !important; }
    .hero-trust-strip { display: grid !important; grid-template-columns: 1fr 1fr; gap: 8px 12px !important; }
    .trust-band { padding: 22px 0; }
    .trust-band-inner { gap: 12px; flex-wrap: wrap; justify-content: center; }
    .trust-band-divider { display: none; }
    .trust-band-item { flex: 0 0 calc(50% - 12px); justify-content: flex-start; }
    .fleet-section, .services-section, .routes-section, .why-section, .how-section, .compare-section, .reviews-section, .certs-section, .faq-section { padding: 56px 0 !important; }
    .section-head { margin-bottom: 28px !important; }
    .section-title { font-size: clamp(1.5rem, 5.5vw, 2rem) !important; }
    .section-sub { font-size: 13.5px !important; }
    .fleet-slider { gap: 14px !important; padding: 8px 16px 24px !important; margin: 0 -16px; scroll-padding-left: 16px; }
    .fleet-slider .fleet-card { flex: 0 0 84% !important; scroll-snap-align: center; }
    .slider-arrow { display: none !important; }
    .services-grid, .why-grid { grid-template-columns: 1fr !important; gap: 10px !important; }
    .how-grid { grid-template-columns:
 repeat(2, 1fr) !important; gap: 14px !important; }
    .reviews-grid { display: flex !important; overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; padding: 4px 16px 16px !important; margin: 0 -16px; scrollbar-width: none; gap: 14px !important; }
    .reviews-grid::-webkit-scrollbar { display: none; }
    .review-card { flex: 0 0 86%; scroll-snap-align: center; }
    .certs-grid { grid-template-columns: 1fr !important; gap: 10px !important; }
    .cert-card { flex-direction: row !important; align-items: flex-start !important; gap: 14px !important; padding: 16px 18px !important; }
    .cert-icon { margin-bottom: 0 !important; flex-shrink: 0; }
    .compare-table-wrap { margin: 28px -16px 0 !important; border-radius: 0; border-left: none; border-right: none; }
    .cta-section { padding: 50px 0 !important; }
    .cta-inner { flex-direction: column; text-align: center; gap: 20px; }
    .cta-actions { flex-direction: column; width: 100%; }
    .cta-actions a { width: 100% !important; padding: 15px 22px !important; min-height: 50px !important; justify-content: center !important; border-radius: 12px !important; }
    .footer { padding-top: 40px !important; }
    .footer-grid, .footer-grid-5 { grid-template-columns: 1fr; gap: 0; padding-bottom: 16px; }
    .footer-col { border-bottom: 1px solid rgba(255,255,255,0.07); padding: 4px 0; }
    .footer-col:first-child { border-bottom: 1px solid rgba(255,255,255,0.07); padding-bottom: 22px; }
    .footer-accordion h4 { cursor: pointer; margin-bottom: 0; padding: 14px 0; user-select: none; }
    .footer-accordion h4::after { display: none; }
    .footer-acc-icon { display: inline-block; }
    .footer-accordion.is-open .footer-acc-icon { transform: rotate(180deg); }
    .footer-accordion .footer-links, .footer-accordion .footer-contact { max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.3s ease, opacity 0.25s ease, padding 0.3s ease; }
    .footer-accordion.is-open .footer-links, .footer-accordion.is-open .footer-contact { max-height: 500px; opacity: 1; padding-bottom: 14px; }
    .footer-corporate { grid-template-columns: 1fr 1fr !important; gap: 14px !important; padding: 20px 0 16px !important; margin-top: 18px !important; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 10px; padding: 16px 0; }
    .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 8px 14px; }
    .mobile-bnav { display: flex; }
    body { padding-bottom: calc(var(--bnav-height) + var(--safe-bottom) + 8px); }
    .float-stack { display: none !important; }
    .chat-wrap { display: none !important; }
    .scroll-top-btn { bottom: calc(var(--bnav-height) + var(--safe-bottom) + 12px) !important; right: 14px !important; }
    .route-row { grid-template-columns: 1fr auto !important; grid-template-areas: "line price" "time action" !important; gap: 8px 12px !important; padding: 14px 16px !important; }
    .route-line { grid-area: line; font-size: 14px; }
    .route-time { grid-area: time; font-size: 12px; }
    .route-price { grid-area: price; font-size: 15px; min-width: 0; text-align: right; }
    .route-action { grid-area: action; justify-content: center; padding: 8px 12px; font-size: 12px; }
    .faq-list { margin-top: 28px !important; gap: 8px !important; }
    .faq-item summary { padding: 14px 48px 14px 18px !important; font-size: 14px !important; }
    .faq-item p { padding: 0 18px 16px !important; font-size: 13.5px !important; }
    input, select, textarea { font-size: 16px !important; }
    a, button, [role="button"] { -webkit-tap-highlight-color: transparent; }
}

/* ============================================
   RESPONSIVE — MOBİL (640px)
   ============================================ */
@media (max-width: 640px) {
    .container { padding: 0 16px; }
    .top-band-side { display: none; }
    .hero-segments { grid-template-columns: repeat(3, 1fr); gap: 4px; padding: 4px; }
    .hero-segment { padding: 9px 7px; flex-direction: column; gap: 5px; text-align: center; align-items: center; }
    .hero-segment-icon { width: 30px; height: 30px; font-size: 12px; border-radius: 7px; }
    .hero-segment-text strong { font-size: 12px; }
    .hero-segment-text small { font-size: 10px; }
    .booking-card { padding: 20px 16px !important; border-radius: 16px !important; }
    .booking-head h2 { font-size: 17px !important; }
    .calc-items { max-height: none !important; }
    .calc-item { padding: 9px 10px !important; }
    .calc-item-btn { width: 34px !important; height: 34px !important; }
    .trust-band-inner { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
    .trust-band-item { background: rgba(255,255,255,0.04); border-radius: 10px; padding: 10px 12px; justify-content: flex-start !important; }
    .footer-corporate { grid-template-columns: 1fr !important; gap: 12px !important; }
    .footer-bottom-links a { font-size: 11px; }
}

/* ============================================
   RESPONSIVE — MOBİL KÜÇÜK (480px)
   ============================================ */
@media (max-width: 480px) {
    .container { padding: 0 14px !important; }
    .hero { padding: 18px 0 24px !important; }
    .hero-title { font-size: 1.7rem !important; }
    .section-title { font-size: 1.5rem !important; }
    .mobile-bnav-item { min-width: 46px; padding: 6px 4px; }
    .mobile-bnav-icon { font-size: 17px; }
    .mobile-bnav-label { font-size: 9.5px; }
    .mobile-bnav-cta-circle { width: 46px; height: 46px; font-size: 20px; }
    .mobile-bnav-cta-ring { width: 46px; height: 46px; }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================
   MEGA DROPDOWN (Lokasyonlar — 17 ilçe için 2 grup)
   ============================================ */
.has-mega-dropdown:hover .dropdown-mega,
.has-mega-dropdown:focus-within .dropdown-mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.dropdown-mega {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--white);
    min-width: 720px;
    max-width: 96vw;
    border-radius: 14px;
    box-shadow: 0 16px 48px rgba(11, 37, 71, 0.15);
    padding: 22px 26px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s var(--transition);
    border: 1px solid var(--gray-200);
    pointer-events: none;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 28px;
}
.has-mega-dropdown:hover .dropdown-mega,
.has-mega-dropdown:focus-within .dropdown-mega {
    transform: translateX(-50%) translateY(0);
}
.dropdown-mega::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
}
.dropdown-group-title {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: var(--brand-orange);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--gray-100);
}
.dropdown-mega .dropdown-group ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.dropdown-mega .dropdown-group:nth-child(2) ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 16px;
}
.dropdown-mega .dropdown-group li a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 7px 10px;
    font-size: 13px;
    color: var(--gray-700);
    font-weight: 500;
    border-radius: 7px;
    transition: all 0.15s;
}
.dropdown-mega .dropdown-group li a i {
    width: 14px;
    color: var(--brand-orange);
    font-size: 10px;
    text-align: center;
    flex-shrink: 0;
}
.dropdown-mega .dropdown-group li a:hover {
    background: #FFF7ED;
    color: var(--brand-orange);
}

/* Mobile — Lokasyonlar mega-dropdown akordiyon haline gelir */
@media (max-width: 1180px) {
    .dropdown-mega {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.2);
        margin: 0;
        border: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease, margin 0.3s ease;
        border-radius: 9px;
        display: block;
        min-width: 0;
    }
    .has-mega-dropdown.is-open .dropdown-mega {
        max-height: 800px;
        padding: 8px;
        margin: 4px 0 8px;
    }
    .dropdown-mega .dropdown-group:nth-child(2) ul {
        display: block;
    }
    .dropdown-mega .dropdown-group-title {
        color: rgba(255, 255, 255, 0.55);
        padding: 6px 10px 4px;
        margin: 0;
        border-bottom: 0;
        font-size: 10.5px;
    }
    .dropdown-mega .dropdown-group li a {
        padding: 8px 12px;
        color: rgba(255, 255, 255, 0.78);
        font-size: 13px;
    }
    .dropdown-mega .dropdown-group li a i {
        color: var(--brand-orange);
    }
    .dropdown-mega .dropdown-group li a:hover {
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
    }
}

/* Footer Lokasyonlar — 2 kolonlu kompakt görünüm */
.footer-links-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 14px;
}
.footer-links-two-col li a {
    font-size: 13px;
}
@media (max-width: 580px) {
    .footer-links-two-col { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   LOKASYONLAR — 2 grup başlığı (Merkez / Diğer)
   ============================================ */
.locations-groups { margin-top: 8px; }
.locations-group-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--brand-orange);
    text-transform: uppercase;
    letter-spacing: 1.3px;
    margin: 22px 0 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 8px;
    border-bottom: 1px dashed var(--gray-200);
}
.locations-group-title:first-child {
    margin-top: 0;
}
.locations-group-title i {
    color: var(--brand-orange);
    font-size: 13px;
}
.locations-groups .locations-list {
    margin-bottom: 8px;
}

/* ============================================
   LOKASYONLAR DROPDOWN — 17 ilçeli flat liste için scrollable
   ============================================ */
.dropdown-locations {
    min-width: 240px;
    max-height: 480px;
    overflow-y: auto;
    /* Custom scrollbar */
    scrollbar-width: thin;
    scrollbar-color: var(--brand-orange) var(--gray-100);
}
.dropdown-locations::-webkit-scrollbar { width: 6px; }
.dropdown-locations::-webkit-scrollbar-track { background: var(--gray-50); border-radius: 3px; }
.dropdown-locations::-webkit-scrollbar-thumb { background: var(--brand-orange); border-radius: 3px; }
.dropdown-locations::-webkit-scrollbar-thumb:hover { background: #FF8A1F; }

/* Hizmetler dropdown — 19 servis için scrollable, geniş */
.dropdown-services {
    min-width: 280px;
    max-height: 540px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--brand-orange) var(--gray-100);
}
.dropdown-services::-webkit-scrollbar { width: 6px; }
.dropdown-services::-webkit-scrollbar-track { background: var(--gray-50); border-radius: 3px; }
.dropdown-services::-webkit-scrollbar-thumb { background: var(--brand-orange); border-radius: 3px; }

/* ============================================
   MEGA MENU — Yatay açılır klas tasarım (Hizmetler & Lokasyonlar)
   ============================================ */

/* Parent li - sticky pozisyon */
.has-mega {
    position: static; /* mega menu nav genişliğinde açılsın */
}
.nav { position: relative; }

/* Mega menu container */
.mega-menu {
    position: absolute;
    top: calc(100% + 0px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 18px 60px rgba(11, 37, 71, 0.18);
    border: 1px solid var(--gray-100);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow: hidden;
}

.mega-menu-services { min-width: 920px; max-width: 96vw; }
.mega-menu-locations { min-width: 720px; max-width: 96vw; }

/* Görünmez hover köprüsü — menu item ile mega menu arasındaki boşluğu kapatır */
.mega-menu::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    right: 0;
    height: 18px;
    background: transparent;
}

/* Hover/focus açar */
.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu,
.has-mega.is-open .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Mega menu içeriği — sütunlar */
.mm-cols {
    display: grid;
    gap: 0;
    padding: 24px 28px;
}
.mega-menu-services .mm-cols {
    grid-template-columns: 1fr 1fr 1fr 0.65fr;
}
.mega-menu-locations .mm-cols {
    grid-template-columns: 1fr 1fr 1fr;
}

.mm-col {
    padding: 0 18px;
    border-right: 1px dashed var(--gray-100);
}
.mm-col:last-child { border-right: none; }

.mm-col-title {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 12px;
    font-weight: 800;
    color: var(--brand-orange);
    text-transform: uppercase;
    letter-spacing: 1.1px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #FFE8D5;
}
.mm-col-title i {
    width: 22px;
    height: 22px;
    border-radius: 7px;
    background: #FFF7ED;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-orange);
    font-size: 10px;
}

.mm-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.mm-col li {
    margin: 0;
}
.mm-col li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 8px;
    color: var(--gray-700);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.15s ease;
    text-decoration: none;
    line-height: 1.4;
}
.mm-col li a i {
    width: 18px;
    text-align: center;
    color: var(--brand-orange);
    font-size: 13px;
    flex-shrink: 0;
}
.mm-col li a:hover {
    background: #FFF7ED;
    color: var(--brand-orange);
    transform: translateX(3px);
}

/* Mega menu alt CTA satırı */
.mm-footer {
    background: linear-gradient(135deg, #0B2547 0%, #163864 100%);
    color: rgba(255, 255, 255, 0.92);
    padding: 14px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-size: 13px;
}
.mm-footer span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.mm-footer span i {
    color: var(--brand-orange);
    font-size: 13px;
}
.mm-footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    background: var(--brand-orange);
    color: #fff;
    border-radius: 999px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}
.mm-footer-cta:hover {
    background: #FF8A1F;
    transform: translateX(2px);
    color: #fff;
}

/* MOBILE — mega menu collapse accordion gibi davranır */
@media (max-width: 1180px) {
    .mega-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.18);
        border: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-radius: 9px;
        margin: 0;
        min-width: 0 !important;
    }
    .has-mega.is-open .mega-menu {
        max-height: 1600px;
        margin: 4px 0 8px;
    }
    .mm-cols {
        display: block;
        padding: 6px 8px;
    }
    .mega-menu-services .mm-cols,
    .mega-menu-locations .mm-cols {
        grid-template-columns: 1fr;
    }
    .mm-col {
        padding: 4px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .mm-col:last-child { border-bottom: 0; }
    .mm-col-title {
        color: rgba(255, 255, 255, 0.55);
        padding: 6px 8px 4px;
        margin: 0;
        border-bottom: 0;
        font-size: 10.5px;
    }
    .mm-col-title i {
        background: rgba(255, 255, 255, 0.08);
        color: var(--brand-orange);
    }
    .mm-col li a {
        color: rgba(255, 255, 255, 0.78);
        padding: 8px 12px;
        font-size: 13px;
    }
    .mm-col li a:hover {
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
        transform: none;
    }
    .mm-footer {
        flex-direction: column;
        gap: 10px;
        padding: 12px;
        border-radius: 8px;
        margin-top: 6px;
    }
}

/* ============================================
   LOCATION CARD GRID — Modern responsive tasarım
   ============================================ */
.loc-section { margin-top: 24px; }
.loc-section:first-child { margin-top: 0; }

.loc-section-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--brand-orange);
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin: 0 0 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--gray-200);
}
.loc-section-title i {
    color: var(--brand-orange);
    font-size: 13px;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #FFF7ED;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.loc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.loc-card {
    background: #fff;
    border: 1px solid var(--gray-100);
    border-radius: 14px;
    padding: 22px 20px 18px;
    text-decoration: none;
    color: inherit;
    position: relative;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 220px;
}
.loc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--brand-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.loc-card:hover {
    border-color: var(--brand-orange);
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(232, 84, 26, 0.16);
}
.loc-card:hover::before {
    transform: scaleX(1);
}

.loc-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #FFF7ED;
    color: var(--brand-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 12px;
    transition: all 0.25s ease;
}
.loc-card:hover .loc-card-icon {
    background: var(--brand-orange);
    color: #fff;
    transform: scale(1.05);
}

.loc-card-name {
    font-size: 19px;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 4px;
    letter-spacing: -0.4px;
    line-height: 1.2;
}
.loc-card-sub {
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 500;
    margin: 0 0 14px;
}

.loc-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 11px;
    background: #FFF7ED;
    color: var(--brand-orange);
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.2px;
    align-self: flex-start;
    margin-bottom: 16px;
}
.loc-card-badge i {
    font-size: 10px;
}

.loc-card-foot {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px dashed var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.loc-card-price {
    font-size: 14px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.3px;
}
.loc-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--brand-orange);
    transition: gap 0.2s;
}
.loc-card-cta i { font-size: 10px; }
.loc-card:hover .loc-card-cta {
    gap: 9px;
}

/* TABLET — 3 sütun */
@media (max-width: 1100px) {
    .loc-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

/* TABLET KÜÇÜK — 2 sütun */
@media (max-width: 820px) {
    .loc-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .loc-card { min-height: 200px; padding: 20px 18px 16px; }
    .loc-card-name { font-size: 17px; }
}

/* MOBİL — 2 sütun kompakt */
@media (max-width: 560px) {
    .loc-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .loc-card {
        padding: 16px 14px 14px;
        min-height: 180px;
        border-radius: 12px;
    }
    .loc-card-icon {
        width: 36px;
        height: 36px;
        font-size: 15px;
        margin-bottom: 10px;
        border-radius: 10px;
    }
    .loc-card-name { font-size: 15.5px; }
    .loc-card-sub { font-size: 11.5px; margin-bottom: 10px; }
    .loc-card-badge { font-size: 10px; padding: 4px 9px; margin-bottom: 12px; }
    .loc-card-foot { padding-top: 10px; flex-direction: column; align-items: flex-start; gap: 6px; }
    .loc-card-price { font-size: 13px; }
    .loc-card-cta { font-size: 11.5px; }
    .loc-section-title { font-size: 11.5px; }
}

/* EN KÜÇÜK MOBİL — 1 sütun (370px altı) */
@media (max-width: 380px) {
    .loc-grid { grid-template-columns: 1fr; }
    .loc-card { min-height: auto; }
    .loc-card-foot { flex-direction: row; align-items: center; }
}

/* ============================================
   RESPONSIVE UTILITIES — Tüm site için bütünleyici düzeltmeler
   Min-touch targets, font scaling, container padding
   ============================================ */

/* TABLET (820px-1100px) */
@media (max-width: 1100px) {
    .container { padding: 0 24px; }
    .nav-list > li > a { padding: 7px 10px; font-size: 13.5px; }
    .header-inner { gap: 16px; }
    .section-title { font-size: clamp(1.6rem, 3vw, 2.2rem) !important; }
    .why-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 18px !important; }
}

/* MOBILE BREAKPOINT (1180px) — Nav switch */
@media (max-width: 1180px) {
    .container { padding: 0 20px; }
    .mega-menu, .dropdown {
        display: block !important;
    }
}

/* TABLET KÜÇÜK (820px) */
@media (max-width: 820px) {
    .container { padding: 0 18px; }
    h1, .page-hero-title { font-size: clamp(1.5rem, 5vw, 2rem) !important; }
    h2, .page-block h2, .section-title {
        font-size: clamp(1.25rem, 4vw, 1.7rem) !important;
        line-height: 1.3 !important;
    }
    h3 { font-size: 1.1rem !important; }
    p, li { font-size: 14.5px; line-height: 1.65; }

    .page-content-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    .page-sidebar { order: 2; }
    .why-grid { grid-template-columns: 1fr 1fr !important; }
    .section-head { margin-bottom: 28px !important; }

    /* AI Summary + TOC mobile compact */
    .ai-summary-box { padding: 16px 18px; }
    .ai-summary-bullets li { font-size: 14px; padding-left: 24px; }
    .content-toc { padding: 18px 18px; }
    .content-toc ol { columns: 1; }

    /* CTA block mobile */
    .cta-block { padding: 22px 18px !important; }
    .cta-block h2 { font-size: 19px !important; }
    .cta-action-btn {
        padding: 12px 16px;
        font-size: 13px;
        flex: 1 1 100%;
        justify-content: center;
        min-height: 44px;
    }

    /* Trust band mobile - vertical */
    .trust-band-inner {
        flex-direction: column !important;
        gap: 16px !important;
    }
    .trust-band-divider { display: none !important; }

    /* Footer mobile compact */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }
    .footer-corporate {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
    }
    .footer-bottom {
        flex-direction: column !important;
        gap: 12px !important;
        text-align: center !important;
    }
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 14px;
    }
}

/* MOBİL (560px ve altı) */
@media (max-width: 560px) {
    .container { padding: 0 14px; }
    body { font-size: 14.5px; }

    /* Page hero mobile - tighter */
    .page-hero { padding: 28px 0 32px !important; }
    .breadcrumb { font-size: 12px; flex-wrap: wrap; gap: 5px; }

    /* Section headings */
    .section-head { margin-bottom: 22px !important; }
    .section-tag { font-size: 11px !important; letter-spacing: 1px !important; padding: 5px 12px !important; }
    .section-sub { font-size: 14px !important; }

    /* WHY grid - 1 col */
    .why-grid { grid-template-columns: 1fr !important; gap: 12px !important; }
    .why-item { padding: 20px !important; }
    .why-item h3 { font-size: 16px !important; }
    .why-item p { font-size: 13.5px !important; }

    /* Hero section */
    .hero-title { font-size: clamp(1.6rem, 7vw, 2.2rem) !important; }
    .hero-sub { font-size: 14.5px !important; }

    /* Buttons - min 44px touch target */
    .btn-orange, .btn-outline-blue, .btn-white-outline {
        min-height: 44px;
        font-size: 14px;
        padding: 12px 20px;
    }

    /* Footer mobile */
    .footer-corporate { grid-template-columns: 1fr !important; }
    .footer-corp-item { padding: 8px 0 !important; }

    /* FAQ mobile */
    .faq-item summary { padding: 14px 16px; font-size: 14px; }
    .faq-item .faq-answer { padding: 0 16px 16px; font-size: 13.5px; }
    .faq-item summary::after {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }

    /* Service article on mobile */
    .service-article h2 { font-size: 18px !important; }
    .service-article p, .service-article li { font-size: 14px !important; line-height: 1.65 !important; }

    /* Sidebar cards on mobile */
    .sidebar-card { padding: 18px !important; }

    /* Pricing cards single column */
    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    .pricing-card { padding: 18px !important; }
    .pricing-amount strong { font-size: 28px !important; }

    /* Related services - 1 col on small */
    .related-services-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }
    .related-service-card { padding: 10px 12px !important; }
    .related-service-card span { font-size: 12.5px !important; }

    /* Top band marquee compact */
    .top-band-side .top-band-link:first-child { display: none; }
    .top-band-side { gap: 12px; }

    /* Header tightening */
    .header-inner { height: 60px; }
    .logo-word { font-size: 18px; }
    .logo-mark { width: 34px; height: 34px; font-size: 14px; }
    .phone-btn { display: none !important; } /* Mobilde top-band'de var zaten */
}

/* EN KÜÇÜK MOBİL (380px ve altı) */
@media (max-width: 380px) {
    .container { padding: 0 12px; }
    .related-services-grid {
        grid-template-columns: 1fr !important;
    }
    .footer-bottom-links a {
        font-size: 11px !important;
    }
    .breadcrumb { font-size: 11px; }
}

/* Touch target — tüm tıklanabilirler 44x44 minimum */
@media (pointer: coarse) {
    a, button, .btn-orange, .btn-outline-blue, .btn-white-outline,
    .cta-action-btn, .nav-list > li > a, .loc-card, .related-service-card,
    .pricing-card, .faq-item summary, .mobile-bnav-item {
        min-height: 44px;
    }
    .scroll-top-btn, .chat-btn, .float-btn {
        min-width: 48px;
        min-height: 48px;
    }
}

/* Print friendly */
@media print {
    .header, .footer, .top-band, .float-stack, .mobile-bnav,
    .scroll-top-btn, .chat-wrap, .cta-block, .cta-section {
        display: none !important;
    }
    body { background: #fff; color: #000; }
    a { color: #000; text-decoration: underline; }
    .page-hero { background: #fff !important; color: #000 !important; }
    .page-hero-title, .page-hero-desc { color: #000 !important; }
}

/* Accessibility — reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}

/* ============================================
   GÖRSEL GALERİ — Modern responsive depo galeri
   ============================================ */
.page-gallery {
    padding: 56px 0;
    background: var(--bg);
    position: relative;
}
.page-gallery::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

.gallery-head {
    text-align: center;
    margin-bottom: 32px;
}
.gallery-head .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 16px;
    background: #FFF7ED;
    color: var(--brand-orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-radius: 999px;
    margin-bottom: 14px;
}
.gallery-head h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--navy);
    margin: 0 0 10px;
    letter-spacing: -0.5px;
    font-weight: 800;
}
.gallery-head p {
    font-size: 15px;
    color: var(--gray-600);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 14px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    cursor: pointer;
    background: var(--gray-100);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: block;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}
.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(11, 37, 71, 0.18);
}
.gallery-item:hover img {
    transform: scale(1.06);
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(11, 37, 71, 0.85));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }

.gallery-item-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 16px 18px 14px;
    color: #fff;
    z-index: 2;
    transform: translateY(8px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover .gallery-item-overlay {
    transform: translateY(0);
    opacity: 1;
}
.gallery-item-caption {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 3px;
    color: #fff;
}
.gallery-item-sub {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.gallery-item-zoom {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--brand-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    opacity: 0;
    transform: scale(0.6);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    backdrop-filter: blur(6px);
}
.gallery-item:hover .gallery-item-zoom {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 1100px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 200px;
    }
}

@media (max-width: 820px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
        gap: 12px;
    }
    .gallery-item.wide { grid-column: span 2; }
    .gallery-item.tall { grid-row: span 1; }
}

@media (max-width: 560px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
        gap: 10px;
    }
    .gallery-item.wide { grid-column: span 2; }
    .gallery-item-caption { font-size: 13px; }
    .gallery-item-sub { font-size: 11px; }
    .gallery-item-zoom { width: 30px; height: 30px; font-size: 11px; }
}

/* LIGHTBOX */
.glb-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 40px 20px;
}
.glb-overlay.open {
    opacity: 1;
    visibility: visible;
}
.glb-img-wrap {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.glb-img {
    max-width: 90vw;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    transform: scale(0.96);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.glb-overlay.open .glb-img { transform: scale(1); }

.glb-caption {
    color: #fff;
    text-align: center;
    margin-top: 16px;
    font-size: 15px;
    font-weight: 600;
    max-width: 600px;
}
.glb-counter {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin-top: 6px;
}

.glb-close,
.glb-prev,
.glb-next {
    position: fixed;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    color: #fff;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.2s ease;
    z-index: 10;
}
.glb-close { top: 20px; right: 20px; }
.glb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.glb-next { right: 20px; top: 50%; transform: translateY(-50%); }
.glb-close:hover,
.glb-prev:hover,
.glb-next:hover {
    background: var(--brand-orange);
    transform: scale(1.08);
}
.glb-prev:hover { transform: translateY(-50%) scale(1.08); }
.glb-next:hover { transform: translateY(-50%) scale(1.08); }

@media (max-width: 560px) {
    .glb-close, .glb-prev, .glb-next {
        width: 40px; height: 40px;
        font-size: 15px;
    }
    .glb-close { top: 12px; right: 12px; }
    .glb-prev { left: 10px; }
    .glb-next { right: 10px; }
    .glb-caption { font-size: 13px; padding: 0 50px; }
}

/* ============================================
   GALERİ CAROUSEL — Tek satır 3 görsel + otomatik kaydırma
   ============================================ */
.gal-intro {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 22px;
}

.gal-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    user-select: none;
}

.gal-viewport {
    overflow: hidden;
    border-radius: 14px;
    margin: 0 -8px;
}

.gal-track {
    display: flex;
    gap: 16px;
    padding: 4px 8px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.gal-slide {
    flex: 0 0 calc((100% - 32px) / 3); /* 3 visible by default */
    aspect-ratio: 4/3;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--gray-100);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}
.gal-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}
.gal-slide:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(11, 37, 71, 0.16); }
.gal-slide:hover img { transform: scale(1.06); }
.gal-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(11, 37, 71, 0.88));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.gal-slide:hover::after { opacity: 1; }

.gal-slide-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 14px 16px 12px;
    color: #fff;
    z-index: 2;
    transform: translateY(8px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.gal-slide:hover .gal-slide-overlay {
    transform: translateY(0);
    opacity: 1;
}
.gal-slide-caption {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 2px;
    color: #fff;
}
.gal-slide-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.gal-slide-zoom {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--brand-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    backdrop-filter: blur(6px);
}
.gal-slide:hover .gal-slide-zoom { opacity: 1; transform: scale(1); }

/* Navigation arrows */
.gal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: var(--navy);
    border: none;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 6px 18px rgba(11, 37, 71, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: all 0.25s ease;
}
.gal-arrow:hover {
    background: var(--brand-orange);
    color: #fff;
    transform: translateY(-50%) scale(1.08);
}
.gal-arrow-prev { left: -8px; }
.gal-arrow-next { right: -8px; }

/* Dots */
.gal-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}
.gal-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-200);
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 0;
}
.gal-dot.active {
    background: var(--brand-orange);
    width: 24px;
    border-radius: 4px;
}
.gal-dot:hover { background: var(--brand-orange); opacity: 0.7; }

/* Tablet — 2 görsel */
@media (max-width: 820px) {
    .gal-slide { flex: 0 0 calc((100% - 16px) / 2); }
    .gal-track { gap: 12px; }
}

/* Mobile — 1 görsel */
@media (max-width: 560px) {
    .gal-slide { flex: 0 0 100%; }
    .gal-track { gap: 10px; }
    .gal-arrow {
        width: 38px; height: 38px;
        font-size: 13px;
    }
    .gal-arrow-prev { left: 4px; }
    .gal-arrow-next { right: 4px; }
}

/* ============================================
   FOOTER COLLAPSIBLE — 5 item + "Devamı" toggle
   ============================================ */
.footer-links {
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-collapsible:not(.expanded) .footer-links {
    max-height: calc(5 * 32px); /* ~5 items height */
}
.footer-collapsible .footer-links-two-col:not(.expanded) {
    max-height: calc(3 * 32px); /* 2-col → 3 rows = 6 items visible */
}

.footer-more-btn {
    margin-top: 8px;
    background: none;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all 0.2s ease;
    font-family: inherit;
    letter-spacing: 0.3px;
}
.footer-more-btn:hover {
    color: #fff;
    border-color: var(--brand-orange);
    background: rgba(232, 84, 26, 0.1);
}
.footer-more-btn i {
    transition: transform 0.3s ease;
    font-size: 10px;
}
.footer-collapsible.expanded .footer-more-btn i {
    transform: rotate(180deg);
}

@media (max-width: 880px) {
    /* Mobilde footer accordion zaten kullanılıyor, collapsible kapalı */
    .footer-collapsible:not(.expanded) .footer-links {
        max-height: none;
    }
    .footer-more-btn { display: none; }
}

/* ============================================
   PAGE LAYOUT REDESIGN — Full-width content, görsel ritim
   Sidebar kaldırıldı, içerik tam genişlik kullanır
   ============================================ */

/* Override eski 2-col grid → full width */
.page-content-grid {
    grid-template-columns: 1fr !important;
    max-width: 980px;
    margin: 0 auto;
}

/* Sidebar'ı CTA bloğunun ÜSTÜNE inline mini-kartlar olarak konumla */
.page-sidebar {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 18px !important;
    margin-top: 32px;
    margin-bottom: 8px;
}
.page-sidebar .sidebar-card {
    margin-bottom: 0 !important;
    padding: 22px 24px;
}
.page-sidebar .sidebar-card h3 {
    font-size: 15px !important;
    margin-bottom: 14px !important;
}
@media (max-width: 760px) {
    .page-sidebar { grid-template-columns: 1fr !important; }
}

/* ============================================
   SAYFA İÇİ GÖRSEL RİTİM — Modern olarak alternatif arka planlar
   ============================================ */

/* Her page-block ayrı kart gibi — daha modern */
.service-article {
    background: #fff;
    border-radius: 16px;
    padding: 28px 32px;
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}
.service-article:hover {
    border-color: #FFE8D5;
    box-shadow: 0 6px 20px rgba(11, 37, 71, 0.05);
}

/* H2'ye sol turuncu accent bar */
.service-article h2 {
    position: relative;
    padding-left: 18px;
    margin-bottom: 18px !important;
    border-bottom: none !important;
    padding-bottom: 0 !important;
    font-size: 22px !important;
    letter-spacing: -0.3px;
}
.service-article h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 4px;
    background: linear-gradient(180deg, var(--brand-orange), #FF9550);
    border-radius: 4px;
}

/* Page-block ilk paragraf — büyük lead text */
.service-article > p:first-of-type {
    font-size: 16.5px;
    line-height: 1.75;
    color: var(--gray-700);
}

/* Listeler daha modern check stili */
.service-article .page-feature-list li {
    padding: 10px 0;
    border-bottom: 1px dashed transparent;
    transition: all 0.2s;
}
.service-article .page-feature-list li:hover {
    background: linear-gradient(90deg, #FFF7ED 0%, transparent 60%);
    padding-left: 8px;
    border-radius: 6px;
}

/* Page-block ardarda gelmesin — gap arttı */
.page-content-main .page-block {
    margin-bottom: 24px;
}
.page-content-main .page-block:last-child {
    margin-bottom: 0;
}

/* CTA, ai-summary, content-toc kart stilinde olmasın (kendi stilleri var) */
.page-content-main > .ai-summary-box,
.page-content-main > .content-toc,
.page-content-main > .cta-block {
    /* zaten kendi stilleri var, dokunma */
}

/* ============================================
   STAT BAR — AI Summary altında 4 KPI banner
   ============================================ */
.stat-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: linear-gradient(135deg, #0B2547 0%, #163864 100%);
    border-radius: 16px;
    padding: 6px;
    margin: 0 0 32px;
    overflow: hidden;
    position: relative;
}
.stat-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-orange), #FF9550, var(--brand-orange));
}
.stat-bar-item {
    padding: 18px 16px;
    text-align: center;
    color: #fff;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.25s;
}
.stat-bar-item:last-child { border-right: none; }
.stat-bar-item:hover {
    background: rgba(232, 84, 26, 0.08);
}
.stat-bar-icon {
    color: var(--brand-orange);
    font-size: 20px;
    margin-bottom: 8px;
    display: inline-block;
}
.stat-bar-value {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin-bottom: 4px;
}
.stat-bar-label {
    display: block;
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

@media (max-width: 760px) {
    .stat-bar { grid-template-columns: repeat(2, 1fr); }
    .stat-bar-item:nth-child(2n) { border-right: none; }
    .stat-bar-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
    .stat-bar-value { font-size: 20px; }
    .stat-bar-icon { font-size: 17px; }
    .stat-bar-label { font-size: 10.5px; }
}

/* ============================================
   HIGHLIGHT BOX — Vurgulu uyarı/bilgi kutusu
   ============================================ */
.highlight-box {
    background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
    border-left: 4px solid var(--brand-orange);
    border-radius: 12px;
    padding: 18px 22px;
    margin: 18px 0;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.highlight-box i {
    color: var(--brand-orange);
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}
.highlight-box p {
    margin: 0;
    color: var(--navy);
    font-weight: 500;
    line-height: 1.6;
}

/* Mobile typography ince ayar */
@media (max-width: 560px) {
    .service-article {
        padding: 22px 20px;
        border-radius: 12px;
    }
    .service-article h2 {
        font-size: 18px !important;
        padding-left: 14px;
    }
    .service-article h2::before { width: 3px; }
    .service-article > p:first-of-type { font-size: 15px; }
}

/* ============================================
   SERVICE FINDER WIZARD — 3-step interaktif öneri
   ============================================ */
.wizard-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px 28px 22px;
    box-shadow: 0 20px 60px rgba(11, 37, 71, 0.12);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}
.wizard-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-orange), #FF9550, var(--brand-orange));
}

.wizard-card .booking-head {
    text-align: left;
    margin-bottom: 20px;
}
.wizard-card .booking-head h2 {
    font-size: 20px;
    color: var(--navy);
    margin: 0 0 6px;
    font-weight: 800;
    letter-spacing: -0.4px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.wizard-card .booking-head h2 i {
    color: var(--brand-orange);
    font-size: 18px;
}
.wizard-card .booking-head p {
    font-size: 13.5px;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
}

/* PROGRESS BAR */
.wiz-progress {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}
.wiz-progress-track {
    flex: 1;
    height: 6px;
    background: var(--gray-100);
    border-radius: 999px;
    overflow: hidden;
}
.wiz-progress-fill {
    height: 100%;
    width: 33%;
    background: linear-gradient(90deg, var(--brand-orange), #FF9550);
    border-radius: 999px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.wiz-step-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-500);
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.wiz-step-label strong {
    color: var(--brand-orange);
    font-size: 14px;
}

/* STEPS */
.wiz-step {
    display: none;
    animation: wizFade 0.4s ease;
}
.wiz-step.is-active { display: block; }
@keyframes wizFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.wiz-question {
    font-size: 17px;
    color: var(--navy);
    margin: 0 0 18px;
    font-weight: 800;
    letter-spacing: -0.3px;
    line-height: 1.35;
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.wiz-q-num {
    color: var(--brand-orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* CHOICE BUTTONS */
.wiz-choices {
    display: grid;
    gap: 10px;
}
.wiz-grid-1 { grid-template-columns: 1fr; }
.wiz-grid-2 { grid-template-columns: 1fr 1fr; }
.wiz-grid-3 { grid-template-columns: 1fr 1fr 1fr; }

.wiz-choice {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 14px;
    background: #fff;
    border: 1.5px solid var(--gray-100);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--navy);
    position: relative;
    overflow: hidden;
    min-height: 56px;
}
.wiz-choice i {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: #FFF7ED;
    color: var(--brand-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.25s ease;
    flex-shrink: 0;
}
.wiz-choice span { flex: 1; line-height: 1.3; }
.wiz-choice:hover {
    border-color: var(--brand-orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(232, 84, 26, 0.15);
}
.wiz-choice:hover i {
    background: var(--brand-orange);
    color: #fff;
    transform: scale(1.08);
}
.wiz-choice.is-selected {
    border-color: var(--brand-orange);
    background: #FFF7ED;
}
.wiz-choice.is-selected i {
    background: var(--brand-orange);
    color: #fff;
}

/* Compact (kompakt grid 3 sütun) */
.wiz-compact .wiz-choice {
    padding: 12px 10px;
    font-size: 12.5px;
    min-height: 48px;
}
.wiz-compact .wiz-choice i {
    width: 26px;
    height: 26px;
    font-size: 11px;
}

/* Row variant (süre için) */
.wiz-choice.wiz-row {
    justify-content: flex-start;
}
.wiz-choice.wiz-row em {
    margin-left: auto;
    font-style: normal;
    font-size: 11px;
    font-weight: 700;
    color: var(--brand-orange);
    background: #FFF7ED;
    padding: 3px 9px;
    border-radius: 999px;
}

/* RESULT */
.wiz-result.is-active {
    display: block;
    text-align: center;
}
.wiz-result-badge {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
    box-shadow: 0 8px 22px rgba(16, 185, 129, 0.35);
    animation: wizPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes wizPop {
    0% { transform: scale(0.3); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.wiz-result-title {
    font-size: 15px;
    color: var(--gray-600);
    margin: 0 0 14px;
    font-weight: 600;
}

.wiz-result-card {
    background: linear-gradient(135deg, #0B2547 0%, #163864 100%);
    border-radius: 14px;
    padding: 16px 18px;
    color: #fff;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
}
.wiz-result-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--brand-orange);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.wiz-result-info { flex: 1; min-width: 0; }
.wiz-result-info strong {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 3px;
}
.wiz-result-info span {
    display: block;
    font-size: 13px;
    color: var(--brand-orange);
    font-weight: 700;
}

.wiz-result-summary {
    font-size: 13.5px;
    color: var(--gray-700);
    line-height: 1.6;
    margin: 0 0 16px;
}

.wiz-result-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 14px;
}
.wiz-result-actions .btn-orange,
.wiz-result-actions .btn-wp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s;
    min-height: 44px;
}
.wiz-result-actions .btn-orange {
    background: var(--brand-orange);
    color: #fff;
    box-shadow: 0 6px 18px rgba(232, 84, 26, 0.3);
}
.wiz-result-actions .btn-orange:hover {
    background: #c44513;
    transform: translateY(-2px);
}
.wiz-result-actions .btn-wp {
    background: #25D366;
    color: #fff;
}
.wiz-result-actions .btn-wp:hover {
    background: #1FB855;
    transform: translateY(-2px);
}

.wiz-restart {
    background: none;
    border: 1px dashed var(--gray-200);
    color: var(--gray-600);
    font-family: inherit;
    font-size: 12.5px;
    padding: 9px 16px;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all 0.2s;
}
.wiz-restart:hover {
    border-color: var(--brand-orange);
    color: var(--brand-orange);
}

/* FOOTER NAV */
.wiz-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px dashed var(--gray-100);
}
.wiz-back {
    background: none;
    border: none;
    color: var(--gray-500);
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 6px;
    transition: all 0.2s;
}
.wiz-back:hover:not(:disabled) {
    color: var(--brand-orange);
    background: #FFF7ED;
}
.wiz-back:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}
.wiz-trust {
    font-size: 11.5px;
    color: var(--gray-500);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.wiz-trust i { color: var(--brand-orange); }

/* MOBILE */
@media (max-width: 560px) {
    .wizard-card { padding: 22px 20px 18px; }
    .wizard-card .booking-head h2 { font-size: 17px; }
    .wiz-question { font-size: 15px; }
    .wiz-grid-2 { grid-template-columns: 1fr 1fr; }
    .wiz-grid-3 { grid-template-columns: 1fr 1fr; }
    .wiz-choice { padding: 12px 11px; font-size: 12.5px; min-height: 50px; }
    .wiz-choice i { width: 28px; height: 28px; }
    .wiz-result-actions { grid-template-columns: 1fr; }
}

/* ============================================
   AI BİLGİ KARTI — Yapay zeka için yapılandırılmış veri
   ============================================ */
.ai-info-card {
    background: #fff;
    border: 1.5px solid var(--gray-100);
    border-radius: 16px;
    padding: 22px 24px;
    margin: 0 0 28px;
    position: relative;
    overflow: hidden;
}
.ai-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--brand-orange), #FF9550);
}

.ai-info-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px dashed var(--gray-100);
}
.ai-info-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--navy), var(--brand-orange));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}
.ai-info-title {
    font-size: 15px !important;
    font-weight: 800;
    color: var(--navy) !important;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    flex: 1;
}
.ai-info-title::before { display: none !important; }
.ai-info-tag {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--brand-orange);
    background: #FFF7ED;
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid #FED7AA;
    white-space: nowrap;
}

.ai-info-list {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.ai-info-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 18px;
    padding: 10px 0;
    border-bottom: 1px dashed var(--gray-100);
}
.ai-info-row:last-child { border-bottom: 0; }

.ai-info-row dt {
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding-top: 2px;
    line-height: 1.5;
}
.ai-info-row dd {
    margin: 0;
    font-size: 14px;
    color: var(--navy);
    font-weight: 500;
    line-height: 1.55;
}

/* Mobile responsive */
@media (max-width: 720px) {
    .ai-info-card { padding: 18px 18px; border-radius: 12px; }
    .ai-info-head { flex-wrap: wrap; gap: 8px; }
    .ai-info-tag { font-size: 9.5px; padding: 3px 8px; }
    .ai-info-row {
        grid-template-columns: 1fr;
        gap: 3px;
        padding: 9px 0;
    }
    .ai-info-row dt {
        font-size: 10.5px;
    }
    .ai-info-row dd {
        font-size: 13.5px;
    }
}

/* ============================================
   QUICK REFERENCE PANEL — 3 kurumsal kart (Fiyat / Bölge / Güvence)
   ============================================ */
.quick-ref-panel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 0 0 28px;
}

.qref-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1.5px solid var(--gray-100);
    border-radius: 14px;
    padding: 18px 20px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.qref-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--brand-orange), #FF9550);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}
.qref-card:hover {
    border-color: var(--brand-orange);
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(232, 84, 26, 0.12);
}
.qref-card:hover::before { transform: scaleY(1); }

.qref-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #FFF7ED, #FFE8D5);
    color: var(--brand-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    flex-shrink: 0;
    transition: all 0.25s ease;
}
.qref-card:hover .qref-icon {
    background: linear-gradient(135deg, var(--brand-orange), #FF9550);
    color: #fff;
    transform: scale(1.05);
}

.qref-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.qref-label {
    font-size: 10.5px;
    font-weight: 800;
    color: var(--brand-orange);
    text-transform: uppercase;
    letter-spacing: 0.9px;
    line-height: 1;
    margin-bottom: 4px;
}

.qref-value {
    font-size: 17px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.4px;
    line-height: 1.15;
    margin-bottom: 4px;
    display: block;
}
.qref-value small {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--gray-500);
    margin-left: 3px;
    letter-spacing: 0;
}

.qref-sub {
    font-size: 12px;
    color: var(--gray-600);
    line-height: 1.4;
    font-weight: 500;
}

.qref-arrow {
    color: var(--gray-300);
    font-size: 13px;
    margin-left: auto;
    transition: all 0.25s ease;
    flex-shrink: 0;
}
.qref-card:hover .qref-arrow {
    color: var(--brand-orange);
    transform: translateX(3px);
}

/* Tablet */
@media (max-width: 980px) {
    .quick-ref-panel { grid-template-columns: 1fr 1fr; }
    .qref-card-trust { grid-column: 1 / -1; }
}

/* Mobile */
@media (max-width: 640px) {
    .quick-ref-panel {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .qref-card { padding: 14px 16px; }
    .qref-card-trust { grid-column: auto; }
    .qref-icon { width: 40px; height: 40px; font-size: 16px; }
    .qref-value { font-size: 15px; }
    .qref-sub { font-size: 11.5px; }
}

/* ============================================
   FAQ ENHANCEMENT — İlk FAQ açık by default, görsel iyileştirme
   ============================================ */
.faq-item[open] {
    box-shadow: 0 6px 20px rgba(232, 84, 26, 0.1);
    border-color: var(--brand-orange);
}
.faq-item[open] summary {
    color: var(--brand-orange);
}

/* ============================================
   KURUMSAL — Sayfa içeriği daha bütün hissi
   ============================================ */
/* AI Summary + AI Info Card + Quick Ref + Stat Bar arası tutarlı boşluk */
.ai-summary-box + .stat-bar,
.stat-bar + .ai-info-card,
.ai-info-card + .quick-ref-panel,
.quick-ref-panel + .content-toc {
    margin-top: 0;
}

/* Tüm üst panel grubu için subtle background */
.page-content-main {
    position: relative;
}

/* Kurumsal section ayırıcı */
.service-article + .service-article {
    margin-top: 20px;
}

/* ============================================================
   HERO WIZARD — Size Özel Çözüm Bulalım (3 adımlı)
   ============================================================ */
.wizard-card {
    background: #fff;
    border-radius: 22px;
    padding: 28px 26px;
    box-shadow: 0 24px 60px -20px rgba(11, 37, 71, 0.22), 0 1px 0 rgba(255, 255, 255, 0.6) inset;
    border: 1px solid #eef2f7;
    position: relative;
    overflow: hidden;
}
.wizard-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, #f97316, #ea580c, #f97316);
    border-radius: 22px 22px 0 0;
}
.wiz-head { margin-bottom: 18px; }
.wiz-head h2 {
    font-size: 22px; font-weight: 800; color: #0b2547;
    margin: 0 0 6px; display: flex; align-items: center; gap: 10px;
}
.wiz-head h2 i { color: #f97316; }
.wiz-head p { font-size: 14px; color: #64748b; margin: 0; }

.wiz-progress {
    display: flex; align-items: center; gap: 14px;
    margin: 18px 0 22px;
}
.wiz-progress-bar {
    flex: 1; height: 7px; background: #f1f5f9;
    border-radius: 999px; overflow: hidden; position: relative;
}
.wiz-progress-fill {
    height: 100%; background: linear-gradient(90deg, #f97316, #ea580c);
    border-radius: 999px; transition: width .35s ease; min-width: 4%;
}
.wiz-progress-text { font-size: 13px; color: #64748b; white-space: nowrap; }
.wiz-progress-text strong { color: #0b2547; font-weight: 800; }

.wiz-step { display: none; }
.wiz-step.is-active { display: block; animation: wizFadeIn .35s ease; }
@keyframes wizFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.wiz-q {
    font-size: 17px; font-weight: 700; color: #0b2547;
    margin: 0 0 14px;
}
.wiz-q-no { color: #f97316; margin-right: 6px; font-weight: 800; }

.wiz-options {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
}
.wiz-options.wiz-grid-2 { grid-template-columns: repeat(2, 1fr); }

.wiz-opt {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 16px;
    background: #fff; border: 1.5px solid #e2e8f0;
    border-radius: 14px; cursor: pointer; transition: all .15s;
    text-align: left; font-family: inherit; min-height: 60px;
}
.wiz-opt:hover {
    border-color: #f97316; background: #fff7ed;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -8px rgba(249, 115, 22, .25);
}
.wiz-opt.is-selected {
    border-color: #f97316; background: #fff7ed;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}
.wiz-opt i:first-child {
    width: 36px; height: 36px; border-radius: 10px;
    background: #fff7ed; color: #f97316;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 16px; flex-shrink: 0;
}
.wiz-opt span {
    flex: 1; font-size: 14px; font-weight: 600;
    color: #0b2547; line-height: 1.3;
}
.wiz-opt small {
    display: block; font-size: 11px; color: #94a3b8;
    font-weight: 500; margin-top: 2px;
}

.wiz-result { text-align: center; }
.wiz-result .wiz-q { font-size: 19px; color: #10b981; justify-content: center; }
.wiz-result .wiz-q i { font-size: 22px; margin-right: 8px; }
.wiz-result > p { color: #475569; margin: 8px 0 16px; }

.wiz-foot {
    margin-top: 18px; padding-top: 14px;
    border-top: 1px dashed #e2e8f0;
    display: flex; justify-content: space-between; align-items: center;
    gap: 10px;
}
.wiz-back {
    background: transparent; border: 0; color: #64748b;
    font-size: 13px; cursor: pointer; font-family: inherit;
    display: inline-flex; align-items: center; gap: 6px;
}
.wiz-back:hover { color: #0b2547; }
.wiz-trust {
    font-size: 12px; color: #64748b;
    display: inline-flex; align-items: center; gap: 6px;
}
.wiz-trust i { color: #f97316; }

/* Hero trust badges (kart altı) */
.hero-trust-badges {
    display: flex; flex-wrap: wrap; gap: 14px;
    justify-content: center; margin-top: 16px;
    padding: 14px 18px; background: #f8fafc;
    border-radius: 14px; border: 1px solid #e2e8f0;
}
.hero-trust-badges span {
    font-size: 13px; color: #475569; font-weight: 600;
    display: inline-flex; align-items: center; gap: 6px;
}
.hero-trust-badges i { color: #f97316; font-size: 14px; }

/* Mobil */
@media (max-width: 768px) {
    .wizard-card { padding: 22px 18px; }
    .wiz-head h2 { font-size: 18px; }
    .wiz-options.wiz-grid-2 { grid-template-columns: 1fr; }
    .hero-trust-badges { gap: 10px; padding: 12px; }
    .hero-trust-badges span { font-size: 12px; }
}

/* ============================================================
   SERVICE/LOCATION DETAIL — Sidebar info list ve CTA buton düzeltmeleri
   ============================================================ */
.sidebar-info-list li {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 10px 0; border-bottom: 1px dashed #e2e8f0;
}
.sidebar-info-list li:last-child { border-bottom: 0; }
.sidebar-info-list li > i {
    width: 36px; height: 36px; flex-shrink: 0;
    border-radius: 10px; background: #f0f9ff; color: #0ea5e9;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 14px;
}
.sidebar-info-list li > div { display: flex; flex-direction: column; gap: 2px; }
.sidebar-info-list li strong {
    font-size: 13px; color: #0b2547; font-weight: 700;
}
.sidebar-info-list li span {
    font-size: 13px; color: #64748b; line-height: 1.4;
}

.cta-action-row {
    display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px;
}
.cta-action-btn {
    flex: 1; min-width: 200px;
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 22px; border-radius: 12px;
    font-weight: 700; font-size: 15px;
    text-decoration: none; transition: all .15s;
}
.cta-action-btn i { font-size: 16px; }
.cta-action-primary {
    background: linear-gradient(135deg, #f97316, #ea580c); color: #fff;
}
.cta-action-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px -6px rgba(249, 115, 22, .4);
}
.cta-action-secondary {
    background: #fff; color: #0b2547;
    border: 2px solid #0b2547;
}
.cta-action-secondary:hover { background: #0b2547; color: #fff; }
.cta-action-whatsapp {
    background: #25d366; color: #fff;
}
.cta-action-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px -6px rgba(37, 211, 102, .4);
}
@media (max-width: 768px) {
    .cta-action-btn { min-width: 100%; }
}
