/* ==========================================
   Rota 7/24 VIP Cekici - CSS Design System (Liquid Gold & Luxury Glassmorphic)
   ========================================== */

:root {
    --color-primary: #000000;      /* Midnight Black */
    --color-secondary: #F6CA46;    /* Premium Gold/Yellow */
    --color-secondary-hover: #e2b023;
    --color-accent: #7f1d1d;       /* Royal Burgundy */
    --color-bg-light: #FAF9F6;     /* Champagne */
    --color-bg-alt: #F3F1EB;       /* Soft Linen */
    --color-text-main: #334155;    /* Slate-700 */
    --color-text-muted: #64748b;   /* Slate-500 */
    --color-whatsapp: #25d366;     /* WhatsApp Green */
    
    --shadow-sm: 0 4px 20px rgba(246, 202, 70, 0.08);
    --shadow-md: 0 15px 40px rgba(246, 202, 70, 0.12);
    --shadow-lg: 0 30px 60px rgba(246, 202, 70, 0.18);
    --shadow-gold: 0 12px 35px rgba(246, 202, 70, 0.3);
    --shadow-emergency: 0 12px 35px rgba(127, 29, 29, 0.25);
    
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --header-height: 135px; /* Restored to large height */
}

/* --- Base & Reset Styles --- */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: #ffffff;
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 90px; /* Offset for road animation height */
}

@media (max-width: 767px) {
    body {
        padding-bottom: 130px !important; /* Offset for sticky bar height (60px) + road animation height (70px) */
    }
    .hero-slider-section {
        margin-bottom: 580px !important; /* Increased from 490px to prevent quick-dispatch section description from slipping under the booking card */
    }
}


.container {
    width: 100%;
    max-width: 1340px !important; /* Expanded from 1200px to match the header span and create a wider look */
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Premium Buttons & CTAs --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 34px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    gap: 8px;
}

.btn-primary {
    background-color: var(--color-secondary);
    color: #ffffff;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background-color: var(--color-secondary-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(246, 202, 70, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 1.5px solid var(--color-secondary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-secondary);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-wa {
    border-color: var(--color-whatsapp);
    color: var(--color-whatsapp);
}

.btn-wa:hover {
    background-color: var(--color-whatsapp);
    color: #ffffff;
    border-color: var(--color-whatsapp);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.15);
    transform: translateY(-3px);
}

.btn-emergency-pulse {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-hover) 100%);
    color: #000000;
    box-shadow: var(--shadow-gold);
    animation: emergencyPulse 2s infinite;
    border: none;
}

.btn-emergency-pulse:hover {
    background: linear-gradient(135deg, #ffffff 0%, #fef08a 100%);
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(246, 202, 70, 0.45);
}

@keyframes emergencyPulse {
    0% { box-shadow: 0 0 0 0 rgba(246, 202, 70, 0.5); }
    70% { box-shadow: 0 0 0 12px rgba(246, 202, 70, 0); }
    100% { box-shadow: 0 0 0 0 rgba(246, 202, 70, 0); }
}

/* --- Section Layout --- */
.section {
    padding: 80px 0;
    position: relative;
}

.section-bg {
    background-color: var(--color-bg-light);
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 75px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    color: #000000; /* Set to black for maximum contrast and readability */
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: inline-block;
    background-color: rgba(246, 202, 70, 0.08);
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid rgba(246, 202, 70, 0.2);
}

/* Subtitle overrides for dark sections */
.steps-section .section-subtitle,
.stats-section .section-subtitle {
    color: #ffffff !important; /* White text for high contrast on dark backgrounds */
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -1.5px;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-desc {
    font-size: 16px;
    color: var(--color-text-muted);
}

@media (max-width: 768px) {
    .section {
        padding: 50px 0;
    }
    .section-title {
        font-size: 30px;
    }
}

/* ==========================================
   Header & Nav Styling (Luxury Floating Glass)
   ========================================== */
.site-header {
    position: fixed;
    top: -6px; /* Shifted slightly off-screen to top: -6px as requested */
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1480px; /* Expanded from 1340px for a wider, more luxurious desktop span */
    height: var(--header-height);
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid transparent;
    border-radius: 24px;
    box-shadow: none;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}


/* White text for menus on transparent header */
.site-header .nav-menu-list a {
    color: rgba(255, 255, 255, 0.9) !important;
}

.site-header .mobile-menu-toggle .bar {
    background-color: #ffffff;
}

/* Scrolled Header State - Docked & Slimmed down */
.site-header.header-scrolled {
    top: 0;
    width: 100%;
    max-width: 100%;
    height: 100px; /* Taller scrolled header for a larger logo */
    border-radius: 0 0 20px 20px; /* Modern bottom curves */
    background: rgba(255, 255, 255, 0.95); /* Premium White glass */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08); /* Soft dark boundary line */
    border-top: none;
    border-left: none;
    border-right: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Elegant soft shadow */
}

.site-header.header-scrolled .nav-menu-list > li > a {
    color: #000000 !important; /* Dark text for readability on white background */
    font-size: 14.5px; /* Enlarged slightly as requested */
    padding: 9px 13px; /* Adjusted padding to match the larger size */
    font-weight: 600; /* Crisp semi-bold weight */
}

.site-header.header-scrolled .nav-menu-list > li.current-menu-item > a,
.site-header.header-scrolled .nav-menu-list > li.current_page_item > a,
.site-header.header-scrolled .nav-menu-list > li.current-menu-ancestor > a,
body.home .site-header.header-scrolled .nav-menu-list > li.menu-item-home > a {
    color: var(--color-secondary) !important; /* Keep active state gold/yellow */
    background: #000000 !important; /* Black background as requested */
    border-color: #000000 !important; /* Black border lines as requested */
    font-weight: 700; /* Crisp bold weight */
}

.site-header.header-scrolled .nav-menu-list > li.current-menu-item::after,
.site-header.header-scrolled .nav-menu-list > li.current_page_item::after,
.site-header.header-scrolled .nav-menu-list > li.current-menu-ancestor::after,
body.home .site-header.header-scrolled .nav-menu-list > li.menu-item-home::after {
    background-color: var(--color-secondary); /* Dot color is gold/yellow */
    box-shadow: 0 0 12px var(--color-secondary), 0 0 4px rgba(246, 202, 70, 0.5);
}

.site-header.header-scrolled .mobile-menu-toggle .bar {
    background-color: #000000; /* Dark bars for mobile menu toggle on white background */
}

/* Scrolled Header State Inner Adjustments */
.site-header.header-scrolled .nav-container {
    max-width: 1480px !important; /* Constrain the inner elements to match the expanded normal state header span */
    margin: 0 auto;
    padding: 0 24px !important; /* Added side padding to prevent overflow */
}

.site-header.header-scrolled .logo-wrapper {
    height: 96px; /* Enlarged for maximum desktop visibility */
}

.logo-sticky {
    display: none !important;
}

.logo-normal {
    display: flex !important;
}

.site-header.header-scrolled .logo-normal {
    display: none !important;
}

.site-header.header-scrolled .logo-sticky {
    display: flex !important;
}

.site-header.header-scrolled .nav-cta {
    padding: 11px 28px !important; /* Enlarged scrolled logo for better visibility */
    font-size: 13px !important;
}

.main-nav {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100% !important; /* Override container max-width to allow logo to go left and button to go right */
    padding: 0 24px !important; /* Side padding to protect elements from screen edge */
}

.site-logo {
    display: flex;
    align-items: center;
    margin-left: -35px !important; /* Shifted slightly right to provide safe breathing room */
}

.logo-wrapper {
    display: flex;
    align-items: center;
    height: 100px;
    width: auto;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-logo:hover .logo-wrapper {
    transform: scale(1.03);
}

.logo-emblem {
    position: relative;
    height: 100%;
    aspect-ratio: 670 / 535;
    perspective: 800px;
    flex-shrink: 0; /* Prevent flex squishing in sticky/mobile headers */
}

.headlight {
    position: absolute;
    width: 1.2%;
    height: 1.5%;
    border-radius: 50%;
    background-color: #ffffff;
    pointer-events: none;
    z-index: 10;
    opacity: 0;
    mix-blend-mode: screen;
    font-size: 10px; /* Base size for responsive em values */
    box-shadow: 0 0 0.3em 0.1em #ffffff, 0 0 1em 0.3em #ffeb3b, 0 0 2em 0.8em #ffc107;
    animation: headlightFlash 8s infinite ease-in-out;
}

/* Focused Projector Headlight Cone (Sharp, not scattered, projecting forward) */
.headlight::before {
    content: '';
    position: absolute;
    right: 50%; /* Starts exactly at the horizontal center of the headlight */
    top: 50%;
    width: 12em; /* Stretches further forward to the left */
    height: 2.2em; /* Height of the cone at the far end */
    background: linear-gradient(to left, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 240, 150, 0.7) 15%, 
        rgba(255, 235, 59, 0.3) 50%, 
        rgba(255, 235, 59, 0) 100%
    );
    /* Shape into a focused projector light cone using clip-path polygon */
    clip-path: polygon(100% 50%, 0% 12%, 0% 88%);
    transform: translate(0, -50%) rotate(7deg); /* Projects forward onto the road at a realistic vehicle angle */
    transform-origin: right center; /* Rotates exactly from the headlight bulb pivot */
    pointer-events: none;
    mix-blend-mode: screen;
}

/* Vertical / Cross Starburst Flare Line */
.headlight::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0.18em;
    height: 2.2em;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 1) 0%, rgba(255, 235, 59, 0.7) 30%, rgba(255, 235, 59, 0) 80%);
    transform: translate(-50%, -50%) rotate(7deg);
    pointer-events: none;
    mix-blend-mode: screen;
}

.headlight-left {
    left: 41.3%;
    top: 79.4%;
}

.headlight-right {
    left: 53.7%;
    top: 77.0%;
}

.site-header.header-scrolled .headlight {
    font-size: 11px; /* Slightly larger in sticky header to stand out against the lighter background */
}

@media (max-width: 991px) {
    .headlight {
        font-size: 4.5px;
    }
}

.logo-emblem-base {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fit container bounds exactly to align headlight overlays */
    display: block !important;
    transform-style: preserve-3d;
    backface-visibility: visible;
    animation: emblemRotate 8s infinite cubic-bezier(0.45, 0, 0.55, 1);
}

.logo-emblem-car {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fit container bounds exactly to align headlight overlays */
    display: block !important;
    animation: carSettle 8s infinite cubic-bezier(0.25, 1, 0.5, 1);
}

.logo-text {
    height: 100%;
    aspect-ratio: 866 / 535;
    object-fit: contain;
    display: block !important;
}

.site-logo.footer-logo {
    margin-left: 0 !important; /* Visually aligns the logo content with the footer text */
    margin-bottom: 25px; /* Adds breathing room below the logo */
}

/* Static logo for footer */
.footer-logo .logo-wrapper {
    height: 120px;
}
.footer-logo .logo-emblem-base,
.footer-logo .logo-emblem-car {
    animation: none !important;
}
.footer-logo .headlight {
    display: none !important;
}

@keyframes emblemRotate {
    0% {
        transform: rotateY(0deg);
    }
    30% {
        transform: rotateY(-360deg);
    }
    100% {
        transform: rotateY(-360deg);
    }
}

@keyframes carSettle {
    0%, 30% {
        transform: translate(40px, 10px) scale(0.8);
        opacity: 0;
    }
    52% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
}

@keyframes headlightFlash {
    0%, 52% {
        opacity: 0;
        transform: scale(0.5);
    }
    55% {
        opacity: 0.95;
        transform: scale(1);
    }
    58% {
        opacity: 0;
        transform: scale(0.7);
    }
    61% {
        opacity: 0.95;
        transform: scale(1.2);
    }
    64% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 0;
        transform: scale(0.5);
    }
}



.nav-menu-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 50px;
}

@media (max-width: 991px) {
    .nav-menu-wrapper {
        display: none;
    }
}

.nav-menu-list {
    display: flex;
    list-style: none;
    gap: 4px; /* Bring capsule pills slightly closer together */
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu-list > li {
    position: relative;
}

/* Top-level Menu Links - Luxury Floating Glass Capsule Tab */
.nav-menu-list > li > a {
    font-family: var(--font-heading);
    font-weight: 600; /* Crisp semi-bold weight */
    font-size: 14px; /* Reduced font-size for a cleaner, more compact look */
    padding: 8px 12px; /* Reduced padding to make the menu links smaller */
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.85) !important;
    border: 1px solid transparent;
    white-space: nowrap; /* Prevent menu link text from wrapping onto multiple lines */
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover State - Delicate Gold Tinted Floating Capsule */
.nav-menu-list > li > a:hover {
    color: var(--color-secondary) !important;
    background: rgba(246, 202, 70, 0.08);
    border-color: rgba(246, 202, 70, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    text-shadow: 0 0 10px rgba(246, 202, 70, 0.2);
}

.nav-menu-list > li.current-menu-item > a,
.nav-menu-list > li.current_page_item > a,
.nav-menu-list > li.current-menu-ancestor > a,
body.home .nav-menu-list > li.menu-item-home > a {
    color: var(--color-secondary) !important;
    background: rgba(246, 202, 70, 0.22) !important;
    border-color: rgba(246, 202, 70, 0.45) !important;
    font-weight: 700; /* Crisp bold weight */
    box-shadow: 0 4px 15px rgba(246, 202, 70, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Elegant active indicator dot beneath the active capsule */
.nav-menu-list > li.current-menu-item::after,
.nav-menu-list > li.current_page_item::after,
.nav-menu-list > li.current-menu-ancestor::after,
body.home .nav-menu-list > li.menu-item-home::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--color-secondary), 0 0 4px rgba(246, 202, 70, 0.5);
    animation: menuDotPulse 2s infinite ease-in-out;
}

@keyframes menuDotPulse {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.8; }
    50% { transform: translateX(-50%) scale(1.3); opacity: 1; }
}

.nav-menu-list .menu-item-has-children > a::after {
    content: ' \25BC';
    font-size: 8px;
    margin-left: 5px;
    display: inline-block;
    color: var(--color-secondary);
    transition: transform 0.2s ease;
}

.nav-menu-list .menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}

/* Premium Dark Dropdown Sub-menu styling */
.nav-menu-list .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: rgba(11, 15, 25, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 220px;
    padding: 14px 0;
    margin: 0;
    list-style: none;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(246, 202, 70, 0.25);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
}

.nav-menu-list li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(8px);
}

.nav-menu-list .sub-menu a {
    padding: 10px 24px;
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8) !important;
    text-transform: none;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.nav-menu-list .sub-menu a::after {
    display: none;
}

.nav-menu-list .sub-menu a:hover {
    background-color: rgba(246, 202, 70, 0.1);
    color: var(--color-secondary) !important;
    padding-left: 28px;
}

/* Call Button redesign - VIP Gold Metallic Button */
.nav-cta {
    position: relative;
    padding: 11px 28px !important; /* Adjusted slightly down for a cleaner normal state */
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 12.5px !important; /* Adjusted slightly down for normal state */
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #000000 0%, var(--color-secondary) 100%); /* Luxury black to gold gradient */
    border: 1px solid rgba(246, 202, 70, 0.35); /* Premium gold border */
    border-radius: 12px;
    color: #ffffff !important; /* White text color */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35), 0 0 15px rgba(246, 202, 70, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap; /* Prevent CTA text from wrapping onto multiple lines */
    margin-right: -15px !important; /* Shifted slightly back to prevent edge cutoff */
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Shiny metallic sweep overlay */
.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.6s ease;
    z-index: -1;
}

.nav-cta:hover {
    transform: translateY(-2px) scale(1.03); /* Pop-up scale effect */
    box-shadow: 0 12px 30px rgba(246, 202, 70, 0.55), 0 0 20px rgba(246, 202, 70, 0.25); /* Enhanced glowing gold shadow */
    color: #ffffff !important;
    border-color: #ffffff; /* Border transitions to white */
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta .icon-phone {
    animation: navPhonePulse 2s infinite ease-in-out;
    flex-shrink: 0;
}

@keyframes navPhonePulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(-8deg); }
}

/* Sleek hamburger menu button design */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
    position: relative;
}

.mobile-menu-toggle .bar {
    display: block;
    width: 26px;
    height: 2px;
    background-color: #ffffff;
    margin: 6px 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 4px;
}

/* Sleek transition to X state */
.mobile-menu-toggle.active .bar-1 {
    transform: rotate(-45deg) translate(-6px, 5px);
    background-color: var(--color-secondary);
}

