/* ==========================================================================
   7-24 YOL YARDIMI - PREMIUM HIGH-INTENT LIGHT THEME (WHITE BG)
   ========================================================================== */

:root {
    /* Color Palette - Clean Light Theme */
    --bg-main: #ffffff;
    --bg-alt: #f8fafc;
    --bg-surface: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #ffffff;
    --bg-dark-accent: #0f172a;
    
    --border-light: #e2e8f0;
    --border-card: #e2e8f0;
    --border-focus: #ef4444;

    /* Brand Primary / Emergency Colors */
    --color-primary: #dc2626;       /* Vibrant Emergency Red */
    --color-primary-dark: #b91c1c;
    --color-primary-glow: rgba(220, 38, 38, 0.28);
    --color-primary-light: #fee2e2;
    
    --color-amber: #d97706;         /* Caution / Roadside Amber */
    --color-amber-dark: #b45309;
    --color-amber-light: #fef3c7;
    
    --color-whatsapp: #16a34a;      /* WhatsApp Green */
    --color-whatsapp-dark: #15803d;
    --color-whatsapp-glow: rgba(22, 163, 74, 0.3);
    --color-whatsapp-light: #dcfce7;

    --color-blue: #2563eb;
    --color-blue-light: #dbeafe;
    --color-purple: #7c3aed;
    --color-purple-light: #ede9fe;
    --color-cyan: #0891b2;
    --color-cyan-light: #cffafe;
    --color-emerald: #059669;
    --color-emerald-light: #d1fae5;

    /* High Contrast Typography */
    --text-pure: #0f172a;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-light: #94a3b8;

    /* Typography */
    --font-heading: 'Outfit', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Shadow & Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-card: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
    --shadow-hover: 0 20px 35px -10px rgba(15, 23, 42, 0.12);
    --shadow-glow: 0 0 25px rgba(220, 38, 38, 0.25);
    --shadow-whatsapp: 0 0 25px rgba(22, 163, 74, 0.3);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Setup */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px)); /* Mobile sticky bar spacer */
}

@media (min-width: 992px) {
    body {
        padding-bottom: 0;
    }
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, select, input {
    font-family: inherit;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* ==========================================================================
   TOP EMERGENCY BAR
   ========================================================================== */
.emergency-topbar {
    background: linear-gradient(90deg, #b91c1c 0%, #dc2626 50%, #b91c1c 100%);
    color: #fff;
    font-size: 0.825rem;
    padding: 8px 0;
    position: relative;
    z-index: 100;
}

.topbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
    animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(74, 222, 128, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
    }
}

.topbar-contact {
    display: flex;
    align-items: center;
    gap: 12px;
}

.topbar-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: #fff;
    padding: 3px 10px;
    border-radius: var(--radius-sm);
    background: rgba(0, 0, 0, 0.2);
}

.topbar-link:hover {
    background: rgba(0, 0, 0, 0.35);
}

.topbar-whatsapp {
    background: rgba(0, 0, 0, 0.25);
    color: #dcfce7;
}

/* ==========================================================================
   SITE HEADER & NAVIGATION
   ========================================================================== */
.site-header {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 99;
    padding: 14px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    transition: var(--transition-normal);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--color-primary), #991b1b);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    box-shadow: 0 4px 12px var(--color-primary-glow);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--text-pure);
    line-height: 1.1;
}

.logo-subtitle {
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--color-amber);
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.main-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 6px 4px;
    position: relative;
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

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

.btn-call-header {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    border: 1.5px solid #fecaca;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    color: var(--text-pure);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.btn-call-header:hover {
    border-color: var(--color-primary);
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--color-primary-glow);
}

.pulse-icon {
    font-size: 1.15rem;
    color: var(--color-primary);
    animation: phoneShake 2.5s infinite;
}

@keyframes phoneShake {
    0%, 100% { transform: rotate(0); }
    10%, 30% { transform: rotate(-15deg); }
    20%, 40% { transform: rotate(15deg); }
    50% { transform: rotate(0); }
}

.btn-text-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-text-group .sub-label {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--color-amber-dark);
    letter-spacing: 0.5px;
}

