/* ==========================================================================
   AY HALI YIKAMA - DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

/* 1. INITIAL SYSTEM SETTINGS & VARIABLES */
:root {
    /* Color Tokens (HSL Based for harmony) */
    --clr-primary: 215, 25%, 20%;     /* Slate-800: #1e293b */
    --clr-primary-dark: 222, 47%, 11%;/* Slate-950: #0f172a */
    --clr-primary-light: 214, 32%, 91%;/* Slate-100: #f1f5f9 */
    
    --clr-accent: 198, 100%, 45%;     /* Ocean Blue: #009fe3 */
    --clr-accent-hover: 198, 100%, 35%;
    
    --clr-success: 142, 70%, 45%;     /* Active Green: #22c55e */
    --clr-success-hover: 142, 72%, 35%;
    --clr-whatsapp: 142, 60%, 49%;    /* WA Green: #25d366 */
    
    --clr-warning: 25, 95%, 53%;      /* Orange: #f97316 */
    --clr-warning-hover: 25, 95%, 43%;
    --clr-gold: 45, 93%, 47%;         /* Gold/Yellow: #eab308 */
    --clr-gold-light: 48, 100%, 67%;  /* Amber light: #fbbf24 */
    --clr-danger: 354, 100%, 64%;     /* Soft Red: #ff4757 */
    
    --bg-light: 210, 40%, 98%;        /* Slate-50: #f8fafc */
    --bg-white: 0, 0%, 100%;
    --border-color: 214, 32%, 91%;
    
    /* Font Weight Tokens */
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;
    --fw-black: 900;
    
    /* Layout Tokens */
    --max-width: 1240px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 50px;
    
    /* Shadow System */
    --shadow-soft: 0 4px 20px -2px rgba(15, 23, 42, 0.05);
    --shadow-medium: 0 10px 30px -4px rgba(15, 23, 42, 0.1);
    --shadow-strong: 0 20px 40px -4px rgba(15, 23, 42, 0.15);
    --shadow-glow: 0 0 25px rgba(0, 159, 227, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Global Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', 'Outfit', sans-serif;
    background-color: hsl(var(--bg-light));
    color: hsl(var(--clr-primary));
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 70px; /* Space for mobile floating action bar */
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Logo: beyaz arka plan ile her temada belirgin görünür */
.logo-img {
    background-color: #ffffff;
    border-radius: 6px;
    padding: 4px 8px;
}


button, input {
    font-family: inherit;
    outline: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    transition: var(--transition-fast);
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

/* Section Header Utility */
.section-header {
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background-color: hsla(var(--clr-accent), 0.1);
    color: hsl(var(--clr-accent));
    font-weight: var(--fw-bold);
    font-size: 0.85rem;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: var(--fw-black);
    color: hsl(var(--clr-primary-dark));
    line-height: 1.2;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: hsl(var(--clr-primary));
    max-width: 700px;
    margin: 0 auto;
}

/* Accent texts */
.text-green { color: hsl(var(--clr-success)); }
.text-blue { color: hsl(var(--clr-accent)); }
.text-red { color: hsl(var(--clr-danger)); }

/* ==========================================================================
   2. HEADER & NAV SYSTEM
   ========================================================================== */
.main-header {
    background-color: hsl(var(--bg-white));
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Top bar details */
.top-bar {
    background-color: hsl(var(--clr-primary-dark));
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: var(--fw-medium);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.top-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-info i {
    color: hsl(var(--clr-accent));
}

.top-info .divider {
    color: rgba(255, 255, 255, 0.4);
}

.top-social {
    display: flex;
    gap: 15px;
}

.top-social a:hover {
    color: hsl(var(--clr-accent));
}

/* Navbar main styling */
.nav-bar {
    padding: 10px 0;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    flex-direction: column;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-title {
    font-size: 1.6rem;
    font-weight: var(--fw-black);
    color: hsl(var(--clr-primary-dark));
    letter-spacing: -1px;
    line-height: 1;
}

.logo-highlight {
    color: hsl(var(--clr-accent));
}

.logo-subtitle {
    font-size: 0.65rem;
    font-weight: var(--fw-extrabold);
    color: hsl(var(--clr-primary));
    letter-spacing: 2px;
    margin-top: 4px;
}

/* Menu items */
.desktop-menu ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
}

.desktop-menu a {
    font-weight: var(--fw-semibold);
    font-size: 0.95rem;
    color: hsl(var(--clr-primary));
    padding: 8px 0;
    position: relative;
}

.desktop-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: hsl(var(--clr-accent));
    transition: var(--transition-fast);
    border-radius: var(--radius-full);
}

.desktop-menu a:hover,
.desktop-menu a.active {
    color: hsl(var(--clr-accent));
}

.desktop-menu a:hover::after,
.desktop-menu a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-nav-call {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, hsl(var(--clr-primary-dark)) 0%, hsl(var(--clr-primary)) 100%);
    color: hsl(var(--bg-white));
    padding: 10px 22px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-soft);
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-nav-call:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Tavsiye Et Kazan - Pulse Button for main nav & mobile drawer */
.btn-nav-referral,
.btn-mobile-menu-cta {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(90deg, #FFD000 0%, #FF7A00 45%, #FF4B00 100%) !important;
    color: #0A1128 !important;
    font-size: 0.84rem !important;
    font-weight: 800 !important;
    padding: 10px 22px;
    border-radius: 999px !important;
    border: none !important;
    cursor: pointer;
    text-decoration: none !important;
    box-shadow: 0 8px 22px rgba(255, 100, 0, 0.45) !important;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, background 0.3s ease !important;
    white-space: nowrap !important;
    animation: referralPulse 2s ease-in-out infinite !important;
    z-index: 1;
}
.btn-nav-referral::before,
.btn-mobile-menu-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.65) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: shineEffect 4s ease-in-out infinite;
    pointer-events: none;
}
.btn-nav-referral-icon {
    display: inline-block;
    font-size: 1.05rem;
    animation: iconAnimate 3.5s ease-in-out infinite;
}
.btn-nav-referral:hover,
.btn-nav-referral:focus,
.btn-nav-referral:active,
.btn-mobile-menu-cta:hover,
.btn-mobile-menu-cta:focus,
.btn-mobile-menu-cta:active {
    color: #0A1128 !important;
    background: linear-gradient(90deg, #FFE500 0%, #FF9500 45%, #FF3C00 100%) !important;
    transform: translateY(-2px) scale(1.08) !important;
    box-shadow: 0 12px 28px rgba(255, 100, 0, 0.65), 0 8px 22px rgba(255, 100, 0, 0.45) !important;
}
.btn-nav-referral::after,
.btn-mobile-menu-cta::after { display: none !important; }

/* Redesigned Button Animations */
@keyframes referralPulse {
    0%, 100% {
        box-shadow: 0 8px 22px rgba(255, 100, 0, 0.45);
    }
    50% {
        box-shadow: 0 12px 30px rgba(255, 100, 0, 0.75), 0 8px 22px rgba(255, 100, 0, 0.45);
    }
}
@keyframes shineEffect {
    0%, 70% { left: -150%; }
    100% { left: 150%; }
}
@keyframes iconAnimate {
    0%, 85%, 100% { transform: translateY(0) scale(1) rotate(0); }
    90% { transform: translateY(-5px) scale(1.15) rotate(-12deg); }
    93% { transform: translateY(0) scale(1) rotate(12deg); }
    96% { transform: translateY(-2px) scale(1.08) rotate(-8deg); }
    98% { transform: translateY(0) scale(1) rotate(0); }
}

/* Responsive adjustments for header to prevent desktop menu overflow */
@media (max-width: 1220px) {
    .nav-bar {
        padding: 8px 0 !important;
    }
    .logo-img {
        height: 52px !important;
    }
    .desktop-menu ul {
        gap: 10px !important;
        align-items: center !important;
    }
    .desktop-menu a {
        font-size: 0.85rem !important;
        letter-spacing: -0.3px !important;
    }
    .btn-nav-referral {
        padding: 6px 12px !important;
        font-size: 0.78rem !important;
    }
    .btn-nav-call {
        padding: 6px 12px !important;
    }
    .btn-nav-call strong {
        font-size: 0.8rem !important;
    }
}

@media (max-width: 1080px) {
    .nav-bar {
        position: relative;
    }
    .nav-flex {
        min-height: 72px;
    }
    .logo-area {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
    }
    .nav-actions {
        margin-left: auto;
    }
    .desktop-menu {
        display: none !important;
    }
    .mobile-menu-toggle {
        display: block !important;
    }
    .btn-nav-call {
        display: none !important;
    }
    .top-bar {
        display: none !important;
    }
    .mobile-floating-bar {
        display: grid !important;
    }
}


.btn-nav-call i {
    font-size: 1.2rem;
    color: hsl(var(--clr-accent));
}

.btn-call-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-call-text span {
    font-size: 0.7rem;
    color: #cbd5e1;
    text-transform: uppercase;
}

.btn-call-text strong {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: hsl(var(--clr-primary-dark));
}

.mobile-menu-panel {
    display: none;
}

/* Animations */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.animate-bounce {
    animation: bounce 2s infinite;
}

/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */
.hero-section {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0 140px;
    color: hsl(var(--bg-white));
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, hsla(var(--clr-accent), 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-weight: var(--fw-bold);
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: hsl(var(--clr-gold));
}

.hero-title {
    font-size: 3.8rem;
    font-weight: var(--fw-black);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.hero-title .highlight {
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(to right, #38bdf8, hsl(var(--clr-accent)));
}

.hero-desc {
    font-size: 1.15rem;
    color: #cbd5e1;
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 45px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.stat-card {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 2.2rem;
    font-weight: var(--fw-black);
    color: hsl(var(--bg-white));
    line-height: 1;
}

.stat-lbl {
    font-size: 0.85rem;
    color: #cbd5e1;
    font-weight: var(--fw-semibold);
    margin-top: 6px;
    text-transform: uppercase;
}

.hero-cta-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Glow Button Design */
.btn-primary-glow {
    background: linear-gradient(135deg, hsl(var(--clr-accent)) 0%, #0284c7 100%);
    color: hsl(var(--bg-white));
    font-weight: var(--fw-black);
    font-size: 1.1rem;
    padding: 18px 36px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(0, 159, 227, 0.4);
}

.btn-primary-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 159, 227, 0.5);
}

.btn-whatsapp {
    background-color: hsl(var(--clr-whatsapp));
    color: hsl(var(--bg-white));
    font-weight: var(--fw-bold);
    font-size: 1.1rem;
    padding: 18px 36px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

/* Trust Badge Panel */
.badge-trust-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
    position: relative;
    max-width: 420px;
    margin-left: auto;
}

.badge-trust-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 2px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.trust-header {
    margin-bottom: 20px;
}

.trust-stars {
    color: hsl(var(--clr-gold));
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.trust-header strong {
    font-size: 1.25rem;
    font-weight: var(--fw-extrabold);
    display: block;
}

.trust-body {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 25px;
}

.trust-footer {
    font-size: 0.85rem;
    font-weight: var(--fw-bold);
    color: hsl(var(--bg-white));
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ==========================================================================
   4. BEFORE/AFTER COMPARISON SECTION
   ========================================================================== */
.comparison-section {
    padding: 100px 0;
    background-color: hsl(var(--bg-white));
}

.comparison-wrapper {
    max-width: 800px;
    margin: 40px auto 0;
    position: relative;
}

.comparison-slider {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    user-select: none;
    border: 6px solid hsl(var(--border-color));
}

.comparison-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.image-before {
    z-index: 2;
    clip-path: inset(0 50% 0 0); /* right clip 50% default */
}

/* Handlebar element */
.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background-color: hsl(var(--bg-white));
    cursor: ew-resize;
    z-index: 10;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.handle-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background-color: hsl(var(--clr-accent));
    color: hsl(var(--bg-white));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 159, 227, 0.4);
    border: 4px solid hsl(var(--bg-white));
}

/* Slider labels */
.badge-tag {
    position: absolute;
    top: 20px;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: var(--fw-black);
    letter-spacing: 1px;
    z-index: 5;
    box-shadow: var(--shadow-medium);
}

.before-tag {
    left: 20px;
    background-color: hsl(var(--clr-danger));
    color: hsl(var(--bg-white));
}

.after-tag {
    right: 20px;
    background-color: hsl(var(--clr-success));
    color: hsl(var(--bg-white));
}

.slider-instructions {
    margin-top: 25px;
    font-weight: var(--fw-bold);
    color: hsl(var(--clr-primary));
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.slider-instructions i {
    color: hsl(var(--clr-accent));
    font-size: 1.1rem;
}

/* ==========================================================================
   5. SERVICES SECTION & TABS
   ========================================================================== */
.services-section {
    padding: 100px 0;
    background-color: hsl(var(--clr-primary-light));
}

.services-tabs {
    margin-top: 40px;
}

/* Tab navigation buttons */
.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.tab-nav-btn {
    background-color: hsl(var(--bg-white));
    color: hsl(var(--clr-primary));
    font-weight: var(--fw-bold);
    padding: 15px 30px;
    border-radius: var(--radius-full);
    border: 1px solid hsl(var(--border-color));
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-nav-btn i {
    font-size: 1.1rem;
    color: hsl(var(--clr-accent));
}

.tab-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.tab-nav-btn.active {
    background-color: hsl(var(--clr-accent));
    color: hsl(var(--bg-white));
    border-color: hsl(var(--clr-accent));
    box-shadow: var(--shadow-glow);
}

.tab-nav-btn.active i {
    color: hsl(var(--bg-white));
}

/* Tab Panels */
.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-panel-grid {
    display: grid;
    grid-template-columns: 1.22fr 0.78fr;
    gap: 50px;
    align-items: start;
}

.panel-text h3 {
    font-size: 2rem;
    font-weight: var(--fw-black);
    color: hsl(var(--clr-primary-dark));
    margin-bottom: 20px;
}

.panel-text p {
    color: hsl(var(--clr-primary));
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.panel-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.panel-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: var(--fw-semibold);
    color: hsl(var(--clr-primary-dark));
    font-size: 0.95rem;
}

.panel-list i {
    color: hsl(var(--clr-success));
    font-size: 1.1rem;
    margin-top: 3px;
}

.btn-panel-cta {
    background-color: hsl(var(--clr-primary-dark));
    color: hsl(var(--bg-white));
    font-weight: var(--fw-bold);
    padding: 16px 32px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-medium);
}

.btn-panel-cta:hover {
    background-color: hsl(var(--clr-accent));
    color: hsl(var(--bg-white));
    transform: translateX(5px);
    box-shadow: var(--shadow-glow);
}

/* Panel Visual column */
.panel-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.visual-card {
    background-color: hsl(var(--bg-white));
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid hsl(var(--border-color));
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.visual-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 6px;
    background-color: hsl(var(--clr-accent));
}

.icon-accent {
    font-size: 2.2rem;
    color: hsl(var(--clr-accent));
    margin-bottom: 15px;
}

.visual-card h4 {
    font-size: 1.15rem;
    font-weight: var(--fw-bold);
    color: hsl(var(--clr-primary-dark));
    margin-bottom: 8px;
}

.visual-card p {
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.6;
}

/* ==========================================================================
   6. PROCESS TIMELINE SECTION
   ========================================================================== */
.process-section {
    padding: 100px 0;
    background-color: hsl(var(--bg-white));
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.process-step {
    position: relative;
    text-align: center;
    padding: 30px 20px;
    background-color: hsl(var(--bg-light));
    border-radius: var(--radius-md);
    border: 1px solid hsl(var(--border-color));
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: hsl(var(--clr-accent));
}

.step-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background-color: hsl(var(--clr-primary-dark));
    color: hsl(var(--bg-white));
    font-weight: var(--fw-black);
    font-size: 0.9rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid hsl(var(--bg-white));
}

.step-icon {
    width: 64px;
    height: 64px;
    background-color: hsl(var(--bg-white));
    color: hsl(var(--clr-accent));
    font-size: 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid hsl(var(--border-color));
}

.process-step h3 {
    font-size: 1.15rem;
    font-weight: var(--fw-bold);
    color: hsl(var(--clr-primary-dark));
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.8rem;
    color: #334155;
    line-height: 1.5;
}

/* ==========================================================================
   7. CALCULATOR & ORDER BASKET SYSTEM
   ========================================================================== */
.calculator-section {
    padding: 100px 0;
    background-color: hsl(var(--bg-light));
    border-top: 1px solid hsl(var(--border-color));
}

.calculator-layout {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 40px;
    align-items: start;
    margin-top: 40px;
}

.calc-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.calc-tab-btn {
    background-color: hsl(var(--bg-white));
    color: hsl(var(--clr-primary));
    font-weight: var(--fw-bold);
    font-size: 0.85rem;
    padding: 12px 20px;
    border-radius: var(--radius-full);
    border: 1px solid hsl(var(--border-color));
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 8px;
}

.calc-tab-btn i {
    font-size: 0.95rem;
    color: #94a3b8;
}

.calc-tab-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.calc-tab-btn.active {
    background-color: hsl(var(--clr-primary-dark));
    color: hsl(var(--bg-white));
    border-color: hsl(var(--clr-primary-dark));
    box-shadow: var(--shadow-glow);
}

.calc-tab-btn.active i {
    color: hsl(var(--clr-accent));
}

/* Calc List Section panels */
.calc-price-section {
    display: none;
}

.calc-price-section.active {
    display: block;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Product Cards */
.calc-price-card {
    background-color: hsl(var(--bg-white));
    padding: 20px 25px;
    border-radius: var(--radius-md);
    border: 1px solid hsl(var(--border-color));
    box-shadow: var(--shadow-soft);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calc-item-info {
    display: flex;
    flex-direction: column;
}

.calc-item-name {
    font-size: 1.05rem;
    font-weight: var(--fw-bold);
    color: hsl(var(--clr-primary-dark));
    line-height: 1.3;
}

.calc-item-unit {
    font-size: 0.75rem;
    color: #334155;
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    margin-top: 4px;
}

.calc-item-action {
    display: flex;
    align-items: center;
    gap: 20px;
}

.calc-item-val {
    font-size: 1.4rem;
    font-weight: var(--fw-black);
    color: hsl(var(--clr-primary-dark));
}

.calc-item-val span {
    font-size: 0.95rem;
    font-weight: var(--fw-bold);
    color: #475569;
}

.calc-btn-add {
    width: 38px;
    height: 38px;
    background-color: hsla(var(--clr-accent), 0.1);
    color: hsl(var(--clr-accent));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: var(--fw-black);
}

.calc-btn-add:hover {
    background-color: hsl(var(--clr-accent));
    color: hsl(var(--bg-white));
    transform: scale(1.08);
}

/* Basket Side bar widget */
.basket-card {
    background-color: hsl(var(--bg-white));
    border: 1px solid hsl(var(--border-color));
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-medium);
    border-top: 6px solid hsl(var(--clr-accent));
    position: sticky;
    top: 100px;
}

.basket-title {
    font-size: 1.25rem;
    font-weight: var(--fw-black);
    color: hsl(var(--clr-primary-dark));
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid hsl(var(--bg-light));
    padding-bottom: 15px;
}

.basket-list {
    list-style: none;
    margin-bottom: 25px;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 5px;
}

/* Custom Scrollbar for basket list */
.basket-list::-webkit-scrollbar {
    width: 6px;
}
.basket-list::-webkit-scrollbar-track {
    background: #f1f5f9;
}
.basket-list::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: var(--radius-full);
}

.basket-empty-msg {
    color: #475569;
    text-align: center;
    padding: 40px 0;
    font-style: italic;
    font-size: 0.9rem;
}

/* Basket item detail line */
.basket-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed hsl(var(--border-color));
    animation: itemSlideIn 0.3s ease;
}

@keyframes itemSlideIn {
    from { opacity: 0; transform: translateX(10px); }
    to { opacity: 1; transform: translateX(0); }
}

.basket-item-info {
    flex: 1;
    padding-right: 15px;
}

.basket-item-name {
    display: block;
    font-weight: var(--fw-bold);
    color: hsl(var(--clr-primary-dark));
    font-size: 0.9rem;
}

.basket-item-meta {
    font-size: 0.75rem;
    color: #334155;
    font-weight: var(--fw-semibold);
}

.basket-item-price {
    font-weight: var(--fw-extrabold);
    font-family: monospace;
    font-size: 1.05rem;
    color: hsl(var(--clr-primary-dark));
}

.basket-btn-remove {
    margin-left: 15px;
    color: hsl(var(--clr-danger));
    background-color: rgba(255, 71, 87, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 4px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.basket-btn-remove:hover {
    background-color: hsl(var(--clr-danger));
    color: hsl(var(--bg-white));
}

/* Totals calculation table */
.basket-summary {
    background-color: hsl(var(--bg-light));
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 25px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    margin-bottom: 10px;
    font-weight: var(--fw-semibold);
}

.vat-row {
    color: hsl(var(--clr-danger));
    font-size: 0.85rem;
}

.grand-total-row {
    border-top: 2px solid hsl(var(--border-color));
    margin-top: 15px;
    padding-top: 15px;
    font-size: 1.4rem;
    font-weight: var(--fw-black);
    color: hsl(var(--clr-accent));
}

.btn-send-whatsapp-order {
    width: 100%;
    background-color: hsl(var(--clr-success));
    color: hsl(var(--bg-white));
    font-weight: var(--fw-black);
    font-size: 1.1rem;
    padding: 18px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.btn-send-whatsapp-order:hover:not(:disabled) {
    background-color: hsl(var(--clr-success-hover));
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.4);
}

.btn-send-whatsapp-order:disabled {
    background-color: #cbd5e1;
    color: #94a3b8;
    cursor: not-allowed;
    box-shadow: none;
}

.basket-note {
    font-size: 0.75rem;
    color: #334155;
    margin-top: 15px;
    line-height: 1.5;
    display: flex;
    gap: 6px;
}

.basket-note i {
    color: hsl(var(--clr-accent));
    font-size: 0.85rem;
    margin-top: 2px;
}

/* ==========================================================================
   8. QUANTITY SELECTION MODAL
   ========================================================================== */
.quantity-modal {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-card {
    background-color: hsl(var(--bg-white));
    width: 90%;
    max-width: 400px;
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow-strong);
    border: 1px solid hsl(var(--border-color));
    text-align: center;
    animation: modalSlideUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlideUp {
    from { transform: translateY(30px); }
    to { transform: translateY(0); }
}

.modal-item-title {
    font-size: 1.3rem;
    font-weight: var(--fw-black);
    color: hsl(var(--clr-primary-dark));
    margin-bottom: 20px;
}

.modal-body {
    margin-bottom: 30px;
    text-align: left;
}

.modal-body label {
    display: block;
    font-size: 0.8rem;
    font-weight: var(--fw-bold);
    color: #334155;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.qty-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.qty-input-field {
    width: 100%;
    border: 2px solid hsl(var(--border-color));
    border-radius: var(--radius-md);
    padding: 15px 70px 15px 20px;
    font-size: 1.6rem;
    font-weight: var(--fw-black);
    color: hsl(var(--clr-accent));
    text-align: center;
    background-color: hsl(var(--bg-light));
    transition: var(--transition-fast);
}

.qty-input-field:focus {
    border-color: hsl(var(--clr-accent));
    background-color: hsl(var(--bg-white));
}

/* Remove default spin buttons from number input */
.qty-input-field::-webkit-outer-spin-button,
.qty-input-field::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.qty-input-field[type=number] {
    -moz-appearance: textfield;
}

.qty-unit-badge {
    position: absolute;
    right: 20px;
    font-weight: var(--fw-black);
    font-size: 1rem;
    color: #94a3b8;
}

.modal-footer-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.btn-modal-cancel {
    background-color: hsl(var(--clr-primary-light));
    color: hsl(var(--clr-primary));
    font-weight: var(--fw-bold);
    padding: 14px 0;
    border-radius: var(--radius-full);
}

.btn-modal-cancel:hover {
    background-color: #cbd5e1;
}

.btn-modal-confirm {
    background-color: hsl(var(--clr-accent));
    color: hsl(var(--bg-white));
    font-weight: var(--fw-bold);
    padding: 14px 0;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(0, 159, 227, 0.3);
}

.btn-modal-confirm:hover {
    background-color: hsl(var(--clr-accent-hover));
    box-shadow: 0 6px 20px rgba(0, 159, 227, 0.4);
}

/* ==========================================================================
   9. SEO SERVICE REGIONS SECTION
   ========================================================================== */
.regions-section {
    padding: 100px 0;
    background-color: hsl(var(--clr-primary-dark));
    color: hsl(var(--bg-white));
}

.regions-section .section-title {
    color: hsl(var(--bg-white));
}

.regions-section .section-subtitle {
    color: #334155;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.region-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.region-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: hsl(var(--clr-accent));
    transform: translateY(-3px);
}

.region-card h4 {
    font-size: 1.2rem;
    font-weight: var(--fw-extrabold);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.region-card p {
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.6;
}

/* ==========================================================================
   10. FAQ ACCORDION SECTION
   ========================================================================== */
.faq-section {
    padding: 100px 0;
    background-color: hsl(var(--bg-white));
}

.faq-accordion {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid hsl(var(--border-color));
    background-color: hsl(var(--bg-light));
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1.05rem;
    font-weight: var(--fw-bold);
    color: hsl(var(--clr-primary-dark));
}

.faq-question i {
    font-size: 0.9rem;
    color: #94a3b8;
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-color: hsl(var(--clr-accent));
}

.faq-item.active {
    border-color: hsl(var(--clr-accent));
    background-color: hsl(var(--bg-white));
    box-shadow: var(--shadow-soft);
}

.faq-item.active .faq-question {
    color: hsl(var(--clr-accent));
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: hsl(var(--clr-accent));
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 30px;
}

.faq-answer p {
    padding-bottom: 24px;
    font-size: 0.95rem;
    color: hsl(var(--clr-primary));
    line-height: 1.6;
}

/* ==========================================================================
   11. CONTACT SECTION
   ========================================================================== */
.contact-section {
    padding: 100px 0;
    background-color: hsl(var(--clr-primary-light));
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
}

.contact-intro {
    font-size: 1.1rem;
    color: hsl(var(--clr-primary));
    margin-bottom: 40px;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.contact-card {
    background-color: hsl(var(--bg-white));
    border: 1px solid hsl(var(--border-color));
    border-radius: var(--radius-md);
    padding: 25px;
    display: flex;
    gap: 20px;
    box-shadow: var(--shadow-soft);
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background-color: hsla(var(--clr-accent), 0.1);
    color: hsl(var(--clr-accent));
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    shrink-0: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-details span {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: var(--fw-bold);
    text-transform: uppercase;
}

.contact-details a,
.contact-details p {
    font-size: 0.95rem;
    font-weight: var(--fw-bold);
    color: hsl(var(--clr-primary-dark));
    margin-top: 4px;
}

.contact-details a:hover {
    color: hsl(var(--clr-accent));
}

/* Map Mockup representation */
.map-mockup {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    border: 6px solid hsl(var(--bg-white));
    height: 380px;
}

.map-inner {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pulsing map pin marker */
.map-glow-marker {
    position: relative;
    color: hsl(var(--clr-accent));
    font-size: 3rem;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 5;
    cursor: pointer;
}

.marker-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: hsla(var(--clr-accent), 0.25);
    animation: pulseGlow 2s infinite;
    z-index: -1;
}

@keyframes pulseGlow {
    0% { transform: translate(-50%, -50%) scale(0.6); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.4); opacity: 0; }
}

.marker-tooltip {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background-color: hsl(var(--clr-primary-dark));
    color: hsl(var(--bg-white));
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-strong);
    border: 1px solid rgba(255,255,255,0.1);
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.marker-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: hsl(var(--clr-primary-dark)) transparent transparent transparent;
}

.marker-tooltip strong {
    font-size: 0.85rem;
    font-weight: var(--fw-black);
}

.marker-tooltip span {
    font-size: 0.7rem;
    color: #94a3b8;
    margin-top: 4px;
}

/* ==========================================================================
   12. FOOTER SECTION
   ========================================================================== */
.main-footer {
    background-color: hsl(var(--clr-primary-dark));
    color: #cbd5e1;
    padding: 80px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    font-size: 1.6rem;
    font-weight: var(--fw-black);
    color: hsl(var(--bg-white));
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 20px;
    background-color: hsl(var(--bg-white));
    padding: 6px 12px;
    border-radius: var(--radius-sm);
}

.footer-logo span {
    color: hsl(var(--clr-accent));
}

.footer-col-about p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: hsl(var(--bg-white));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.footer-socials a:hover {
    background-color: hsl(var(--clr-accent));
    transform: translateY(-3px);
}

.footer-grid h4 {
    color: hsl(var(--bg-white));
    font-size: 1.1rem;
    font-weight: var(--fw-bold);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-grid h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background-color: hsl(var(--clr-accent));
    border-radius: var(--radius-full);
}

.footer-grid ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-grid ul a {
    font-size: 0.85rem;
    color: #cbd5e1;
}

.footer-grid ul a:hover {
    color: hsl(var(--clr-accent));
    padding-left: 5px;
}

.footer-col-contact p {
    font-size: 0.85rem;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.footer-col-contact i {
    font-size: 0.95rem;
    margin-top: 3px;
}

.footer-bottom {
    padding: 25px 0;
    font-size: 0.75rem;
    color: #cbd5e1;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.ennet-credit a {
    color: hsl(var(--clr-accent));
    font-weight: var(--fw-bold);
}

.ennet-credit a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   13. MOBILE STICKY FLOATING ACTION BAR
   ========================================================================== */
.mobile-floating-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: hsl(var(--bg-white));
    box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.1);
    z-index: 999;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid hsl(var(--border-color));
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 0;
    font-weight: var(--fw-black);
    font-size: 0.95rem;
    color: hsl(var(--bg-white));
}

.float-call {
    background-color: hsl(var(--clr-primary-dark));
}

.float-whatsapp {
    background-color: hsl(var(--clr-whatsapp));
}

/* ==========================================================================
   14. RESPONSIVE MEDIA BREAKPOINTS
   ========================================================================== */

/* 1024px tablet breakpoint */
@media (max-width: 1024px) {
    body {
        font-size: 15px;
    }
    .hero-container-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .hero-text-content {
        text-align: center;
    }
    .hero-badge, .hero-desc, .hero-stats {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-cta-btns {
        justify-content: center;
    }
    .badge-trust-card {
        margin-left: auto;
        margin-right: auto;
    }
    .tab-panel-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .panel-visual {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .visual-card {
        flex: 1 1 45%;
    }
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .calculator-layout {
        grid-template-columns: 1fr;
    }
    .basket-card {
        position: relative;
        top: 0;
    }
    .regions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 768px small tablet / mobile header breakpoint */
@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .btn-nav-call {
        display: none;
    }
    .top-bar {
        display: none;
    }
    .mobile-floating-bar {
        display: grid;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .comparison-slider {
        height: 320px;
    }
    .image-before {
        width: 100%;
        height: 320px;
    }
    .calc-grid {
        grid-template-columns: 1fr;
    }
    .process-grid {
        grid-template-columns: 1fr;
    }
    .step-badge {
        left: 30px;
        transform: none;
    }
    .process-step {
        text-align: left;
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 20px 25px;
    }
    .step-icon {
        margin: 0;
    }
}

/* 480px mobile breakpoint */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-desc {
        font-size: 1rem;
    }
    .stat-num {
        font-size: 1.6rem;
    }
    .btn-primary-glow, .btn-whatsapp {
        width: 100%;
        justify-content: center;
        padding: 15px 0;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .tab-nav-btn {
        width: 100%;
        justify-content: center;
    }
    .panel-visual {
        flex-direction: column;
    }
    .regions-grid {
        grid-template-columns: 1fr;
    }
    .contact-methods {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
    }
    .modal-card {
        padding: 30px 20px;
    }
}

/* ==========================================================================
   15. MULTI-PAGE NAVIGATION & DROPDOWNS
   ========================================================================== */
.desktop-menu ul li {
    position: relative;
}

.desktop-menu ul li:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: hsl(var(--bg-white));
    border: 1px solid hsl(var(--border-color));
    box-shadow: var(--shadow-medium);
    border-radius: var(--radius-sm);
    min-width: 220px;
    list-style: none;
    display: flex;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-fast);
    z-index: 100;
}

.submenu li a {
    padding: 12px 20px !important;
    display: block;
    font-size: 0.9rem !important;
    font-weight: var(--fw-semibold) !important;
    color: hsl(var(--clr-primary)) !important;
    border-bottom: 1px solid hsl(var(--clr-primary-light));
    width: 100%;
}

.submenu li a::after {
    display: none !important;
}

.submenu li:last-child a {
    border-bottom: none;
}

.submenu li a:hover {
    background-color: hsl(var(--clr-primary-light));
    color: hsl(var(--clr-accent)) !important;
    padding-left: 25px !important;
}

/* ==========================================================================
   16. SUBPAGE BANNERS
   ========================================================================== */
.page-banner {
    padding: 80px 0;
    color: hsl(var(--bg-white));
    background-size: cover;
    background-position: center;
    text-align: center;
    position: relative;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.65);
    z-index: 1;
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    font-size: 3rem;
    font-weight: var(--fw-black);
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.page-banner p {
    font-size: 1.15rem;
    color: #cbd5e1;
}

/* ==========================================================================
   17. ABOUT SECTION (ANASAYFA)
   ========================================================================== */
.about-section {
    padding: 100px 0;
    background-color: hsl(var(--bg-white));
    border-bottom: 1px solid hsl(var(--border-color));
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.4rem;
    font-weight: var(--fw-black);
    color: hsl(var(--clr-primary-dark));
    margin-bottom: 20px;
    line-height: 1.25;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: hsl(var(--clr-primary));
}

.about-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 35px;
}

.feature-inline-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-inline-item i {
    font-size: 1.6rem;
    color: hsl(var(--clr-accent));
    background-color: hsla(var(--clr-accent), 0.1);
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-inline-item div {
    display: flex;
    flex-direction: column;
}

.feature-inline-item strong {
    font-size: 1.1rem;
    color: hsl(var(--clr-primary-dark));
}

.feature-inline-item span {
    font-size: 0.85rem;
    color: #475569;
    margin-top: 2px;
}

.about-video-placeholder {
    border-radius: var(--radius-lg);
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: hsl(var(--bg-white));
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    border: 6px solid hsl(var(--bg-white));
}

.play-btn-glow {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: hsl(var(--clr-accent));
    color: hsl(var(--bg-white));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    box-shadow: var(--shadow-glow);
    animation: pulseGlow 2s infinite;
}

.video-overlay-text strong {
    font-size: 1.4rem;
    font-weight: var(--fw-black);
    display: block;
}

.video-overlay-text span {
    font-size: 0.9rem;
    color: #cbd5e1;
}

/* ==========================================================================
   18. SERVICES SUMMARY GALLERY (ANASAYFA)
   ========================================================================== */
.services-summary-section {
    padding: 100px 0;
    background-color: hsl(var(--clr-primary-light));
}

.services-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-summary-card {
    background-color: hsl(var(--bg-white));
    border: 1px solid hsl(var(--border-color));
    border-radius: var(--radius-md);
    padding: 40px 30px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
}

.service-summary-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: hsl(var(--clr-accent));
}

.card-icon {
    font-size: 2.2rem;
    color: hsl(var(--clr-accent));
    margin-bottom: 20px;
}

.service-summary-card h3 {
    font-size: 1.3rem;
    font-weight: var(--fw-extrabold);
    color: hsl(var(--clr-primary-dark));
    margin-bottom: 15px;
}

.service-summary-card p {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.btn-card-link {
    font-weight: var(--fw-bold);
    font-size: 0.9rem;
    color: hsl(var(--clr-accent));
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-card-link i {
    transition: var(--transition-fast);
}

.btn-card-link:hover i {
    transform: translateX(4px);
}

.promo-card {
    background: linear-gradient(135deg, hsl(var(--clr-primary-dark)) 0%, hsl(var(--clr-primary)) 100%);
    color: hsl(var(--bg-white));
    border-color: transparent;
}

.promo-card h3 {
    color: hsl(var(--bg-white));
}

.promo-card p {
    color: #cbd5e1;
}

.btn-promo-link {
    background-color: hsl(var(--clr-accent));
    color: hsl(var(--bg-white));
    padding: 14px 24px;
    border-radius: var(--radius-full);
    font-weight: var(--fw-bold);
    text-align: center;
    box-shadow: var(--shadow-glow);
    margin-top: 15px;
}

.btn-promo-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 159, 227, 0.4);
}

/* ==========================================================================
   19. COMMITMENTS TAAHHÜT BÖLÜMÜ
   ========================================================================== */
.commitments-section {
    padding: 100px 0;
    background-color: hsl(var(--bg-white));
}

.commitments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.commitment-item i {
    font-size: 2.8rem;
    color: hsl(var(--clr-accent));
    margin-bottom: 20px;
}

.commitment-item h4 {
    font-size: 1.25rem;
    font-weight: var(--fw-bold);
    color: hsl(var(--clr-primary-dark));
    margin-bottom: 12px;
}

.commitment-item p {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
}

/* ==========================================================================
   20. DETAIL PAGE CONTENT WITH SIDEBAR
   ========================================================================== */
.detail-page-content {
    padding: 100px 0;
    background-color: hsl(var(--bg-white));
}

.detail-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 50px;
    align-items: start;
}

.detail-main-text h2 {
    font-size: 2.2rem;
    font-weight: var(--fw-black);
    color: hsl(var(--clr-primary-dark));
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.detail-main-text h3 {
    font-size: 1.5rem;
    font-weight: var(--fw-bold);
    color: hsl(var(--clr-primary-dark));
    margin-top: 40px;
    margin-bottom: 20px;
}

.detail-main-text p {
    font-size: 1.05rem;
    color: hsl(var(--clr-primary));
    line-height: 1.75;
    margin-bottom: 25px;
}

.detail-main-text ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 25px 0;
}

.detail-main-text ul li {
    font-size: 1rem;
    font-weight: var(--fw-semibold);
    color: hsl(var(--clr-primary-dark));
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.detail-main-text ul li::before {
    content: '✓';
    color: hsl(var(--clr-success));
    font-weight: var(--fw-black);
}

.step-detail-card {
    display: flex;
    gap: 20px;
    background-color: hsl(var(--bg-light));
    border: 1px solid hsl(var(--border-color));
    border-radius: var(--radius-md);
    padding: 25px;
    margin-bottom: 20px;
    align-items: flex-start;
    text-align: left;
}

.step-num-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: hsl(var(--clr-accent));
    color: hsl(var(--bg-white));
    font-weight: var(--fw-black);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
}

.step-detail-card h4 {
    font-size: 1.15rem;
    font-weight: var(--fw-bold);
    color: hsl(var(--clr-primary-dark));
    margin-bottom: 6px;
}

.step-detail-card p {
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 0;
    line-height: 1.6;
}

.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 100px;
}

.sidebar-box {
    background-color: hsl(var(--bg-light));
    border: 1px solid hsl(var(--border-color));
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-soft);
    text-align: left;
}

.sidebar-box h3 {
    font-size: 1.2rem;
    font-weight: var(--fw-black);
    color: hsl(var(--clr-primary-dark));
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-box h3 i {
    color: hsl(var(--clr-accent));
}

.info-box {
    border-left: 6px solid hsl(var(--clr-accent));
}

.info-box p {
    font-size: 0.95rem;
    color: hsl(var(--clr-primary));
    line-height: 1.6;
}

.link-box ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-box ul a {
    font-size: 0.95rem;
    font-weight: var(--fw-semibold);
    color: hsl(var(--clr-primary));
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px dashed hsl(var(--border-color));
}

.link-box ul a:hover,
.link-box ul a.active {
    color: hsl(var(--clr-accent));
    padding-left: 5px;
}

.link-box ul a i {
    font-size: 0.75rem;
    transition: var(--transition-fast);
}

.link-box ul a:hover i {
    transform: translateX(3px);
}

.call-box {
    background: linear-gradient(135deg, hsl(var(--clr-primary-dark)) 0%, hsl(var(--clr-primary)) 100%);
    color: hsl(var(--bg-white));
    border: none;
}

.call-box h3 {
    color: hsl(var(--bg-white));
}

.call-box p {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ==========================================================================
   21. HİZMETLER OVERVIEW ROW LAYOUT
   ========================================================================== */
.hizmetler-page-content {
    padding: 80px 0;
    background-color: hsl(var(--bg-light));
}

.hizmet-card-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    background-color: hsl(var(--bg-white));
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid hsl(var(--border-color));
    margin-bottom: 40px;
    align-items: stretch;
}

.hizmet-card-row-img {
    height: 100%;
    min-height: 350px;
    background-size: cover;
    background-position: center;
}

.hizmet-card-row-text {
    padding: 50px;
    text-align: left;
}

.hizmet-card-row-text h2 {
    font-size: 1.8rem;
    font-weight: var(--fw-black);
    color: hsl(var(--clr-primary-dark));
    margin-top: 15px;
    margin-bottom: 15px;
}

.hizmet-card-row-text p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hizmet-card-row.reverse {
    grid-template-columns: 1.2fr 1fr;
}

.hizmet-card-row.reverse .hizmet-card-row-img {
    order: 2;
}

/* ==========================================================================
   22. ANASAYFA CONTACT SUMMARY
   ========================================================================== */
.index-contact-summary {
    background: linear-gradient(135deg, hsl(var(--clr-primary-dark)) 0%, hsl(var(--clr-primary)) 100%);
    color: hsl(var(--bg-white));
    padding: 60px 0;
}

.contact-summary-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    text-align: left;
}

.summary-text h2 {
    font-size: 2rem;
    font-weight: var(--fw-black);
    margin-bottom: 10px;
}

.summary-text p {
    color: #cbd5e1;
    font-size: 1rem;
}

.summary-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-summary-call {
    background-color: hsl(var(--clr-success));
    color: hsl(var(--bg-white));
    font-weight: var(--fw-black);
    padding: 16px 32px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.3);
}

.btn-summary-call:hover {
    background-color: hsl(var(--clr-success-hover));
    transform: translateY(-2px);
}

.btn-summary-outline {
    background-color: transparent;
    color: hsl(var(--bg-white));
    font-weight: var(--fw-bold);
    padding: 16px 32px;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255,255,255,0.2);
}

.btn-summary-outline:hover {
    border-color: hsl(var(--clr-accent));
    color: hsl(var(--clr-accent));
    background-color: hsl(var(--bg-white));
}

/* responsive details for multi-page additions */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .services-summary-grid {
        grid-template-columns: 1fr 1fr;
    }
    .detail-grid {
        grid-template-columns: 1fr;
    }
    .detail-sidebar {
        position: relative;
        top: 0;
    }
    .hizmet-card-row {
        grid-template-columns: 1fr;
    }
    .hizmet-card-row.reverse {
        grid-template-columns: 1fr;
    }
    .hizmet-card-row.reverse .hizmet-card-row-img {
        order: 0;
    }
}

@media (max-width: 768px) {
    .services-summary-grid {
        grid-template-columns: 1fr;
    }
    .commitments-grid {
        grid-template-columns: 1fr;
    }
    .hizmet-card-row-text {
        padding: 30px;
    }
    .contact-summary-flex {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ==========================================================================
   8. LOCAL DISTRICT SEO SECTION STYLES
   ========================================================================== */
.local-seo-section {
    padding: 80px 0;
    background-color: #ffffff;
    color: hsl(var(--clr-primary));
    position: relative;
    overflow: hidden;
}

.local-seo-section h2 {
    color: hsl(var(--clr-primary-dark));
}

.local-seo-section .section-subtitle {
    color: #475569;
}

.local-seo-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.seo-text-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.seo-text-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.seo-text-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: hsl(var(--clr-accent, 25, 100%, 50%));
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.seo-text-box:hover {
    transform: translateY(-5px);
    background: #ffffff;
    border-color: hsl(var(--clr-accent, 25, 100%, 50%));
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.seo-text-box:hover::before {
    opacity: 1;
}

.seo-text-box h3 {
    font-size: var(--fs-lg);
    font-weight: var(--fw-semibold);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #0f172a;
}

.seo-text-box h3 i {
    font-size: 1.1em;
}

.seo-text-box p {
    color: #475569;
    font-size: var(--fs-sm);
    line-height: 1.7;
}

.seo-text-box p strong {
    color: hsl(var(--clr-primary, 200, 90%, 40%));
    font-weight: var(--fw-semibold);
}


@media (max-width: 768px) {
    .local-seo-section {
        padding: 50px 0;
    }
    .seo-text-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ==========================================================================
   MOBILE MENU PANEL STYLES (Sol Drawer & Overlay)
   ========================================================================== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 250ms ease, visibility 250ms ease;
}
.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-panel {
    display: none;
}

@media (max-width: 1080px) {
    .mobile-menu-panel {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: min(82vw, 360px);
        height: 100dvh;
        background-color: hsl(var(--bg-white));
        box-shadow: 5px 0 25px rgba(0, 0, 0, 0.15);
        z-index: 9999;
        transform: translateX(-100%);
        transition: transform 250ms ease;
        box-sizing: border-box;
        padding-top: max(28px, env(safe-area-inset-top));
        padding-bottom: max(15px, env(safe-area-inset-bottom));
        overflow: hidden;
    }
    
    .mobile-menu-panel.open {
        transform: translateX(0);
    }

    /* Kapat & Logo */
    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px 20px 20px;
        border-bottom: 1px solid #f1f5f9;
        flex-shrink: 0;
    }
    
    .mobile-menu-logo {
        height: 40px;
        width: auto;
        object-fit: contain;
    }
    
    .mobile-menu-close {
        background: none;
        border: none;
        font-size: 1.5rem;
        color: #64748b;
        cursor: pointer;
        padding: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: color 0.2s;
    }
    
    .mobile-menu-close:hover {
        color: #0ea5e9;
    }

    /* Navigasyon Listesi */
    .mobile-menu-nav {
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 15px 0;
    }

    .mobile-menu-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-menu-nav ul li {
        border-bottom: 1px solid #f8fafc;
    }

    .mobile-menu-nav ul li a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 48px;
        padding: 0 24px;
        font-size: 15px;
        font-weight: 600;
        color: #334155;
        text-decoration: none;
        transition: all 0.25s ease;
        position: relative;
        box-sizing: border-box;
    }

    .mobile-menu-nav ul li a:hover {
        color: #0ea5e9;
        background-color: #f8fafc;
    }
    
    /* Aktif Menü Ögesi */
    .mobile-menu-nav ul li a.active {
        color: #0284c7;
        background-color: rgba(14, 165, 233, 0.08);
    }
    
    .mobile-menu-nav ul li a.active::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 3px;
        height: 100%;
        background-color: #0ea5e9;
    }

    /* Accordion Alt Menü (Hizmetlerimiz) */
    .mobile-menu-panel .mobile-submenu {
        max-height: 0;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        list-style: none;
        padding: 0 !important;
        margin: 0;
        background-color: #f8fafc;
        transition: max-height 300ms cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .mobile-menu-panel .mobile-submenu.open {
        max-height: 500px;
    }
    
    .mobile-submenu li {
        border-bottom: none !important;
    }

    .mobile-submenu li a {
        height: 42px !important;
        padding-left: 40px !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        color: #475569 !important;
        border-bottom: none !important;
    }
    
    .mobile-submenu li a:hover {
        color: #0ea5e9 !important;
        background-color: rgba(14, 165, 233, 0.04) !important;
    }
    
    .mobile-submenu-toggle {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        user-select: none;
    }

    .mobile-submenu-toggle i {
        transition: transform 0.25s ease;
    }

    .mobile-submenu-toggle[aria-expanded="true"] i {
        transform: rotate(180deg);
    }

    /* Alt Kısım CTA Buton */
    .mobile-menu-footer {
        padding: 15px 20px;
        border-top: 1px solid #f1f5f9;
        background-color: #ffffff;
        flex-shrink: 0;
    }

    .btn-mobile-menu-cta {
        width: 100% !important;
        box-sizing: border-box !important;
    }
}

body.menu-open {
    overflow: hidden !important;
}

body.menu-open .mobile-floating-bar {
    opacity: 0 !important;
    pointer-events: none !important;
}


/* ==========================================================================
   KAMPANYA DUYURU BANDI — Mobil Öncelikli, Tam Responsive
   Sadece index.html kullanır. Mevcut tasarıma dokunmaz.
   ========================================================================== */

/* ── Dış kap ── */
.campaign-banner {
    background: linear-gradient(135deg, #b71c1c 0%, #e53935 45%, #c62828 100%);
    border-bottom: 2px solid rgba(0,0,0,0.20);
    box-shadow: 0 3px 16px rgba(183,28,28,0.45);
    position: relative;
    z-index: 900;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    /* Hiç margin/padding ekleme — header ile doğrudan temas */
}

/* Kayan parlaklık şeridi */
.campaign-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 30%,
        rgba(255,255,255,0.09) 50%,
        transparent 70%
    );
    animation: cbShine 5s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes cbShine {
    0%   { left: -100%; }
    60%  { left: 140%; }
    100% { left: 140%; }
}

/* ── İç kap: Mobil — tek sütun, tam ortalı ── */
.campaign-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Toplam yükseklik kontrolü: her satır max ~20px + gap = ~130px toplam */
    padding: 10px 12px 9px;
    gap: 5px;
    width: 100%;
    max-width: 100%;          /* Taşma engeli: max-width tam genişlik */
    box-sizing: border-box;
    margin: 0 auto;
}

/* ── Ortak satır kap ── */
.cb-row {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
}

/* ── Satır 1: İkon + Etiket ── */
.cb-row--header {
    gap: 6px;
}

.cb-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    font-size: 0.68rem;
    color: #fff;
    flex-shrink: 0;
    animation: cbIconPulse 2.5s ease-in-out infinite;
}

@keyframes cbIconPulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.15); }
}