.mobile-menu-toggle.active .bar-2 {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active .bar-3 {
    transform: rotate(45deg) translate(-6px, -5px);
    background-color: var(--color-secondary);
}

/* Mobile drawer redesigned as luxury dark blurred panel */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 100%;
    height: 100vh;
    background-color: rgba(11, 15, 25, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 1050;
    box-shadow: -15px 0 45px rgba(0, 0, 0, 0.5);
    padding: 0 !important; /* Managed by header and container padding */
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 1.5px solid rgba(246, 202, 70, 0.25);
    display: flex;
    flex-direction: column;
}

.mobile-nav-drawer.active {
    right: 0;
}

/* Hide header menu toggle when drawer is open */
.mobile-menu-toggle.active {
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Drawer logo and close button header */
.drawer-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 24px 30px 20px 30px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    margin-bottom: 24px !important;
    width: 100% !important;
}

.drawer-logo {
    display: flex !important;
    align-items: center !important;
    margin-left: -24px !important; /* Offset transparent spacing inside logo image */
}

.drawer-logo-wrapper {
    height: 72px !important;
}

.drawer-close-btn {
    background: rgba(246, 202, 70, 0.12) !important;
    border: 1.5px solid rgba(246, 202, 70, 0.45) !important;
    color: var(--color-secondary) !important; /* Gold X */
    width: 46px !important;
    height: 46px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    outline: none !important;
}

.drawer-close-btn:hover,
.drawer-close-btn:focus {
    background: var(--color-secondary) !important;
    color: #000000 !important;
    border-color: var(--color-secondary) !important;
    transform: rotate(90deg) !important;
}

.drawer-close-btn svg {
    width: 25px !important;
    height: 25px !important;
    stroke: currentColor !important;
}

.mobile-menu-container {
    padding: 0 30px 30px 30px !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
}

.mobile-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px; /* Reduced gap for cleaner vertical proportions */
    margin-bottom: 40px;
    padding: 0;
}

.mobile-menu-list a {
    color: rgba(255, 255, 255, 0.85) !important;
    font-family: var(--font-heading) !important;
    font-weight: 700;
    font-size: 15px !important; /* Elegant size for button links */
    display: block !important;
    padding: 13px 18px !important;
    background: rgba(255, 255, 255, 0.04) !important; /* Premium subtle glass */
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.mobile-menu-list a:hover, 
.mobile-menu-list .current-menu-item > a,
.mobile-menu-list .current_page_item > a,
body.home .mobile-menu-list .menu-item-home > a {
    color: var(--color-secondary) !important;
    background: rgba(246, 202, 70, 0.08) !important; /* Premium gold tint */
    border-color: rgba(246, 202, 70, 0.35) !important;
    padding-left: 24px !important; /* Slick left padding transition */
}

.mobile-cta {
    width: 100% !important;
    margin-top: auto !important;
    padding: 14px 10px !important; /* Tighter padding for single line fit */
    font-weight: 800 !important;
    font-size: 12px !important; /* Compact text size to prevent wrapping */
    border-radius: 14px !important;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-hover) 100%) !important;
    color: #000000 !important;
    box-shadow: 0 10px 25px rgba(246, 202, 70, 0.2) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    white-space: nowrap !important; /* Forces text to reside on a single line */
}

/* Premium staggered animations for drawer items when opened */
.mobile-nav-drawer .mobile-menu-list li {
    opacity: 0 !important;
    transform: translateY(15px) !important;
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.mobile-nav-drawer.active .mobile-menu-list li {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Staggered delay for each menu item */
.mobile-nav-drawer.active .mobile-menu-list li:nth-child(1) { transition-delay: 0.08s !important; }
.mobile-nav-drawer.active .mobile-menu-list li:nth-child(2) { transition-delay: 0.15s !important; }
.mobile-nav-drawer.active .mobile-menu-list li:nth-child(3) { transition-delay: 0.22s !important; }
.mobile-nav-drawer.active .mobile-menu-list li:nth-child(4) { transition-delay: 0.29s !important; }
.mobile-nav-drawer.active .mobile-menu-list li:nth-child(5) { transition-delay: 0.36s !important; }
.mobile-nav-drawer.active .mobile-menu-list li:nth-child(6) { transition-delay: 0.43s !important; }

/* Stagger animation for the CTA button */
.mobile-nav-drawer .mobile-cta {
    opacity: 0 !important;
    transform: translateY(15px) !important;
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.mobile-nav-drawer.active .mobile-cta {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
    transition-delay: 0.5s !important;
}

@media (max-width: 991px) {
    .nav-menu-list {
        display: none;
    }
    .nav-cta {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-end !important; /* Stylish right-alignment for staggered bars */
        justify-content: center !important;
        width: 44px !important;
        height: 44px !important;
        border-radius: 50% !important;
        background: rgba(246, 202, 70, 0.12) !important;
        border: 1.5px solid rgba(246, 202, 70, 0.45) !important;
        padding: 0 12px 0 0 !important; /* Math-calculated padding to center the widest 20px bar */
        transition: all 0.3s ease !important;
        outline: none !important;
    }
    .mobile-menu-toggle .bar {
        background-color: #ffffff !important; /* White lines inside the gold circle */
        height: 2px !important;
        margin: 3px 0 !important;
        border-radius: 2px !important;
        transition: all 0.4s ease !important;
    }
    .mobile-menu-toggle .bar-1 {
        width: 20px !important;
    }
    .mobile-menu-toggle .bar-2 {
        width: 13px !important;
    }
    .mobile-menu-toggle .bar-3 {
        width: 17px !important;
    }
    .site-header {
        top: 15px;
        width: calc(100% - 30px);
        height: 95px !important; /* Limit header height on mobile to prevent content overlap */
        border-radius: 18px;
        background: rgba(10, 12, 22, 0.45) !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
        border: 1px solid rgba(246, 202, 70, 0.35) !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
    }
    .nav-container {
        padding: 0 20px !important;
    }
    .site-logo {
        margin-left: 0 !important;
    }
    .nav-cta {
        margin-right: 0 !important;
    }
    .logo-wrapper {
        height: 86px !important; /* Enlarged mobile logo */
    }
    .site-header.header-scrolled {
        top: 0;
        width: 100% !important;
        max-width: 100% !important;
        height: 95px !important; /* Increased to allow maximum logo size */
        border-radius: 0 0 20px 20px !important;
        background: rgba(255, 255, 255, 0.95) !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
        border-top: none !important;
        border-left: none !important;
        border-right: none !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    }
    .site-header.header-scrolled .logo-wrapper {
        height: 86px !important; /* Enlarged to match normal state size for visibility */
    }
    .site-header.header-scrolled .mobile-menu-toggle {
        background: rgba(246, 202, 70, 0.08) !important; /* Gold tinted bg on scroll */
        border-color: rgba(246, 202, 70, 0.45) !important; /* Gold border on scroll */
    }
    .site-header.header-scrolled .mobile-menu-toggle .bar {
        background-color: #000000 !important; /* Black bars on scrolled header for maximum contrast */
    }
    .hero-slider-section {
        z-index: 25 !important;
        margin-bottom: 0 !important;
    }
}

/* ==========================================
   Bölüm 1: Hero VIP Banner (Luxury Gold Editorial)
   ========================================== */
.slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--color-secondary);
    margin-bottom: 24px;
    text-transform: uppercase;
    background: rgba(246, 202, 70, 0.12);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(246, 202, 70, 0.3);
    box-shadow: 0 4px 15px rgba(246, 202, 70, 0.08);
}

.slide-title {
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 22px;
    color: #ffffff;
    letter-spacing: -1.5px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.slide-title span {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 991px) {
    .slide-title {
        font-size: 46px;
    }
}

@media (max-width: 576px) {
    .slide-title {
        font-size: 34px;
        letter-spacing: -0.5px;
    }
}

.slide-desc {
    font-size: 17px;
    color: #e2e8f0;
    line-height: 1.65;
    margin-bottom: 40px;
    max-width: 620px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.slide-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* Specific button overrides inside sliders for high contrast & luxury appearance */
.slide-actions .btn {
    border-radius: 14px;
    font-size: 13.5px;
    font-weight: 800;
    padding: 16px 36px;
}

.slide-actions .btn-primary {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #e2a612 100%);
    color: #000000 !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(246, 202, 70, 0.35);
}

.slide-actions .btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(246, 202, 70, 0.55);
}

/* Gold emergency pulse overrides inside sliders */
.slide-actions .btn-primary.btn-emergency-pulse {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-hover) 100%);
    color: #000000 !important;
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(246, 202, 70, 0.35);
    animation: heroEmergencyPulse 2s infinite ease-in-out;
}

.slide-actions .btn-primary.btn-emergency-pulse:hover {
    background: linear-gradient(135deg, #ffffff 0%, #fef08a 100%);
    box-shadow: 0 15px 35px rgba(246, 202, 70, 0.55);
}

@keyframes heroEmergencyPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(246, 202, 70, 0.6); }
    50% { box-shadow: 0 0 0 14px rgba(246, 202, 70, 0); }
}

.slide-actions .btn-outline {
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slide-actions .btn-outline:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #000000 !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.35);
}

@media (max-width: 576px) {
    .slide-actions {
        flex-direction: column;
        gap: 12px;
    }
    .slide-actions .btn {
        width: 100%;
        text-align: center;
    }
}

/* Swiper Controls */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: var(--color-secondary); /* Premium Gold/Yellow (Primary Brand Color) */
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.4); /* Darker background for high gold contrast */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(246, 202, 70, 0.3); /* Gold glass border */
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
    background: var(--color-secondary);
    color: var(--color-primary);
    border-color: var(--color-secondary);
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev {
        display: none;
    }
}



/* Swiper Autoplay Progress Bar */
.hero-swiper-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    z-index: 10;
    overflow: hidden;
}

.hero-swiper-progress-bar .progress-bar-fill {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-secondary-hover) 100%);
    box-shadow: 0 0 10px rgba(246, 202, 70, 0.6);
    transition: width 6000ms linear;
}

/* ==========================================
   Bölüm 2: Apple Scroll Showcase (Premium Light Glass)
   ========================================== */
.apple-scroll-showcase {
    position: relative;
    z-index: 2;
    background-color: #050608; /* Deep Onyx Dark */
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    overflow: hidden;
}

/* Subtle gold decorative glow overlays in the background */
.apple-scroll-showcase::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(246, 202, 70, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    filter: blur(40px);
}

.apple-scroll-showcase::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(127, 29, 29, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    filter: blur(40px);
}

.scroll-pin-container {
    position: relative;
    width: 100%;
    z-index: 2;
}

.scroll-flex-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    min-height: 100vh;
    align-items: start;
    position: relative;
}

.scroll-text-col {
    padding: 110px 0;
}

.scroll-super-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(246, 202, 70, 0.35);
    background: linear-gradient(90deg, rgba(246, 202, 70, 0.08) 0%, rgba(246, 202, 70, 0.01) 100%);
    color: var(--color-secondary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 2.5px;
    padding: 8px 20px;
    border-radius: 6px;
    margin-bottom: 25px;
    text-transform: uppercase;
    backdrop-filter: blur(5px);
}

.scroll-headline {
    color: #ffffff;
    font-size: 38px;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: 50px;
    line-height: 1.25;
    text-transform: uppercase;
    background: linear-gradient(180deg, #ffffff 40%, #e2b023 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.scroll-features-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Feature Item Styling - Luxury Glassmorphic Card */
.scroll-feature-item {
    position: relative;
    display: flex;
    gap: 24px;
    align-items: start;
    padding: 35px 35px 35px 30px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    background: rgba(255, 255, 255, 0.01);
    opacity: 0.45;
    transform: scale(0.98);
    transform-origin: left center;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(to bottom, var(--color-secondary), #b88e17);
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Active Feature Card Styling */
.scroll-feature-item.active {
    opacity: 1;
    transform: scale(1.02);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.45) 0%, rgba(3, 7, 18, 0.75) 100%);
    border-color: rgba(246, 202, 70, 0.25);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.55), 
        inset 0 1px 1px rgba(255, 255, 255, 0.05),
        0 0 25px rgba(246, 202, 70, 0.08);
}

.scroll-feature-item.active::before {
    opacity: 1;
}

/* Number Emblem */
.scroll-feature-item .feat-num {
    position: absolute;
    top: 25px;
    right: 30px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 3px 12px;
    background: rgba(255, 255, 255, 0.01);
    line-height: 1.2;
    transition: all 0.4s ease;
}

.scroll-feature-item.active .feat-num {
    color: var(--color-secondary);
    border-color: rgba(246, 202, 70, 0.35);
    background: rgba(246, 202, 70, 0.15);
    box-shadow: 0 2px 8px rgba(246, 202, 70, 0.1);
}

/* Icon Box */
.feat-icon-box {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.feat-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.5s ease;
}

.scroll-feature-item.active .feat-icon-box {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #b88e17 100%);
    color: #000000;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(246, 202, 70, 0.3);
}

.scroll-feature-item.active .feat-icon {
    transform: scale(1.05);
}

.feat-content {
    flex-grow: 1;
    padding-top: 2px;
}

.scroll-feature-item h3 {
    color: #ffffff;
    font-size: 21px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.scroll-feature-item.active h3 {
    color: var(--color-secondary);
}

.scroll-feature-item p {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.65;
    transition: color 0.3s ease;
}

.scroll-feature-item.active p {
    color: #cbd5e1;
}

/* Media/Image Column and Slides */
.scroll-media-col {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    align-self: start;
}

.media-sticky-wrapper {
    position: sticky;
    top: calc(50vh - 230px);
    width: 100%;
    max-width: 480px;
    height: 460px;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.55), inset 0 1px 1px rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(246, 202, 70, 0.25);
    background: #000000;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.media-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.08) rotate(1deg);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.media-slide.active {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    z-index: 2;
}

.scroll-showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(246, 202, 70, 0.15) 0%, transparent 65%);
    z-index: 3;
    pointer-events: none;
}

/* Responsiveness adjustments */
@media (max-width: 991px) {
    .scroll-flex-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        min-height: auto;
    }
    .scroll-text-col {
        padding: 60px 0 10px 0;
    }
    .scroll-headline {
        font-size: 28px;
        margin-bottom: 30px;
        text-align: center;
    }
    .scroll-super-tag {
        display: flex;
        margin: 0 auto 20px auto;
        width: max-content;
    }
    .scroll-media-col {
        height: auto;
        padding-bottom: 50px;
        order: -1; /* Display media on top of the list for mobile/tablet */
    }
    .media-sticky-wrapper {
        position: relative;
        top: 0;
        margin: 0 auto;
        height: 340px;
        max-width: 100%;
        border-radius: 28px;
    }
    .scroll-feature-item {
        opacity: 0.95;
        transform: scale(1) !important;
        background: linear-gradient(135deg, rgba(15, 23, 42, 0.45) 0%, rgba(3, 7, 18, 0.75) 100%);
        border-color: rgba(255, 255, 255, 0.04);
        padding: 25px 25px 25px 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    }
    .scroll-feature-item.active {
        border-color: rgba(246, 202, 70, 0.3);
    }
    .scroll-feature-item .feat-num {
        right: 20px;
        top: 20px;
        font-size: 13px;
    }
    .feat-icon-box {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }
    .feat-icon {
        width: 20px;
        height: 20px;
    }
    .scroll-feature-item h3 {
        font-size: 19px;
    }
    .scroll-feature-item p {
        font-size: 14px;
    }
}

/* ==========================================
   Bölüm 3: Türkiye Geneli Kapsam & İstatistikler (Midnight Luxury)
   ========================================== */
.container-wide {
    width: 100%;
    max-width: 1440px !important;
    margin: 0 auto;
    padding: 0 24px;
}

.stats-section {
    background-color: #ffffff;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(246, 202, 70, 0.03) 0%, transparent 40%),
        linear-gradient(to right, rgba(246, 202, 70, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(246, 202, 70, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 50px 50px, 50px 50px;
    padding: 120px 0 70px 0 !important; /* Reduced bottom padding */
    position: relative;
    z-index: 10;
    overflow: hidden;
}

/* Elegant top and bottom glowing border lines */
.stats-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(246, 202, 70, 0.3), transparent);
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(246, 202, 70, 0.2), transparent);
}