.btn-text-group .main-phone {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-toggle span {
    width: 100%;
    height: 3px;
    background: var(--text-pure);
    border-radius: 3px;
    transition: var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION (WHITE/LIGHT THEME)
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 60px 0 70px 0;
    background: linear-gradient(180deg, #fef2f2 0%, #ffffff 100%);
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
}

.hero-glow-bg {
    position: absolute;
    top: -100px;
    right: 5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.08) 0%, rgba(255,255,255,0) 70%);
    filter: blur(40px);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fee2e2;
    border: 1px solid #fca5a5;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    color: #991b1b;
    margin-bottom: 20px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 50%;
    animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.85rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1px;
    color: var(--text-pure);
    margin-bottom: 18px;
}

.gradient-text {
    background: linear-gradient(135deg, #dc2626 0%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 580px;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

/* Button Component */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 26px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    position: relative;
    text-align: left;
}

.btn i {
    font-size: 1.6rem;
}

.btn-info {
    display: flex;
    flex-direction: column;
}

.btn-title {
    font-size: 1.05rem;
    line-height: 1.1;
}

.btn-sub {
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.95;
    text-transform: none;
    letter-spacing: 0;
}

.btn-emergency {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: #fff;
    box-shadow: 0 8px 25px var(--color-primary-glow);
}

.btn-emergency:hover {
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.45);
}

.pulse-cta {
    animation: ctaGlow 2.5s infinite;
}

@keyframes ctaGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.5);
    }
    50% {
        box-shadow: 0 0 0 14px rgba(220, 38, 38, 0);
    }
}

.btn-whatsapp {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: #fff;
    box-shadow: 0 8px 25px var(--color-whatsapp-glow);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(22, 163, 74, 0.45);
}

/* GPS ONE CLICK LOCATION SHARE BOX */
.gps-share-box {
    background: #f8fafc;
    border: 1.5px dashed #cbd5e1;
    border-radius: var(--radius-md);
    padding: 12px 18px;
    margin-bottom: 28px;
    display: inline-block;
    width: 100%;
    max-width: 580px;
}

.btn-geo-share {
    width: 100%;
    background: #ffffff;
    border: 1.5px solid #bfdbfe;
    color: #1d4ed8;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.btn-geo-share:hover {
    background: #eff6ff;
    border-color: #3b82f6;
    color: #1e40af;
    transform: scale(1.01);
}

.gps-note {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 6px;
    text-align: center;
}

/* TRUST GRID */
.hero-trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 580px;
}

.trust-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

.trust-pill i {
    color: var(--color-amber);
    font-size: 1rem;
}

.text-warning {
    color: #d97706 !important;
}

/* DISPATCH CARD */
.dispatch-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.dispatch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-amber), var(--color-whatsapp));
}

.dispatch-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-light);
}

.dispatch-badge {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-pure);
    letter-spacing: -0.3px;
}