.cb-label {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.88);
    text-transform: uppercase;
    white-space: nowrap;
}

/* ── Satır 2: Ana kampanya metni ── */
.cb-row--main {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.25;
    flex-wrap: wrap;          /* Kelime kırılmasına izin ver — taşmaz */
    gap: 4px;
    justify-content: center;
}

.cb-row--main strong {
    font-weight: 900;
    font-size: 1.10rem;
    background: rgba(255,255,255,0.18);
    padding: 1px 8px;
    border-radius: 5px;
    white-space: nowrap;
    display: inline-block;
}

/* ── Satır 3: Geri sayım etiketi ── */
.cb-row--cd-label {
    font-size: 0.60rem;
    font-weight: 700;
    letter-spacing: 0.10em;
    color: rgba(255,255,255,0.68);
    text-transform: uppercase;
    margin-top: 1px;
}

/* ── Satır 4: Geri Sayım Kutuları ── */
.cb-row--countdown {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;          /* Asla alt satıra geçme */
    justify-content: center;
    align-items: stretch;
    gap: 6px;
    width: 100%;
    max-width: 320px;           /* 4 kutu için yeterli genişlik, taşmaz */
    box-sizing: border-box;
}

.cb-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.22);
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: 6px;
    padding: 5px 4px 4px;
    /* flex: 1 1 0 → 4 kutu eşit genişlik, gap dahil toplam genişliğe sığar */
    flex: 1 1 0;
    min-width: 0;               /* Overflow engeli */
    box-sizing: border-box;
}