.stats-section .section-subtitle {
    color: #854d0e !important;
    background: rgba(246, 202, 70, 0.08);
    border: 1px solid rgba(246, 202, 70, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    padding: 8px 20px;
    text-transform: uppercase;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(246, 202, 70, 0.08);
}

.stats-section .section-title {
    color: #0f172a !important;
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.stats-section .section-desc {
    color: #475569;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 65px;
}

.stat-card {
    background: linear-gradient(135deg, #ffffff 0%, #FAF9F6 100%);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    padding: 55px 30px 45px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0, 0, 0, 0.01);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(246, 202, 70, 0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-20deg);
    transition: none;
    pointer-events: none;
    z-index: 3;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover::after {
    left: 150%;
    transition: left 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: rgba(246, 202, 70, 0.85);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08), 0 8px 24px rgba(0, 0, 0, 0.02);
}

.stat-icon-wrapper {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: rgba(246, 202, 70, 0.06);
    border: 2px solid rgba(246, 202, 70, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #a16207;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 25px rgba(246, 202, 70, 0.05);
}

.stat-icon-wrapper svg {
    width: 28px;
    height: 28px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), stroke 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1.5px dashed rgba(246, 202, 70, 0.3);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stat-card:hover .stat-icon-wrapper {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #e2b023 100%);
    color: #000000;
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(246, 202, 70, 0.3);
    transform: scale(1.08) rotate(4deg);
}

.stat-card:hover .stat-icon-wrapper svg {
    stroke: #000000;
}

.stat-card:hover .stat-icon-wrapper::after {
    opacity: 1;
    animation: borderSpin 12s linear infinite;
}

@keyframes borderSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.stat-watermark {
    position: absolute;
    bottom: -15px;
    right: 10px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 110px;
    line-height: 1;
    color: rgba(246, 202, 70, 0.03);
    user-select: none;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.stat-card:hover .stat-watermark {
    color: rgba(246, 202, 70, 0.07);
    transform: scale(1.08) translateY(-5px);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: 900;
    line-height: 1;
    display: block;
    margin-bottom: 14px;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #0f172a 30%, #F6CA46 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-card:hover .stat-number {
    background: linear-gradient(135deg, #a16207 0%, #F6CA46 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 12px rgba(246, 202, 70, 0.2));
}

.stat-label {
    font-size: 13px;
    color: #475569;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    transition: color 0.5s ease;
}

.stat-card:hover .stat-label {
    color: #854d0e;
}

@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .stats-section {
        padding: 90px 0;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .stat-card {
        padding: 45px 20px;
    }
    .stat-number {
        font-size: 46px;
    }
}

/* ==========================================
   Bölüm 4: Hizmetlerimiz (Grid)
   ========================================== */
.service-areas-section {
    background: radial-gradient(circle at center top, #0c0e17 0%, #000000 100%);
    padding: 120px 0;
    position: relative;
    z-index: 10;
    overflow: hidden;
    border-bottom: 1px solid rgba(246, 202, 70, 0.05);
}

.service-areas-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(246, 202, 70, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.service-areas-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(246, 202, 70, 0.02) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.service-areas-section .section-title-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.service-areas-section .section-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.25;
    background: linear-gradient(135deg, #ffffff 40%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.service-areas-section .section-desc {
    color: #94a3b8;
    font-size: 15.5px;
    line-height: 1.7;
    margin: 0;
}

.service-areas-section .section-subtitle {
    display: inline-block;
    background: rgba(246, 202, 70, 0.08);
    border: 1px solid rgba(246, 202, 70, 0.25);
    color: var(--color-secondary);
    padding: 6px 18px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 70px;
    position: relative;
    z-index: 2;
}

.service-area-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 38px 32px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.45) 0%, rgba(3, 7, 18, 0.75) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(246, 202, 70, 0.12);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.service-area-card .card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 100% 0%, rgba(246, 202, 70, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.card-header-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: rgba(246, 202, 70, 0.08);
    border: 1px solid rgba(246, 202, 70, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    margin-bottom: 28px;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.card-header-icon svg {
    color: var(--color-secondary);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-info {
    width: 100%;
    margin-bottom: 35px;
    flex-grow: 1;
}

.card-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-secondary);
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 12px;
}

.service-area-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.35;
    transition: color 0.3s ease;
}

.service-area-card p {
    font-size: 14.5px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 22px;
}

.card-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-bullet-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: #cbd5e1;
    font-weight: 500;
}

.bullet-icon {
    color: var(--color-secondary);
    flex-shrink: 0;
    filter: drop-shadow(0 0 3px rgba(246, 202, 70, 0.3));
}

.card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(246, 202, 70, 0.2);
    border-radius: 12px;
    padding: 12px 24px;
    text-decoration: none !important;
    margin-top: auto;
    width: 100%;
    transition: all 0.4s ease;
}

.card-cta svg {
    transition: transform 0.3s ease;
}

/* Hover effects */
.service-area-card:hover {
    transform: translateY(-8px);
    border-color: rgba(246, 202, 70, 0.45);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05),
        0 25px 50px rgba(0, 0, 0, 0.55),
        0 0 25px rgba(246, 202, 70, 0.12);
}

.service-area-card:hover .card-glow {
    opacity: 1;
}

.service-area-card:hover .card-header-icon {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #d4a017 100%);
    color: #000000;
    border-color: transparent;
    box-shadow: 0 0 20px rgba(246, 202, 70, 0.4);
    transform: scale(1.06) rotate(3deg);
}

.service-area-card:hover .card-header-icon svg {
    color: #000000;
}

.service-area-card:hover h3 {
    color: var(--color-secondary);
}

.service-area-card:hover .card-cta {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-hover) 100%);
    border-color: transparent;
    color: #000000;
    box-shadow: 0 8px 20px rgba(246, 202, 70, 0.25);
}

.service-area-card:hover .card-cta svg {
    transform: translateX(4px);
    stroke: currentColor;
}

/* Responsive Service Areas */
@media (max-width: 1200px) {
    .service-areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .service-areas-section {
        padding: 80px 0;
    }
    .service-areas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 50px;
    }
    .service-area-card {
        padding: 30px 25px;
    }
}

/* ==========================================
   Bölüm 7: Fiyat Hesaplama & Rezervasyon Kartı (Pricing Calculator Custom Styles)
   ========================================== */
.pricing-calc-card {
    background: linear-gradient(135deg, rgba(20, 24, 38, 0.88) 0%, rgba(8, 10, 16, 0.98) 100%) !important;
    border: 1px solid rgba(246, 202, 70, 0.18) !important;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.45) !important;
    border-radius: 24px !important;
}

.calc-input-wrapper {
    display: flex;
    align-items: center;
    background: rgba(12, 15, 24, 0.65) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 14px !important;
    padding: 0 16px !important;
    height: 60px !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative;
}

.calc-input-wrapper:hover {
    border-color: rgba(246, 202, 70, 0.4) !important;
    background: rgba(20, 25, 40, 0.75) !important;
}

.calc-input-wrapper:focus-within {
    border-color: #f6ca46 !important;
    background: rgba(10, 12, 18, 0.95) !important;
    box-shadow: 0 0 15px rgba(246, 202, 70, 0.25) !important;
}

.calc-input {
    border: none !important;
    background: transparent !important;
    width: 100% !important;
    height: 100% !important;
    font-family: var(--font-body) !important;
    font-size: 16px !important; /* Larger text for contrast and readability */
    font-weight: 600 !important;
    color: #ffffff !important;
    outline: none !important;
    padding: 0 !important;
    cursor: pointer !important;
}

select.calc-input {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    padding-right: 32px !important; /* Safe zone so text never overlaps custom chevron */
}

select.calc-input option {
    background-color: #0f121d !important;
    color: #ffffff !important;
}

/* Style Webkit Date/Time Inputs and the Native Picker Icon */
.calc-input[type="datetime-local"] {
    font-size: 17px !important; /* Larger text as requested */
    font-weight: 700 !important;
    color: #ffffff !important;
    letter-spacing: 0.5px !important;
}

/* Customize native calendar picker indicator globally for all datetime-local inputs in wrappers */
.booking-input-wrapper input[type="datetime-local"]::-webkit-calendar-picker-indicator,
.calc-input-wrapper input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    filter: invert(1) brightness(1.2) !important; /* Invert to white and make it brighter */
    transform: scale(1.3) !important; /* Make it slightly larger */
    cursor: pointer !important;
    opacity: 0.9 !important;
    transition: all 0.2s ease;
}

.booking-input-wrapper input[type="datetime-local"]::-webkit-calendar-picker-indicator:hover,
.calc-input-wrapper input[type="datetime-local"]::-webkit-calendar-picker-indicator:hover {
    transform: scale(1.45) !important;
    opacity: 1 !important;
}

/* Make sure calculator labels match the premium styling */
.pricing-calc-card label {
    font-family: var(--font-heading) !important;
    font-size: 14.5px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 22px;
}

.card-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-bullet-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: #cbd5e1;
    font-weight: 500;
}

.bullet-icon {
    color: var(--color-secondary);
    flex-shrink: 0;
    filter: drop-shadow(0 0 3px rgba(246, 202, 70, 0.3));
}

.card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(246, 202, 70, 0.2);
    border-radius: 12px;
    padding: 12px 24px;
    text-decoration: none !important;
    margin-top: auto;
    width: 100%;
    transition: all 0.4s ease;
}

.card-cta svg {
    transition: transform 0.3s ease;
}

/* Hover effects */
.service-area-card:hover {
    transform: translateY(-8px);
    border-color: rgba(246, 202, 70, 0.45);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05),
        0 25px 50px rgba(0, 0, 0, 0.55),
        0 0 25px rgba(246, 202, 70, 0.12);
}

.service-area-card:hover .card-glow {
    opacity: 1;
}

.service-area-card:hover .card-header-icon {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #d4a017 100%);
    color: #000000;
    border-color: transparent;
    box-shadow: 0 0 20px rgba(246, 202, 70, 0.4);
    transform: scale(1.06) rotate(3deg);
}

.service-area-card:hover .card-header-icon svg {
    color: #000000;
}

.service-area-card:hover h3 {
    color: var(--color-secondary);
}

.service-area-card:hover .card-cta {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-hover) 100%);
    border-color: transparent;
    color: #000000;
    box-shadow: 0 8px 20px rgba(246, 202, 70, 0.25);
}

.service-area-card:hover .card-cta svg {
    transform: translateX(4px);
    stroke: currentColor;
}

/* Responsive Service Areas */
@media (max-width: 1200px) {
    .service-areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .service-areas-section {
        padding: 80px 0;
    }
    .service-areas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 50px;
    }
    .service-area-card {
        padding: 30px 25px;
    }
}

/* ==========================================
   Bölüm 7: Fiyat Hesaplama & Rezervasyon Kartı (Pricing Calculator Custom Styles)
   ========================================== */
.pricing-calc-card {
    background: linear-gradient(135deg, rgba(20, 24, 38, 0.88) 0%, rgba(8, 10, 16, 0.98) 100%) !important;
    border: 1px solid rgba(246, 202, 70, 0.18) !important;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.45) !important;
    border-radius: 24px !important;
}

.calc-input-wrapper {
    display: flex;
    align-items: center;
    background: rgba(12, 15, 24, 0.65) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 14px !important;
    padding: 0 16px !important;
    height: 60px !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative;
}

.calc-input-wrapper:hover {
    border-color: rgba(246, 202, 70, 0.4) !important;
    background: rgba(20, 25, 40, 0.75) !important;
}

.calc-input-wrapper:focus-within {
    border-color: #f6ca46 !important;
    background: rgba(10, 12, 18, 0.95) !important;
    box-shadow: 0 0 15px rgba(246, 202, 70, 0.25) !important;
}

.calc-input {
    border: none !important;
    background: transparent !important;
    width: 100% !important;
    height: 100% !important;
    font-family: var(--font-body) !important;
    font-size: 16px !important; /* Larger text for contrast and readability */
    font-weight: 600 !important;
    color: #ffffff !important;
    outline: none !important;
    padding: 0 !important;
    cursor: pointer !important;
}

select.calc-input {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    padding-right: 32px !important; /* Safe zone so text never overlaps custom chevron */
}

select.calc-input option {
    background-color: #0f121d !important;
    color: #ffffff !important;
}

/* Style Webkit Date/Time Inputs and the Native Picker Icon */
.calc-input[type="datetime-local"] {
    font-size: 17px !important; /* Larger text as requested */
    font-weight: 700 !important;
    color: #ffffff !important;
    letter-spacing: 0.5px !important;
}

/* Customize native calendar picker indicator globally for all datetime-local inputs in wrappers */
.booking-input-wrapper input[type="datetime-local"]::-webkit-calendar-picker-indicator,
.calc-input-wrapper input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    filter: invert(1) brightness(1.2) !important; /* Invert to white and make it brighter */
    transform: scale(1.3) !important; /* Make it slightly larger */
    cursor: pointer !important;
    opacity: 0.9 !important;
    transition: all 0.2s ease;
}

.booking-input-wrapper input[type="datetime-local"]::-webkit-calendar-picker-indicator:hover,
.calc-input-wrapper input[type="datetime-local"]::-webkit-calendar-picker-indicator:hover {
    transform: scale(1.45) !important;
    opacity: 1 !important;
}

/* Pricing Calculator Form Layout & Labels */
.pricing-calc-card .form-row-two {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
    margin-bottom: 24px !important;
}

.pricing-calc-card .form-group {
    display: flex !important;
    flex-direction: column !important;
    margin-bottom: 24px !important;
}

/* Remove bottom margin on form-groups inside row to let grid gap handle layout */
.pricing-calc-card .form-row-two .form-group {
    margin-bottom: 0 !important;
}

.pricing-calc-card label {
    font-family: var(--font-heading) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    color: rgba(246, 202, 70, 0.85) !important; /* Gold labels */
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-bottom: 8px !important;
    display: block !important;
}

@media (max-width: 768px) {
    .pricing-calc-card .form-row-two {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

/* ==========================================
   Bölüm 1.2: Hero Rezervasyon Paneli (Luxury Glassmorphic Panel)
   ========================================== */
.hero-booking-wrapper {
    position: absolute !important;
    top: 380px !important; /* Positioned directly under the slide titles with ideal padding */
    left: 0 !important;
    right: 0 !important;
    z-index: 100 !important;
}

@media (max-width: 1200px) {
    .hero-booking-wrapper {
        top: 310px !important;
    }
}

@media (max-width: 768px) {
    .hero-booking-wrapper {
        top: 350px !important;
    }
}

@media (max-width: 480px) {
    .hero-booking-wrapper {
        top: 360px !important;
    }
}

.booking-widget-card {
    background: rgba(10, 12, 22, 0.88) !important; /* Premium dark glass */
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid var(--color-secondary) !important;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
    border-radius: 24px !important;
    padding: 24px 28px !important; /* Spacious padding */
    max-width: 1200px !important;
    margin: 0 auto !important;
    position: relative !important;
}
.booking-tabs {
    display: inline-flex !important;
    background: rgba(18, 22, 36, 0.75) !important; /* Glossier and darker base */
    padding: 6px !important;
    border-radius: 14px !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    margin-bottom: 24px !important;
    gap: 6px !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4) !important;
}

.booking-tabs .booking-tab {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    background: transparent !important;
    border: none !important;
    color: rgba(255, 255, 255, 0.6) !important;
    padding: 10px 24px !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    font-size: 12.5px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: none !important;
}

.booking-tabs .booking-tab svg {
    color: inherit !important;
    transition: transform 0.3s ease !important;
    width: 15px !important;
    height: 15px !important;
}

.booking-tabs .booking-tab:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.07) !important;
}

.booking-tabs .booking-tab:hover svg {
    transform: translateY(-1px) !important;
}

.booking-tabs .booking-tab.active {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #d8a227 100%) !important; /* Premium gold gradient */
    color: #000000 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.25) !important; /* Crisp inner top border */
    box-shadow: 0 6px 20px rgba(246, 202, 70, 0.35) !important; /* Glowing gold shadow */
}

.booking-tabs .booking-tab.active svg {
    color: #000000 !important;
}

.booking-form {
    width: 100%;
}

.booking-fields-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr) 170px;
    gap: 20px; /* Spacious column gap */
    align-items: flex-end;
    width: 100%;
}

@media (max-width: 1199px) {
    .booking-fields-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    .booking-submit-group {
        grid-column: span 3;
        width: 100%;
        margin-top: 10px;
    }
}

@media (max-width: 991px) {
    .booking-widget-card {
        padding: 20px 20px !important;
    }
    .booking-fields-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .booking-submit-group {
        grid-column: span 2;
        width: 100%;
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .booking-fields-row {
        grid-template-columns: 1fr;
    }
    .booking-submit-group {
        grid-column: span 1;
    }
}

.booking-field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.booking-field-group label {
    font-family: var(--font-heading) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #94a3b8 !important; /* Premium muted gray */
    text-transform: uppercase !important;
    letter-spacing: 1.2px !important;
    margin-bottom: 6px !important;
    display: block !important;
}

.booking-input-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important; /* Clearly visible premium white border */
    border-radius: 12px !important; /* Premium rounded curves */
    padding: 0 16px !important;
    height: 54px !important; /* Elevated height */
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative;
}

.booking-input-wrapper:hover {
    border-color: rgba(255, 255, 255, 0.5) !important; /* Brightens on hover */
    background: rgba(255, 255, 255, 0.04) !important;
}

.booking-input-wrapper:focus-within {
    border-color: #ffffff !important; /* Solid white outline on active focus */
    background: rgba(0, 0, 0, 0.3) !important;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.25) !important;
}

.booking-input-wrapper .input-icon {
    color: rgba(246, 202, 70, 0.85) !important;
    margin-right: 4px !important; /* Reduced to bring address and input text closer to the icons */
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.booking-input-wrapper input {
    flex: 1 !important;
    min-width: 0 !important;
    border: none !important;
    background: transparent !important;
    width: 100% !important;
    height: 100% !important;
    font-family: var(--font-body) !important;
    font-size: 14.5px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    outline: none !important;
    padding: 0 !important;
}

/* Autofill overrides to prevent browser white box issue */
.booking-input-wrapper input:-webkit-autofill,
.booking-input-wrapper input:-webkit-autofill:hover, 
.booking-input-wrapper input:-webkit-autofill:focus, 
.booking-input-wrapper input:-webkit-autofill:active,
.calc-input-wrapper input:-webkit-autofill,
.calc-input-wrapper input:-webkit-autofill:hover, 
.calc-input-wrapper input:-webkit-autofill:focus, 
.calc-input-wrapper input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #0c0e16 inset !important;
    -webkit-text-fill-color: #ffffff !important;
    transition: background-color 5000s ease-in-out 0s;
}