.dispatch-sub {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.radar-scan {
    width: 40px;
    height: 40px;
    background: #fee2e2;
    border: 1px solid #fca5a5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1rem;
    position: relative;
}

.radar-beam {
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1px dashed var(--color-primary);
    animation: radarSpin 4s linear infinite;
}

@keyframes radarSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.form-group label i {
    color: var(--color-amber-dark);
}

.form-control {
    width: 100%;
    background: #f8fafc;
    border: 1.5px solid var(--border-light);
    color: var(--text-pure);
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
    background: #ffffff;
}

.input-with-action {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-action .form-control {
    padding-right: 46px;
}

.btn-inline-geo {
    position: absolute;
    right: 6px;
    background: #e2e8f0;
    border: 1px solid #cbd5e1;
    color: #1d4ed8;
    width: 34px;
    height: 34px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-inline-geo:hover {
    background: #2563eb;
    color: #fff;
}

.btn-submit-dispatch {
    width: 100%;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    border: none;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 6px 20px var(--color-whatsapp-glow);
    transition: var(--transition-normal);
    margin-top: 20px;
}

.btn-submit-dispatch:hover {
    background: linear-gradient(135deg, #22c55e 0%, #166534 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(22, 163, 74, 0.5);
}

.quick-call-alternative {
    margin-top: 14px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.direct-tel-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 800;
    color: var(--color-primary);
    margin-left: 4px;
}

.direct-tel-link:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

/* ==========================================================================
   SECTIONS COMMON STYLING
   ========================================================================== */
.section {
    padding: 85px 0;
    position: relative;
}

.section-header {
    margin-bottom: 50px;
}

.text-center {
    text-align: center;
}

.section-pill {
    display: inline-block;
    background: #fef3c7;
    border: 1px solid #fde68a;
    color: #92400e;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--text-pure);
    line-height: 1.2;
    margin-bottom: 14px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   SERVICES GRID (WHITE / LIGHT THEME)
   ========================================================================== */
.services-section {
    background: #f8fafc;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 26px;
}

.service-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: #cbd5e1;
    box-shadow: var(--shadow-hover);
}

.highlighted-card {
    border-color: #fde68a;
    background: linear-gradient(180deg, #fffbeb 0%, #ffffff 100%);
    box-shadow: 0 4px 20px rgba(217, 119, 6, 0.08);
}

.card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #f59e0b;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
}

.service-icon-box {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.icon-red {
    background: var(--color-primary-light);
    color: var(--color-primary);
}

.icon-amber {
    background: var(--color-amber-light);
    color: var(--color-amber);
}

.icon-blue {
    background: var(--color-blue-light);
    color: var(--color-blue);
}

.icon-emerald {
    background: var(--color-emerald-light);
    color: var(--color-emerald);
}

.icon-purple {
    background: var(--color-purple-light);
    color: var(--color-purple);
}

.icon-cyan {
    background: var(--color-cyan-light);
    color: var(--color-cyan);
}

.service-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-pure);
    margin-bottom: 12px;
}

.service-text {
    font-size: 0.925rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.55;
}

.service-features {
    margin-top: auto;
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 14px;
    border-top: 1px solid var(--border-light);
}

.service-features li {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li i {
    color: var(--color-emerald);
    font-size: 0.85rem;
}

.service-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f1f5f9;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-pure);
    transition: var(--transition-fast);
}

.service-cta:hover {
    background: var(--color-primary);
    color: #fff;
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why-us-section {
    background: #ffffff;
}

.why-us-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.advantages-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 30px;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #f8fafc;
    border: 1px solid var(--border-light);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.advantage-item:hover {
    border-color: #cbd5e1;
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

.adv-icon {
    width: 50px;
    height: 50px;
    background: var(--color-primary-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.35rem;
    flex-shrink: 0;
}

.adv-info h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-pure);
    margin-bottom: 4px;
}

.adv-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

.why-us-stats-card {
    background: linear-gradient(145deg, #0f172a, #1e293b);
    border-radius: var(--radius-lg);
    padding: 34px 28px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    color: #fff;
    box-shadow: var(--shadow-hover);
}

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 15px;
    border-radius: var(--radius-md);
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: #fbbf24;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #cbd5e1;
}

.emergency-callout {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    margin-top: 10px;
}

.emergency-callout i {
    font-size: 1.8rem;
}

.callout-text span {
    display: block;
    font-size: 0.75rem;
    opacity: 0.9;
}

.callout-text strong {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 900;
}

.btn-callout {
    background: #fff;
    color: #991b1b;
    font-weight: 800;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
}

.btn-callout:hover {
    background: #fef2f2;
    transform: scale(1.05);
}

/* ==========================================================================
   HOW IT WORKS (STEPS)
   ========================================================================== */
.steps-section {
    background: #f8fafc;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-bottom: 50px;
}

.step-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 34px 26px;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.active-step {
    border-color: #fecaca;
    background: linear-gradient(180deg, #fff5f5 0%, #ffffff 100%);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    color: #e2e8f0;
    line-height: 1;
}

.step-icon {
    width: 54px;
    height: 54px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-pure);
    margin-bottom: 10px;
}

.step-desc {
    font-size: 0.925rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Banner CTA */
.banner-cta {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: var(--radius-lg);
    padding: 32px 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    color: #fff;
    box-shadow: var(--shadow-card);
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.banner-icon {
    font-size: 2.5rem;
    color: #f87171;
}

.banner-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.banner-content p {
    font-size: 0.95rem;
    color: #cbd5e1;
}

.banner-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-whatsapp-simple {
    background: rgba(34, 197, 94, 0.2);
    border: 1.5px solid #22c55e;
    color: #86efac;
    padding: 12px 22px;
    border-radius: var(--radius-md);
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp-simple:hover {
    background: #22c55e;
    color: #fff;
}

/* ==========================================================================
   PRICE CALCULATOR ESTIMATOR SIMULATOR
   ========================================================================== */
.calc-section {
    background: #ffffff;
}

.calculator-card {
    background: #f8fafc;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    box-shadow: var(--shadow-card);
}

.calc-title {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 900;
    color: var(--text-pure);
    margin-bottom: 10px;
}

.calc-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.calc-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.range-slider {
    width: 100%;
    margin-top: 10px;
    accent-color: var(--color-primary);
    cursor: pointer;
}

.range-value-display {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-top: 4px;
    color: var(--text-secondary);
}

.range-value-display strong {
    color: var(--color-amber-dark);
    font-size: 0.95rem;
}

.calc-features-check {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.checkbox-container input {
    cursor: pointer;
    width: 16px;
    height: 16px;
    accent-color: var(--color-primary);
}

.calc-summary-box {
    background: #ffffff;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.summary-badge {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--color-amber-dark);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 14px;
}

.price-display .currency {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-whatsapp);
}

.price-display .amount {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--text-pure);
    line-height: 1;
}

.price-display .price-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.summary-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.4;
}

.btn-calc-whatsapp {
    background: var(--color-whatsapp);
    color: #fff;
    border: none;
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px var(--color-whatsapp-glow);
}

.btn-calc-whatsapp:hover {
    background: #15803d;
    transform: translateY(-2px);
}

.calc-direct-call {
    display: block;
    margin-top: 14px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary);
}

.calc-direct-call:hover {
    text-decoration: underline;
}

/* ==========================================================================
   REGIONS SECTION
   ========================================================================== */
.regions-section {
    background: #f8fafc;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 14px;
    margin-bottom: 30px;
}

.region-badge {
    background: #ffffff;
    border: 1px solid var(--border-light);
    padding: 14px 18px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.region-badge i {
    color: var(--color-primary);
}

.region-badge:hover {
    border-color: #cbd5e1;
    transform: translateX(4px);
    box-shadow: var(--shadow-card);
}

.region-alert-box {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: var(--radius-md);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #1e40af;
}

.region-alert-box strong {
    color: #1e3a8a;
}

/* ==========================================================================
   REVIEWS & TESTIMONIALS
   ========================================================================== */
.reviews-section {
    background: #ffffff;
}

.overall-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

.overall-rating .stars i {
    color: #f59e0b;
    font-size: 1.1rem;
}

.overall-rating .rating-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.overall-rating strong {
    color: var(--text-pure);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.review-card {
    background: #f8fafc;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
}

.review-stars {
    color: #f59e0b;
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.review-comment {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-style: italic;
    line-height: 1.55;
    margin-bottom: 20px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--border-light);
}

.author-avatar {
    width: 42px;
    height: 42px;
    background: #e2e8f0;
    border: 1px solid #cbd5e1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--text-pure);
    font-size: 0.9rem;
}

.author-info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-pure);
}

.author-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-section {
    background: #f8fafc;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.faq-item.active {
    border-color: #fca5a5;
    box-shadow: var(--shadow-card);
}

.faq-question {
    width: 100%;
    padding: 18px 22px;
    background: transparent;
    border: none;
    color: var(--text-pure);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--color-amber-dark);
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 22px;
}

.faq-item.active .faq-answer {
    max-height: 250px;
    padding-bottom: 18px;
}

.faq-answer p {
    font-size: 0.925rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* ==========================================================================
   GOOGLE MAPS & LOCATION SECTION
   ========================================================================== */
.map-section {
    background: #ffffff;
    border-top: 1px solid var(--border-light);
}

.map-wrapper {
    max-width: 1060px;
    margin: 0 auto;
}

.map-container-card {
    background: #ffffff;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.map-iframe-container {
    position: relative;
    width: 100%;
    height: 420px;
    background: #f1f5f9;
}

.map-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.map-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 24px 30px;
    background: #f8fafc;
    border-top: 1px solid var(--border-light);
}

.map-station-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.station-icon {
    width: 50px;
    height: 50px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.station-text h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-pure);
    margin-bottom: 2px;
}

.station-text p {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.map-actions-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-map-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    transition: var(--transition-normal);
}

.btn-map-navigate {
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-map-navigate:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

.btn-map-call {
    background: #ffffff;
    border: 1.5px solid #fca5a5;
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.btn-map-call:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .map-card-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .map-actions-group {
        width: 100%;
        flex-direction: column;
    }

    .btn-map-action {
        width: 100%;
        justify-content: center;
    }

    .map-iframe-container {
        height: 320px;
    }
}

/* ==========================================================================
   FINAL CTA CARD
   ========================================================================== */
.final-cta-section {
    background: #ffffff;
}

.final-cta-card {
    background: linear-gradient(135deg, #b91c1c 0%, #7f1d1d 100%);
    border-radius: var(--radius-lg);
    padding: 60px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 15px 35px rgba(185, 28, 28, 0.3);
}

.cta-pulse-badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fef08a;
    margin-bottom: 16px;
}

.final-cta-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.final-cta-desc {
    font-size: 1.1rem;
    color: #fee2e2;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.final-btn-group {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.15rem;
}

/* ==========================================================================
   FOOTER & AGENCY SIGNATURE
   ========================================================================== */
.site-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding-top: 60px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo-title {
    color: #fff;
}

.footer-brand .logo-subtitle {
    color: #fbbf24;
}

.footer-text {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-top: 14px;
    line-height: 1.55;
    max-width: 360px;
}

.footer-links h4, .footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    font-size: 0.9rem;
    color: #cbd5e1;
}

.footer-links ul li a:hover {
    color: #f87171;
    padding-left: 4px;
}

.contact-box p {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-box p i {
    color: #fbbf24;
    width: 16px;
}

.contact-box a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-bottom {
    background: #090d16;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.85rem;
    color: #94a3b8;
}

.bottom-container strong {
    color: #fff;
}

.agency-signature {
    font-size: 0.85rem;
    color: #94a3b8;
}

.agency-signature a {
    color: #38bdf8;
    font-weight: 700;
    text-decoration: underline;
    transition: var(--transition-fast);
}

.agency-signature a:hover {
    color: #7dd3fc;
    text-decoration: none;
}

/* ==========================================================================
   STICKY MOBILE ACTION BAR (PREMIUM APP DOCK DESIGN)
   ========================================================================== */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(226, 232, 240, 0.9);
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom, 0px)) 12px;
    z-index: 999;
    box-shadow: 0 -8px 30px rgba(15, 23, 42, 0.1);
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    color: #ffffff;
    font-family: var(--font-heading);
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.sticky-btn:active {
    transform: scale(0.97);
}