.cb-val {
    /* clamp: min 0.9rem (320px'de), oran 5.5vw, max 1.25rem */
    font-size: clamp(0.90rem, 5.5vw, 1.25rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.cb-unit {
    font-size: clamp(0.48rem, 1.6vw, 0.60rem);
    font-weight: 600;
    color: rgba(255,255,255,0.70);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2px;
    white-space: nowrap;
}

/* ── Kampanya bitti mesajı ── */
.cb-expired {
    display: none;              /* JS tarafından flex yapılır */
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255,255,255,0.93);
    background: rgba(0,0,0,0.22);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 6px;
    padding: 6px 14px;
    text-align: center;
    flex-wrap: wrap;
}

/* ── Satır 5: Hint metni ── */
.cb-row--hint {
    font-size: 0.62rem;
    font-weight: 500;
    color: rgba(255,255,255,0.80);
    letter-spacing: 0.01em;
    line-height: 1.45;
    pointer-events: none;
    flex-wrap: wrap;            /* 2 satıra düşebilir — taşmaz */
    justify-content: center;
    text-align: center;
    max-width: 340px;
}

/* ══════════════════════════════════════════
   Desktop: 900px+ — yatay iki sütun düzeni
   ══════════════════════════════════════════ */
@media (min-width: 900px) {
    .campaign-inner {
        flex-direction: row;
        flex-wrap: nowrap;
        text-align: left;
        padding: 10px 36px;
        gap: 0;
        max-width: 1200px;
        justify-content: space-between;
        align-items: center;
        margin: 0 auto;
        width: 100%;
    }

    /* Sol grup: header + main tek blokta */
    .cb-row--header {
        justify-content: flex-start;
        order: 1;
    }
    .cb-row--main {
        justify-content: flex-start;
        order: 2;
        margin-left: 0;
    }
    /* Hint sadece mobilde görünsün */
    .cb-row--hint {
        display: none;
    }

    /* Sağ grup: label + countdown yan yana kolondaki container'da */
    .cb-row--cd-label {
        order: 3;
        justify-content: flex-end;
        margin-left: auto;       /* sağa it */
        padding-right: 10px;
    }
    .cb-row--countdown {
        order: 4;
        width: auto;
        max-width: none;
        flex: 0 0 auto;
        gap: 8px;
    }
    .cb-row--cd-label,
    .cb-row--countdown {
        width: auto;
    }

    .cb-box {
        flex: 0 0 auto;
        width: 58px;
        padding: 5px 4px 4px;
    }

    .cb-val  { font-size: 1.20rem; }
    .cb-unit { font-size: 0.57rem; }

    .cb-label { font-size: 0.66rem; }
    .cb-row--main { font-size: 1rem; }
    .cb-row--main strong { font-size: 1.10rem; }
}

/* ══════════════════════════════════════════
   Küçük mobil: 360px ve altı (SE, mini)
   ══════════════════════════════════════════ */
@media (max-width: 360px) {
    .campaign-inner {
        padding: 8px 8px 7px;
        gap: 4px;
    }

    .cb-row--countdown {
        gap: 4px;
        max-width: 100%;
    }

    .cb-row--main {
        font-size: 0.90rem;
    }

    .cb-row--main strong {
        font-size: 0.98rem;
    }
}

/* ══════════════════════════════════════════
   SAFARI MOBILE OVERFLOW & LAYOUT FIXES
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
    html {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow-x: hidden !important;
    }
    
    body {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 0 70px 0 !important; /* Preserve bottom spacing for mobile floating bar */
        overflow-x: hidden !important;
    }

    * {
        box-sizing: border-box;
    }

    body > *,
    .site-wrapper,
    .page-wrapper,
    .main-wrapper,
    header,
    .main-header,
    main,
    section,
    .hero-section,
    .campaign-banner,
    .container,
    .header-container,
    .top-bar,
    .nav-bar {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important; /* Ensure min-width doesn't block scaling */
    }

    /* Disable absolute glow effects causing horizontal scroll on Safari mobile */
    .hero-glow {
        display: none !important;
    }
}