.booking-input-wrapper select {
    flex: 1 !important;
    min-width: 0 !important;
    border: none !important;
    background: transparent !important;
    width: 100% !important;
    height: 100% !important;
    font-family: var(--font-body) !important;
    font-size: 14.5px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    outline: none !important;
    padding: 0 28px 0 0 !important; /* Safe right padding zone so text never overlaps chevron */
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2394a3b8'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 2px center !important;
    background-size: 20px !important;
    cursor: pointer;
}

.booking-input-wrapper select option {
    background-color: #0f121d !important;
    color: #ffffff !important;
}

/* Custom Select Dropdown (Premium Dark Glass Style) */
.custom-select-container {
    position: relative;
    flex: 1 !important;
    min-width: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    font-family: var(--font-body) !important;
    font-size: 14.5px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.custom-select-arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(255, 255, 255, 0.7);
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
    transform: rotate(45deg);
    transition: transform 0.3s ease, border-color 0.3s ease;
    margin-right: 5px;
}

.custom-select-container.open .custom-select-arrow {
    transform: rotate(-135deg);
    border-color: var(--color-secondary);
}

.custom-select-options {
    position: absolute;
    bottom: calc(100% + 12px); /* Render upwards to prevent overflowing screen bottom or action bar */
    left: 0 !important;
    right: 0 !important;
    width: auto !important;
    max-height: 340px !important; /* Increased height to show more items at once */
    overflow-y: auto;
    background: rgba(15, 18, 29, 0.98) !important; /* Premium dark background */
    border: 1px solid rgba(246, 202, 70, 0.3) !important; /* Gold border */
    border-radius: 12px;
    box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.6);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

/* Custom Scrollbar for Options List */
.custom-select-options::-webkit-scrollbar {
    width: 6px;
}
.custom-select-options::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0 12px 12px 0;
}
.custom-select-options::-webkit-scrollbar-thumb {
    background: rgba(246, 202, 70, 0.25);
    border-radius: 3px;
}
.custom-select-options::-webkit-scrollbar-thumb:hover {
    background: rgba(246, 202, 70, 0.45);
}

.custom-select-container.open .custom-select-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-select-option {
    padding: 12px 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: background 0.2s ease, color 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.custom-select-option:last-child {
    border-bottom: none;
}

.custom-select-option:hover {
    background: rgba(246, 202, 70, 0.08) !important;
    color: var(--color-secondary) !important; /* Gold text */
}

.custom-select-option.selected {
    background: rgba(246, 202, 70, 0.15) !important;
    color: var(--color-secondary) !important;
    font-weight: 700;
}

.input-nereye-container,
.input-duration-container {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

.btn-swap {
    background: rgba(18, 22, 36, 0.95) !important; /* Premium dark background to stand out in the gap */
    border: 1px solid rgba(255, 255, 255, 0.3) !important; /* Matches white borders */
    color: var(--color-secondary) !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    position: absolute !important;
    right: -26px !important; /* Positioned perfectly in the 20px gap */
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3) !important;
}

.btn-swap:hover {
    background: var(--color-secondary) !important;
    color: #000000 !important;
    border-color: var(--color-secondary) !important;
    box-shadow: 0 4px 15px rgba(246, 202, 70, 0.4) !important;
}

.btn-swap svg {
    width: 15px !important;
    height: 15px !important;
    transition: transform 0.3s ease !important;
}

@media (max-width: 1199px) {
    .btn-swap {
        right: -24px !important; /* Adjust for 15px gap on tablets */
    }
}

@media (max-width: 767px) {
    .btn-swap {
        right: auto !important;
        left: 50% !important;
        top: auto !important;
        bottom: -24px !important; /* Positioned in the vertical gap */
        transform: translateX(-50%) !important;
    }
    .btn-swap svg {
        transform: rotate(90deg) !important; /* Rotate horizontal icon to vertical on mobile */
    }
}

.btn-booking-submit {
    width: 100%;
    height: 54px; /* Elevated height matching inputs */
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-hover) 100%);
    color: #000000 !important;
    border: none;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 14.5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: var(--shadow-gold);
    transition: all 0.3s ease;
}

.btn-booking-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(246, 202, 70, 0.4);
}

/* ==========================================
   Bölüm 1.5: Hızlı Seyahat Planlayıcı (Premium Grid)
   ========================================== */
.quick-dispatch-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #070913 0%, #0d101f 100%) !important; /* Deep luxury dark background */
    position: relative;
    z-index: 10;
    overflow: hidden;
}

/* Background radial glow for luxury depth */
.quick-dispatch-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(246, 202, 70, 0.04) 0%, rgba(246, 202, 70, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.quick-dispatch-section .container {
    position: relative;
    z-index: 2;
}

.dispatch-subtitle {
    display: block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 13px;
    color: var(--color-secondary) !important; /* Premium gold */
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    text-align: center;
}

.dispatch-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 42px;
    color: #ffffff !important; /* White title for luxury dark theme */
    line-height: 1.25;
    margin-bottom: 18px;
    text-align: center;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.dispatch-desc {
    font-size: 16px;
    color: #94a3b8 !important; /* Muted slate */
    max-width: 720px;
    margin: 0 auto 60px auto !important;
    text-align: center;
    line-height: 1.65;
}

.dispatch-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 28px;
}

@media (max-width: 768px) {
    .dispatch-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .dispatch-title {
        font-size: 32px !important;
    }
}

.dispatch-card {
    display: flex;
    align-items: center;
    padding: 28px 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%) !important; /* Premium dark glass gradient */
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06) !important; /* Luxury top boundary line */
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

/* Background gold overlay glow */
.dispatch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(246, 202, 70, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

/* Light sweep reflection effect */
.dispatch-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transform: skewX(-20deg);
    z-index: 3;
    pointer-events: none;
    transition: none;
}

.dispatch-card:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(246, 202, 70, 0.45) !important;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.55), 
        0 0 30px rgba(246, 202, 70, 0.05), 
        inset 0 1px 0 rgba(246, 202, 70, 0.3) !important; /* Glowing gold top highlight */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%) !important;
}

.dispatch-card:hover::before {
    opacity: 1;
}

.dispatch-card:hover::after {
    left: 150%;
    transition: left 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.dispatch-card .card-icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(246, 202, 70, 0.05) !important;
    border: 1px solid rgba(246, 202, 70, 0.15) !important;
    border-radius: 16px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary) !important;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative;
    z-index: 2;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.dispatch-card .card-icon-wrapper svg {
    width: 28px;
    height: 28px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.dispatch-card:hover .card-icon-wrapper {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #e2b023 100%) !important;
    color: #000000 !important;
    border-color: var(--color-secondary) !important;
    box-shadow: 0 10px 20px rgba(246, 202, 70, 0.35), 0 0 15px rgba(246, 202, 70, 0.15) !important;
    transform: scale(1.08) rotate(3deg) !important;
}

.dispatch-card:hover .card-icon-wrapper svg {
    transform: scale(1.08) !important;
}

.dispatch-card .card-content {
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.dispatch-card .card-content h3 {
    margin: 0 0 6px 0 !important;
    font-size: 19px;
    font-weight: 700;
    color: #ffffff !important;
    font-family: var(--font-heading);
    letter-spacing: -0.3px;
    transition: color 0.3s ease !important;
}

.dispatch-card:hover .card-content h3 {
    color: var(--color-secondary) !important;
}

.dispatch-card .card-content p {
    margin: 0 !important;
    font-size: 14px;
    color: #94a3b8 !important;
    line-height: 1.5;
}

.dispatch-card .card-arrow {
    color: rgba(255, 255, 255, 0.3) !important;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.dispatch-card .card-arrow svg {
    width: 20px;
    height: 20px;
}

.dispatch-card:hover .card-arrow {
    color: var(--color-secondary) !important;
    transform: translateX(6px) scale(1.1) !important;
    filter: drop-shadow(0 0 5px rgba(246, 202, 70, 0.4)) !important;
}

/* ==========================================
   Bölüm 8: Müşteri Yorumları (Testimonials Slider)
   ========================================== */
.testimonials-section {
    padding: 80px 0 70px 0 !important; /* Slightly tighter, elegant padding */
    background-color: #f8fafc !important; /* Soft premium background */
    background-image: radial-gradient(circle at 50% 0%, rgba(246, 202, 70, 0.02) 0%, transparent 60%) !important;
    position: relative;
    z-index: 10;
}

/* Override title wrapper margin inside testimonials to prevent massive gap */
.testimonials-section .section-title-wrapper {
    margin-bottom: 45px !important;
}

.testimonials-section .section-title {
    font-size: 32px !important; /* Smaller, highly elegant font size */
    font-weight: 700 !important;
    letter-spacing: -0.8px !important;
    text-transform: none !important; /* Elegant Title Case instead of shouting uppercase */
    color: #0f172a !important;
    margin-bottom: 12px !important;
}

.testimonials-section .section-desc {
    font-size: 14.5px !important;
    color: #64748b !important;
    max-width: 550px !important;
    margin: 0 auto !important;
}

.testimonials-slider-container {
    position: relative;
    max-width: 1280px; /* Expanded slightly from 1200px as requested */
    margin: 0 auto;
    padding: 0 50px; /* Safe space on the sides for arrows */
}

.swiper-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    background: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    color: #0a0e17 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03) !important;
}

.swiper-nav-btn:hover {
    background: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1) !important;
}

.testimonials-slider-container .testimonial-prev {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.testimonials-slider-container .testimonial-next {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.testimonials-slider-container .testimonial-prev:hover {
    transform: translateY(-50%) scale(1.05) translateX(-2px) !important;
}

.testimonials-slider-container .testimonial-next:hover {
    transform: translateY(-50%) scale(1.05) translateX(2px) !important;
}

.testimonial-swiper {
    width: 100%;
    max-width: 100% !important;
    margin: 0 auto;
    overflow: hidden !important; /* Clipped container so it does not bleed off-screen */
    padding: 15px 5px 45px 5px !important;
}

.testimonial-card {
    background: #ffffff !important;
    border: 1.5px solid rgba(15, 23, 42, 0.08) !important; /* Visible light slate border */
    border-radius: 18px !important; /* Elegant border radius */
    padding: 30px 26px !important; /* Compact premium padding */
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.015), 
        inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-sizing: border-box;
}

/* Accent top border gradient for extra luxury */
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0a0e17 0%, var(--color-secondary) 100%);
    z-index: 5;
}

/* Light sweep reflection effect */
.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(246, 202, 70, 0.03), transparent);
    transform: skewX(-20deg);
    z-index: 4;
    pointer-events: none;
    transition: none;
}

.testimonial-card:hover {
    transform: translateY(-5px) !important;
    border-color: var(--color-secondary) !important; /* Gold border on hover */
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.04), 
        0 0 25px rgba(246, 202, 70, 0.01) !important;
}

.testimonial-card:hover::after {
    left: 150%;
    transition: left 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card .card-top {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    position: relative;
    z-index: 2;
}

.testimonial-card .card-stars {
    color: var(--color-secondary) !important;
    font-size: 13px !important;
    letter-spacing: 2px !important;
}

.testimonial-card .testimonial-service-tag {
    font-family: var(--font-heading) !important;
    font-size: 10.5px !important; /* Scaled up from 9.5px */
    font-weight: 700 !important;
    color: var(--color-secondary) !important; /* Gold text */
    background: #0a0e17 !important; /* Deep luxury black background */
    border: 1px solid rgba(246, 202, 70, 0.2) !important;
    padding: 4px 10px !important;
    border-radius: 6px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.testimonial-card .testimonial-text {
    font-size: 14.5px !important; /* Scaled up from 13.5px */
    color: #475569 !important;
    line-height: 1.65 !important;
    margin: 0 !important;
    font-style: italic;
    font-weight: 400 !important;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.testimonial-footer {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
    padding-top: 16px !important;
    position: relative;
    z-index: 2;
}

.testimonial-avatar {
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    background: #0f172a !important;
    color: #ffffff !important;
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 2px solid var(--color-secondary) !important;
}

.testimonial-author {
    display: flex !important;
    flex-direction: column !important;
    text-align: left !important;
}

.testimonial-author .author-name {
    font-size: 15px !important; /* Scaled up from 14px */
    font-weight: 700 !important;
    color: #0f172a !important;
    font-family: var(--font-heading) !important;
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
}

.testimonial-verified {
    color: var(--color-secondary) !important; /* Gold verified checkmark */
    font-weight: 900 !important;
    font-size: 12px !important;
}

.testimonial-author .author-meta {
    font-size: 12px !important; /* Scaled up from 11px */
    color: #94a3b8 !important;
    font-weight: 500 !important;
    margin-top: 1px !important;
}

.testimonial-swiper .swiper-pagination {
    bottom: 0 !important;
}

.testimonial-swiper .swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
    background: #cbd5e1 !important;
    opacity: 1 !important;
    transition: all 0.3s ease !important;
    border-radius: 4px !important;
}

.testimonial-swiper .swiper-pagination-bullet-active {
    width: 24px !important;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #e2b023 100%) !important;
    box-shadow: 0 2px 8px rgba(246, 202, 70, 0.3) !important;
}

/* ==========================================
   Premium Footer (Midnight Luxury Panel)
   ========================================== */
.site-footer {
    background-color: #080a10;
    border-top: 1.5px solid rgba(246, 202, 70, 0.15);
    padding: 80px 0 30px 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14.5px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr repeat(2, 1fr); /* 3 columns based on footer.php content */
    gap: 40px;
    margin-bottom: 60px;
}

@media (max-width: 991px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-col .footer-title {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    position: relative;
    padding-bottom: 12px;
}

.footer-col .footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--color-secondary);
}

.footer-col .brand-desc {
    margin: 0;
    line-height: 1.6;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col .footer-links-list a {
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col .footer-links-list a:hover {
    color: var(--color-secondary);
    transform: translateX(5px);
}

.footer-social-links {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.footer-social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.footer-social-links a svg {
    width: 18px;
    height: 18px;
}

.footer-social-links a:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #000000;
    transform: translateY(-3px);
}

.footer-contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.footer-contact-details li svg {
    color: var(--color-secondary);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 30px 0;
    font-size: 13.5px;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-menu-list {
    display: flex;
    list-style: none;
    gap: 24px;
    margin: 0;
    padding: 0;
}

.footer-bottom-menu-list a {
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 13.5px;
}

.footer-bottom-menu-list a:hover {
    color: var(--color-secondary);
}

@media (max-width: 768px) {
    .footer-bottom-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 15px;
    }
    
    .footer-bottom-menu-list {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px 18px;
    }
}

/* ==========================================
   Mobile Sticky Action Bar
   ========================================== */
.mobile-sticky-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: none;
    height: 60px;
    background: rgba(11, 15, 25, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.25);
}

.sticky-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13.5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.sticky-whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff !important;
}

.hero-slider-section {
    position: relative;
    z-index: 10;
    width: 100%;
    overflow: visible;
    background-color: var(--color-primary);
}

.hero-swiper {
    width: 100%;
    height: 710px; /* Tiny adjustment for the final sweet spot */
}

@media (max-width: 1200px) {
    .hero-swiper {
        height: 590px; /* Adjusted height for tablets */
    }
}

@media (max-width: 768px) {
    .hero-slider-section {
        height: 960px !important;
    }
    .hero-swiper {
        height: 960px !important;
    }
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start !important; /* Pull heading to upper half */
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(11, 15, 25, 0.95) 0%, rgba(11, 15, 25, 0.7) 45%, rgba(11, 15, 25, 0.25) 100%);
    z-index: 2;
}

.hero-slide-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
}

@media (min-width: 1200px) {
    .hero-slide-container {
        padding-left: 0 !important;
    }
}

.hero-slide-content {
    max-width: 800px !important;
    color: #ffffff;
    text-align: left;
    margin-top: 155px !important; /* Pull heading up on desktop */
    transition: margin-top 0.4s ease;
}

.hero-slide-content .slide-desc {
    font-size: 15.5px !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
    color: rgba(255, 255, 255, 0.82) !important;
    max-width: 650px !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
}

@media (max-width: 991px) {
    .hero-slide-content .slide-desc {
        font-size: 14px !important;
        max-width: 550px !important;
    }
}

@media (max-width: 768px) {
    .hero-slide-content .slide-desc {
        display: block !important; /* Made visible on mobile */
        font-size: 13.5px !important;
        line-height: 1.5 !important;
        margin-top: 10px !important;
        margin-bottom: 15px !important;
        color: rgba(255, 255, 255, 0.85) !important;
        max-width: 100% !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
    }
}

@media (max-width: 1200px) {
    .hero-slide-content {
        margin-top: 110px !important; /* Pull up on tablets */
    }
}