.sticky-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.sticky-call {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.35);
}

.sticky-call:hover {
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
}

.sticky-whatsapp {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.35);
}

.sticky-whatsapp:hover {
    background: linear-gradient(135deg, #22c55e 0%, #166534 100%);
}

.sticky-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.15;
}

.sticky-label {
    font-size: 0.65rem;
    font-weight: 800;
    opacity: 0.9;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.sticky-val {
    font-size: 0.925rem;
    font-weight: 900;
    letter-spacing: -0.2px;
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
.toast-notification {
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast-notification.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.toast-icon {
    color: #fbbf24;
    font-size: 1.1rem;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 991px) {
    .main-nav {
        display: none;
    }

    .main-nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        border-bottom: 1px solid var(--border-light);
        padding: 20px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    .main-nav.active .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .mobile-toggle {
        display: flex;
    }

    .btn-call-header {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-us-wrapper {
        grid-template-columns: 1fr;
    }

    .calculator-card {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .bottom-container {
        flex-direction: column;
        text-align: center;
    }

    .mobile-sticky-bar {
        display: grid;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-trust-grid {
        grid-template-columns: 1fr;
    }

    .calc-form .form-row {
        grid-template-columns: 1fr;
    }

    .topbar-contact {
        display: none;
    }

    .emergency-topbar {
        text-align: center;
    }

    .status-indicator {
        justify-content: center;
        width: 100%;
    }
}