/* ==========================================================================
   16. MARKALARIMIZ PAGE STYLES
   ========================================================================== */

.brands-page-section {
    padding: 80px 0;
    background-color: hsl(var(--bg-light));
}

/* Breadcrumb Nav */
.breadcrumb-nav {
    padding: 15px 0;
    background-color: hsl(var(--bg-white));
    border-bottom: 1px solid hsl(var(--border-color));
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 8px;
    font-size: 0.9rem;
    color: hsl(var(--clr-primary));
}

.breadcrumb-list a {
    color: hsl(var(--clr-accent));
}

.breadcrumb-list a:hover {
    text-decoration: underline;
}

.breadcrumb-list li:not(:last-child)::after {
    content: "/";
    margin-left: 8px;
    color: #94a3b8;
}

.breadcrumb-list li.active {
    color: #64748b;
    font-weight: var(--fw-medium);
}

/* Stats Area */
.brands-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin: -40px auto 40px;
    position: relative;
    z-index: 20;
}

.brand-stat-card {
    background-color: hsl(var(--bg-white));
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid hsl(var(--border-color));
    transition: transform var(--transition-fast);
}

.brand-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.brand-stat-icon {
    font-size: 2rem;
    color: hsl(var(--clr-accent));
    margin-bottom: 12px;
}

.brand-stat-card h3 {
    font-size: 1.1rem;
    font-weight: var(--fw-bold);
    color: hsl(var(--clr-primary-dark));
    margin-bottom: 8px;
}

.brand-stat-card p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.4;
}

/* Corporate Intro Section */
.brands-intro-section {
    padding: 60px 0;
    background-color: hsl(var(--bg-white));
}

.brands-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.brands-intro-content h2 {
    font-size: 2.2rem;
    font-weight: var(--fw-black);
    color: hsl(var(--clr-primary-dark));
    margin-bottom: 20px;
}

.brands-intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
}

/* Filter buttons */
.brands-filter-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.filter-btn {
    background-color: hsl(var(--bg-white));
    border: 1px solid hsl(var(--border-color));
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: var(--fw-semibold);
    color: hsl(var(--clr-primary));
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-fast);
}

.filter-btn:hover {
    border-color: hsl(var(--clr-accent));
    color: hsl(var(--clr-accent));
}

.filter-btn.active {
    background-color: hsl(var(--clr-primary-dark));
    color: hsl(var(--bg-white));
    border-color: hsl(var(--clr-primary-dark));
}

/* Brands Grid */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.brand-card {
    background-color: hsl(var(--bg-white));
    border-radius: var(--radius-md);
    border: 1px solid hsl(var(--border-color));
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all var(--transition-fast);
    position: relative;
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.brand-card-header {
    padding: 30px 24px 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.brand-logo-wrap {
    width: 80px;
    height: 80px;
    background-color: hsl(var(--bg-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid hsl(var(--border-color));
    overflow: hidden;
    padding: 6px;
}

.brand-logo-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-badge {
    font-size: 0.72rem;
    font-weight: var(--fw-bold);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.badge-tescilli {
    background-color: hsla(var(--clr-gold), 0.12);
    color: hsl(var(--clr-gold));
    border: 1px solid hsla(var(--clr-gold), 0.3);
}

.badge-proje {
    background-color: hsla(var(--clr-accent), 0.12);
    color: hsl(var(--clr-accent));
    border: 1px solid hsla(var(--clr-accent), 0.3);
}

.badge-basvuru {
    background-color: rgba(249, 115, 22, 0.12);
    color: #f97316;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.badge-dogrulama {
    background-color: hsla(var(--clr-danger), 0.12);
    color: hsl(var(--clr-danger));
    border: 1px solid hsla(var(--clr-danger), 0.3);
}

.brand-card-body {
    padding: 0 24px 20px;
    flex-grow: 1;
}

.brand-category {
    font-size: 0.78rem;
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.brand-card h3 {
    font-size: 1.3rem;
    font-weight: var(--fw-black);
    color: hsl(var(--clr-primary-dark));
    margin-bottom: 12px;
}

.brand-card p {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 15px;
}

.brand-warning-box {
    font-size: 0.72rem;
    line-height: 1.4;
    color: #64748b;
    background-color: hsl(var(--bg-light));
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    border-left: 3px solid #cbd5e1;
    margin-top: 15px;
}

.brand-card-footer {
    padding: 20px 24px 25px;
    border-top: 1px solid hsl(var(--border-color));
    display: flex;
    gap: 12px;
    align-items: center;
}

.brand-card-footer .btn {
    flex: 1;
    padding: 10px 16px;
    font-size: 0.85rem;
    font-weight: var(--fw-bold);
    border-radius: 8px;
    text-align: center;
}

.btn-brand-detail {
    background-color: hsl(var(--clr-primary-dark));
    color: hsl(var(--bg-white));
    border: 1px solid hsl(var(--clr-primary-dark));
}

.btn-brand-detail:hover {
    background-color: hsl(var(--clr-accent));
    border-color: hsl(var(--clr-accent));
    color: hsl(var(--bg-white));
}

.btn-brand-web {
    background-color: hsl(var(--bg-white));
    color: hsl(var(--clr-primary));
    border: 1px solid hsl(var(--border-color));
}

.btn-brand-web:hover {
    border-color: hsl(var(--clr-primary-dark));
    color: hsl(var(--clr-primary-dark));
}

/* Modals & Dialog System */
.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.custom-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    background-color: hsl(var(--bg-white));
    border-radius: var(--radius-md);
    width: 100%;
    max-width: 650px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-strong);
    display: flex;
    flex-direction: column;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.custom-modal.active .modal-container {
    transform: scale(1);
}

.modal-header-wrap {
    padding: 20px 24px;
    border-bottom: 1px solid hsl(var(--border-color));
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header-wrap h3 {
    font-size: 1.25rem;
    font-weight: var(--fw-black);
    color: hsl(var(--clr-primary-dark));
}

.modal-close-btn {
    font-size: 1.25rem;
    color: #334155;
    cursor: pointer;
    background: none;
    border: none;
    transition: color var(--transition-fast);
}

.modal-close-btn:hover {
    color: hsl(var(--clr-danger));
}

.modal-body-content {
    padding: 24px;
    overflow-y: auto;
}

body.modal-open {
    overflow: hidden !important;
}

/* Brand usage restriction notice in Modal */
.modal-restriction-box {
    background-color: hsla(var(--clr-danger), 0.05);
    border-left: 4px solid hsl(var(--clr-danger));
    padding: 15px;
    border-radius: var(--radius-sm);
    margin-bottom: 25px;
}

.modal-restriction-box h4 {
    font-size: 0.85rem;
    font-weight: var(--fw-bold);
    color: hsl(var(--clr-danger));
    margin-bottom: 6px;
    text-transform: uppercase;
}

.modal-restriction-box p {
    font-size: 0.82rem;
    color: #475569;
    line-height: 1.5;
}

/* PDF Section in Detail Modal */
.brand-detail-pdfs {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid hsl(var(--border-color));
}

.brand-detail-pdfs h4 {
    font-size: 1rem;
    font-weight: var(--fw-bold);
    color: hsl(var(--clr-primary-dark));
    margin-bottom: 15px;
}

.pdf-cards-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.pdf-doc-card {
    background-color: hsl(var(--bg-light));
    border: 1px solid hsl(var(--border-color));
    border-radius: var(--radius-sm);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pdf-card-main {
    display: flex;
    gap: 15px;
    align-items: center;
}

.pdf-icon-wrap {
    width: 48px;
    height: 48px;
    background-color: hsla(var(--clr-danger), 0.1);
    color: hsl(var(--clr-danger));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.pdf-info {
    flex-grow: 1;
}

.pdf-info h5 {
    font-size: 0.95rem;
    font-weight: var(--fw-bold);
    color: hsl(var(--clr-primary-dark));
    margin-bottom: 4px;
}

.pdf-meta {
    font-size: 0.75rem;
    color: #334155;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pdf-desc {
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.5;
    background-color: hsl(var(--bg-white));
    border: 1px solid hsl(var(--border-color));
    border-radius: 6px;
    padding: 10px 12px;
}

.pdf-card-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 12px;
    margin-top: 4px;
}

.pdf-card-footer button,
.pdf-card-footer a {
    font-size: 0.78rem;
    font-weight: var(--fw-bold);
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
}

.btn-pdf-preview {
    background-color: hsl(var(--clr-primary-dark));
    color: hsl(var(--bg-white));
}

.btn-pdf-preview:hover {
    background-color: hsl(var(--clr-accent));
}

.btn-pdf-tab {
    background-color: hsl(var(--bg-white));
    color: hsl(var(--clr-primary));
    border: 1px solid hsl(var(--border-color));
}

.btn-pdf-tab:hover {
    border-color: hsl(var(--clr-primary-dark));
    color: hsl(var(--clr-primary-dark));
}

/* PDF Preview Frame */
.pdf-viewer-wrap {
    width: 100%;
    height: 500px;
    position: relative;
    border-radius: var(--radius-sm);
    border: 1px solid hsl(var(--border-color));
    overflow: hidden;
    background-color: #cbd5e1;
}

.pdf-watermark-bar {
    background-color: hsl(var(--clr-primary-dark));
    color: hsl(var(--bg-white));
    padding: 8px 15px;
    font-size: 0.78rem;
    font-weight: var(--fw-bold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
    position: relative;
}

.pdf-watermark-bar i {
    color: hsl(var(--clr-gold));
}

.pdf-viewer-wrap iframe {
    width: 100%;
    height: calc(100% - 37px);
    border: none;
}

/* Usage Terms Section */
.brands-terms-section {
    padding: 60px 0;
    background-color: hsl(var(--bg-white));
    border-top: 1px solid hsl(var(--border-color));
    border-bottom: 1px solid hsl(var(--border-color));
}

.brands-terms-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: hsl(var(--bg-light));
    border: 1px solid hsl(var(--border-color));
    border-radius: var(--radius-md);
    padding: 40px;
    position: relative;
}

.brands-terms-box h2 {
    font-size: 1.8rem;
    font-weight: var(--fw-black);
    color: hsl(var(--clr-primary-dark));
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.brands-terms-box h2 i {
    color: hsl(var(--clr-danger));
}

.brands-terms-box p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 20px;
}

.brands-terms-footer {
    background-color: hsl(var(--bg-white));
    border-radius: var(--radius-sm);
    padding: 15px;
    font-size: 0.85rem;
    font-weight: var(--fw-bold);
    color: #64748b;
    border-left: 4px solid hsl(var(--clr-gold));
    display: flex;
    align-items: center;
    gap: 10px;
}

.brands-terms-footer i {
    color: hsl(var(--clr-gold));
    font-size: 1.1rem;
}

/* FAQ Accordion */
.brands-faq-section {
    padding: 80px 0;
    background-color: hsl(var(--bg-light));
}

.faq-accordion-wrap {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: hsl(var(--bg-white));
    border-radius: var(--radius-md);
    border: 1px solid hsl(var(--border-color));
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.faq-question-btn {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.05rem;
    font-weight: var(--fw-bold);
    color: hsl(var(--clr-primary-dark));
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.faq-question-btn:hover {
    color: hsl(var(--clr-accent));
}

.faq-question-btn i {
    font-size: 0.9rem;
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-question-btn i {
    transform: rotate(180deg);
}

.faq-answer-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-answer-content {
    max-height: 1000px;
    transition: max-height 0.5s cubic-bezier(1, 0, 1, 0);
}

.faq-answer-text {
    padding: 0 24px 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
    border-top: 1px solid rgba(0, 0, 0, 0.02);
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .brands-page-section {
        padding: 50px 0;
    }
    
    .brands-intro-section {
        padding: 40px 0;
    }

    .brands-intro-content h2 {
        font-size: 1.8rem;
    }

    .brands-intro-content p {
        font-size: 1rem;
    }

    .brands-stats-grid {
        margin: -20px auto 30px;
        gap: 15px;
    }

    .brands-filter-wrapper {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .brands-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .brands-terms-box {
        padding: 24px;
    }

    .brands-terms-box h2 {
        font-size: 1.4rem;
    }

    .brands-terms-box p {
        font-size: 0.88rem;
    }

    .modal-container {
        width: 100%;
        max-height: 95vh;
    }

    .pdf-viewer-wrap {
        height: 400px;
    }
}

/* ==========================================================================
   NEW PREMIUM PRICE LIST PAGE STYLES
   ========================================================================== */

/* Hero Banner */
.price-hero-banner {
    padding: 60px 0;
    background-size: cover;
    background-position: center;
    color: #ffffff;
    position: relative;
    box-shadow: inset 0 -30px 40px rgba(0,0,0,0.25);
}
.banner-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}
.hero-left-text {
    flex: 1;
}
.hero-left-text h1 {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.2;
}
.hero-left-text p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 450;
}
.hero-right-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-whatsapp-btn {
    background-color: #22c55e;
    color: #ffffff;
    font-weight: 750;
    padding: 14px 28px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
    transition: all 0.25s ease;
    font-family: 'Outfit', sans-serif;
    border: none;
    cursor: pointer;
}
.hero-whatsapp-btn:hover {
    background-color: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(34, 197, 94, 0.4);
}
.hero-call-btn {
    background-color: transparent;
    color: #ffffff;
    font-weight: 750;
    padding: 12px 26px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    border: 2px solid #ffffff;
    transition: all 0.25s ease;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
}
.hero-call-btn:hover {
    background-color: #ffffff;
    color: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15);
}

/* Centered Container */
.calculator-centered-container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

/* Search bar style */
.calc-search-container {
    margin-top: 40px;
    margin-bottom: 24px;
    position: relative;
    width: 100%;
}
.calc-search-input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    color: #0f172a;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
    transition: all 0.25s ease;
}
.calc-search-input:focus {
    outline: none;
    border-color: #0284c7;
    box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.15);
}
.calc-search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1.1rem;
}

/* Category horizontal filter bar */
.calc-filters-wrapper {
    margin-bottom: 35px;
    overflow-x: auto;
    white-space: nowrap;
    padding: 5px 0 15px 0;
    -webkit-overflow-scrolling: touch;
}
.calc-filters-wrapper::-webkit-scrollbar {
    height: 5px;
}
.calc-filters-wrapper::-webkit-scrollbar-track {
    background: transparent;
}
.calc-filters-wrapper::-webkit-scrollbar-thumb {
    background-color: rgba(148, 163, 184, 0.2);
    border-radius: 10px;
}
.calc-filters-container {
    display: inline-flex;
    gap: 8px;
    padding: 0 4px;
}
.calc-filter-btn {
    background-color: #ffffff;
    color: #475569;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}
.calc-filter-btn:hover {
    transform: translateY(-1px);
    border-color: #0284c7;
    color: #0284c7;
    background-color: rgba(2, 132, 199, 0.02);
}
.calc-filter-btn.active {
    background-color: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

/* Special Campaigns Section */
.calc-campaigns-section {
    margin-bottom: 40px;
    background: #ffffff;
    padding: 24px;
    border-radius: 16px;
    border: 1px dashed rgba(245, 158, 11, 0.4);
    background-color: rgba(245, 158, 11, 0.01);
}
.campaigns-section-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
}
.campaigns-section-title i {
    color: #f59e0b;
}

/* Accordion sections */
.calc-accordion-item {
    margin-bottom: 16px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.01);
    transition: all 0.3s ease;
}
.calc-accordion-item:hover {
    box-shadow: 0 6px 15px rgba(15, 23, 42, 0.02);
    border-color: #cbd5e1;
}
.calc-accordion-header {
    padding: 20px 24px;
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s ease;
}
.calc-accordion-header:hover {
    background-color: #f8fafc;
}
.calc-accordion-item.open .calc-accordion-header {
    background-color: #f8fafc;
    border-bottom: 1px solid #f1f5f9;
}
.calc-accordion-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
}
.calc-accordion-title i {
    color: #0284c7;
    font-size: 1.2rem;
}
.calc-accordion-icon {
    font-size: 0.95rem;
    color: #475569;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.calc-accordion-item.open .calc-accordion-icon {
    transform: rotate(180deg);
}
.calc-accordion-body {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
}
.calc-accordion-item.open .calc-accordion-body {
    max-height: 3500px;
    opacity: 1;
    padding: 24px;
}

/* Redesigned Card Grid and Cards */
.calc-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.calc-new-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.01);
    min-height: 170px;
    position: relative;
}
.calc-new-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(15, 23, 42, 0.05);
    border-color: #cbd5e1;
}
.calc-new-card .calc-card-top {
    margin-bottom: 12px;
}
.calc-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}
.calc-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.45;
}
.calc-card-badge {
    background-color: #f1f5f9;
    color: #475569;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.calc-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 14px;
    margin-top: auto;
}
.calc-card-price-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.calc-card-price {
    font-size: 1.55rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
}
.calc-card-price span {
    font-size: 1.05rem;
    font-weight: 700;
    color: #475569;
    margin-left: 1px;
}
.calc-card-unit {
    font-size: 0.75rem;
    color: #334155;
    font-weight: 600;
    margin-top: 2px;
}
.calc-card-btn-add {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(2, 132, 199, 0.08);
    color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}