@media (max-width: 768px) {
    .hero-slide-content {
        margin-top: 155px !important; /* Proper spacing below the mobile header */
    }
}

.slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--color-secondary);
    margin-bottom: 24px;
    text-transform: uppercase;
    background: rgba(246, 202, 70, 0.12);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(246, 202, 70, 0.3);
    box-shadow: 0 4px 15px rgba(246, 202, 70, 0.08);
}

.slide-title {
    font-family: var(--font-heading) !important;
    font-size: 48px !important; /* Slightly smaller/slimmer title to give space for form */
    font-weight: 800 !important;
    line-height: 1.2 !important;
    margin-bottom: 15px !important;
    color: #ffffff;
    letter-spacing: -1px !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.slide-title span {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 1200px) {
    .slide-title {
        font-size: 38px !important;
    }
}

@media (max-width: 768px) {
    .slide-title {
        font-size: 28px !important;
        letter-spacing: -0.5px !important;
        margin-bottom: 14px !important; /* Added space between title and text */
    }
}

@media (max-width: 576px) {
    .slide-title {
        font-size: 25px !important;
        line-height: 1.25 !important;
        letter-spacing: -0.5px !important;
        margin-bottom: 12px !important; /* Added space between title and text */
    }
    .hero-slide-content {
        margin-top: 150px !important; /* Adjusted to pull slightly down from header on small screens */
    }
}

.sticky-call-btn {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-hover) 100%);
    color: #000000 !important;
}

.sticky-action-btn svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 767px) {
    .mobile-sticky-action-bar {
        display: flex;
    }
}

/* ==========================================
   Bölüm 5: Neden Biz? (Why Us Section)
   ========================================== */
.why-us-section {
    padding: 100px 0 50px 0;
    background: #ffffff;
    background-image: linear-gradient(rgba(246, 202, 70, 0.02) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(246, 202, 70, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.why-us-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(246, 202, 70, 0.05) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    pointer-events: none;
    filter: blur(100px);
}

.why-us-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(246, 202, 70, 0.03) 0%, transparent 70%);
    bottom: -250px;
    left: -250px;
    pointer-events: none;
    filter: blur(100px);
}

.why-us-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 11px;
    color: #854d0e;
    background: rgba(246, 202, 70, 0.08);
    border: 1px solid rgba(246, 202, 70, 0.3);
    padding: 6px 20px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(246, 202, 70, 0.08);
}

.why-us-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 46px;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 80px;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.why-us-title span {
    background: linear-gradient(135deg, #a16207 0%, #F6CA46 50%, #a16207 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
}

.why-us-title span::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 10%;
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #F6CA46, transparent);
    border-radius: 2px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 5;
}

@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .why-us-title {
        font-size: 32px;
        margin-bottom: 50px;
        line-height: 1.3;
    }
    .why-us-section {
        padding: 60px 0 30px 0;
    }
}

@media (max-width: 600px) {
    .why-us-card {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 30px 24px !important;
        gap: 20px !important;
    }
}

.why-us-card {
    background: linear-gradient(135deg, #ffffff 0%, #FAF9F6 100%);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
    overflow: hidden;
}

.why-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #a16207, #F6CA46, #a16207);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-us-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 30px;
    right: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #F6CA46, transparent);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-us-card:hover {
    transform: translateY(-10px);
    border-color: rgba(246, 202, 70, 0.85);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.04);
}

.why-us-card:hover::before {
    opacity: 1;
}

.why-us-card:hover::after {
    transform: scaleX(1);
}

.why-us-card-number {
    position: absolute;
    bottom: -15px;
    right: 15px;
    font-family: var(--font-heading);
    font-size: 100px;
    font-weight: 900;
    color: rgba(246, 202, 70, 0.035);
    line-height: 1;
    pointer-events: none;
    transition: all 0.4s ease;
    user-select: none;
    z-index: 1;
}

.why-us-card:hover .why-us-card-number {
    color: rgba(246, 202, 70, 0.08);
    transform: scale(1.08) translateY(-5px);
}

.why-us-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(246, 202, 70, 0.06);
    border: 2px solid rgba(246, 202, 70, 0.25);
    box-shadow: 0 8px 25px rgba(246, 202, 70, 0.05);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a16207;
    margin-bottom: 0;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.why-us-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1.5px dashed rgba(246, 202, 70, 0.3);
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-us-icon-wrapper svg {
    width: 30px;
    height: 30px;
    stroke-width: 1.8px;
}

.why-us-card:hover .why-us-icon-wrapper {
    border-color: transparent;
    color: #000000;
    background: linear-gradient(135deg, #F6CA46 0%, #e2b023 100%);
    transform: scale(1.06);
    box-shadow: 0 10px 25px rgba(246, 202, 70, 0.3);
}

.why-us-card:hover .why-us-icon-wrapper::before {
    transform: rotate(90deg);
    border-color: #F6CA46;
}

.why-us-card-body {
    flex: 1;
    padding-right: 40px;
    z-index: 2;
}

.why-us-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 6px 0;
    letter-spacing: -0.2px;
    transition: color 0.3s ease;
}

.why-us-card:hover h3 {
    color: #854d0e;
}

.why-us-card p {
    margin: 0;
    font-size: 14.5px;
    color: #475569;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.why-us-card:hover p {
    color: #1e293b;
}

@media (max-width: 768px) {
    .why-us-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 35px 25px;
    }
    .why-us-card-body {
        padding-right: 0;
    }
    .why-us-card-number {
        font-size: 80px;
        bottom: -15px;
        right: 15px;
    }
}

/* ==========================================
   Bölüm 6: Nasıl Çalışır? (Steps Flow Section)
   ========================================== */
.steps-section {
    padding: 100px 0 !important;
    background-color: #fafbfc !important; /* Extremely soft luxury off-white */
    background-image: radial-gradient(circle at 50% 100%, rgba(246, 202, 70, 0.02) 0%, transparent 60%) !important;
    position: relative;
}

.steps-flow-container {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0 auto;
    padding-left: 80px;
}

.steps-progress-line {
    position: absolute;
    left: 24px;
    top: 25px;
    bottom: 25px;
    width: 3px;
    background: rgba(15, 23, 42, 0.05);
    border-radius: 10px;
    z-index: 1;
}

.steps-progress-fill {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-secondary) 0%, #e2b023 100%);
    box-shadow: 0 0 15px rgba(246, 202, 70, 0.4);
    border-radius: 10px;
}

.step-flow-item {
    position: relative;
    margin-bottom: 50px;
    z-index: 2;
}

.step-flow-item:last-child {
    margin-bottom: 0;
}

.step-flow-num {
    position: absolute;
    left: -71px;
    top: 15px;
    width: 48px;
    height: 48px;
    background: #0f172a; /* Deep dark circle */
    border: 3px solid #ffffff; /* Crisp border separating from line */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 16px;
    color: var(--color-secondary); /* Gold number */
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
}

.step-flow-item:hover .step-flow-num {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #e2b023 100%) !important;
    color: #000000 !important;
    transform: scale(1.15) rotate(360deg) !important;
    box-shadow: 0 10px 25px rgba(246, 202, 70, 0.45) !important;
}

.step-flow-content {
    background: #ffffff !important;
    border: 1px solid rgba(15, 23, 42, 0.05) !important;
    border-radius: 24px !important;
    padding: 35px 40px !important;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.02), inset 0 2px 0 rgba(255, 255, 255, 0.9) !important;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Light sweep reflection effect */
.step-flow-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(246, 202, 70, 0.06), transparent);
    transform: skewX(-20deg);
    z-index: 4;
    pointer-events: none;
    transition: none;
}

.step-flow-item:hover .step-flow-content {
    transform: translateY(-8px) !important;
    border-color: rgba(246, 202, 70, 0.4) !important;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.06), 0 0 30px rgba(246, 202, 70, 0.04) !important;
}

.step-flow-item:hover .step-flow-content::after {
    left: 150%;
    transition: left 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-index-watermark {
    position: absolute;
    bottom: -20px;
    right: 35px;
    font-family: var(--font-heading);
    font-size: 110px;
    font-weight: 900;
    color: rgba(246, 202, 70, 0.025) !important;
    line-height: 1;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.step-flow-item:hover .step-index-watermark {
    color: rgba(246, 202, 70, 0.08) !important;
    transform: scale(1.08) translateY(-8px) !important;
}

.step-flow-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 18px;
}

.step-flow-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(246, 202, 70, 0.06) !important;
    color: var(--color-secondary) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
    border: 1px solid rgba(246, 202, 70, 0.12) !important;
}

.step-flow-icon svg {
    width: 26px;
    height: 26px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.step-flow-item:hover .step-flow-icon {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #e2b023 100%) !important;
    color: #000000 !important;
    border-color: transparent !important;
    box-shadow: 0 10px 25px rgba(246, 202, 70, 0.3) !important;
    transform: rotate(6deg) scale(1.08) !important;
}

.step-flow-item:hover .step-flow-icon svg {
    transform: scale(1.1) !important;
}

.step-flow-header h3 {
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    letter-spacing: -0.3px;
    transition: color 0.3s ease !important;
}

.step-flow-item:hover .step-flow-header h3 {
    color: #e2b023 !important;
}

.step-flow-content p {
    margin: 0;
    font-size: 15.5px;
    color: #64748b;
    line-height: 1.7;
}

@media (max-width: 576px) {
    .steps-flow-container {
        padding-left: 45px;
    }
    .steps-progress-line {
        left: 14px;
    }
    .step-flow-num {
        left: -42px;
        width: 32px;
        height: 32px;
        font-size: 13px;
        top: 2px;
    }
    .step-flow-content {
        padding: 24px !important;
    }
    .step-flow-header {
        gap: 12px;
    }
    .step-flow-icon {
        width: 40px;
        height: 40px;
    }
    .step-flow-icon svg {
        width: 20px;
        height: 20px;
    }
    .step-flow-header h3 {
        font-size: 16.5px;
    }
    .step-index-watermark {
        font-size: 56px;
        right: 15px;
        bottom: -10px;
    }
}

/* ==========================================
   Bölüm 6: Güvence & Yasal Mevzuat (Trust Section)
   ========================================== */
.trust-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.trust-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 991px) {
    .trust-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.trust-content-col {
    display: flex;
    flex-direction: column;
}

.trust-desc {
    font-size: 16px;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}

.trust-cards-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trust-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.05) !important;
    border-left: 4px solid rgba(246, 202, 70, 0.25) !important; /* Elegant gold accent left border */
    padding: 24px 28px !important;
    border-radius: 20px !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.01) !important;
}

.trust-card:hover {
    transform: translateY(-4px) !important;
    border-left-color: var(--color-secondary) !important; /* Brighter gold on hover */
    border-color: rgba(246, 202, 70, 0.15) !important;
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.04) !important;
}

.trust-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(246, 202, 70, 0.06) !important;
    border: 1px solid rgba(246, 202, 70, 0.12) !important;
    border-radius: 14px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary) !important;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.trust-card:hover .trust-card-icon {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #e2b023 100%) !important;
    color: #000000 !important;
    border-color: transparent !important;
    box-shadow: 0 8px 20px rgba(246, 202, 70, 0.25) !important;
    transform: scale(1.05) rotate(4deg) !important;
}

.trust-card-icon svg {
    width: 24px !important;
    height: 24px !important;
    transition: transform 0.4s ease !important;
}

.trust-card:hover .trust-card-icon svg {
    transform: scale(1.08) !important;
}

.trust-card-body {
    flex: 1;
}

.trust-card-body h3 {
    font-family: var(--font-heading);
    font-size: 17.5px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 8px 0;
    letter-spacing: -0.2px;
    transition: color 0.3s ease !important;
}

.trust-card:hover .trust-card-body h3 {
    color: #b45309 !important; /* Soft premium gold-brown on hover for title text */
}

.trust-card-body p {
    margin: 0;
    font-size: 14.5px;
    color: #64748b;
    line-height: 1.65;
}

.trust-media-col {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.trust-img-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    background: #000000;
}

.trust-img-backdrop {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(246, 202, 70, 0.1) 0%, rgba(246, 202, 70, 0.01) 100%);
    border-radius: 24px;
    z-index: 1;
    border: 1px solid rgba(246, 202, 70, 0.15);
}

.trust-img {
    width: 100%;
    max-width: 480px;
    height: auto;
    display: block;
}

.operator-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(246, 202, 70, 0.2);
    padding: 12px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.operator-avatar-wrapper {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: visible;
}

.operator-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--color-secondary);
}

.status-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background-color: var(--color-whatsapp);
    border: 1.5px solid #0f121d;
    border-radius: 50%;
}

.operator-badge strong {
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--color-secondary) !important;
    margin-right: 6px;
}

.operator-badge span {
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 700;
    color: #ffffff;
}

/* ==========================================
   Bölüm 10: Acil Çağrı / CTA Kapanış (Closing CTA Card)
   ========================================== */
.cta-closing-section {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
    z-index: 10;
}

.cta-closing-card {
    background: linear-gradient(135deg, #0b0f19 0%, #111827 100%);
    border: 1px solid rgba(246, 202, 70, 0.2);
    border-radius: 28px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.cta-glow-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(246, 202, 70, 0.08) 0%, transparent 70%);
    z-index: 1;
}

.cta-glow-spot-1 {
    position: absolute;
    top: -50%;
    left: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(127, 29, 29, 0.15) 0%, transparent 70%);
    z-index: 1;
}

.cta-closing-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-alert-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(246, 202, 70, 0.1);
    color: var(--color-secondary);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    border: 1px solid rgba(246, 202, 70, 0.2);
    letter-spacing: 1.5px;
    margin-bottom: 25px;
}

.cta-closing-content h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin: 0 0 20px 0;
}

.cta-closing-content h2 span {
    color: var(--color-secondary);
    display: block;
}

.cta-closing-content p {
    font-size: 16.5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0 0 45px 0;
}

.cta-closing-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    width: 100%;
}

@media (max-width: 768px) {
    .cta-closing-card {
        padding: 50px 20px;
    }
    .cta-closing-content h2 {
        font-size: 28px;
    }
    .cta-closing-actions {
        flex-direction: column;
        gap: 15px;
    }
    .cta-closing-actions .btn {
        width: 100%;
    }
}

.btn-emergency-pulse {
    animation: ctaPulse 2s infinite ease-in-out;
}

@keyframes ctaPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(246, 202, 70, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(246, 202, 70, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(246, 202, 70, 0);
    }
}

.btn-wa {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.btn-wa:hover {
    background: #25d366;
    border-color: #25d366;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}

/* ==========================================
   Bölüm 3.6: Popüler Seyahat Güzergahları (Brand Grid Section)
   ========================================== */
.brand-grid-section {
    padding: 50px 0 100px 0;
    background-color: #ffffff;
    position: relative;
    z-index: 10;
}

@media (max-width: 768px) {
    .brand-grid-section {
        padding: 30px 0 60px 0;
    }
}

.brand-subtitle {
    display: block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 13px;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.brand-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 38px;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 16px;
}

.brand-desc {
    font-size: 16px;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

@media (max-width: 768px) {
    .brand-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.brand-card {
    display: flex;
    flex-direction: column;
    height: 350px;
    padding: 30px;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative;
    overflow: hidden;
}

/* Light sweep reflection effect */
.brand-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: skewX(-20deg);
    z-index: 4;
    pointer-events: none;
    transition: none;
}

.brand-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) !important;
    z-index: 1;
}

.brand-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.25) 0%, rgba(15, 23, 42, 0.88) 100%) !important;
    transition: all 0.5s ease !important;
    z-index: 2;
}

.brand-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(246, 202, 70, 0.12) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 2;
}

.brand-card:hover {
    transform: translateY(-10px) !important;
    border-color: rgba(246, 202, 70, 0.6) !important;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4), 
        0 0 25px rgba(246, 202, 70, 0.05), 
        inset 0 1px 0 rgba(246, 202, 70, 0.45) !important; /* Top glowing edge */
}

.brand-card:hover::after {
    left: 150%;
    transition: left 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-card:hover .brand-card-img {
    transform: scale(1.08) !important;
}

.brand-card:hover .brand-card-overlay {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.35) 0%, rgba(15, 23, 42, 0.94) 100%) !important;
}

.brand-card:hover .brand-card-glow {
    opacity: 1;
}