.calc-card-btn-add:hover {
    background-color: #0284c7;
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(2, 132, 199, 0.2);
}

/* Campaign Special Styling */
.calc-new-card.calc-card-campaign {
    border-color: rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, #ffffff 0%, rgba(245, 158, 11, 0.02) 100%);
}
.calc-new-card.calc-card-campaign:hover {
    border-color: rgba(245, 158, 11, 0.7);
}
.calc-new-card.calc-card-campaign .calc-card-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
}

/* Info and Trust Section cards */
.calc-trust-section {
    margin-top: 60px;
    border-top: 1px solid #e2e8f0;
    padding-top: 50px;
    width: 100%;
}
.calc-trust-section h3 {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
}
.calc-trust-section > p {
    text-align: center;
    color: #334155;
    margin-bottom: 40px;
    font-size: 1.05rem;
}
.calc-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.calc-trust-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.01);
    transition: all 0.3s ease;
}
.calc-trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.04);
}
.calc-trust-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: rgba(2, 132, 199, 0.08);
    color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 20px auto;
}
.calc-trust-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
}
.calc-trust-card p {
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.55;
}

/* Bottom CTA Banner */
.calc-cta-banner {
    margin-top: 60px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 16px;
    padding: 40px 50px;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    width: 100%;
}
.calc-cta-content {
    flex: 1;
}
.calc-cta-content h3 {
    font-size: 1.7rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
    font-family: 'Outfit', sans-serif;
}
.calc-cta-content p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0;
}
.calc-cta-btn {
    background-color: #22c55e;
    color: #ffffff;
    font-weight: 750;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.25);
    transition: all 0.25s ease;
    white-space: nowrap;
    font-family: 'Outfit', sans-serif;
}
.calc-cta-btn:hover {
    background-color: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.35);
}

/* FLOATING CART BUTTON & DRAWER */
.floating-cart-btn {
    position: fixed !important;
    right: 24px !important;
    left: auto !important;
    bottom: 90px !important;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 10px 25px rgba(2, 132, 199, 0.4) !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.5rem !important;
    z-index: 999 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    animation: cartRipple 2s infinite ease-in-out !important;
}
.floating-cart-btn:hover {
    transform: translateY(-5px) scale(1.08) !important;
    box-shadow: 0 15px 30px rgba(2, 132, 199, 0.5) !important;
}
.floating-cart-btn.pulse {
    animation: cartPulse 0.5s ease-out !important;
}
@keyframes cartPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.25); }
    100% { transform: scale(1); }
}
@keyframes cartRipple {
    0% {
        box-shadow: 0 10px 25px rgba(2, 132, 199, 0.4), 0 0 0 0 rgba(2, 132, 199, 0.3);
    }
    70% {
        box-shadow: 0 10px 25px rgba(2, 132, 199, 0.4), 0 0 0 15px rgba(2, 132, 199, 0);
    }
    100% {
        box-shadow: 0 10px 25px rgba(2, 132, 199, 0.4), 0 0 0 0 rgba(2, 132, 199, 0);
    }
}
.cart-count-badge {
    position: absolute !important;
    top: -4px !important;
    right: -4px !important;
    background-color: #f97316 !important;
    color: #ffffff !important;
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    padding: 3px 8px !important;
    border-radius: 12px !important;
    border: 2px solid #ffffff !important;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2) !important;
    min-width: 22px !important;
    text-align: center !important;
}
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(3px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.cart-drawer-overlay.open {
    opacity: 1;
    pointer-events: auto;
}
.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    height: 100%;
    background-color: #ffffff;
    box-shadow: -10px 0 30px rgba(15, 23, 42, 0.15);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-drawer.open {
    right: 0;
}
.cart-drawer-header {
    padding: 24px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart-drawer-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
}
.cart-drawer-header h3 i {
    color: #0284c7;
}
.cart-drawer-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: #334155;
    cursor: pointer;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-drawer-close:hover {
    color: #0f172a;
}
.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}
.cart-drawer-footer {
    padding: 24px;
    border-top: 1px solid #f1f5f9;
    background-color: #f8fafc;
}

/* Responsive adjustments */
@media (max-width: 1199px) {
    .calc-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .campaign-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .calc-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .calc-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        gap: 25px;
    }
    .calc-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    /* Body padding to prevent footer items from being blocked by action bars */
    body {
        padding-bottom: 150px;
    }
    
    /* ===== PRICE HERO BANNER - MOBİL DÜZELTME ===== */
    .price-hero-banner {
        padding: 36px 0 32px;
        min-height: 0 !important;
    }

    /* Container: yan yana değil, dikey sütun */
    .price-hero-banner .banner-content-wrapper {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 20px !important;
        text-align: center !important;
        padding: 0 20px !important;
        max-width: 100% !important;
    }

    /* Sol metin bloku tam genişlik */
    .price-hero-banner .hero-left-text {
        flex: unset !important;
        width: 100% !important;
        max-width: 400px !important;
        text-align: center !important;
    }

    /* H1 — kelime kelime kırılmasın, dengeli 2-3 satır */
    .price-hero-banner .hero-left-text h1 {
        font-size: clamp(28px, 8vw, 36px) !important;
        line-height: 1.15 !important;
        letter-spacing: -0.4px !important;
        margin-bottom: 12px !important;
        word-break: keep-all !important;
        overflow-wrap: normal !important;
        white-space: normal !important;
        hyphens: none !important;
    }

    /* Açıklama metni */
    .price-hero-banner .hero-left-text p {
        font-size: 15px !important;
        line-height: 1.5 !important;
        color: rgba(255, 255, 255, 0.88) !important;
        max-width: 340px !important;
        margin: 0 auto !important;
    }

    /* Sağ buton grubu: başlığın ALTINDA, dikey sütun */
    .price-hero-banner .hero-right-actions {
        width: 100% !important;
        max-width: 320px !important;
        flex-direction: column !important;
        gap: 12px !important;
        align-items: stretch !important;
    }

    /* WhatsApp butonu */
    .price-hero-banner .hero-whatsapp-btn {
        width: 100% !important;
        min-height: 52px !important;
        padding: 14px 20px !important;
        border-radius: 14px !important;
        font-size: 15px !important;
        font-weight: 700 !important;
        justify-content: center !important;
    }

    /* Hemen Ara butonu */
    .price-hero-banner .hero-call-btn {
        width: 100% !important;
        min-height: 52px !important;
        padding: 14px 20px !important;
        border-radius: 14px !important;
        font-size: 15px !important;
        font-weight: 700 !important;
        justify-content: center !important;
    }

    .calc-search-container {
        position: sticky;
        top: 0;
        z-index: 100;
        background-color: rgba(248, 250, 252, 0.95);
        backdrop-filter: blur(8px);
        padding: 12px 4px;
        margin-top: 20px;
        margin-bottom: 16px;
        border-bottom: 1px solid #e2e8f0;
    }

    /* Spacing between accordion cards */
    .calc-accordion-item {
        margin-bottom: 16px;
        border-radius: 14px;
        border: 1px solid #e2e8f0;
        box-shadow: 0 4px 10px rgba(15, 23, 42, 0.015);
        transition: all 0.25s ease;
    }
    .calc-accordion-item.open {
        border-color: #cbd5e1;
        box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04);
    }
    
    .calc-accordion-header {
        padding: 16px 18px;
    }
    
    .calc-accordion-title {
        font-size: 1rem;
        font-weight: 700;
        gap: 10px;
    }
    
    .calc-accordion-title i {
        font-size: 1.1rem;
    }
    
    .calc-accordion-icon {
        font-size: 0.85rem;
    }
    
    .calc-accordion-body {
        padding: 0 14px;
    }
    
    .calc-accordion-item.open .calc-accordion-body {
        padding: 14px;
        padding-top: 4px; /* Less space between header and first card */
    }

    .calc-card-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .campaign-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    /* Compact horizontal row cards on mobile */
    .calc-new-card {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        min-height: auto;
        padding: 12px 14px;
        gap: 12px;
        border-radius: 12px;
    }
    
    .calc-new-card:hover {
        transform: none; /* No hover lift on touch devices */
        box-shadow: 0 4px 10px rgba(15, 23, 42, 0.015);
    }
    
    .calc-new-card .calc-card-top {
        margin-bottom: 0;
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 2px;
        align-items: flex-start;
    }
    
    .calc-new-card .calc-card-header {
        margin-bottom: 0;
        display: flex;
        justify-content: flex-start;
    }
    
    .calc-new-card .calc-card-bottom {
        border-top: none;
        padding-top: 0;
        margin-top: 0;
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: flex-end;
        flex-shrink: 0;
    }
    
    .calc-card-title {
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 0;
        line-height: 1.35;
        text-align: left;
    }

    .calc-card-badge {
        font-size: 0.65rem;
        padding: 2px 6px;
        border-radius: 4px;
        display: inline-block;
    }

    .calc-card-price-info {
        align-items: flex-end;
        text-align: right;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .calc-card-price {
        font-size: 1.15rem;
        font-weight: 700;
    }

    .calc-card-price span {
        font-size: 0.85rem;
    }

    .calc-card-unit {
        font-size: 0.7rem;
        margin-top: 0;
    }

    .calc-card-btn-add {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .calc-trust-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Cart Drawer -> Bottom Sheet on Mobile */
    .cart-drawer {
        bottom: -100%;
        right: 0;
        top: auto;
        left: 0;
        width: 100%;
        height: 75%;
        border-radius: 20px 20px 0 0;
        transition: bottom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 -10px 25px rgba(15, 23, 42, 0.15);
    }
    .cart-drawer::before {
        content: '';
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 4px;
        background-color: #cbd5e1;
        border-radius: 2px;
    }
    .cart-drawer.open {
        bottom: 0;
        right: 0;
    }
    .cart-drawer-header {
        padding-top: 26px;
    }
    .floating-cart-btn {
        right: 16px !important;
        left: auto !important;
        bottom: 85px !important;
        width: 60px !important;
        height: 60px !important;
        border-radius: 50% !important;
        box-shadow: 0 8px 25px rgba(2, 132, 199, 0.4) !important;
        animation: cartRipple 2s infinite ease-in-out !important;
    }
}




/* ==========================================================================
   YENİ İLETİŞİM SAYFASI STİLLERİ
   ========================================================================== */

/* ── HERO ──────────────────────────────────────────────────────────────── */
.contact-hero-section {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 60%, #0369a1 100%);
    overflow: hidden;
}
.contact-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/ankara-hali-yikama-fabrikasi.webp') center/cover no-repeat;
    opacity: 0.18;
}
.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.92) 0%, rgba(3,105,161,0.7) 100%);
}
.contact-hero-content {
    position: relative;
    z-index: 2;
    padding: 56px 20px 52px;
    text-align: center;
    color: #fff;
    width: 100%;
}
.contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(6px);
    color: #93c5fd;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
}
.contact-hero-content h1 {
    font-size: clamp(26px, 7vw, 44px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.15;
    font-family: 'Outfit', sans-serif;
}
.contact-hero-content > p {
    font-size: 16px;
    color: rgba(255,255,255,0.82);
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.contact-hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.contact-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    border-radius: 16px;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    transition: all 0.25s ease;
    min-width: 200px;
}
.contact-hero-btn i { font-size: 22px; flex-shrink: 0; }
.contact-hero-btn span { display: flex; flex-direction: column; align-items: flex-start; }
.contact-hero-btn small { font-size: 11px; opacity: 0.85; font-weight: 500; }
.contact-hero-btn strong { font-size: 17px; font-weight: 800; line-height: 1.2; }
.contact-hero-btn-call {
    background: #fff;
    color: #0f172a;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.contact-hero-btn-call:hover { background: #f0f9ff; transform: translateY(-2px); }
.contact-hero-btn-wa {
    background: #22c55e;
    color: #fff;
    box-shadow: 0 8px 24px rgba(34,197,94,0.35);
}
.contact-hero-btn-wa:hover { background: #16a34a; transform: translateY(-2px); }

/* ── CONTACT CARDS ─────────────────────────────────────────────────────── */
.contact-cards-section {
    background: #f8fafc;
    padding: 48px 0 40px;
}
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.contact-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 20px;
    text-decoration: none;
    color: #0f172a;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.25s ease;
    cursor: pointer;
}
.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-color: #93c5fd;
}
.contact-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.contact-card-phone .contact-card-icon { background: #eff6ff; color: #2563eb; }
.contact-card-wa .contact-card-icon { background: #f0fdf4; color: #16a34a; }
.contact-card-address .contact-card-icon { background: #fff7ed; color: #ea580c; }
.contact-card-email .contact-card-icon { background: #fdf4ff; color: #9333ea; }
.contact-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.contact-card-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #475569;
    text-transform: uppercase;
}
.contact-card-value {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.contact-card-sub {
    font-size: 12px;
    color: #334155;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.contact-card-arrow {
    color: #cbd5e1;
    font-size: 14px;
    flex-shrink: 0;
}

/* ── HARİTA ────────────────────────────────────────────────────────────── */
.contact-map-section {
    background: #fff;
    padding: 0;
}
.contact-map-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}
.contact-map-embed {
    min-height: 400px;
}
.contact-map-info {
    background: #0f172a;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: #fff;
}
.contact-map-info-header {
    display: flex;
    align-items: center;
    gap: 16px;
}
.contact-map-logo-badge {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, #0369a1, #0ea5e9);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    flex-shrink: 0;
}
.contact-map-info-header h2 {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 4px;
    font-family: 'Outfit', sans-serif;
}
.contact-map-info-header p {
    font-size: 13px;
    color: #475569;
    margin: 0;
}
.contact-map-details { display: flex; flex-direction: column; gap: 14px; }
.contact-map-detail-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.5;
}
.contact-map-detail-row i {
    color: #38bdf8;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}
.contact-map-detail-row a {
    color: #7dd3fc;
    text-decoration: none;
    font-weight: 600;
}
.contact-map-detail-row a:hover { color: #fff; }
.contact-map-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.contact-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 30px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #e2e8f0;
}
.contact-badge-item i { color: #38bdf8; font-size: 13px; }
.contact-directions-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #0369a1, #0ea5e9);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    padding: 16px 24px;
    border-radius: 14px;
    text-align: center;
    transition: all 0.25s ease;
    box-shadow: 0 6px 20px rgba(14,165,233,0.3);
    margin-top: auto;
}
.contact-directions-btn:hover {
    background: linear-gradient(135deg, #0284c7, #38bdf8);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(14,165,233,0.4);
}

/* ── HİZMET BÖLGELERİ ─────────────────────────────────────────────────── */
.contact-regions-section {
    background: #f8fafc;
    padding: 64px 0;
}
.contact-regions-header {
    text-align: center;
    margin-bottom: 40px;
}
.contact-regions-header h2 {
    font-size: clamp(22px, 5vw, 32px);
    font-weight: 800;
    color: #0f172a;
    margin: 10px 0 12px;
    font-family: 'Outfit', sans-serif;
}
.contact-regions-header p {
    font-size: 16px;
    color: #334155;
    max-width: 540px;
    margin: 0 auto;
}
.contact-regions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.contact-region-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 24px 22px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.25s ease;
}
.contact-region-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    border-color: #93c5fd;
}
.region-card-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 18px;
    margin-bottom: 14px;
}
.contact-region-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
}
.contact-region-card p {
    font-size: 13px;
    color: #334155;
    line-height: 1.6;
    margin: 0;
}

/* ── MOBİL RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 767px) {
    /* Hero */
    .contact-hero-content { padding: 44px 16px 40px; }
    .contact-hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .contact-hero-btn {
        min-width: unset;
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
        padding: 14px 20px;
        border-radius: 14px;
    }

    /* Cards */
    .contact-cards-section { padding: 32px 0 28px; }
    .contact-cards-grid { grid-template-columns: 1fr; gap: 12px; }
    .contact-info-card { padding: 16px; border-radius: 14px; }
    .contact-card-icon { width: 46px; height: 46px; font-size: 20px; border-radius: 12px; }
    .contact-card-value { font-size: 14px; }
    .contact-card-sub { font-size: 11px; }

    /* Harita */
    .contact-map-wrapper {
        grid-template-columns: 1fr;
        grid-template-rows: 280px auto;
        box-shadow: none;
    }
    .contact-map-embed { min-height: 280px; }
    .contact-map-info {
        padding: 28px 20px 32px;
        gap: 20px;
    }
    .contact-map-info-header h2 { font-size: 18px; }
    .contact-map-detail-row { font-size: 13px; }
    .contact-map-badges { gap: 8px; }
    .contact-badge-item { font-size: 11px; padding: 6px 12px; }
    .contact-directions-btn { font-size: 14px; padding: 14px 20px; }

    /* Bölgeler */
    .contact-regions-section { padding: 40px 0; }
    .contact-regions-header { margin-bottom: 28px; }
    .contact-regions-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .contact-region-card { padding: 18px 16px; border-radius: 14px; }
    .region-card-icon { width: 38px; height: 38px; font-size: 16px; border-radius: 10px; }
    .contact-region-card h4 { font-size: 14px; margin-bottom: 6px; }
    .contact-region-card p { font-size: 12px; }
}

@media (max-width: 480px) {
    .contact-regions-grid { grid-template-columns: 1fr; }
    .contact-hero-content h1 { font-size: 26px; }
}


/* ===== MOBIL YAN YANA MENÜ DÜZENLEMESI ===== */
@media (max-width: 767px) {
    .footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px 10px;
    }
    .footer-col-about {
        grid-column: span 2;
    }
    .footer-col-contact {
        grid-column: span 2;
    }
    .footer-col-links, .footer-col-services {
        grid-column: span 1;
    }
    .footer-col-links h4, .footer-col-services h4 {
        font-size: 1.05rem; /* slightly smaller to fit side by side */
    }
    .footer-col-links a, .footer-col-services a {
        font-size: 0.85rem;
    }
}



/* ===== MOBIL ANKARA GENELİ SERVİS BAŞLIK DÜZENLEMESI ===== */
@media (max-width: 768px) {
    .local-seo-section h2 {
        color: hsl(var(--clr-primary-dark, 222, 47%, 11%)) !important;
        font-size: 1.8rem;
    }
    .local-seo-section {
        background-color: transparent !important;
        color: inherit !important;
    }
}


/* --- Accordion Service Badges --- */
.faq-item {
    transition: all 0.3s ease;
}
.faq-item.item-active {
    border-left: 4px solid #22c55e;
}
.faq-item.item-active:hover {
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.15);
}
.faq-item.item-passive {
    border-left: 4px solid #f97316;
}
.faq-item.item-passive:hover {
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    width: 100%;
}

.badge-service {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-left: auto;
    margin-right: 15px;
    font-family: 'Inter', sans-serif;
}
.badge-active {
    background-color: rgba(34, 197, 94, 0.15);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.3);
    animation: pulse-green 2s infinite;
}
.badge-passive {
    background-color: rgba(249, 115, 22, 0.1);
    color: #ea580c;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.badge-text-mobile {
    display: none;
}
@media (max-width: 576px) {
    .badge-text-desktop { display: none; }
    .badge-text-mobile { display: inline; }
    .badge-service { padding: 3px 8px; font-size: 0.75rem; gap: 4px; margin-right: 10px; }
    .faq-question { padding: 15px 10px; font-size: 1rem !important; }
}

.nh-badge {
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(34, 197, 94, 0.15);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.3);
    margin-left: auto;
    font-weight: 600;
    display: inline-block;
    white-space: nowrap;
}
.nh-link {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}
.nh-link i { flex-shrink: 0; }
.nh-link span.nh-text { flex-grow: 1; overflow: hidden; text-overflow: ellipsis; }


/* --- Refined Accordion Header --- */
.faq-question.faq-question-refined {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 16px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 15px;
}
.faq-question-refined .faq-icon-left {
    flex: 0 0 30px;
    font-size: 1.2rem;
    color: hsl(var(--clr-primary));
    display: flex;
    justify-content: center;
}
.faq-question-refined .faq-title-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    min-width: 0;
}
.faq-question-refined .faq-district-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}
.faq-question-refined .faq-nh-count {
    font-size: 0.85rem;
    font-weight: 500;
    color: #334155;
}
.faq-question-refined .faq-right-area {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}
.faq-question-refined .badge-service {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    margin: 0; 
}
.faq-question-refined .badge-active {
    background-color: #f0fdf4;
    color: #15803d;
    border: 1px solid #bbf7d0;
    animation: soft-pulse-green 3s infinite;
}
.faq-question-refined .badge-passive {
    background-color: #f8fafc;
    color: #334155;
    border: 1px solid #e2e8f0;
}
@keyframes soft-pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(21, 128, 61, 0.1); }
    50% { box-shadow: 0 0 0 4px rgba(21, 128, 61, 0); }
    100% { box-shadow: 0 0 0 0 rgba(21, 128, 61, 0); }
}
.faq-question-refined .badge-text-mobile { display: none; }

.faq-item {
    border-radius: 12px;
    margin-bottom: 15px;
    background: white;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    overflow: hidden;
}
.faq-item.item-active { border-left: 4px solid #4ade80; }
.faq-item.item-passive { border-left: 4px solid #cbd5e1; }
.faq-item:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.05); }

.faq-question-refined .chevron-icon {
    color: #475569;
    transition: transform 0.3s ease;
}
.faq-item.active .faq-question-refined .chevron-icon {
    transform: rotate(180deg);
}

@media (max-width: 576px) {
    .faq-question.faq-question-refined { padding: 12px 15px; gap: 10px; }
    .faq-question-refined .faq-icon-left { flex: 0 0 24px; font-size: 1rem; }
    .faq-question-refined .faq-title-area { gap: 2px; }
    .faq-question-refined .faq-district-name { font-size: 0.95rem; }
    .faq-question-refined .faq-nh-count { font-size: 0.75rem; }
    .faq-question-refined .faq-right-area { gap: 8px; }
    .faq-question-refined .badge-service { padding: 3px 6px; font-size: 0.7rem; gap: 3px; }
    .faq-question-refined .badge-text-desktop { display: none; }
    .faq-question-refined .badge-text-mobile { display: inline; }
}

/* --- Clean Accordion Collapse Fix --- */
.faq-answer {
    padding: 0 !important; /* Force override any stray inline padding */
}
.faq-answer-inner {
    padding: 20px 30px;
}
@media (max-width: 576px) {
    .faq-answer-inner {
        padding: 15px 15px;
    }
}


/* --- Fixes for Header Overlap and Readability --- */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 140px !important; 
}
body {
    scroll-padding-top: 140px !important;
}



/* --- Targeted Readability Fixes --- */
.about-text p {
    color: #334155; /* Force dark text in about section */
}
.service-summary-card:not(.promo-card) p {
    color: #475569; /* Gray text for normal service cards */
}
.service-summary-card:not(.promo-card) h3 {
    color: #0f172a;
}
/* Ensure dark text for other main light sections, carefully. */
.faq-answer-inner p {
    color: #334155;
}
.detail-main-text p {
    color: #334155;
}




/* Promo Card Mobile Adjustments */
    .promo-card-premium {
        padding: 16px;
    }
    .promo-premium-icon {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }
    .promo-premium-text h3 {
        font-size: 1.05rem;
    }
    .btn-promo-premium {
        padding: 10px;
        font-size: 0.95rem;
    }

    /* Fix Bottom Padding for Sticky Floating Action Bar */
    body {
        padding-bottom: 80px; /* Make room for bottom bar */
    }
}

/* ==========================================================================
   DESKTOP (WEB) HEADER, MENU, HERO & ALIGNMENT ENHANCEMENTS (>=1080px)
   ========================================================================== */
@media (min-width: 1080px) {
    /* Compact Header padding and sizing for professional alignment */
    .nav-bar {
        padding: 12px 0;
    }
    
    .logo-img {
        height: 60px;
    }
    
    /* Center and align main menu items on a single line */
    .desktop-menu {
        display: block !important;
        margin: 0 auto; /* Pull menu to center */
        padding: 0 15px;
    }
    
    .desktop-menu ul {
        display: flex;
        align-items: center !important; /* Center-align text links and button vertically */
        gap: 15px; /* Spacing to prevent overflow */
    }
    
    .desktop-menu a {
        font-size: 0.88rem; /* Highly readable and prevents wrapping */
        letter-spacing: -0.2px;
        padding: 6px 0;
        white-space: nowrap;
    }
    
    /* Dropdown submenu adjustments to ensure perfect placement */
    .submenu {
        min-width: 200px;
        top: calc(100% + 10px);
    }
    
    /* Compact referral button inside navigation list */
    .btn-nav-referral {
        padding: 8px 16px !important;
        font-size: 0.8rem !important;
        gap: 6px;
    }
    
    /* Compact call button on the right */
    .btn-nav-call {
        padding: 8px 18px;
        gap: 8px;
    }
    
    .btn-call-text span {
        font-size: 0.65rem;
    }
    
    .btn-call-text strong {
        font-size: 0.88rem;
    }
    
    .nav-actions {
        gap: 10px;
        flex-shrink: 0;
    }
    
    /* Hero Section desktop layout balance */
    .hero-section {
        padding: 120px 0 160px; /* Generous but balanced padding */
    }
    
    .hero-container-grid {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 60px; /* Spacious separation between content columns */
    }
    
    .hero-title {
        font-size: 3.5rem; /* Proportional, premium title size */
        line-height: 1.15;
        letter-spacing: -1.2px;
        margin-bottom: 20px;
    }
    
    .hero-desc {
        font-size: 1.1rem;
        margin-bottom: 35px;
        line-height: 1.65;
    }
    
    .hero-stats {
        margin-bottom: 40px;
        padding-top: 25px;
        gap: 40px;
    }
    
    .stat-num {
        font-size: 2rem;
    }
    
    /* Align trust card to the right side of its column */
    .badge-trust-card {
        max-width: 420px;
        margin-left: auto; /* Aligns to right */
        padding: 35px;
    }
}

/* Extra Large screens adjustments for spacious premium layout */
@media (min-width: 1300px) {
    .desktop-menu ul {
        gap: 22px; /* Slightly wider gap for larger screens */
    }
    
    .desktop-menu a {
        font-size: 0.92rem;
    }
    
    .btn-nav-referral {
        padding: 10px 20px !important;
        font-size: 0.84rem !important;
    }
    
    .btn-nav-call {
        padding: 10px 22px;
    }
    
    .btn-call-text strong {
        font-size: 0.95rem;
    }
    
    .hero-container-grid {
        gap: 80px;
    }
    
    .hero-title {
        font-size: 3.8rem;
    }
}