.brand-icon-box {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary) !important;
    margin-bottom: 20px;
    position: relative;
    z-index: 3;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.brand-icon-box svg {
    width: 22px;
    height: 22px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.brand-card:hover .brand-icon-box {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #e2b023 100%) !important;
    color: #000000 !important;
    border-color: transparent !important;
    transform: scale(1.08) rotate(4deg) !important;
    box-shadow: 0 8px 20px rgba(246, 202, 70, 0.35) !important;
}

.brand-card:hover .brand-icon-box svg {
    transform: scale(1.08) !important;
}

.brand-info {
    margin-bottom: 20px;
    text-align: left;
    position: relative;
    z-index: 3;
}

.brand-category {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--color-secondary);
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.brand-name {
    margin: 0;
    font-size: 19px;
    font-weight: 800;
    color: #ffffff;
    font-family: var(--font-heading);
    line-height: 1.35;
    letter-spacing: -0.2px;
    transition: color 0.3s ease !important;
}

.brand-card:hover .brand-name {
    color: var(--color-secondary) !important;
}

.brand-action {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75) !important;
    margin-top: auto;
    position: relative;
    z-index: 3;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.brand-action svg {
    width: 16px;
    height: 16px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.brand-card:hover .brand-action {
    color: var(--color-secondary) !important;
    filter: drop-shadow(0 0 5px rgba(246, 202, 70, 0.45)) !important;
}

.brand-card:hover .brand-action svg {
    transform: translateX(6px) scale(1.1) !important;
}

/* ==========================================
   Bölüm 4: Hizmetlerimiz (Services Section)
   ========================================== */
.services-section {
    padding: 70px 0 90px 0 !important; /* Reduced top padding to close the gap */
    background-color: #ffffff !important; /* Elegant pure white background */
    background-image: radial-gradient(circle at 50% 0%, rgba(246, 202, 70, 0.03) 0%, transparent 60%) !important;
    position: relative;
    z-index: 10;
}

.services-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important; /* Fixed 3 columns on desktop for editorial grid look */
    gap: 36px !important; /* Spacious spacing */
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 28px !important;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
}

.service-card {
    background: #ffffff !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    border: 1.5px solid rgba(15, 23, 42, 0.12) !important; /* Clear visible border on white background */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015) !important;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
}

/* Luxury top bar */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0a0e17 0%, var(--color-secondary) 100%);
    z-index: 5;
}

.service-card:hover {
    transform: translateY(-8px) !important;
    border-color: var(--color-secondary) !important; /* Rich gold border on hover */
    box-shadow: 
        0 20px 40px rgba(246, 202, 70, 0.06), 
        0 8px 25px rgba(0, 0, 0, 0.02) !important;
}

.service-card-img-link {
    display: block !important;
    text-decoration: none !important;
}

.service-card-img-wrapper {
    position: relative !important;
    height: 240px !important;
    overflow: hidden !important;
    background: #0a0e17 !important;
}

.service-card-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.service-card:hover .service-card-img {
    transform: scale(1.06) !important;
}

.service-card-img-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 14, 23, 0.5) 100%) !important;
    z-index: 1 !important;
    transition: all 0.5s ease !important;
}

.service-card:hover .service-card-img-overlay {
    background: linear-gradient(180deg, transparent 30%, rgba(10, 14, 23, 0.65) 100%) !important;
}

.service-card-badge {
    position: absolute !important;
    top: 20px !important;
    left: 20px !important;
    background: rgba(10, 14, 23, 0.8) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border: 1px solid var(--color-secondary) !important; /* Gold border */
    color: var(--color-secondary) !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 16px !important;
    border-radius: 50% !important;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2) !important;
    z-index: 2 !important;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.service-card:hover .service-card-badge {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #e2b023 100%) !important;
    color: #000000 !important;
    border-color: transparent !important;
    transform: scale(1.08) rotate(8deg) !important;
    box-shadow: 0 8px 20px rgba(246, 202, 70, 0.3) !important;
}

.service-card-body {
    padding: 30px 24px !important; /* Slightly more compact padding */
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
    background: #ffffff !important;
}

.service-card-title {
    font-family: var(--font-heading) !important;
    font-size: 19px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin: 0 0 10px 0 !important;
    letter-spacing: -0.5px !important;
    transition: color 0.3s ease !important;
}

.service-card:hover .service-card-title {
    color: var(--color-secondary) !important; /* Gold hover title */
}

.service-card-text {
    font-size: 13.5px !important;
    color: #475569 !important;
    line-height: 1.6 !important;
    margin: 0 0 24px 0 !important;
    flex-grow: 1 !important;
}

/* Luxury Capsule Button Redesign */
.service-card-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    font-size: 11.5px !important;
    font-weight: 800 !important;
    color: var(--color-secondary) !important;
    background: linear-gradient(135deg, #0a0e17 0%, #1e293b 100%) !important; /* Midnight luxury background */
    border: 1px solid rgba(246, 202, 70, 0.25) !important;
    padding: 10px 20px !important;
    border-radius: 30px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    width: 100% !important; /* Full width button inside the card looks extremely solid! */
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    text-decoration: none !important;
    margin-top: auto !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05) !important;
}

.service-card-btn:hover {
    color: #000000 !important;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #e2b023 100%) !important; /* Gold gradient on hover */
    border-color: transparent !important;
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 8px 20px rgba(246, 202, 70, 0.25) !important;
}

.service-card-btn svg {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    stroke: currentColor !important;
}

.service-card-btn:hover svg {
    transform: translateX(4px) !important;
}

/* ==========================================
   Bölüm 7: Fiyat Hesaplama - Detaylı & İkon Stilleri
   ========================================== */
.calc-info-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 11px;
    color: var(--color-secondary);
    background: rgba(246, 202, 70, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    align-self: flex-start;
}

.calc-info-box h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px 0;
}

.calc-info-box p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0 0 25px 0;
}

.info-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14.5px;
    color: #ffffff;
    font-weight: 600;
}

.bullet-check {
    width: 24px;
    height: 24px;
    background: rgba(246, 202, 70, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    flex-shrink: 0;
}

.bullet-check svg {
    width: 14px;
    height: 14px;
    stroke-width: 3.5;
}

/* Giriş Alanlarındaki İkonların Boyutları */
.calc-input-wrapper svg.input-icon {
    width: 20px;
    height: 20px;
    color: var(--color-secondary);
    margin-left: 15px;
    flex-shrink: 0;
}

.calc-input-wrapper svg.chevron-icon {
    width: 18px;
    height: 18px;
    color: #94a3b8;
    margin-right: 15px;
    pointer-events: none;
    flex-shrink: 0;
}





/* ==========================================
   B�l�m 1.3: Adres Otomatik Tamamlama (OpenStreetMap Photon API)
   ========================================== */
.address-autocomplete-dropdown {
    position: absolute !important;
    bottom: calc(100% + 6px) !important; /* Opens upwards on desktop */
    top: auto !important;
    left: 0 !important;
    width: 340px !important; /* Expanded width for readable address details */
    background: rgba(15, 18, 30, 0.96) !important; /* Premium dark glass */
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 12px !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6) !important;
    z-index: 1000 !important;
    max-height: 280px !important;
    overflow-y: auto !important;
    padding: 6px 0 !important;
}

@media (max-width: 767px) {
    .address-autocomplete-dropdown {
        width: 100% !important;
        right: 0 !important;
        bottom: auto !important; /* Reset bottom on mobile */
        top: calc(100% + 4px) !important; /* Opens downwards on mobile to fit above soft keyboard */
        max-height: 185px !important; /* Compact display to save viewport height */
    }
    
    .autocomplete-item {
        padding: 10px 14px !important; /* Mobile friendly touch targets */
    }
    
    .autocomplete-item .item-title {
        font-size: 13px !important;
    }
    
    .autocomplete-item .item-subtitle {
        font-size: 10.5px !important;
    }
}

.address-autocomplete-dropdown::-webkit-scrollbar {
    width: 6px;
}
.address-autocomplete-dropdown::-webkit-scrollbar-track {
    background: transparent;
}
.address-autocomplete-dropdown::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}
.address-autocomplete-dropdown::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

.autocomplete-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 10px 16px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
}

.autocomplete-item:last-child {
    border-bottom: none !important;
}

.autocomplete-item:hover {
    background: rgba(255, 255, 255, 0.05) !important;
}

.autocomplete-item .item-icon {
    color: var(--color-secondary) !important; /* Gold marker icon */
    flex-shrink: 0;
    width: 16px !important;
    height: 16px !important;
}

.autocomplete-item .item-text-wrapper {
    display: flex !important;
    flex-direction: column !important;
    text-align: left !important;
    overflow: hidden !important;
}

.autocomplete-item .item-title {
    font-size: 13.5px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
    overflow: hidden !important;
}

.autocomplete-item .item-subtitle {
    font-size: 11px !important;
    color: #94a3b8 !important; /* Muted slate sub-addresses */
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
    overflow: hidden !important;
    margin-top: 1px !important;
}
/* Keyboard Navigation and Loading States for Autocomplete Dropdown */
.autocomplete-item.active {
    background: rgba(255, 255, 255, 0.08) !important;
    color: var(--color-secondary) !important;
}

.autocomplete-loading {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 14px 16px !important;
    color: #94a3b8 !important;
    font-size: 13.5px !important;
}

.spinner-pulse {
    width: 14px !important;
    height: 14px !important;
    border: 2px solid rgba(255, 255, 255, 0.15) !important;
    border-top-color: var(--color-secondary) !important;
    border-radius: 50% !important;
    animation: autocomplete-spin 0.6s linear infinite !important;
    flex-shrink: 0 !important;
}

@keyframes autocomplete-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.autocomplete-no-results {
    color: #94a3b8 !important;
    font-size: 13.5px !important;
    padding: 14px 16px !important;
    text-align: left !important;
}

/* ==========================================
   BÃ¶lÃ¼m 4.5: TÃœRSAB & D2 GÃ¼vence Showcase
   ========================================== */
.tursab-showcase-section {
    background: radial-gradient(circle at center top, #0f172a 0%, #020617 100%) !important;
    padding: 100px 0 !important;
    position: relative;
    z-index: 15;
    overflow: hidden;
    border-bottom: 1px solid rgba(246, 202, 70, 0.08);
}

.tursab-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

@media (max-width: 1024px) {
    .tursab-showcase-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.tursab-image-col {
    position: relative;
    z-index: 2;
}

.tursab-image-wrapper {
    position: relative;
    border-radius: 28px;
    overflow: visible;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 40px rgba(246, 202, 70, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tursab-main-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 27px;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.tursab-image-wrapper:hover .tursab-main-img {
    transform: scale(1.02);
}

/* Floating Badges */
.tursab-badge-floating {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(246, 202, 70, 0.45);
    padding: 14px 20px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(246, 202, 70, 0.1);
    z-index: 5;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tursab-badge-gold {
    top: -20px;
    right: -20px;
}

.tursab-badge-silver {
    bottom: -20px;
    left: -20px;
}

@media (max-width: 576px) {
    .tursab-badge-gold {
        top: -10px;
        right: -10px;
        padding: 10px 14px;
    }
    .tursab-badge-silver {
        bottom: -10px;
        left: -10px;
        padding: 10px 14px;
    }
}

.tursab-badge-floating:hover {
    transform: translateY(-5px) scale(1.03);
    border-color: var(--color-secondary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(246, 202, 70, 0.25);
}

.tursab-badge-floating .badge-icon {
    width: 26px;
    height: 26px;
    color: var(--color-secondary);
}

.tursab-badge-floating .badge-texts {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.tursab-badge-floating .badge-tag {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-secondary);
    margin-bottom: 2px;
}

.tursab-badge-floating .badge-title {
    font-size: 13.5px;
    font-weight: 800;
    color: #ffffff;
    font-family: var(--font-heading);
}

/* Content styles */
.tursab-content-col {
    text-align: left;
    z-index: 2;
}

.tursab-subtitle {
    display: inline-block;
    background: rgba(246, 202, 70, 0.08);
    border: 1px solid rgba(246, 202, 70, 0.25);
    color: var(--color-secondary);
    padding: 6px 18px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.tursab-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.25;
    background: linear-gradient(135deg, #ffffff 40%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    font-family: var(--font-heading);
}

.tursab-desc {
    color: #94a3b8;
    font-size: 15.5px;
    line-height: 1.75;
    margin-bottom: 35px;
}

.tursab-desc strong {
    color: #ffffff;
}

/* Features Grid */
.tursab-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 45px;
}

@media (max-width: 576px) {
    .tursab-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.tursab-feat-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 20px;
    transition: all 0.4s ease;
}

.tursab-feat-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(246, 202, 70, 0.25);
    transform: translateY(-4px);
}

.tursab-feat-card .feat-icon-box {
    width: 42px;
    height: 42px;
    background: rgba(246, 202, 70, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    flex-shrink: 0;
}

.tursab-feat-card .feat-icon-box svg {
    width: 20px;
    height: 20px;
}

.tursab-feat-card .feat-info h3 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px 0;
}

.tursab-feat-card .feat-info p {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

/* Button */
.tursab-action-row {
    display: flex;
    justify-content: flex-start;
}

.tursab-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 13.5px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 18px 38px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.tursab-btn-primary {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #e2b023 100%) !important;
    color: #000000 !important;
    box-shadow: 0 12px 30px rgba(246, 202, 70, 0.35) !important;
}

.tursab-btn-primary:hover {
    transform: translateY(-4px) scale(1.02) !important;
    box-shadow: 0 18px 40px rgba(246, 202, 70, 0.5) !important;
}

.tursab-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.4s ease;
}

.tursab-btn:hover svg {
    transform: translateX(6px);
}

/* ==========================================
   Bölüm 10: Hizmetlerimiz Sayfası Özel Stilleri
   ========================================== */
.hizmetler-hero-section {
    position: relative;
    padding: 140px 0 100px 0; /* Reverted back to original padding */
    background: radial-gradient(circle at center top, #0f172a 0%, #020617 100%) !important;
    text-align: left;
    overflow: hidden;
    border-bottom: 1px solid rgba(246, 202, 70, 0.08);
}

.hizmetler-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(2, 6, 23, 0.4) 100%);
    z-index: 1;
}

.hizmetler-hero-content {
    position: relative;
    z-index: 2;
}

.hizmetler-badge {
    display: inline-block;
    background: rgba(246, 202, 70, 0.08);
    border: 1px solid rgba(246, 202, 70, 0.25);
    color: var(--color-secondary);
    padding: 6px 18px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 35px; /* Pushes the badge and title down from the separator line */
    margin-bottom: 20px;
}

.hizmetler-page-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    font-family: var(--font-heading);
}

.hizmetler-page-subtitle {
    color: #94a3b8;
    font-size: 16.5px;
    line-height: 1.6;
    max-width: 650px;
    margin: 0;
}

.hizmetler-content-section {
    padding: 100px 0;
    background-color: #ffffff !important;
}

/* Breadcrumbs Styling */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-top: 1px solid rgba(255, 255, 255, 0.12); /* Clean separating line between header and breadcrumb */
    padding-top: 20px;
    width: 100%;
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: var(--color-secondary) !important;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.3);
}

.breadcrumb-active {
    color: var(--color-secondary);
}

/* Page CTA Section Styling */
.hizmetler-cta-section {
    padding: 0 0 100px 0;
    background-color: #ffffff !important;
}

.hizmetler-cta-card {
    position: relative;
    background: radial-gradient(circle at center top, #0f172a 0%, #020617 100%) !important;
    border: 1px solid rgba(246, 202, 70, 0.18) !important;
    border-radius: 28px;
    padding: 60px 40px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.hizmetler-cta-card h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 16px 0;
    text-transform: uppercase;
    letter-spacing: -0.3px;
}

.hizmetler-cta-card p {
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 35px auto;
}

.hizmetler-cta-card .cta-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 11px;
    color: var(--color-secondary);
    background: rgba(246, 202, 70, 0.1);
    border: 1px solid rgba(246, 202, 70, 0.2);
    padding: 5px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

@media (max-width: 768px) {
    .hizmetler-hero-section {
        padding: 150px 0 70px 0;
        text-align: center;
    }
    .hizmetler-page-title {
        font-size: 32px;
    }
    .hizmetler-page-subtitle {
        font-size: 15px;
        margin: 0 auto;
    }
    .breadcrumb-nav {
        justify-content: center;
    }
    .hizmetler-content-section {
        padding: 60px 0;
    }
    .hizmetler-cta-card {
        padding: 45px 25px;
    }
    .hizmetler-cta-card h2 {
        font-size: 24px;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .cta-buttons a {
        width: 100%;
    }
}

/* ==========================================
   Bölüm 11: Yeni Alt Sayfaların Ortak ve Özel Stilleri
   ========================================== */
.hakkimizda-hero-section,
.bolgeler-hero-section,
.iletisim-hero-section,
.sss-hero-section {
    position: relative;
    padding: 140px 0 100px 0;
    background: radial-gradient(circle at center top, #0f172a 0%, #020617 100%) !important;
    text-align: left;
    overflow: hidden;
    border-bottom: 1px solid rgba(246, 202, 70, 0.08);
}

.hakkimizda-hero-overlay,
.bolgeler-hero-overlay,
.iletisim-hero-overlay,
.sss-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(2, 6, 23, 0.4) 100%);
    z-index: 1;
}

.hakkimizda-hero-content,
.bolgeler-hero-content,
.iletisim-hero-content,
.sss-hero-content {
    position: relative;
    z-index: 2;
}

.hakkimizda-badge,
.bolgeler-badge,
.iletisim-badge,
.sss-badge {
    display: inline-block;
    background: rgba(246, 202, 70, 0.08);
    border: 1px solid rgba(246, 202, 70, 0.25);
    color: var(--color-secondary);
    padding: 6px 18px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 35px;
    margin-bottom: 20px;
}

.hakkimizda-page-title,
.bolgeler-page-title,
.iletisim-page-title,
.sss-page-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    font-family: var(--font-heading);
}

.hakkimizda-page-subtitle,
.bolgeler-page-subtitle,
.iletisim-page-subtitle,
.sss-page-subtitle {
    color: #94a3b8;
    font-size: 16.5px;
    line-height: 1.6;
    max-width: 650px;
    margin: 0;
}

/* Hakkimizda Page Story Grid */
.story-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.hakkimizda-story-section {
    padding: 100px 0 50px 0;
    background-color: #ffffff !important;
}

.story-pretitle {
    display: block;
    color: var(--color-secondary);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.story-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 24px;
    line-height: 1.25;
}

.story-p-highlight {
    font-size: 17px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.story-p {
    font-size: 15px;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 18px;
}

.story-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 35px;
}

.stat-card {
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.05);
    padding: 24px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: #ffffff;
    border-color: rgba(246, 202, 70, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(246, 202, 70, 0.05);
}

.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13.5px;
    color: #64748b;
    font-weight: 600;
}