/* ==========================================================
   ADDITIONAL VIP & PRIORITY DRAWER STYLES
   ========================================================== */

    /* Mobile Menu Drawer Core */
    .mobile-menu-toggle {
        position: relative !important;
        z-index: 99999 !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        width: 48px !important;
        height: 48px !important;
        min-width: 48px !important;
        min-height: 48px !important;
        padding: 0 !important;
        margin: 0 !important;
        background: transparent !important;
        border: none !important;
        outline: none !important;
        display: none !important;
        align-items: center !important;
        justify-content: center !important;
        color: #ffffff !important;
        -webkit-tap-highlight-color: transparent !important;
        touch-action: manipulation !important;
    }
    @media (max-width: 1079px) { .mobile-menu-toggle { display: inline-flex !important; } }
    @media (min-width: 1080px) { .mobile-menu-toggle { display: none !important; } }
    .mobile-menu-toggle svg, .mobile-menu-toggle i { pointer-events: none !important; font-size: 24px; }
    .mobile-menu-panel {
        display: flex !important;
        flex-direction: column !important;
        position: fixed !important;
        top: 0 !important; left: 0 !important;
        width: min(85vw, 360px) !important;
        height: 100% !important; height: 100dvh !important;
        background-color: #ffffff !important;
        box-shadow: 5px 0 25px rgba(0, 0, 0, 0.3) !important;
        z-index: 999999 !important;
        transform: translateX(-100%) !important;
        transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1) !important;
        box-sizing: border-box !important;
        padding-top: max(20px, env(safe-area-inset-top)) !important;
        padding-bottom: max(15px, env(safe-area-inset-bottom)) !important;
        overflow-y: auto !important;
        visibility: hidden !important;
    }
    .mobile-menu-panel.open, .mobile-menu-panel.active {
        transform: translateX(0) !important;
        visibility: visible !important;
        display: flex !important;
    }
    .mobile-menu-overlay {
        position: fixed !important;
        top: 0 !important; left: 0 !important;
        width: 100% !important; height: 100% !important;
        background: rgba(15, 23, 42, 0.6) !important;
        backdrop-filter: blur(4px) !important;
        z-index: 999998 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: opacity 250ms ease, visibility 250ms ease !important;
    }
    .mobile-menu-overlay.open, .mobile-menu-overlay.active {
        opacity: 1 !important; visibility: visible !important;
    }

    /* ==========================================================
       VIP HALI YIKAMA — 100% RESPONSIVE DARK DESIGN SYSTEM
       ========================================================== */
    body.vip-page-body {
        background-color: #070b14 !important;
        color: #f1f5f9 !important;
        font-family: 'Inter', sans-serif;
        overflow-x: hidden;
    }

    /* Header Nav Flame Glow */
    .nav-vip-link {
        color: #f87171 !important;
        font-weight: 700 !important;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }
    .nav-vip-link:hover {
        color: #ef4444 !important;
        text-shadow: 0 0 10px rgba(239, 68, 68, 0.6);
    }
    .vip-flame {
        display: inline-block;
        animation: flamePulse 1.8s ease-in-out infinite;
    }
    @keyframes flamePulse {
        0%, 100% { transform: scale(1); filter: drop-shadow(0 0 2px #f59e0b); }
        50% { transform: scale(1.18); filter: drop-shadow(0 0 8px #ef4444); }
    }
    
    /* Global Section Spacing & Container */
    .vip-hero, .vip-special-section, .vip-privileges-section,
    .vip-timeline-section, .vip-fast-delivery-section, .vip-persona-section,
    .vip-comparison-section, .vip-form-section, .vip-cta-section, .vip-faq-section {
        position: relative;
        padding: 80px 0;
        box-sizing: border-box;
    }
    
    .vip-section-header {
        text-align: center;
        max-width: 760px;
        margin: 0 auto 50px;
        padding: 0 15px;
    }
    .vip-section-title {
        font-family: 'Outfit', sans-serif;
        font-size: 2.2rem;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 12px;
        letter-spacing: -0.5px;
        line-height: 1.25;
    }
    .vip-section-subtitle {
        font-size: 1.05rem;
        color: #94a3b8;
        margin: 0;
        line-height: 1.6;
    }

    /* GLASSMORPHISM WRAPPER & IMAGES */
    .vip-glass-img-wrapper {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
        border: 1px solid rgba(239, 68, 68, 0.25);
        background: rgba(15, 23, 42, 0.6);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        width: 100%;
    }
    .vip-section-img {
        width: 100%;
        height: auto;
        max-height: 440px;
        object-fit: cover;
        display: block;
        border-radius: 20px;
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .vip-glass-img-wrapper:hover .vip-section-img {
        transform: scale(1.04);
    }

    /* 1. HERO SECTION */
    .vip-hero {
        padding: 90px 0 80px;
        background: radial-gradient(circle at 80% 20%, rgba(185, 28, 28, 0.22) 0%, transparent 50%),
                    radial-gradient(circle at 20% 80%, rgba(217, 119, 6, 0.15) 0%, transparent 45%),
                    linear-gradient(180deg, #0f172a 0%, #070b14 100%);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .vip-hero-container {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 45px;
        align-items: center;
    }
    .vip-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(239, 68, 68, 0.15);
        border: 1px solid rgba(239, 68, 68, 0.4);
        color: #f87171;
        padding: 6px 16px;
        border-radius: 30px;
        font-size: 0.85rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        margin-bottom: 18px;
    }
    .vip-hero-title {
        font-family: 'Outfit', sans-serif;
        font-size: 3rem;
        font-weight: 800;
        color: #ffffff;
        line-height: 1.15;
        margin-bottom: 20px;
    }
    .vip-hero-desc {
        font-size: 1.1rem;
        line-height: 1.7;
        color: #cbd5e1;
        margin-bottom: 16px;
    }
    .vip-hero-trust {
        font-size: 0.98rem;
        color: #f59e0b;
        font-weight: 600;
        margin-bottom: 30px;
        padding-left: 14px;
        border-left: 3px solid #f59e0b;
        line-height: 1.5;
    }
    .vip-hero-btns {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
    }
    .btn-vip-primary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
        color: #ffffff;
        font-family: 'Outfit', sans-serif;
        font-weight: 800;
        font-size: 1.05rem;
        padding: 16px 32px;
        border-radius: 12px;
        text-decoration: none;
        box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
        transition: all 0.3s ease;
        min-height: 50px;
        box-sizing: border-box;
    }
    .btn-vip-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(220, 38, 38, 0.55);
        color: #ffffff;
    }

    /* 2. SPECIAL MESSAGE BOX */
    .vip-special-section { background: #070b14; }
    .vip-message-box {
        background: linear-gradient(135deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.8) 100%);
        border: 1px solid rgba(239, 68, 68, 0.25);
        border-radius: 24px;
        padding: 40px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    }
    .vip-special-grid {
        display: grid;
        grid-template-columns: 1.15fr 0.85fr;
        gap: 40px;
        align-items: center;
    }
    .vip-special-text h2 {
        font-family: 'Outfit', sans-serif;
        font-size: 2rem;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 18px;
        display: flex;
        align-items: center;
        gap: 14px;
        line-height: 1.25;
    }
    .vip-special-text h2 i { color: #f59e0b; }
    .vip-special-text p {
        font-size: 1.05rem;
        line-height: 1.75;
        color: #cbd5e1;
    }

    /* 3. 9 PRIVILEGE CARDS */
    .vip-privileges-section { background: #0b1120; }
    .vip-cards-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    .vip-card {
        background: rgba(15, 23, 42, 0.7);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 18px;
        padding: 28px 24px;
        transition: all 0.35s ease;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .vip-card:hover {
        transform: translateY(-5px);
        border-color: rgba(239, 68, 68, 0.4);
        box-shadow: 0 12px 30px rgba(220, 38, 38, 0.2);
        background: rgba(30, 41, 59, 0.8);
    }
    .vip-card-icon {
        width: 52px;
        height: 52px;
        background: rgba(239, 68, 68, 0.12);
        border: 1px solid rgba(239, 68, 68, 0.3);
        color: #f87171;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.35rem;
        margin-bottom: 6px;
    }
    .vip-card-title {
        font-family: 'Outfit', sans-serif;
        font-size: 1.2rem;
        font-weight: 700;
        color: #ffffff;
        margin: 0;
    }
    .vip-card-desc {
        font-size: 0.94rem;
        line-height: 1.6;
        color: #94a3b8;
        margin: 0;
    }
    .vip-privilege-showcase {
        margin-top: 45px;
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 35px;
        align-items: center;
        background: rgba(30, 41, 59, 0.5);
        border: 1px solid rgba(239, 68, 68, 0.3);
        border-radius: 20px;
        padding: 35px;
    }
    .vip-privilege-showcase-text h3 {
        font-family: 'Outfit', sans-serif;
        font-size: 1.7rem; font-weight: 800; color: #ffffff; margin-bottom: 12px;
        display: flex; align-items: center; gap: 12px; line-height: 1.25;
    }
    .vip-privilege-showcase-text h3 i { color: #ef4444; }
    .vip-privilege-showcase-text p { font-size: 1.02rem; line-height: 1.7; color: #cbd5e1; }

    /* 4. 10-STEP TIMELINE */
    .vip-timeline-section { background: #070b14; }
    .vip-timeline-banner { margin-bottom: 45px; }
    .vip-timeline-wrapper {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 16px;
    }
    .vip-timeline-step {
        background: rgba(15, 23, 42, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        padding: 22px 18px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        transition: transform 0.3s ease, border-color 0.3s ease;
    }
    .vip-timeline-step:hover {
        transform: translateY(-3px);
        border-color: #ef4444;
    }
    .vip-step-num {
        font-family: 'Outfit', sans-serif;
        font-size: 1.4rem;
        font-weight: 800;
        color: #ef4444;
        background: rgba(239, 68, 68, 0.12);
        border: 1px solid rgba(239, 68, 68, 0.3);
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .vip-step-text {
        font-size: 0.88rem;
        font-weight: 600;
        color: #e2e8f0;
        line-height: 1.45;
    }

    /* 5. FAST DELIVERY SECTION */
    .vip-fast-delivery-section { background: #0b1120; }
    .vip-delivery-card {
        background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
        border: 1px solid rgba(56, 189, 248, 0.3);
        border-radius: 24px;
        padding: 40px;
    }
    .vip-delivery-grid {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 35px;
        align-items: center;
    }
    .vip-delivery-text h3 {
        font-family: 'Outfit', sans-serif;
        font-size: 1.9rem;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 14px;
        display: flex; align-items: center; gap: 12px; line-height: 1.25;
    }
    .vip-delivery-text h3 i { color: #38bdf8; }
    .vip-delivery-text p { font-size: 1.02rem; line-height: 1.7; color: #cbd5e1; margin-bottom: 20px; }
    .vip-delivery-emphasis {
        background: rgba(56, 189, 248, 0.12);
        border: 1.5px solid rgba(56, 189, 248, 0.4);
        color: #38bdf8;
        padding: 14px 20px;
        border-radius: 12px;
        font-weight: 700;
        font-size: 0.98rem;
        display: inline-flex;
        align-items: center;
        line-height: 1.4;
    }

    /* 6. WHO IS IT FOR (PERSONA GRID) */
    .vip-persona-section { background: #070b14; }
    .vip-persona-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 16px;
    }
    .vip-persona-item {
        background: rgba(15, 23, 42, 0.7);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        padding: 22px 16px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        transition: all 0.3s ease;
    }
    .vip-persona-item:hover {
        transform: translateY(-4px);
        border-color: #f59e0b;
        background: rgba(30, 41, 59, 0.8);
    }
    .vip-persona-icon {
        font-size: 1.6rem;
        color: #f59e0b;
    }
    .vip-persona-title {
        font-size: 0.9rem;
        font-weight: 600;
        color: #e2e8f0;
        line-height: 1.45;
        margin: 0;
    }

    /* 7. COMPARISON TABLE */
    .vip-comparison-section { background: #0b1120; }
    .vip-table-wrapper {
        background: rgba(15, 23, 42, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    }
    .vip-table {
        width: 100%;
        min-width: 600px;
        border-collapse: collapse;
        text-align: left;
    }
    .vip-table th {
        background: #1e293b;
        padding: 18px 24px;
        font-family: 'Outfit', sans-serif;
        font-size: 1.05rem;
        font-weight: 700;
        color: #ffffff;
        border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    }
    .vip-table th.vip-header {
        background: rgba(220, 38, 38, 0.25);
        color: #f87171;
    }
    .vip-table td {
        padding: 16px 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        font-size: 0.95rem;
        color: #cbd5e1;
    }
    .vip-table tr:last-child td { border-bottom: none; }
    .vip-table tr:nth-child(even) td { background: rgba(30, 41, 59, 0.3); }
    .vip-table td.vip-col {
        color: #34d399;
        font-weight: 700;
        background: rgba(16, 185, 129, 0.06);
    }

    /* 8. VIP SPECIAL REQUEST FORM */
    .vip-form-section { background: #070b14; }
    .vip-form-card {
        background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
        border: 1px solid rgba(239, 68, 68, 0.3);
        border-radius: 24px;
        padding: 45px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
        max-width: 940px;
        margin: 0 auto;
        box-sizing: border-box;
    }
    .vip-form-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .vip-form-group {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .vip-form-group.vip-form-full, .vip-form-group.full-width { grid-column: span 2; }
    .vip-form-group label {
        font-size: 0.92rem;
        font-weight: 700;
        color: #e2e8f0;
    }
    .vip-form-control {
        background: rgba(15, 23, 42, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 12px;
        padding: 14px 16px;
        color: #ffffff;
        font-family: 'Inter', sans-serif;
        font-size: 0.95rem;
        min-height: 48px;
        box-sizing: border-box;
        transition: border-color 0.25s ease, box-shadow 0.25s ease;
    }
    .vip-form-control:focus {
        outline: none;
        border-color: #ef4444;
        box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.25);
    }
    .vip-form-control option { background: #0f172a; color: #ffffff; }
    .vip-checkbox-group {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 0.9rem;
        color: #cbd5e1;
        cursor: pointer;
        line-height: 1.4;
    }
    .vip-checkbox-group input[type="checkbox"] {
        width: 20px; height: 20px; min-width: 20px; accent-color: #ef4444; cursor: pointer;
    }
    .btn-vip-submit {
        width: 100%;
        background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
        color: #ffffff;
        font-family: 'Outfit', sans-serif;
        font-weight: 800;
        font-size: 1.15rem;
        padding: 18px;
        border: none;
        border-radius: 14px;
        cursor: pointer;
        box-shadow: 0 10px 25px rgba(220, 38, 38, 0.4);
        transition: all 0.3s ease;
        margin-top: 10px;
        min-height: 54px;
    }
    .btn-vip-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 35px rgba(220, 38, 38, 0.55);
    }
    .vip-form-notice {
        display: none;
        background: rgba(16, 185, 129, 0.15);
        border: 1.5px solid rgba(16, 185, 129, 0.4);
        color: #34d399;
        padding: 18px 24px;
        border-radius: 14px;
        margin-top: 25px;
        text-align: center;
        font-weight: 700;
        font-size: 1.05rem;
        line-height: 1.6;
    }

    /* 9. PREMIUM CTA SECTION */
    .vip-cta-section { background: #0b1120; }
    .vip-cta-box {
        background: radial-gradient(circle at 50% 50%, rgba(185, 28, 28, 0.3) 0%, rgba(15, 23, 42, 0.95) 70%),
                    #070b14;
        border: 1px solid rgba(239, 68, 68, 0.4);
        border-radius: 24px;
        padding: 60px 40px;
        text-align: center;
        max-width: 900px;
        margin: 0 auto;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
        box-sizing: border-box;
    }
    .vip-cta-box h2 {
        font-family: 'Outfit', sans-serif;
        font-size: 2.3rem;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 16px;
        line-height: 1.2;
    }
    .vip-cta-box p {
        font-size: 1.08rem;
        line-height: 1.7;
        color: #cbd5e1;
        max-width: 700px;
        margin: 0 auto 35px;
    }
    .vip-cta-btns {
        display: flex;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    /* 10. SSS ACCORDION */
    .vip-faq-section { background: #070b14; }
    .vip-faq-container, .vip-faq-accordion {
        max-width: 860px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }
    .vip-faq-item {
        background: rgba(15, 23, 42, 0.7);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        overflow: hidden;
        transition: border-color 0.3s ease;
    }
    .vip-faq-item.active {
        border-color: rgba(239, 68, 68, 0.4);
        background: rgba(30, 41, 59, 0.7);
    }
    .vip-faq-question {
        width: 100%;
        background: transparent;
        border: none;
        padding: 20px 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        font-family: 'Outfit', sans-serif;
        font-size: 1.1rem;
        font-weight: 700;
        color: #ffffff;
        text-align: left;
        cursor: pointer;
        min-height: 52px;
    }
    .vip-faq-question i {
        color: #ef4444;
        transition: transform 0.3s ease;
    }
    .vip-faq-item.active .vip-faq-question i {
        transform: rotate(180deg);
    }
    .vip-faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
        padding: 0 24px;
    }
    .vip-faq-item.active .vip-faq-answer {
        padding: 0 24px 22px;
    }
    .vip-faq-answer p {
        font-size: 0.98rem;
        line-height: 1.7;
        color: #cbd5e1;
        margin: 0;
    }

    /* ==========================================================
       PRECISION RESPONSIVE BREAKPOINTS (320px to 1920px)
       ========================================================== */
    @media (max-width: 1100px) {
        .vip-hero-container { grid-template-columns: 1fr; gap: 35px; }
        .vip-hero-title { font-size: 2.5rem; }
        .vip-cards-grid { grid-template-columns: repeat(2, 1fr); }
        .vip-timeline-wrapper { grid-template-columns: repeat(3, 1fr); }
        .vip-persona-grid { grid-template-columns: repeat(3, 1fr); }
    }

    @media (max-width: 768px) {
        body.vip-page-body { padding-bottom: 70px; }
        .vip-hero, .vip-special-section, .vip-privileges-section,
        .vip-timeline-section, .vip-fast-delivery-section, .vip-persona-section,
        .vip-comparison-section, .vip-form-section, .vip-cta-section, .vip-faq-section {
            padding: 50px 0;
        }
        .vip-hero-title { font-size: 2rem; }
        .vip-hero-desc { font-size: 1rem; }
        .vip-section-title { font-size: 1.75rem; }
        .vip-section-subtitle { font-size: 0.95rem; }
        .vip-cards-grid { grid-template-columns: 1fr; gap: 16px; }
        .vip-timeline-wrapper { grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .vip-persona-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .vip-form-grid { grid-template-columns: 1fr; gap: 16px; }
        .vip-form-group.vip-form-full, .vip-form-group.full-width { grid-column: span 1; }
        .vip-form-card { padding: 25px 18px; border-radius: 18px; }
        .vip-special-grid, .vip-privilege-showcase, .vip-delivery-grid { grid-template-columns: 1fr; gap: 24px; }
        .vip-message-box, .vip-delivery-card { padding: 25px 20px; border-radius: 18px; }
        .vip-privilege-showcase { padding: 24px 18px; }
        .vip-cta-box { padding: 35px 20px; border-radius: 18px; }
        .vip-cta-box h2 { font-size: 1.6rem; }
        .vip-cta-btns { flex-direction: column; width: 100%; }
        .vip-cta-btns a, .vip-hero-btns a { width: 100%; text-align: center; }
        .vip-faq-question { padding: 16px 18px; font-size: 1rem; }
        .vip-section-img { max-height: 280px; }
    }

    @media (max-width: 480px) {
        .vip-hero-title { font-size: 1.75rem; }
        .vip-badge { font-size: 0.78rem; padding: 5px 12px; }
        .vip-timeline-wrapper { grid-template-columns: 1fr; }
        .vip-persona-grid { grid-template-columns: 1fr; }
        .vip-section-title { font-size: 1.5rem; }
        .vip-faq-question { font-size: 0.95rem; }
        .btn-vip-primary { font-size: 0.98rem; padding: 14px 20px; }
    }

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

/* Hero Image Wrapper */
.vip-hero-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #0f172a;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(239, 68, 68, 0.25);
}

/* VIP IMAGE FIX - FINAL CLEAN */
.vip-hero-img {
    display: block;
    position: static;
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 20px;
}
.vip-section-img {
    display: block;
    position: static;
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    border-radius: 20px;
}
.vip-glass-img-wrapper {
    display: block;
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    background: #0f172a;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}
.vip-hero-visual, .vip-section-visual, .vip-delivery-visual {
    display: block;
    width: 100%;
}
.logo-area, .footer-logo a, .mobile-menu-header a {
    display: inline-block;
    cursor: pointer;
    pointer-events: auto;
    text-decoration: none;
}
.logo-img, .footer-logo-img, .mobile-menu-logo {
    cursor: pointer;
    pointer-events: auto;
}
.nav-vip-link {
    justify-content: flex-start !important;
    text-align: left !important;
}
.vip-inner-flex {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    justify-content: flex-start !important;
}
@media (max-width: 768px) {
    .vip-hero-img, .vip-section-img {
        max-height: 280px;
        border-radius: 16px;
    }
    .vip-glass-img-wrapper {
        border-radius: 16px;
        margin-top: 20px;
    }
    .mobile-menu-toggle {
        color: #0f172a !important;
        background: #f1f5f9 !important;
        border: 1px solid #cbd5e1 !important;
        border-radius: 8px;
    }
    .mobile-submenu.open,
    .mobile-menu-item-has-children.active .mobile-submenu {
        max-height: 1000px !important;
        display: flex !important;
        visibility: visible !important;
    }
}



/* ==========================================================================
   FIRMA DEVRI - SATIŞ BAŞVURUSU ANIMATED DESIGN SYSTEM & FLOATING BAR
   ========================================================================== */

@keyframes satisGlowPulse {
    0% { box-shadow: 0 0 15px rgba(0, 159, 227, 0.4), 0 0 25px rgba(239, 68, 68, 0.2); }
    50% { box-shadow: 0 0 25px rgba(0, 159, 227, 0.8), 0 0 40px rgba(239, 68, 68, 0.5); }
    100% { box-shadow: 0 0 15px rgba(0, 159, 227, 0.4), 0 0 25px rgba(239, 68, 68, 0.2); }
}

@keyframes handShake {
    0%, 100% { transform: rotate(0deg) scale(1); }
    15% { transform: rotate(-12deg) scale(1.15); }
    30% { transform: rotate(12deg) scale(1.15); }
    45% { transform: rotate(-8deg) scale(1.1); }
    60% { transform: rotate(8deg) scale(1.1); }
    75% { transform: rotate(0deg) scale(1); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes liveBadgePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.5; }
}

@keyframes shimmerSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

.footer-satis-cta-btn,
.footer-cta-fullrow-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 14px 22px !important;
    border-radius: 14px !important;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0284c7 100%) !important;
    background-size: 200% 200% !important;
    animation: gradientShift 5s ease infinite, satisGlowPulse 2.5s infinite !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    position: relative !important;
    overflow: hidden !important;
    border: 1px solid rgba(56, 189, 248, 0.4) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    z-index: 10 !important;
}

.footer-satis-cta-btn:hover,
.footer-cta-fullrow-btn:hover {
    transform: translateY(-3px) scale(1.02) !important;
    border-color: #38bdf8 !important;
    box-shadow: 0 12px 30px rgba(2, 132, 199, 0.5) !important;
}

.footer-satis-cta-btn::before,
.footer-cta-fullrow-btn::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important; left: -100% !important;
    width: 60% !important; height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent) !important;
    transform: skewX(-25deg) !important;
    animation: shimmerSlide 3s infinite !important;
}

.fsc-label, .fcfr-label {
    display: inline-block !important;
    font-size: 0.72rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    background: #ef4444 !important;
    color: #ffffff !important;
    padding: 3px 8px !important;
    border-radius: 6px !important;
    font-weight: 800 !important;
}

.fsc-title, .fcfr-title {
    font-size: 0.95rem !important;
    color: #ffffff !important;
    line-height: 1.3 !important;
}

.footer-satis-cta-btn i,
.footer-cta-fullrow-btn i {
    font-size: 1.2rem !important;
    color: #38bdf8 !important;
    animation: handShake 2.5s ease-in-out infinite !important;
}

/* Fixed Bottom Floating Bar (Desktop & Mobile) */
.floating-satis-bar {
    position: fixed !important;
    bottom: 20px !important;
    left: 20px !important;
    z-index: 99999 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 12px 20px !important;
    border-radius: 50px !important;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #0284c7 100%) !important;
    background-size: 200% 200% !important;
    animation: gradientShift 4s ease infinite, satisGlowPulse 2s infinite !important;
    border: 1px solid rgba(56, 189, 248, 0.5) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 0.92rem !important;
    font-weight: 700 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
    transition: all 0.3s ease !important;
}

.floating-satis-bar:hover {
    transform: translateY(-4px) scale(1.04) !important;
    box-shadow: 0 15px 35px rgba(2, 132, 199, 0.6) !important;
}

.floating-satis-bar .shake-icon {
    font-size: 1.25rem !important;
    display: inline-block !important;
    animation: handShake 2s ease-in-out infinite !important;
}

.floating-satis-bar .live-dot {
    width: 9px !important;
    height: 9px !important;
    border-radius: 50% !important;
    background-color: #ef4444 !important;
    display: inline-block !important;
    animation: liveBadgePulse 1.5s infinite !important;
}

@media (max-width: 768px) {
    .floating-satis-bar {
        bottom: 12px !important;
        left: 10px !important;
        right: 10px !important;
        width: calc(100% - 20px) !important;
        justify-content: center !important;
        padding: 11px 16px !important;
        font-size: 0.84rem !important;
        border-radius: 12px !important;
    }
}



/* ==========================================================================
   FIRMA DEVRI - DESKTOP LARGE CARD & MOBILE STATIC BOTTOM FOOTER ROW
   ========================================================================== */

/* Completely hide any legacy fixed floating bar */
.floating-satis-bar {
    display: none !important;
}

@keyframes satisGlowPulse {
    0% { box-shadow: 0 0 15px rgba(0, 159, 227, 0.4), 0 0 25px rgba(239, 68, 68, 0.2); }
    50% { box-shadow: 0 0 30px rgba(0, 159, 227, 0.8), 0 0 45px rgba(239, 68, 68, 0.6); }
    100% { box-shadow: 0 0 15px rgba(0, 159, 227, 0.4), 0 0 25px rgba(239, 68, 68, 0.2); }
}

@keyframes handShake {
    0%, 100% { transform: rotate(0deg) scale(1); }
    15% { transform: rotate(-14deg) scale(1.2); }
    30% { transform: rotate(14deg) scale(1.2); }
    45% { transform: rotate(-10deg) scale(1.15); }
    60% { transform: rotate(10deg) scale(1.15); }
    75% { transform: rotate(0deg) scale(1); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shimmerSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

/* DESKTOP (>= 769px): Large Prominent Animated Footer Card */
@media (min-width: 769px) {
    .footer-satis-cta-btn {
        display: flex !important;
        align-items: center !important;
        gap: 16px !important;
        width: 100% !important;
        max-width: 380px !important;
        padding: 20px 24px !important;
        margin-top: 20px !important;
        border-radius: 18px !important;
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0284c7 100%) !important;
        background-size: 200% 200% !important;
        animation: gradientShift 5s ease infinite, satisGlowPulse 2.5s infinite !important;
        border: 2px solid rgba(56, 189, 248, 0.5) !important;
        color: #ffffff !important;
        text-decoration: none !important;
        position: relative !important;
        overflow: hidden !important;
        box-shadow: 0 12px 35px rgba(2, 132, 199, 0.4) !important;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    .footer-satis-cta-btn:hover {
        transform: translateY(-5px) scale(1.03) !important;
        border-color: #38bdf8 !important;
        box-shadow: 0 20px 50px rgba(2, 132, 199, 0.7) !important;
    }

    .footer-satis-cta-btn::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important; left: -100% !important;
        width: 60% !important; height: 100% !important;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent) !important;
        transform: skewX(-25deg) !important;
        animation: shimmerSlide 3s infinite !important;
    }

    .fsc-icon-box {
        font-size: 1.8rem !important;
        color: #38bdf8 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 50px !important;
        height: 50px !important;
        background: rgba(15, 23, 42, 0.6) !important;
        border-radius: 12px !important;
        border: 1px solid rgba(56, 189, 248, 0.3) !important;
        animation: handShake 2.5s ease-in-out infinite !important;
    }

    .fsc-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 4px !important;
        flex: 1 !important;
    }

    .fsc-label {
        font-size: 0.75rem !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        background: #ef4444 !important;
        color: #ffffff !important;
        padding: 3px 10px !important;
        border-radius: 6px !important;
        font-weight: 800 !important;
        align-self: flex-start !important;
    }

    .fsc-title {
        font-size: 1.05rem !important;
        font-weight: 700 !important;
        color: #ffffff !important;
        line-height: 1.35 !important;
    }

    .fsc-arrow {
        font-size: 1.2rem !important;
        color: #38bdf8 !important;
        transition: transform 0.3s ease !important;
    }

    .footer-satis-cta-btn:hover .fsc-arrow {
        transform: translateX(6px) !important;
    }

    .footer-cta-fullrow {
        display: none !important;
    }
}

/* MOBILE (<= 768px): Only Show at Very Bottom of Footer Page Flow */
@media (max-width: 768px) {
    .footer-satis-cta-btn {
        display: none !important;
    }

    .footer-cta-fullrow {
        display: block !important;
        width: 100% !important;
        margin: 25px 0 15px 0 !important;
        padding: 0 15px !important;
    }

    .footer-cta-fullrow-btn {
        display: flex !important;
        align-items: center !important;
        gap: 14px !important;
        width: 100% !important;
        padding: 16px 20px !important;
        border-radius: 16px !important;
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #0284c7 100%) !important;
        background-size: 200% 200% !important;
        animation: gradientShift 5s ease infinite, satisGlowPulse 2.5s infinite !important;
        border: 1.5px solid rgba(56, 189, 248, 0.4) !important;
        color: #ffffff !important;
        text-decoration: none !important;
        position: static !important; /* Not fixed floating */
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
    }

    .fcfr-icon {
        font-size: 1.5rem !important;
        color: #38bdf8 !important;
        animation: handShake 2.5s ease-in-out infinite !important;
    }

    .fcfr-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 3px !important;
        flex: 1 !important;
    }

    .fcfr-label {
        font-size: 0.7rem !important;
        text-transform: uppercase !important;
        letter-spacing: 0.8px !important;
        background: #ef4444 !important;
        color: #ffffff !important;
        padding: 2px 8px !important;
        border-radius: 6px !important;
        font-weight: 800 !important;
        align-self: flex-start !important;
    }

    .fcfr-title {
        font-size: 0.95rem !important;
        font-weight: 700 !important;
        color: #ffffff !important;
    }

    .fcfr-arrow {
        font-size: 1.1rem !important;
        color: #38bdf8 !important;
    }
}



/* ==========================================================================
   FIRMA DEVRI - DESKTOP ELEGANT & COMPACT STYLE ("DAHA KİBAR")
   ========================================================================== */

@media (min-width: 769px) {
    .footer-satis-cta-btn {
        display: inline-flex !important;
        align-items: center !important;
        gap: 10px !important;
        width: auto !important;
        max-width: 100% !important;
        padding: 8px 14px !important;
        margin-top: 15px !important;
        border-radius: 10px !important;
        background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.9) 100%) !important;
        border: 1px solid rgba(56, 189, 248, 0.35) !important;
        color: #ffffff !important;
        text-decoration: none !important;
        position: relative !important;
        overflow: hidden !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    .footer-satis-cta-btn:hover {
        transform: translateY(-2px) !important;
        border-color: #38bdf8 !important;
        background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(2, 132, 199, 0.3) 100%) !important;
        box-shadow: 0 8px 20px rgba(2, 132, 199, 0.4) !important;
    }

    .fsc-icon-box {
        font-size: 1.1rem !important;
        color: #38bdf8 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 32px !important;
        height: 32px !important;
        background: rgba(56, 189, 248, 0.1) !important;
        border-radius: 8px !important;
        border: none !important;
        animation: handShake 3s ease-in-out infinite !important;
    }

    .fsc-content {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        flex: 1 !important;
    }

    .fsc-label {
        font-size: 0.68rem !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        background: #ef4444 !important;
        color: #ffffff !important;
        padding: 2px 7px !important;
        border-radius: 5px !important;
        font-weight: 800 !important;
        white-space: nowrap !important;
    }

    .fsc-title {
        font-size: 0.84rem !important;
        font-weight: 600 !important;
        color: #e2e8f0 !important;
        white-space: nowrap !important;
    }

    .fsc-arrow {
        font-size: 0.9rem !important;
        color: #38bdf8 !important;
        transition: transform 0.25s ease !important;
        margin-left: 2px !important;
    }

    .footer-satis-cta-btn:hover .fsc-arrow {
        transform: translateX(4px) !important;
    }

    .footer-cta-fullrow {
        display: none !important;
    }
}



/* ==========================================================================
   FIYATLARIMIZ MOBILE OPTIMIZATION & OVERFLOW FIXES
   ========================================================================== */

/* Fix mobile floating cart button position so it sits above mobile-floating-bar */
@media (max-width: 768px) {
    .floating-cart-btn {
        bottom: 85px !important;
        right: 16px !important;
        z-index: 99999 !important;
        box-shadow: 0 8px 25px rgba(2, 132, 199, 0.5) !important;
    }

    /* SEO intro grid single column on mobile */
    .seo-text-box,
    .calc-seo-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    /* Calculator filter chip scrolling */
    .calc-filters-wrapper {
        margin: 0 -15px 20px -15px !important;
        padding: 0 15px !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .calc-filters-container {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 8px !important;
        width: max-content !important;
        padding-bottom: 6px !important;
    }

    .calc-filter-btn {
        flex: 0 0 auto !important;
        min-height: 44px !important;
        padding: 8px 16px !important;
        font-size: 0.88rem !important;
        white-space: nowrap !important;
        border-radius: 25px !important;
        touch-action: manipulation !important;
    }

    /* Table & Card responsiveness */
    .calc-table-wrapper {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        border-radius: 12px !important;
    }

    .calc-table {
        min-width: 580px !important;
    }

    /* Quantity Modal centering on mobile */
    .quantity-modal .modal-card {
        width: calc(100% - 32px) !important;
        max-width: 380px !important;
        margin: auto !important;
        padding: 24px 20px !important;
        border-radius: 20px !important;
    }

    /* Cart Drawer mobile height */
    .cart-drawer {
        width: 100% !important;
        max-width: 100vw !important;
        height: 100dvh !important;
        padding-bottom: max(20px, env(safe-area-inset-bottom)) !important;
    }
}

.calc-accordion-count { display: none !important; visibility: hidden !important; }