/* Story Image Column */
.story-img-col {
    position: relative;
}

.story-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: visible;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.story-main-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}

.story-image-glow {
    position: absolute;
    top: -15%;
    left: -15%;
    width: 130%;
    height: 130%;
    background: radial-gradient(circle, rgba(246, 202, 70, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.story-floating-box {
    position: absolute;
    bottom: -25px;
    left: 30px;
    background: #0a0e17;
    border: 1px solid rgba(246, 202, 70, 0.3);
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    color: #ffffff;
    max-width: 280px;
    z-index: 3;
}

.story-floating-box .box-title {
    display: block;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 4px;
}

.story-floating-box .box-desc {
    font-size: 12.5px;
    color: #cbd5e1;
    line-height: 1.5;
}

/* Hakkimizda Values Grid */
.hakkimizda-values-section {
    padding: 70px 0;
    background: radial-gradient(circle at center top, #0f172a 0%, #020617 100%) !important;
}

.hakkimizda-values-section .section-title {
    color: #ffffff !important;
}

.hakkimizda-values-section .section-subtitle {
    color: var(--color-secondary) !important;
}

.hakkimizda-values-section .section-desc {
    color: #94a3b8 !important;
}

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

.value-card {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 20px;
    padding: 30px 24px;
    transition: all 0.4s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0a0e17 0%, var(--color-secondary) 100%);
    z-index: 5;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(246, 202, 70, 0.3) !important;
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 25px rgba(246, 202, 70, 0.08);
}

.value-icon-box {
    width: 64px; /* Increased from 50px */
    height: 64px; /* Increased from 50px */
    background: rgba(246, 202, 70, 0.15) !important;
    border-radius: 16px; /* Slightly smoother corners */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.value-icon {
    font-size: 30px; /* Increased from 22px */
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 22px; /* Increased from 18px */
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 14px;
}

.value-card p {
    font-size: 15px; /* Increased from 13.5px */
    color: #e2e8f0 !important; /* Slightly lighter for better contrast on dark bg */
    line-height: 1.7;
    margin: 0;
}

/* Hakkimizda CTA */
.hakkimizda-cta-section {
    padding: 70px 0;
    background-color: #ffffff !important;
}

.hakkimizda-cta-card {
    position: relative;
    background: radial-gradient(circle at center top, #0f172a 0%, #020617 100%) !important;
    border: 1px solid rgba(246, 202, 70, 0.18) !important;
    border-radius: 28px;
    padding: 60px 40px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.hakkimizda-cta-card h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 16px 0;
    text-transform: uppercase;
    letter-spacing: -0.3px;
}

.hakkimizda-cta-card p {
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 35px auto;
}

.hakkimizda-cta-card .cta-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 11px;
    color: var(--color-secondary);
    background: rgba(246, 202, 70, 0.1);
    border: 1px solid rgba(246, 202, 70, 0.2);
    padding: 5px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
}

/* Hizmet Bölgeleri Grid */
.bolgeler-grid-section {
    padding: 100px 0;
    background-color: #ffffff !important;
}

.bolgeler-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.bolge-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid rgba(15, 23, 42, 0.12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.bolge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0a0e17 0%, var(--color-secondary) 100%);
    z-index: 5;
}

.bolge-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-secondary);
    box-shadow: 0 20px 40px rgba(246, 202, 70, 0.06), 0 8px 25px rgba(0, 0, 0, 0.02);
}

.bolge-card-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #0a0e17;
}

.bolge-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.bolge-card:hover .bolge-card-img {
    transform: scale(1.06);
}

.bolge-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 14, 23, 0.5) 100%);
    z-index: 1;
}

.bolge-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(10, 14, 23, 0.85);
    border: 1.5px solid var(--color-secondary);
    color: var(--color-secondary);
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    z-index: 3;
}

.bolge-card-body {
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bolge-card-body h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.bolge-card-body p {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.bolge-link {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.bolge-card:hover .bolge-link {
    color: var(--color-secondary);
}

/* Coverage Area Block */
.bolgeler-coverage-section {
    padding: 0 0 100px 0;
    background-color: #ffffff !important;
}

.coverage-box {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    background: radial-gradient(circle at center top, #0f172a 0%, #020617 100%) !important;
    border: 1px solid rgba(246, 202, 70, 0.18);
    border-radius: 24px;
    padding: 50px;
    gap: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.coverage-texts {
    text-align: left;
}

.coverage-subtitle {
    display: block;
    color: var(--color-secondary);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.coverage-texts h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.coverage-texts p {
    font-size: 14.5px;
    color: #cbd5e1;
    line-height: 1.65;
    margin-bottom: 14px;
}

.coverage-texts p:last-child {
    margin-bottom: 0;
}

.coverage-action {
    display: flex;
    justify-content: flex-end;
}

/* Iletisim Page Grid */
.iletisim-content-section {
    padding: 100px 0;
    background-color: #ffffff !important;
}

.iletisim-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: flex-start;
}

.iletisim-info-col {
    text-align: left;
}

.info-pretitle {
    display: block;
    color: var(--color-secondary);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.info-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.25;
}

.info-desc {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Contact Info Cards */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.05);
    padding: 24px;
    border-radius: 18px;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: #ffffff;
    border-color: rgba(246, 202, 70, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(246, 202, 70, 0.04);
}

.info-card .card-icon {
    width: 46px;
    height: 46px;
    background: rgba(15, 23, 42, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    flex-shrink: 0;
}

.info-card .card-icon.icon-whatsapp {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.info-card .card-content h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.info-card .card-content p {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 12px;
}

.info-card .card-content p:last-child {
    margin-bottom: 0;
}

.card-phone-num {
    font-family: var(--font-heading);
    font-size: 20px !important;
    font-weight: 800;
    color: #0f172a !important;
    margin-bottom: 12px !important;
}

.call-now-btn,
.wa-direct-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.call-now-btn {
    background: linear-gradient(135deg, #000000 0%, var(--color-secondary) 100%);
    border: 1px solid rgba(246, 202, 70, 0.35);
    color: #ffffff !important;
}

.call-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(246, 202, 70, 0.3);
    color: #000000 !important;
}

.wa-direct-btn {
    border: 1.5px solid #22c55e;
    color: #22c55e !important;
}

.wa-direct-btn:hover {
    background: #22c55e;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.2);
}

/* Booking Planner Card Form */
.booking-planner-card {
    background: radial-gradient(circle at center top, #0f172a 0%, #020617 100%) !important;
    border: 1.5px solid rgba(246, 202, 70, 0.18);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.planner-header {
    text-align: left;
    margin-bottom: 30px;
}

.planner-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 9px;
    color: var(--color-secondary);
    background: rgba(246, 202, 70, 0.1);
    border: 1px solid rgba(246, 202, 70, 0.2);
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.planner-header h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.planner-header p {
    font-size: 13.5px;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

.planner-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.planner-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.planner-form-group label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 12.5px;
    color: #cbd5e1;
    letter-spacing: 0.5px;
}

.planner-form-group input,
.planner-form-group select,
.planner-form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.planner-form-group input:focus,
.planner-form-group select:focus,
.planner-form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 10px rgba(246, 202, 70, 0.15);
}

.planner-form-group select option {
    background: #0f172a;
    color: #ffffff;
}

.planner-submit-btn {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #e2b023 100%);
    color: #000000;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border: none;
    border-radius: 12px;
    padding: 16px 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 25px rgba(246, 202, 70, 0.3);
    margin-top: 10px;
}

.planner-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(246, 202, 70, 0.45);
}

/* SSS Content styling */
.sss-content-section {
    padding: 100px 0;
    background-color: #ffffff !important;
}

/* FAQ Search Box */
.faq-search-wrapper {
    max-width: 650px;
    margin: 0 auto 40px auto;
}

.faq-search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 1.5px solid rgba(15, 23, 42, 0.1);
    border-radius: 30px;
    padding: 4px 20px;
    transition: all 0.3s ease;
}

.faq-search-box:focus-within {
    border-color: var(--color-secondary);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(246, 202, 70, 0.08);
}

.faq-search-box .search-icon {
    color: #64748b;
    margin-right: 12px;
}

.faq-search-box input {
    width: 100%;
    border: none;
    background: transparent;
    padding: 14px 0;
    color: #0f172a;
    font-size: 15px;
    outline: none;
    font-family: var(--font-body);
}

.search-clear-btn {
    border: none;
    background: transparent;
    font-size: 22px;
    color: #94a3b8;
    cursor: pointer;
    padding: 0 10px;
}

.search-clear-btn:hover {
    color: #0f172a;
}

/* Category Tabs */
.faq-category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.category-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 30px;
    padding: 10px 22px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 600;
    color: #475569;
    transition: all 0.3s ease;
}

.category-tab:hover {
    background: #ffffff;
    border-color: rgba(246, 202, 70, 0.3);
    color: #0f172a;
}

.category-tab.active {
    background: #0a0e17;
    border-color: #0a0e17;
    color: var(--color-secondary);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* FAQ Accordion Items */
.faq-page-container {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item {
    background: #ffffff;
    border: 1.5px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
    border-color: rgba(246, 202, 70, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
}

.faq-item.active {
    border-color: var(--color-secondary);
    box-shadow: 0 15px 35px rgba(246, 202, 70, 0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    padding: 24px 30px;
    font-family: var(--font-heading);
    font-size: 16.5px;
    font-weight: 700;
    color: #0f172a;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question {
    color: var(--color-secondary);
}

.faq-item.active .faq-question {
    color: var(--color-secondary);
}

.faq-icon-arrow {
    font-size: 20px;
    font-weight: 500;
    color: #64748b;
    transition: transform 0.4s ease;
}

.faq-item.active .faq-icon-arrow {
    transform: rotate(45deg);
    color: var(--color-secondary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: #fafbfc;
}

.faq-answer p {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.7;
    padding: 0 30px 24px 30px;
    margin: 0;
}

/* No Results */
.faq-no-results {
    text-align: center;
    padding: 60px 20px;
}

.no-results-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.faq-no-results h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.faq-no-results p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* SSS FAQ CTA */
.sss-cta-section {
    padding: 0 0 100px 0;
    background-color: #ffffff !important;
}

.sss-cta-card {
    position: relative;
    background: radial-gradient(circle at center top, #0f172a 0%, #020617 100%) !important;
    border: 1px solid rgba(246, 202, 70, 0.18) !important;
    border-radius: 28px;
    padding: 60px 40px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.sss-cta-card h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 16px 0;
    text-transform: uppercase;
}

.sss-cta-card p {
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 35px auto;
}

.sss-cta-card .cta-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 11px;
    color: var(--color-secondary);
    background: rgba(246, 202, 70, 0.1);
    border: 1px solid rgba(246, 202, 70, 0.2);
    padding: 5px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
}

/* Media Queries for Subpages */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .bolgeler-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .story-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .iletisim-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .hakkimizda-hero-section,
    .bolgeler-hero-section,
    .iletisim-hero-section,
    .sss-hero-section {
        padding: 150px 0 70px 0;
        text-align: center;
    }
    .hakkimizda-page-title,
    .bolgeler-page-title,
    .iletisim-page-title,
    .sss-page-title {
        font-size: 32px;
    }
    .hakkimizda-page-subtitle,
    .bolgeler-page-subtitle,
    .iletisim-page-subtitle,
    .sss-page-subtitle {
        font-size: 15px;
        margin: 0 auto;
    }
    .breadcrumb-nav {
        justify-content: center;
    }
    .hakkimizda-story-section,
    .hakkimizda-values-section,
    .hakkimizda-cta-section,
    .bolgeler-grid-section,
    .bolgeler-coverage-section,
    .iletisim-content-section,
    .sss-content-section,
    .sss-cta-section {
        padding: 60px 0;
    }
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .bolgeler-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .coverage-box {
        grid-template-columns: 1fr;
        padding: 30px;
        text-align: center;
        gap: 24px;
    }
    .coverage-texts h2 {
        font-size: 22px;
    }
    .coverage-action {
        justify-content: center;
    }
    .booking-planner-card {
        padding: 24px;
    }
    .planner-header h3 {
        font-size: 20px;
    }
    .hakkimizda-cta-card,
    .sss-cta-card {
        padding: 40px 20px;
    }
    .hakkimizda-cta-card h2,
    .sss-cta-card h2 {
        font-size: 24px;
    }
    .story-floating-box {
        position: static;
        margin: 20px auto 0 auto;
        max-width: 100%;
    }
    .faq-question {
        padding: 20px;
        font-size: 15px;
    }
    .faq-answer p {
        padding: 0 20px 20px 20px;
    }
}

@media (max-width: 576px) {
    .form-row-two {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    .faq-category-tabs {
        gap: 8px !important;
        margin-bottom: 30px !important;
    }
    .category-tab {
        padding: 8px 16px !important;
        font-size: 12.5px !important;
    }
    .booking-tabs {
        display: flex !important;
        width: 100% !important;
    }
    .booking-tabs .booking-tab {
        flex: 1 !important;
        padding: 10px 10px !important;
        font-size: 11px !important;
    }
}

@media (max-width: 768px) {
    .testimonials-slider-container {
        padding: 0 38px !important;
    }
    .testimonials-slider-container .testimonial-prev,
    .testimonials-slider-container .testimonial-next {
        display: flex !important;
        width: 34px !important;
        height: 34px !important;
        background: #ffffff !important;
        border: 1px solid rgba(0, 0, 0, 0.08) !important;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08) !important;
        top: 40% !important;
    }
    .testimonials-slider-container .testimonial-prev {
        left: 2px !important;
    }
    .testimonials-slider-container .testimonial-next {
        right: 2px !important;
    }
    .testimonials-slider-container .swiper-nav-btn svg {
        width: 14px !important;
        height: 14px !important;
    }
    .quick-dispatch-section {
        padding: 80px 0 70px 0 !important; /* Reset to normal spacing since slider now fully contains the form */
    }
    .tursab-showcase-section {
        padding: 70px 0 !important;
    }
    .steps-section {
        padding: 70px 0 !important;
    }
    .trust-section {
        padding: 70px 0 !important;
    }
}

/* ==========================================
   Mercedes Vito Scroll Animation Road Styling
   ========================================== */
.footer-road-section {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #111111; /* Dark asphalt */
    padding: 10px 0 8px 0;
    overflow: hidden;
    z-index: 998; /* Below mobile sticky action bar (1000) */
    border-top: 2.5px solid var(--color-secondary); /* Gold line above */
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.4);
    pointer-events: none; /* Let clicks pass through passive animation container */
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-road-section.active {
    opacity: 1;
    transform: translateY(0);
}

.road-container {
    position: relative;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: flex-end;
}

/* Road strip marking */
.road-line {
    position: absolute;
    bottom: 14px;
    left: 0;
    width: 100%;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        #ffffff,
        #ffffff 25px,
        transparent 25px,
        transparent 50px
    );
    opacity: 0.75;
}

/* Vito car styling */
.road-vito-car {
    position: absolute;
    bottom: 18px; /* Sits perfectly on top of the road line */
    left: 0;
    width: 150px; /* Aspect ratio of cropped image is ~2.75:1 */
    height: auto;
    z-index: 10;
    will-change: transform;
    filter: drop-shadow(2px 3px 6px rgba(0, 0, 0, 0.6));
}

@media (max-width: 768px) {
    .footer-road-section {
        bottom: 60px; /* Sits right above the mobile sticky action bar */
        padding: 8px 0 6px 0;
    }
    .road-container {
        height: 52px;
    }
    .road-vito-car {
        width: 110px; /* Scale down on mobile screens */
        bottom: 14px;
    }
    .road-line {
        bottom: 11px;
        height: 3px;
        background: repeating-linear-gradient(
            90deg,
            #ffffff,
            #ffffff 15px,
            transparent 15px,
            transparent 30px
        );
    }
}

/* ==========================================
   Bölüm 3: Türkiye Geneli Hizmet Ağı (Stats Section)
   ========================================== */
.coverage-stats-section {
    padding: 120px 0;
    background: #070913 !important; /* Matches why-us transition */
    background-image: radial-gradient(circle at 50% 50%, #0d1222 0%, #070913 100%) !important;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.coverage-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(246, 202, 70, 0.015) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(246, 202, 70, 0.015) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 1;
}

.coverage-stats-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(246, 202, 70, 0.05) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    pointer-events: none;
    z-index: 2;
    filter: blur(80px);
}

.coverage-stats-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(246, 202, 70, 0.02) 0%, transparent 70%);
    bottom: -250px;
    left: -100px;
    pointer-events: none;
    z-index: 2;
    filter: blur(80px);
}

.coverage-stats-section .container {
    position: relative;
    z-index: 5;
}

.coverage-stats-section .coverage-badge-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.coverage-stats-section .coverage-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 11px;
    color: var(--color-secondary) !important;
    background: rgba(246, 202, 70, 0.06);
    border: 1px solid rgba(246, 202, 70, 0.25);
    padding: 8px 22px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
    box-shadow: 0 4px 15px rgba(246, 202, 70, 0.08);
}

.coverage-stats-section .coverage-badge .badge-icon {
    stroke: var(--color-secondary);
}

.coverage-stats-section .coverage-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 42px;
    color: #ffffff !important;
    line-height: 1.25;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-align: center;
}

.coverage-stats-section .coverage-desc {
    font-family: var(--font-body);
    font-size: 16px;
    color: #94a3b8;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}

.coverage-stats-section .coverage-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 70px;
}

/* Glassmorphism Card Style */
.coverage-stats-section .coverage-stat-card {
    background: rgba(255, 255, 255, 0.02) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 24px;
    padding: 45px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3) !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s ease,
                box-shadow 0.4s ease,
                background-color 0.4s ease;
}

.coverage-stats-section .stat-card-glow {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(246, 202, 70, 0.08) 0%, transparent 60%);
    pointer-events: none;
    filter: blur(20px);
    z-index: 1;
    transition: transform 0.6s ease;
}

.coverage-stats-section .coverage-stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: rgba(246, 202, 70, 0.35) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 35px rgba(246, 202, 70, 0.08) !important;
}

.coverage-stats-section .coverage-stat-card:hover .stat-card-glow {
    transform: translate(20px, 20px) scale(1.2);
}

.coverage-stats-section .stat-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(246, 202, 70, 0.06);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-secondary);
    margin: 0 auto 28px auto;
    border: 1px solid rgba(246, 202, 70, 0.15);
    position: relative;
    z-index: 2;
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.coverage-stats-section .coverage-stat-card:hover .stat-icon-wrapper {
    background: rgba(246, 202, 70, 0.15);
    border-color: rgba(246, 202, 70, 0.3);
    transform: scale(1.1);
}

.coverage-stats-section .stat-number-box {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

/* Explicit Bright White-Gold Gradient for Numbers to prevent dark overrides */
.coverage-stats-section .stat-number {
    font-family: var(--font-heading) !important;
    font-weight: 800 !important;
    font-size: 56px !important;
    background: linear-gradient(135deg, #ffffff 40%, #F6CA46 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    display: block !important;
    line-height: 1 !important;
    letter-spacing: -1.5px !important;
    margin: 0 !important;
    opacity: 1 !important;
    filter: drop-shadow(0 2px 10px rgba(246, 202, 70, 0.15)) !important;
    transition: filter 0.4s ease !important;
}

.coverage-stats-section .coverage-stat-card:hover .stat-number {
    filter: drop-shadow(0 4px 15px rgba(246, 202, 70, 0.35)) !important;
}

.coverage-stats-section .stat-plus {
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    font-size: 32px !important;
    color: var(--color-secondary) !important;
    margin-left: 2px !important;
    line-height: 1 !important;
    -webkit-text-fill-color: var(--color-secondary) !important; /* Override transparent fill */
}

/* Bright contrast for card label */
.coverage-stats-section .stat-label {
    font-family: var(--font-body) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #e2e8f0 !important; /* Bright slate-200 for readability */
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    margin: 0 !important;
    position: relative;
    z-index: 2;
    transition: color 0.4s ease !important;
}

.coverage-stats-section .coverage-stat-card:hover .stat-label {
    color: #ffffff !important;
}

.coverage-stats-section .coverage-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 75px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 45px;
}

.coverage-stats-section .coverage-feature-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #e2e8f0 !important;
    font-size: 14px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 10px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                background-color 0.3s ease,
                border-color 0.3s ease,
                box-shadow 0.3s ease;
    cursor: default;
}

.coverage-stats-section .coverage-feature-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(246, 202, 70, 0.25) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), 0 0 15px rgba(246, 202, 70, 0.04);
}

.coverage-stats-section .coverage-feature-item .feature-icon {
    stroke: var(--color-secondary);
    flex-shrink: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .coverage-stats-section .coverage-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .coverage-stats-section .coverage-features {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        max-width: 400px;
        margin: 60px auto 0 auto;
    }
}

@media (max-width: 768px) {
    .coverage-stats-section {
        padding: 80px 0;
    }
    .coverage-stats-section .coverage-title {
        font-size: 32px;
    }
    .coverage-stats-section .stat-number {
        font-size: 46px;
    }
    .coverage-stats-section .stat-plus {
        font-size: 26px;
    }
}

@media (max-width: 600px) {
    .coverage-stats-section .coverage-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   Hakkimizda Page Sleek Stats Cards & Extra Sections
   ========================================== */
.story-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

.story-stats-grid .stat-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
    border: 1px solid rgba(246, 202, 70, 0.15) !important;
    border-left: 4px solid var(--color-secondary) !important;
    padding: 24px 30px !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.story-stats-grid .stat-card:hover {
    background: #ffffff !important;
    border-color: rgba(246, 202, 70, 0.4) !important;
    border-left-color: #0f172a !important;
    transform: translateY(-6px) !important;
    box-shadow: 0 20px 45px rgba(246, 202, 70, 0.08), 0 5px 15px rgba(0, 0, 0, 0.02) !important;
}

.story-stats-grid .stat-num {
    display: block !important;
    font-family: var(--font-heading) !important;
    font-size: 38px !important;
    font-weight: 850 !important;
    background: linear-gradient(135deg, #0f172a 30%, #F6CA46 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    margin-bottom: 6px !important;
    letter-spacing: -1px !important;
    line-height: 1 !important;
}

.story-stats-grid .stat-label {
    font-family: var(--font-heading) !important;
    font-size: 11px !important;
    color: #475569 !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    margin: 0 !important;
}

/* Mission & Vision Section */
.hakkimizda-mission-vision-section {
    padding: 40px 0 60px 0;
    background-color: #ffffff;
    position: relative;
    z-index: 10;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mission-vision-card {
    background: linear-gradient(145deg, #ffffff, #f8fafc) !important;
    border: 1px solid rgba(246, 202, 70, 0.2) !important;
    border-left: 5px solid var(--color-secondary) !important;
    border-radius: 24px;
    padding: 45px 40px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.02) !important;
    position: relative;
    overflow: hidden;
}

.mission-vision-card:hover {
    transform: translateY(-8px);
    border-color: rgba(246, 202, 70, 0.4) !important;
    border-left-color: #0f172a !important;
    background: #ffffff !important;
    box-shadow: 0 25px 50px rgba(246, 202, 70, 0.1), 0 10px 25px rgba(0, 0, 0, 0.02) !important;
}

.mission-vision-card .card-icon-box {
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, #0a0e17 0%, var(--color-secondary) 100%) !important;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(246, 202, 70, 0.25);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mission-vision-card:hover .card-icon-box {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 12px 25px rgba(246, 202, 70, 0.35);
}

.mission-vision-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 850;
    color: #0f172a;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.mission-vision-card p {
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
    margin: 0;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.card-watermark {
    position: absolute;
    bottom: -15px;
    right: 25px;
    font-size: 130px;
    font-family: var(--font-heading);
    font-weight: 900;
    color: rgba(246, 202, 70, 0.04);
    line-height: 1;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
}

.mission-vision-card:hover .card-watermark {
    color: rgba(246, 202, 70, 0.08);
    transform: translateY(-8px);
}

/* Fleet Standards Section */
.hakkimizda-fleet-section {
    padding: 70px 0;
    background-color: #f8fafc;
    position: relative;
    z-index: 10;
}

.hakkimizda-fleet-section .section-title {
    color: #0f172a !important;
}

.hakkimizda-fleet-section .section-desc {
    color: #475569;
}

.fleet-standards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.fleet-standard-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.fleet-standard-card:hover {
    transform: translateY(-8px);
    border-color: rgba(246, 202, 70, 0.3);
    box-shadow: 0 20px 40px rgba(246, 202, 70, 0.05), 0 10px 20px rgba(0, 0, 0, 0.02);
}

.fleet-card-icon {
    font-size: 46px; /* Increased from 32px for premium visibility */
    display: block;
    margin-bottom: 24px;
}

.fleet-standard-card h4 {
    font-family: var(--font-heading);
    font-size: 22px; /* Increased from 18px for better prominence */
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 14px;
}

.fleet-standard-card p {
    font-size: 15px; /* Increased from 13.5px for readability */
    color: #475569; /* Darker, more contrast-rich slate color */
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1024px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .fleet-standards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .story-stats-grid {
        gap: 16px;
    }
    .story-stats-grid .stat-card {
        padding: 20px !important;
    }
    .story-stats-grid .stat-num {
        font-size: 32px !important;
    }
}

@media (max-width: 576px) {
    .story-stats-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 600px) {
    .fleet-standards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-slider-section {
        height: 1080px !important;
        margin-bottom: 0 !important;
    }
    .hero-swiper {
        height: 1080px !important;
    }
    .logo-wrapper {
        height: 78px !important; /* Enlarged mobile logo on phone screens */
    }
    .site-header.header-scrolled .logo-wrapper {
        height: 78px !important; /* Enlarged for maximum phone visibility */
    }
    .info-card {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 15px !important;
    }
}

/* ==========================================
   Language Switcher Styles
   ========================================== */
.lang-selector {
    position: relative;
    display: inline-block;
    margin-right: 15px;
    z-index: 1010;
}
.lang-selector-btn {
    display: flex;
    align-items: center;
    line-height: 1;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(246, 202, 70, 0.45);
    padding: 12px 24px; /* Reverted to original padding */
    border-radius: 50px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.lang-flag {
    font-size: 24px !important; /* Slightly smaller for maximum elegance */
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 22px !important; /* Adjusted layout width */
    height: 20px !important; /* Constrained layout height (prevents button from growing) */
    overflow: visible !important; /* Let the larger flag overflow visually */
    vertical-align: middle !important;
    white-space: nowrap !important;
    margin-right: 0 !important; /* Removed margin to bring closer to text */
    transform: translateY(-1px) !important; /* Minor alignment adjustment */
}
.lang-flag-current {
    display: inline-flex;
    align-items: center;
    gap: 7px; /* Decreased from 10px to combine flag and text closer */
}
.lang-selector-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(246, 202, 70, 0.85);
}
.lang-selector-btn .icon-chevron {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}
.lang-selector:hover .lang-selector-btn .icon-chevron {
    transform: rotate(180deg);
}
.site-header.header-scrolled .lang-selector {
    margin-left: 25px;
    margin-right: 40px !important;
}
.site-header.header-scrolled .lang-selector-btn {
    color: #000000;
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(246, 202, 70, 0.5) !important;
}
.site-header.header-scrolled .lang-selector-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(246, 202, 70, 0.9) !important;
}
.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    min-width: 135px;
    overflow: hidden;
}
.lang-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lang-dropdown-item {
    display: flex;
    align-items: center;
    line-height: 1;
    gap: 12px;
    padding: 12px 24px;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s ease;
    text-align: left;
    width: 100%;
}
.lang-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
}
.site-header.header-scrolled .lang-dropdown {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.site-header.header-scrolled .lang-dropdown-item {
    color: #333333 !important;
}
.site-header.header-scrolled .lang-dropdown-item:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #000000 !important;
}

/* Mobile Language Selector styling inside drawer */
.mobile-lang-selector {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-lang-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(246, 202, 70, 0.3);
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.mobile-lang-item.active {
    background: var(--color-secondary, #f6ca46);
    color: #000000 !important;
    border-color: var(--color-secondary, #f6ca46);
}

/* Hide desktop lang selector on mobile */
@media (max-width: 991px) {
    .lang-selector {
        display: none;
    }
    }
}

/* ==========================================
   RTL Style Overrides (Arabic Layout)
   ========================================== */
html[dir="rtl"] body {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] .main-nav,
html[dir="rtl"] .nav-container,
html[dir="rtl"] .nav-menu-list,
html[dir="rtl"] .booking-fields-row,
html[dir="rtl"] .story-grid,
html[dir="rtl"] .mission-vision-grid,
html[dir="rtl"] .values-grid,
html[dir="rtl"] .fleet-standards-grid,
html[dir="rtl"] .footer-container {
    direction: rtl;
}

/* Swapped CTA and Lang Selector Margins */
html[dir="rtl"] .lang-selector {
    margin-right: 0;
    margin-left: 15px;
}
html[dir="rtl"] .nav-cta {
    margin-left: 0;
    margin-right: 15px;
}

/* Swapped Button and Icon Margins */
html[dir="rtl"] .btn svg,
html[dir="rtl"] .booking-tab svg,
html[dir="rtl"] .mobile-cta svg {
    margin-right: 0 !important;
    margin-left: 8px !important;
}

/* Mobile Drawer RTL slide-in from left */
html[dir="rtl"] .mobile-nav-drawer {
    right: auto !important;
    left: -100% !important;
    border-left: none !important;
    border-right: 1.5px solid rgba(246, 202, 70, 0.25) !important;
    box-shadow: 15px 0 45px rgba(0, 0, 0, 0.5) !important;
    transition: left 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
html[dir="rtl"] .mobile-nav-drawer.active {
    left: 0 !important;
    right: auto !important;
}

/* Flex alignments and grids swaps */
html[dir="rtl"] .section-title-wrapper.text-center,
html[dir="rtl"] .text-center {
    text-align: right !important;
}
html[dir="rtl"] .section-title-wrapper {
    align-items: flex-start !important;
}
html[dir="rtl"] .booking-field-group {
    border-right: none !important;
    border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
}
html[dir="rtl"] .booking-field-group:last-child {
    border-left: none !important;
}

/* Swiper slider buttons swapping direction */
html[dir="rtl"] .swiper-button-next {
    left: 10px !important;
    right: auto !important;
    transform: rotate(180deg);
}
html[dir="rtl"] .swiper-button-prev {
    right: 10px !important;
    left: auto !important;
    transform: rotate(180deg);
}

/* FAQ accordion icon positioning */
html[dir="rtl"] .faq-accordion-item-header::after {
    right: auto !important;
    left: 20px !important;
}
html[dir="rtl"] .faq-accordion-item-header {
    padding-right: 24px !important;
    padding-left: 60px !important;
}

/* ==========================================
   Desktop Floating Contact Buttons
   ========================================== */
.floating-btn {
    position: fixed; /* Directly fixed to viewport to avoid container height issues */
    bottom: 20px; /* Positioned perfectly at the bottom corners */
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.7;
    animation: floatPulse 2s infinite;
}

.floating-call-btn {
    left: 30px;
    background: linear-gradient(135deg, var(--color-secondary, #f6ca46) 0%, #d89e1b 100%);
}

.floating-call-btn::before {
    background-color: var(--color-secondary, #f6ca46);
}

.floating-call-btn:hover {
    background: linear-gradient(135deg, #1b263b 0%, #0d1b2a 100%) !important;
}

.floating-call-btn:hover::before {
    background-color: #1b263b;
}

.floating-whatsapp-btn {
    right: 30px;
    background: linear-gradient(135deg, #25D366 0%, #075E54 100%);
}

.floating-whatsapp-btn::before {
    background-color: #25D366;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}



@keyframes floatPulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Hide on mobile where bottom sticky action bar is displayed */
@media (max-width: 767px) {
    .floating-btn {
        display: none !important;
    }
}

/* Disable all logo animations and effects in the mobile navigation drawer */
.mobile-nav-drawer .logo-emblem-base,
.mobile-nav-drawer .logo-emblem-car {
    animation: none !important;
}

.mobile-nav-drawer .headlight {
    display: none !important;
}

/* Footer SEO Keyword Section */
.footer-seo-section {
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 15px 0;
    margin-top: 30px;
    background: rgba(0, 0, 0, 0.2);
}

.seo-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 5px 15px;
    user-select: none;
    transition: all 0.3s ease;
}

.seo-title-wrapper:hover {
    color: #d4af37;
}

.seo-section-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.seo-toggle-icon {
    font-size: 18px;
    font-weight: bold;
    color: #d4af37;
}

.seo-keyword-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 20px 15px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .seo-keyword-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.seo-keywords-col h4 {
    font-size: 13px;
    color: #d4af37;
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-left: 2px solid #d4af37;
    padding-left: 8px;
}

.seo-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.seo-tags span {
    display: inline-block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3px 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.seo-tags span:hover {
    color: #fff;
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    cursor: default;
}