/* ============================================
   ORASCOM GO - Ultra Premium Dark Glass CSS
   ============================================ */

:root {
    /* Orascom Go Earthy Theme */
    --primary: #659276; /* Darker Sage Green */
    --primary-dark: #4b755a;
    --primary-light: #8cb19a;
    --primary-glow: rgba(101, 146, 118, 0.3);
    
    --secondary: #DCCCAC; /* Sand / Beige */
    --secondary-glow: rgba(220, 204, 172, 0.3);
    
    /* Clean Light Theme Backgrounds */
    --bg-primary: #e4efe8; /* Darker Sage/Mint tint for better contrast */
    --bg-secondary: #ffffff;
    --bg-dark: #cbe3d3;
    --bg-card: rgba(220, 204, 172, 0.85); /* Sand / Beige for all cards */
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-light: #ffffff;
    
    --border-color: rgba(0, 0, 0, 0.06);
    --border-glow: rgba(101, 146, 118, 0.1);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 10px 25px var(--primary-glow);
    --shadow-glow-sec: 0 10px 25px var(--secondary-glow);
    
    --font-ar: 'Outfit', 'Cairo', sans-serif;
}

*, *::before, *::after {
    margin: 0; padding: 0; box-sizing: border-box;
}

body {
    font-family: var(--font-ar);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    font-weight: 500;
    overflow-x: hidden;
    position: relative;
}

/* Alternating Section Backgrounds */
.services-section { background: var(--bg-secondary); }
.how-section { background: var(--bg-primary); }
.speeds-section { background: var(--bg-secondary); }
.coverage-section { background: var(--bg-primary); }
.faq-section { background: var(--bg-secondary); }

/* Base animated mesh background effect */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: radial-gradient(circle at 15% 50%, rgba(125, 167, 140, 0.05), transparent 40%),
                radial-gradient(circle at 85% 30%, rgba(194, 208, 153, 0.05), transparent 40%);
    z-index: -1;
    pointer-events: none;
    animation: pulseMesh 15s infinite alternate ease-in-out;
}

@keyframes pulseMesh {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.1); opacity: 1; }
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* === Page Transition Wipe === */
.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-secondary);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transform: translateY(0%);
}
.page-transition-logo {
    width: 350px;
    max-width: 80vw;
    animation: pulseLogo 1.5s infinite alternate ease-in-out;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(0,0,0,0.1);
}
@keyframes pulseLogo {
    from { transform: scale(0.95); opacity: 0.8; filter: drop-shadow(0 0 10px rgba(101, 146, 118,0.3)); }
    to { transform: scale(1.05); opacity: 1; filter: drop-shadow(0 0 20px rgba(101, 146, 118,0.8)); }
}

/* === Preloader === */
body.is-loading {
    overflow: hidden;
}
#preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-secondary);
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader-video-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: contain; background-color: #000; z-index: 0; pointer-events: none;
}
.preloader-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.95));
    z-index: 1; pointer-events: none;
}
#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.preloader-inner { text-align: center; }
.preloader-logo { 
    width: 150px; 
    margin-bottom: 20px; 
    border-radius: 16px; 
}

/* === Navbar === */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.navbar.scrolled {
    padding: 14px 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(101, 146, 118, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.nav-logo img { 
    height: 45px; 
    border-radius: 8px; 
    transition: filter 0.3s ease;
}
.nav-menu { 
    display: flex; 
    gap: 5px; 
    position: relative;
    align-items: center;
}
.nav-indicator {
    position: absolute;
    top: 0;
    height: 100%;
    background: var(--primary-glow);
    border: 1px solid rgba(101, 146, 118, 0.3);
    border-radius: 50px;
    z-index: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    opacity: 0;
    box-shadow: 0 0 15px var(--primary-glow);
}
.nav-link { 
    font-weight: 600; 
    color: var(--text-secondary); 
    transition: color 0.3s, text-shadow 0.3s, transform 0.3s; 
    position: relative; 
    font-size: 1.05rem;
    padding: 8px 20px;
    z-index: 1;
    display: block;
    border-radius: 50px;
}
.nav-link:hover, .nav-link.active { 
    color: var(--primary); 
    text-shadow: 0 0 15px rgba(101, 146, 118, 0.3);
}

/* Nav Toggle Animation */
.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}
.nav-toggle span {
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 11px; }
.nav-toggle span:nth-child(3) { bottom: 0; }
.nav-toggle.active span:nth-child(1) { top: 11px; transform: rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.nav-toggle.active span:nth-child(3) { bottom: 11px; transform: rotate(-45deg); }

/* === Ultra Premium Buttons === */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 12px;
    padding: 14px 32px; border-radius: 50px; font-weight: 700; font-size: 1.05rem;
    cursor: pointer; border: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.1), rgba(255,255,255,0));
    z-index: -1; transition: opacity 0.3s; opacity: 0;
}
.btn:hover::before { opacity: 1; }

.btn-primary {
    background: var(--primary); 
    color: #ffffff; /* High contrast text on neon */
    box-shadow: var(--shadow-glow);
    font-weight: 800;
}
.btn-primary:hover {
    background: var(--text-light);
    color: var(--primary);
    box-shadow: 0 0 35px var(--primary-glow);
    transform: translateY(-3px);
}
.btn-outline {
    border-color: var(--border-color); 
    color: var(--text-primary); 
    background: rgba(0,0,0,0.03);
    backdrop-filter: blur(4px);
}
.btn-outline:hover { 
    background: rgba(0,0,0,0.08); 
    border-color: var(--text-primary);
    transform: translateY(-3px);
}

/* === Hero Section === */
.hero {
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center;
    position: relative; overflow: hidden;
    padding-top: 120px; padding-bottom: 80px;
    background: transparent;
}
/* Glowing hero orbs */
.hero::before {
    content: '';
    position: absolute;
    top: -15%; left: 20%;
    width: 60vw; height: 60vw;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 50%);
    opacity: 0.6; pointer-events: none; z-index: -1;
    filter: blur(100px);
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -10%; right: 10%;
    width: 50vw; height: 50vw;
    background: radial-gradient(circle, var(--secondary-glow) 0%, transparent 50%);
    opacity: 0.5; pointer-events: none; z-index: -1;
    filter: blur(90px);
}

.hero-content {
    max-width: 900px; margin: 0 auto; text-align: center; z-index: 10; position: relative;
}
.hero-title {
    font-size: 3.5rem; font-weight: 900; line-height: 1.2; margin-bottom: 24px;
    letter-spacing: -0.5px;
}
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    text-shadow: 0 5px 20px rgba(101, 146, 118,0.2);
    display: inline-block;
}
.hero-subtitle {
    font-size: 1.3rem; color: var(--text-secondary); margin-bottom: 40px;
    font-weight: 400; max-width: 700px; margin-left: auto; margin-right: auto;
}

.hero-trust-badges {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.trust-badge {
    background: rgba(101, 146, 118, 0.05); 
    border: 1px solid rgba(101, 146, 118, 0.15);
    padding: 10px 22px; 
    border-radius: 50px; 
    font-size: 0.95rem; 
    font-weight: 700;
    display: flex; 
    align-items: center; 
    gap: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    color: var(--text-primary);
}

.trust-badge:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px var(--primary-glow);
}

.trust-badge i {
    font-size: 1.1rem;
    color: var(--primary);
    transition: color 0.3s;
}

.trust-badge:hover i {
    color: white;
}

.hero-buttons { display: flex; justify-content: center; gap: 24px; }

/* Hero Map Graphic - Dark Edition */
.hero-map-wrapper {
    position: relative; max-width: 800px; height: 350px; margin: 60px auto 0;
    perspective: 1200px;
}
.animated-map-svg {
    width: 100%; height: 100%; transform: rotateX(30deg) rotateZ(-5deg); 
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.1));
    transition: transform 0.5s ease;
}
.hero-map-wrapper:hover .animated-map-svg {
    transform: rotateX(20deg) rotateZ(0deg);
}
.map-landmass { fill: var(--bg-secondary); stroke: rgba(0,0,0,0.05); stroke-width: 2; }
.map-route-line { fill: none; stroke: var(--primary); stroke-width: 4; stroke-linecap: round; filter: drop-shadow(0 0 12px var(--primary)); }
.map-point { fill: var(--text-primary); filter: drop-shadow(0 0 10px rgba(0,0,0,0.1)); }
.map-point-pulse { fill: none; stroke: var(--primary); stroke-width: 2; transform-origin: center; animation: radarPulse 2s infinite; }

@keyframes radarPulse {
    0% { transform: scale(0.5); opacity: 1; stroke-width: 4px; }
    100% { transform: scale(3); opacity: 0; stroke-width: 1px; }
}

/* === Sections Global === */
.section { padding: 120px 0; position: relative; z-index: 5; }
.section-header { text-align: center; margin-bottom: 70px; }
.section-tag {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(101, 146, 118, 0.05); color: var(--primary);
    border: 1px solid rgba(101, 146, 118, 0.2);
    padding: 8px 20px; border-radius: 50px; font-weight: 700; margin-bottom: 20px;
    letter-spacing: 1px; font-size: 0.9rem; text-transform: uppercase;
}
.section-title { font-size: 3rem; font-weight: 800; margin-bottom: 20px; letter-spacing: -0.5px; }
.section-desc { font-size: 1.2rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

/* === World-Class Glass Card === */
.glass-card {
    background: var(--bg-card); 
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color); border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3); 
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative; overflow: hidden;
}
.glass-card::before {
    content: "";
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.05) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none; z-index: 1;
}
.glass-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0,0,0,0.15);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(0,0,0,0.05);
}

/* GSAP Reveal Helper Global - Disabled to prevent hiding bugs */
.gs-reveal { visibility: visible; }

/* === Services Section === */
.services-section { background: var(--bg-secondary); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; perspective: 1200px; }
@keyframes floatGentle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.service-card { 
    padding: 50px 40px; 
    text-align: center; 
    background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(220,204,172,0.3));
    border: 1px solid rgba(101,146,118,0.15);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    animation: floatGentle 6s ease-in-out infinite;
}
.service-card::after {
    content: '';
    position: absolute;
    top: 0; right: 0; width: 100%; height: 5px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(101,146,118,0.12);
    border-color: rgba(101,146,118,0.3);
}
.service-card:hover::after {
    transform: scaleX(1);
}
.service-icon {
    width: 85px; height: 85px; 
    background: rgba(101, 146, 118, 0.08);
    border: 1px solid rgba(101, 146, 118, 0.2);
    border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
    font-size: 2.2rem; color: var(--primary); margin: 0 auto 28px;
    box-shadow: inset 0 0 20px rgba(101, 146, 118, 0.05);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
}
.service-card:hover .service-icon {
    background: var(--primary); 
    color: #ffffff;
    box-shadow: 0 15px 35px var(--primary-glow);
    transform: scale(1.15);
}
.service-card h3 { font-size: 1.6rem; margin-bottom: 18px; font-weight: 800; color: var(--text-primary); transition: color 0.3s; position: relative; z-index: 2; }
.service-card:hover h3 { color: var(--primary); }
.service-card p { color: var(--text-secondary); font-size: 1.05rem; position: relative; z-index: 2; }

/* === How it Works === */
.process-wrapper { position: relative; max-width: 800px; margin: 0 auto; padding-right: 50px; }
.process-line-svg { position: absolute; right: 24px; top: 0; width: 4px; height: 100%; border-radius: 4px; }
.process-line-bg { stroke: rgba(0,0,0,0.05); stroke-width: 4; }
.process-line-fill { stroke: var(--primary); stroke-width: 4; filter: drop-shadow(0 0 8px var(--primary-glow)); }
.process-step { display: flex; align-items: flex-start; margin-bottom: 50px; position: relative; }
.step-dot {
    position: absolute; right: -50px; top: 20px; width: 48px; height: 48px;
    background: var(--bg-secondary); border: 2px solid var(--primary); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: var(--primary);
    z-index: 2; box-shadow: 0 0 0 8px var(--bg-primary), 0 0 20px var(--primary-glow);
}
.step-content { padding: 40px; width: 100%; border-radius: var(--radius-lg); }
.step-content h3 { font-size: 1.5rem; margin-bottom: 10px; color: var(--text-primary); }
.step-content p { font-size: 1.1rem; color: var(--text-secondary); }

/* === Speeds Section === */
.speeds-section { background: var(--bg-secondary); }
.speeds-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.speed-card {
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(255,255,255,0.4) 100%);
    padding: 45px 30px; border-radius: var(--radius-lg); text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5); 
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.8); 
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1); 
    cursor: default;
    position: relative;
    overflow: hidden;
    animation: floatGentle 5s ease-in-out infinite alternate;
}
.speed-card:nth-child(even) { animation-delay: 1s; }
.speed-card:nth-child(3n) { animation-delay: 2s; }
.speed-card::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 0%, var(--primary-glow), transparent 70%);
    opacity: 0; transition: opacity 0.5s ease;
    z-index: 0; pointer-events: none;
}
.speed-card:hover { 
    transform: translateY(-8px); 
    border-color: rgba(101, 146, 118, 0.3);
    box-shadow: 0 20px 40px rgba(101, 146, 118, 0.12), inset 0 1px 0 rgba(255, 255, 255, 1); 
}
.speed-card:hover::before { opacity: 1; }
.speed-icon { font-size: 2.8rem; color: var(--primary); margin-bottom: 25px; filter: drop-shadow(0 5px 15px var(--primary-glow)); position: relative; z-index: 2; transition: transform 0.4s ease; }
.speed-card:hover .speed-icon { transform: scale(1.1); color: var(--primary-dark); }
.speed-card h3 { font-size: 1.4rem; margin-bottom: 15px; font-weight: 800; color: var(--text-primary); position: relative; z-index: 2; letter-spacing: -0.5px; }
.speed-time { font-size: 1.1rem; font-weight: 700; color: var(--text-secondary); position: relative; z-index: 2; padding: 10px 20px; background: rgba(0,0,0,0.03); border-radius: 50px; display: inline-block; border: 1px solid rgba(0,0,0,0.04); }
.speed-time span { color: var(--primary); font-weight: 900; font-size: 1.4rem; margin: 0 2px; }

/* === Coverage Section === */
.coverage-section { padding: 100px 0; }
.coverage-container { 
    display: flex; align-items: center; gap: 60px; 
    background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(220,204,172,0.3) 100%);
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 30px 60px rgba(101,146,118,0.08), inset 0 2px 0 rgba(255,255,255,1);
    border: 1px solid rgba(255,255,255,0.6);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}
.coverage-container::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 60%);
    pointer-events: none;
}
.coverage-content { flex: 1; position: relative; z-index: 2; }
@keyframes radarSpin { 100% { transform: rotate(360deg); } }
@keyframes radarPulse { 
    0% { transform: scale(0.8); opacity: 0; } 
    50% { opacity: 0.3; } 
    100% { transform: scale(1.5); opacity: 0; } 
}
.coverage-map-visual { 
    flex: 1; 
    position: relative; 
    height: 500px; 
    background: radial-gradient(circle, rgba(101, 146, 118, 0.12) 0%, rgba(101, 146, 118, 0.03) 60%, transparent 75%); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    box-shadow: 0 0 60px rgba(101, 146, 118, 0.08), inset 0 0 40px rgba(255,255,255,0.6);
    border: 1px solid rgba(255, 255, 255, 0.5);
}
.gov-label {
    position: absolute; top: -35px; left: 50%; transform: translateX(-50%);
    background: rgba(255,255,255,0.9); color: var(--primary-dark); padding: 4px 12px; border-radius: 8px; 
    font-weight: 800; font-size: 0.95rem; white-space: nowrap; box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid rgba(101,146,118,0.2); backdrop-filter: blur(5px);
}
.gov-dot {
    position: absolute; width: 16px; height: 16px; background: var(--primary); border-radius: 50%;
    box-shadow: 0 0 20px 5px var(--primary-glow); animation: pulseMapDot 2s infinite; cursor: pointer;
}
@keyframes pulseMapDot {
    0% { box-shadow: 0 0 0 0 rgba(101, 146, 118, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(101, 146, 118, 0); }
    100% { box-shadow: 0 0 0 0 rgba(101, 146, 118, 0); }
}
.gov-dot::after {
    content: attr(data-tooltip); position: absolute; top: -45px; left: 50%; transform: translateX(-50%);
    background: var(--text-light); color: #000; padding: 6px 14px; border-radius: 8px; font-weight: 700; font-size: 0.85rem;
    opacity: 0; transition: 0.3s; pointer-events: none; white-space: nowrap; box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.gov-dot:hover::after { opacity: 1; top: -50px; }
.coverage-filters { display: flex; gap: 12px; margin-bottom: 30px; }
.filter-btn { padding: 10px 24px; border-radius: 50px; border: 1px solid var(--border-color); background: rgba(0,0,0,0.03); color: var(--text-secondary); cursor: pointer; font-weight: 600; transition: 0.3s; }
.filter-btn:hover { background: rgba(0,0,0,0.1); color: var(--text-primary); }
.filter-btn.active { background: var(--primary); color: #000; border-color: var(--primary); box-shadow: 0 0 15px var(--primary-glow); }
.coverage-list li { margin-bottom: 16px; font-size: 1.2rem; display: flex; align-items: center; background: var(--bg-card); padding: 16px 20px; border-radius: var(--radius-md); border: 1px solid var(--border-color); }
.coverage-list i { color: var(--primary); width: 30px; font-size: 1.4rem; }
.coverage-list span { color: var(--text-secondary); font-size: 0.95rem; margin-right: auto; }

/* End of Content Styles */

/* Cleaned Up Legacy Sections */
/* === FAQ === */
.faq-section { background: var(--bg-secondary); }
.faq-container { max-width: 800px; }
.faq-item { background: var(--bg-card); margin-bottom: 20px; border-radius: var(--radius-md); border: 1px solid var(--border-color); overflow: hidden; transition: 0.4s; }
.faq-item:hover { border-color: rgba(0,0,0,0.15); box-shadow: var(--shadow-md); }
.faq-question { padding: 25px 30px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 700; font-size: 1.2rem; color: var(--text-primary); }
.faq-answer { padding: 0 30px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; color: var(--text-secondary); font-size: 1.05rem; }
.faq-item.active .faq-answer { padding: 0 30px 25px 30px; max-height: 300px; }
.faq-item.active .faq-icon { transform: rotate(180deg); color: var(--primary); text-shadow: 0 0 10px var(--primary-glow); }

/* === Why Us Section === */
.why-us-section { background: var(--bg-primary); }

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    text-align: center;
    padding: 50px 35px 45px;
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, rgba(255,255,255,0.95) 0%, rgba(220,204,172,0.2) 100%);
    border: 1px solid rgba(101, 146, 118, 0.1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.why-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(101, 146, 118, 0.15);
    border-color: rgba(101, 146, 118, 0.25);
}

.why-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.why-icon-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 28px;
}

.why-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    position: relative;
    z-index: 2;
    box-shadow: 0 12px 30px var(--primary-glow);
    transition: all 0.4s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 18px 40px rgba(101, 146, 118, 0.35);
}

.why-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--primary-glow);
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

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

.why-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 14px;
    transition: color 0.3s;
}

.why-card:hover h3 {
    color: var(--primary);
}

.why-card p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* === How it Works === */
.process-wrapper { 
    position: relative; 
    max-width: 800px; 
    margin: 0 auto; 
    padding-right: 60px; 
}
.process-line-svg { 
    position: absolute; 
    right: 28px; 
    top: 0; 
    width: 4px; 
    height: 100%; 
}
.process-line-bg { stroke: rgba(0,0,0,0.05); stroke-width: 4; fill: none; }
.process-line-fill { stroke: var(--primary); stroke-width: 4; fill: none; filter: drop-shadow(0 0 8px var(--primary-glow)); }

.process-step { 
    display: flex; 
    align-items: center; 
    margin-bottom: 40px; 
    position: relative; 
}
.step-dot {
    position: absolute; 
    right: -52px; 
    top: 50%;
    transform: translateY(-50%);
    width: 44px; 
    height: 44px;
    background: var(--bg-secondary); 
    border: 2px solid var(--primary); 
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: var(--primary);
    z-index: 2; 
    box-shadow: 0 0 0 6px var(--bg-primary), 0 0 15px var(--primary-glow);
    transition: 0.4s;
}
.step-content { 
    padding: 30px 40px; 
    width: 100%; 
    border-radius: var(--radius-lg); 
    background: var(--bg-card);
    text-align: right;
    border: 1px solid rgba(0,0,0,0.05);
}
.step-content h3 { font-size: 1.6rem; margin-bottom: 8px; color: var(--text-primary); font-weight: 800; }
.step-content p { font-size: 1.1rem; color: var(--text-secondary); }

/* === Speeds Section === */
.speeds-section { background: var(--bg-secondary); }
.speeds-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.speed-card {
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(255,255,255,0.4) 100%);
    padding: 45px 30px; border-radius: var(--radius-lg); text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5); 
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.8); 
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1); 
    cursor: default;
    position: relative;
    overflow: hidden;
    animation: floatGentle 5s ease-in-out infinite alternate;
}
.speed-card:nth-child(even) { animation-delay: 1s; }
.speed-card:nth-child(3n) { animation-delay: 2s; }
.speed-card::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 0%, var(--primary-glow), transparent 70%);
    opacity: 0; transition: opacity 0.5s ease;
    z-index: 0; pointer-events: none;
}
.speed-card:hover { 
    transform: translateY(-8px); 
    border-color: rgba(101, 146, 118, 0.3);
    box-shadow: 0 20px 40px rgba(101, 146, 118, 0.12), inset 0 1px 0 rgba(255, 255, 255, 1); 
}
.speed-card:hover::before { opacity: 1; }
.speed-icon { font-size: 2.8rem; color: var(--primary); margin-bottom: 25px; filter: drop-shadow(0 5px 15px var(--primary-glow)); position: relative; z-index: 2; transition: transform 0.4s ease; }
.speed-card:hover .speed-icon { transform: scale(1.1); color: var(--primary-dark); }
.speed-card h3 { font-size: 1.4rem; margin-bottom: 15px; font-weight: 800; color: var(--text-primary); position: relative; z-index: 2; letter-spacing: -0.5px; }
.speed-time { font-size: 1.1rem; font-weight: 700; color: var(--text-secondary); position: relative; z-index: 2; padding: 10px 20px; background: rgba(0,0,0,0.03); border-radius: 50px; display: inline-block; border: 1px solid rgba(0,0,0,0.04); }
.speed-time span { color: var(--primary); font-weight: 900; font-size: 1.4rem; margin: 0 2px; }

/* === Coverage Section === */
.coverage-section { padding: 100px 0; }
.coverage-container { 
    display: flex; align-items: center; gap: 60px; 
    background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(220,204,172,0.3) 100%);
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 30px 60px rgba(101,146,118,0.08), inset 0 2px 0 rgba(255,255,255,1);
    border: 1px solid rgba(255,255,255,0.6);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}
.coverage-container::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 60%);
    pointer-events: none;
}
.coverage-content { flex: 1; position: relative; z-index: 2; }
@keyframes radarSpin { 100% { transform: rotate(360deg); } }
@keyframes radarPulse { 
    0% { transform: scale(0.8); opacity: 0; } 
    50% { opacity: 0.3; } 
    100% { transform: scale(1.5); opacity: 0; } 
}
.coverage-map-visual { 
    flex: 1; 
    position: relative; 
    height: 500px; 
    background: radial-gradient(circle, rgba(101, 146, 118, 0.12) 0%, rgba(101, 146, 118, 0.03) 60%, transparent 75%); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    box-shadow: 0 0 60px rgba(101, 146, 118, 0.08), inset 0 0 40px rgba(255,255,255,0.6);
    border: 1px solid rgba(255, 255, 255, 0.5);
}
.gov-label {
    position: absolute; top: -35px; left: 50%; transform: translateX(-50%);
    background: rgba(255,255,255,0.9); color: var(--primary-dark); padding: 4px 12px; border-radius: 8px; 
    font-weight: 800; font-size: 0.95rem; white-space: nowrap; box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid rgba(101,146,118,0.2); backdrop-filter: blur(5px);
}
.gov-dot {
    position: absolute; width: 16px; height: 16px; background: var(--primary); border-radius: 50%;
    box-shadow: 0 0 20px 5px var(--primary-glow); animation: pulseMapDot 2s infinite; cursor: pointer;
}
@keyframes pulseMapDot {
    0% { box-shadow: 0 0 0 0 rgba(101, 146, 118, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(101, 146, 118, 0); }
    100% { box-shadow: 0 0 0 0 rgba(101, 146, 118, 0); }
}
.gov-dot::after {
    content: attr(data-tooltip); position: absolute; top: -45px; left: 50%; transform: translateX(-50%);
    background: var(--text-light); color: #000; padding: 6px 14px; border-radius: 8px; font-weight: 700; font-size: 0.85rem;
    opacity: 0; transition: 0.3s; pointer-events: none; white-space: nowrap; box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.gov-dot:hover::after { opacity: 1; top: -50px; }
.coverage-filters { display: flex; gap: 12px; margin-bottom: 30px; }
.filter-btn { padding: 10px 24px; border-radius: 50px; border: 1px solid var(--border-color); background: rgba(0,0,0,0.03); color: var(--text-secondary); cursor: pointer; font-weight: 600; transition: 0.3s; }
.filter-btn:hover { background: rgba(0,0,0,0.1); color: var(--text-primary); }
.filter-btn.active { background: var(--primary); color: #000; border-color: var(--primary); box-shadow: 0 0 15px var(--primary-glow); }
.coverage-list li { margin-bottom: 16px; font-size: 1.2rem; display: flex; align-items: center; background: var(--bg-card); padding: 16px 20px; border-radius: var(--radius-md); border: 1px solid var(--border-color); }
.coverage-list i { color: var(--primary); width: 30px; font-size: 1.4rem; }
.coverage-list span { color: var(--text-secondary); font-size: 0.95rem; margin-right: auto; }

/* End of Content Styles */

/* Cleaned Up Legacy Sections */
/* === FAQ === */
.faq-section { background: var(--bg-secondary); }
.faq-container { max-width: 800px; }
.faq-item { background: var(--bg-card); margin-bottom: 20px; border-radius: var(--radius-md); border: 1px solid var(--border-color); overflow: hidden; transition: 0.4s; }
.faq-item:hover { border-color: rgba(0,0,0,0.15); box-shadow: var(--shadow-md); }
.faq-question { padding: 25px 30px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 700; font-size: 1.2rem; color: var(--text-primary); }
.faq-answer { padding: 0 30px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; color: var(--text-secondary); font-size: 1.05rem; }
.faq-item.active .faq-answer { padding: 0 30px 25px 30px; max-height: 300px; }
.faq-item.active .faq-icon { transform: rotate(180deg); color: var(--primary); text-shadow: 0 0 10px var(--primary-glow); }


/* === Footer (Earthy Custom) === */
/* === Footer (Premium Earthy Slim) === */
.footer { 
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding-top: 50px;
    position: relative; overflow: hidden; z-index: 1;
    color: white;
}
.footer::before {
    content: '';
    position: absolute; top: -20%; right: -10%; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    z-index: -1; pointer-events: none;
}
.footer-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 30px; 
    padding-bottom: 40px; 
    position: relative; 
    z-index: 2; 
    align-items: start; 
}

/* Brand Header */
.brand-header { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }
.footer-logo { height: 40px; background: #ffffff; padding: 5px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.brand-title h3 { color: #ffffff; margin: 0; font-size: 1.1rem; font-weight: 800; }
.brand-title span { color: #f0fdf4; font-size: 0.8rem; font-weight: 600; opacity: 0.8; }

.footer h4 { 
    margin-bottom: 20px; 
    font-weight: 900; 
    color: #ffffff; 
    font-size: 1.1rem; 
    position: relative; 
    display: inline-block; 
    padding-bottom: 8px;
}
.footer h4::after { 
    content: ''; 
    position: absolute; 
    bottom: 0; 
    right: 0; 
    width: 30px; 
    height: 3px; 
    background: #ffffff; 
    border-radius: 4px;
}

.footer-brand-col p { 
    font-size: 0.9rem; 
    line-height: 1.6; 
    margin: 15px 0; 
    opacity: 0.8;
}

.footer-links-col ul li { margin-bottom: 10px; }
.footer-links-col a { 
    color: #ffffff; 
    font-size: 0.9rem; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    transition: 0.3s; 
    font-weight: 600;
}
.footer-links-col a:hover { 
    transform: translateX(-5px);
    opacity: 0.7;
}

.footer-contact-col { 
    display: flex; 
    flex-direction: column; 
    gap: 10px; 
}
.contact-item { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    font-size: 0.9rem;
    font-weight: 600;
}
.contact-item i { 
    width: 32px; 
    height: 32px; 
    background: rgba(255,255,255,0.15); 
    color: white; 
    border-radius: 8px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 0.9rem;
}

.footer-socials { display: flex; gap: 10px; margin-bottom: 15px; }
.footer-socials a {
    width: 35px; height: 35px; background: rgba(255,255,255,0.15);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: white; transition: 0.3s; font-size: 1rem;
}
.footer-socials a:hover { background: white; color: var(--primary); transform: translateY(-3px); }

.btn-whatsapp-footer { 
    background: white; 
    color: var(--primary); 
    padding: 12px; 
    border-radius: 10px; 
    font-weight: 800; 
    text-align: center; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 8px; 
    font-size: 0.9rem;
    transition: 0.3s;
}
.btn-whatsapp-footer:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.footer-bottom { 
    background: rgba(0,0,0,0.1); 
    padding: 15px 0; 
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* =============================================
   RESPONSIVE DESIGN - All Devices
   ============================================= */

/* --- Mobile Menu Overlay --- */
.nav-menu.mobile-open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: #ffffff;
    z-index: 99999;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 80px 20px 40px;
    animation: menuSlideIn 0.4s ease;
}

@keyframes menuSlideIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.nav-menu.mobile-open .nav-link {
    font-size: 1.6rem;
    padding: 20px 40px;
    color: var(--text-primary);
    font-weight: 800;
    border-radius: 20px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 320px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.04);
    background: rgba(101, 146, 118, 0.03);
}

.nav-menu.mobile-open .nav-link:hover,
.nav-menu.mobile-open .nav-link.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 8px 25px var(--primary-glow);
    transform: scale(1.02);
}

/* Mobile menu toggle z-index fix */
.nav-toggle {
    position: relative;
    z-index: 999999;
}

/* --- Small Laptop (max-width: 1200px) --- */
@media (max-width: 1200px) {
    .container { padding: 0 30px; }
    .hero-title { font-size: 3rem; }
    .section-title { font-size: 2.5rem; }
    .coverage-container { padding: 45px; gap: 40px; }
    .coverage-map-visual { height: 400px; }
    .service-card { padding: 40px 30px; }
    .speeds-grid { gap: 18px; }
}

/* --- Tablet (max-width: 992px) --- */
@media (max-width: 992px) {
    .nav-menu { display: none; }
    .nav-toggle { display: block; }
    .nav-container { gap: 10px; }
    .nav-actions { display: flex; align-items: center; gap: 10px; }

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

    /* Hero */
    .hero { padding-top: 100px; padding-bottom: 60px; min-height: auto; }
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.15rem; margin-bottom: 30px; }
    .hero-buttons { flex-wrap: wrap; gap: 16px; }
    .hero-buttons .btn { width: 100%; max-width: 300px; }

    /* Trust Badges */
    .hero-trust-badges { gap: 12px; }
    .trust-badge { padding: 8px 16px; font-size: 0.85rem; }

    /* Services */
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .service-card { padding: 35px 25px; }
    .service-icon { width: 70px; height: 70px; font-size: 1.8rem; }
    .service-card h3 { font-size: 1.3rem; }

    /* Why Us */
    .why-us-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .why-card { padding: 40px 25px 35px; }
    .why-icon { width: 75px; height: 75px; font-size: 1.8rem; }
    .why-card h3 { font-size: 1.3rem; }

    /* Speeds */
    .speeds-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .speed-card { padding: 35px 20px; }
    .speed-icon { font-size: 2.2rem; }
    .speed-card h3 { font-size: 1.2rem; }

    /* Coverage */
    .coverage-container { 
        flex-direction: column; 
        padding: 40px 30px; 
        gap: 30px; 
        border-radius: 30px; 
    }
    .coverage-map-visual { 
        width: 100%; 
        height: 350px; 
        border-radius: 30px; 
    }
    .coverage-filters { flex-wrap: wrap; }

    /* Process / How it Works */
    .process-wrapper { padding-right: 50px; }
    .step-content { padding: 25px 30px; }
    .step-content h3 { font-size: 1.3rem; }

    /* Section Titles */
    .section-title { font-size: 2.2rem; }
    .section-desc { font-size: 1.05rem; }
}

/* --- Tablet Portrait / Large Phone (max-width: 768px) --- */
@media (max-width: 768px) {
    .container { padding: 0 20px; }

    .section { padding: 60px 0; }
    .section-header { margin-bottom: 40px; }
    .section-title { font-size: 1.9rem; }
    .section-desc { font-size: 1rem; }
    .section-tag { font-size: 0.8rem; padding: 6px 16px; }

    /* Navbar */
    .navbar { padding: 12px 0; }
    .nav-logo img { height: 36px; }
    .nav-actions .btn { padding: 8px 16px; font-size: 0.8rem; gap: 6px; }
    .nav-actions { gap: 8px; }

    /* Hero */
    .hero { padding-top: 90px; padding-bottom: 50px; }
    .hero-title { font-size: 2rem; margin-bottom: 18px; }
    .hero-subtitle { font-size: 1rem; margin-bottom: 25px; max-width: 100%; }
    .hero-trust-badges { gap: 10px; margin-bottom: 30px; }
    .trust-badge { padding: 8px 14px; font-size: 0.8rem; }
    .hero-buttons { flex-direction: column; align-items: center; gap: 14px; }
    .hero-buttons .btn { width: 100%; max-width: 320px; padding: 16px 24px; }

    /* Services */
    .services-grid { grid-template-columns: 1fr; gap: 18px; }
    .service-card { 
        padding: 30px 24px; 
        animation: none; 
    }
    .service-icon { width: 65px; height: 65px; font-size: 1.6rem; margin-bottom: 20px; }
    .service-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
    .service-card p { font-size: 0.95rem; }

    /* Why Us */
    .why-us-grid { grid-template-columns: 1fr; gap: 18px; }
    .why-card { padding: 35px 25px 30px; }
    .why-icon { width: 70px; height: 70px; font-size: 1.6rem; }
    .why-card h3 { font-size: 1.2rem; }
    .why-card p { font-size: 0.95rem; }

    /* Speeds */
    .speeds-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .speed-card { 
        padding: 30px 15px; 
        animation: none; 
    }
    .speed-icon { font-size: 2rem; margin-bottom: 15px; }
    .speed-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
    .speed-time { font-size: 0.95rem; padding: 8px 14px; }
    .speed-time span { font-size: 1.2rem; }

    /* Coverage */
    .coverage-section { padding: 60px 0; }
    .coverage-container { 
        flex-direction: column; 
        padding: 30px 20px; 
        border-radius: 24px; 
        gap: 25px; 
    }
    .coverage-map-visual { 
        height: 280px; 
        border-radius: 24px;
        width: 100%;
        overflow: hidden;
    }
    .coverage-map-visual img { position: relative !important; width: 100% !important; height: 100% !important; }
    .coverage-filters { gap: 8px; flex-wrap: wrap; justify-content: center; }
    .filter-btn { padding: 8px 18px; font-size: 0.85rem; }
    .coverage-list li { font-size: 1rem; padding: 14px 16px; }
    .gov-label { font-size: 0.75rem; padding: 3px 8px; top: -28px; }
    .gov-dot { width: 12px; height: 12px; }

    /* Process / How it Works */
    .process-wrapper { padding-right: 45px; }
    .step-dot { 
        width: 36px; height: 36px; 
        right: -45px; 
        font-size: 0.8rem;
        box-shadow: 0 0 0 5px var(--bg-primary), 0 0 10px var(--primary-glow);
    }
    .step-content { padding: 22px 20px; }
    .step-content h3 { font-size: 1.15rem; }
    .step-content p { font-size: 0.95rem; }
    .process-line-svg { right: 22px; }

    /* FAQ */
    .faq-question { padding: 20px 20px; font-size: 1rem; }
    .faq-answer { font-size: 0.95rem; }
    .faq-item.active .faq-answer { padding: 0 20px 20px 20px; }

    /* Footer */
    .footer { text-align: center; padding-top: 40px; }
    .footer-grid { 
        grid-template-columns: 1fr; 
        gap: 35px; 
        text-align: center; 
    }
    .footer h4 { 
        font-size: 1.15rem; 
        margin-bottom: 18px; 
    }
    .footer h4::after { 
        right: 50%; 
        transform: translateX(50%); 
    }

    /* Brand column */
    .brand-header { 
        justify-content: center; 
        flex-direction: column; 
        gap: 12px; 
        align-items: center; 
    }
    .footer-logo { height: 50px; padding: 6px; border-radius: 12px; }
    .brand-title { text-align: center; }
    .brand-title h3 { font-size: 1.2rem; }
    .brand-title span { font-size: 0.85rem; }
    .footer-brand-col p { 
        text-align: center; 
        font-size: 0.92rem; 
        line-height: 1.8; 
        max-width: 340px; 
        margin: 15px auto 0; 
    }

    /* Links column */
    .footer-links-col ul { 
        display: flex; 
        flex-direction: column; 
        gap: 12px; 
    }
    .footer-links-col a { 
        justify-content: center; 
        font-size: 1rem; 
        padding: 10px 0; 
        border-bottom: 1px solid rgba(255,255,255,0.08); 
    }
    .footer-links-col li:last-child a { border-bottom: none; }

    /* Contact column */
    .footer-contact-col { gap: 14px; align-items: center; }
    .contact-item { 
        justify-content: center; 
        font-size: 0.95rem; 
        gap: 10px;
        flex-wrap: wrap;
    }
    .contact-item i { 
        width: 36px; 
        height: 36px; 
        font-size: 0.95rem; 
        border-radius: 10px;
        flex-shrink: 0;
    }

    /* Social column */
    .footer-socials { 
        justify-content: center; 
        gap: 12px; 
    }
    .footer-socials a { 
        width: 42px; 
        height: 42px; 
        font-size: 1.1rem; 
    }
    .btn-whatsapp-footer { 
        max-width: 300px; 
        margin: 0 auto; 
        padding: 14px 20px; 
        font-size: 1rem; 
        border-radius: 14px;
        font-weight: 800;
    }

    /* Footer bottom */
    .footer-bottom { padding: 16px 0; }
    .footer-bottom > .container > div { 
        flex-direction: column !important; 
        gap: 10px !important; 
    }
    .footer-bottom img { height: 45px !important; }
    .footer-bottom span { display: none !important; }
    .footer-bottom p { font-size: 0.85rem !important; opacity: 0.7 !important; }

    /* Buttons */
    .btn { padding: 12px 24px; font-size: 0.95rem; }
    .btn-lg { padding: 14px 28px; font-size: 1rem; }

    /* Page transition */
    .page-transition-logo { width: 200px; }
    .preloader-logo { width: 120px; }
}

/* --- Small Phone (max-width: 480px) --- */
@media (max-width: 480px) {
    .container { padding: 0 16px; }

    .section { padding: 50px 0; }
    .section-title { font-size: 1.6rem; letter-spacing: 0; }
    .section-desc { font-size: 0.9rem; }
    .section-tag { font-size: 0.75rem; padding: 5px 12px; gap: 6px; }

    /* Navbar */
    .navbar { padding: 10px 0; }
    .nav-logo img { height: 34px; }
    .nav-actions .btn { padding: 8px 14px; font-size: 0.8rem; gap: 6px; }
    .nav-toggle { width: 26px; height: 20px; }

    /* Hero */
    .hero { padding-top: 80px; padding-bottom: 40px; }
    .hero-title { font-size: 1.65rem; line-height: 1.3; margin-bottom: 14px; }
    .hero-subtitle { font-size: 0.9rem; margin-bottom: 20px; }
    .hero-trust-badges { gap: 8px; margin-bottom: 25px; }
    .trust-badge { 
        padding: 6px 12px; 
        font-size: 0.75rem; 
        gap: 6px;
    }
    .trust-badge i { font-size: 0.85rem; }
    .hero-buttons .btn { padding: 14px 20px; font-size: 0.95rem; }

    /* Services */
    .service-card { padding: 24px 18px; border-radius: var(--radius-md); }
    .service-icon { width: 56px; height: 56px; font-size: 1.4rem; margin-bottom: 16px; }
    .service-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
    .service-card p { font-size: 0.88rem; }

    /* Why Us */
    .why-card { padding: 28px 18px 24px; border-radius: var(--radius-md); }
    .why-icon { width: 60px; height: 60px; font-size: 1.4rem; }
    .why-icon-wrap { margin-bottom: 18px; }
    .why-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
    .why-card p { font-size: 0.88rem; }

    /* Speeds */
    .speeds-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .speed-card { padding: 22px 12px; border-radius: var(--radius-md); }
    .speed-icon { font-size: 1.6rem; margin-bottom: 12px; }
    .speed-card h3 { font-size: 0.95rem; margin-bottom: 8px; }
    .speed-time { font-size: 0.82rem; padding: 6px 10px; }
    .speed-time span { font-size: 1rem; }

    /* Coverage */
    .coverage-container { padding: 24px 16px; border-radius: 20px; }
    .coverage-map-visual { height: 220px; border-radius: 20px; }
    .coverage-list li { font-size: 0.9rem; padding: 12px 14px; }
    .filter-btn { padding: 7px 14px; font-size: 0.78rem; }
    .gov-label { font-size: 0.65rem; padding: 2px 6px; top: -22px; }
    .gov-dot { width: 10px; height: 10px; }

    /* Process */
    .process-wrapper { padding-right: 40px; }
    .step-dot { 
        width: 30px; height: 30px; 
        right: -38px; 
        font-size: 0.7rem; 
        box-shadow: 0 0 0 4px var(--bg-primary);
    }
    .step-dot i { font-size: 0.6rem; }
    .process-line-svg { right: 18px; }
    .step-content { padding: 18px 16px; border-radius: var(--radius-md); }
    .step-content h3 { font-size: 1.05rem; }
    .step-content p { font-size: 0.88rem; }
    .process-step { margin-bottom: 25px; }

    /* FAQ */
    .faq-question { padding: 16px 16px; font-size: 0.92rem; }
    .faq-question h3 { font-size: 0.92rem; }
    .faq-answer { font-size: 0.88rem; }
    .faq-item.active .faq-answer { padding: 0 16px 16px 16px; }
    .faq-icon { font-size: 0.8rem; }

    /* Footer */
    .footer { padding-top: 30px; }
    .footer-grid { gap: 28px; }
    .footer h4 { font-size: 1rem; margin-bottom: 14px; }
    .brand-header { gap: 10px; }
    .footer-logo { height: 42px; }
    .brand-title h3 { font-size: 1.05rem; }
    .footer-brand-col p { font-size: 0.85rem; max-width: 300px; }
    .footer-links-col a { font-size: 0.9rem; padding: 8px 0; }
    .contact-item { font-size: 0.85rem; }
    .contact-item i { width: 32px; height: 32px; font-size: 0.85rem; }
    .footer-socials a { width: 38px; height: 38px; font-size: 1rem; }
    .btn-whatsapp-footer { 
        font-size: 0.9rem; 
        padding: 12px 16px; 
        max-width: 260px; 
        border-radius: 12px; 
    }
    .footer-bottom { padding: 12px 0; }
    .footer-bottom img { height: 38px !important; }
    .footer-bottom p { font-size: 0.75rem !important; }

    /* Page transition */
    .page-transition-logo { width: 160px; }
    .preloader-logo { width: 100px; }

    /* Buttons */
    .btn { padding: 10px 20px; font-size: 0.88rem; gap: 8px; }

    /* Glass card - reduce heavy shadows on mobile */
    .glass-card:hover { transform: translateY(-4px); }
}

/* --- Extra Small Phone (max-width: 360px) --- */
@media (max-width: 360px) {
    .hero-title { font-size: 1.4rem; }
    .hero-subtitle { font-size: 0.85rem; }
    .section-title { font-size: 1.4rem; }
    .trust-badge { font-size: 0.7rem; padding: 5px 10px; }
    .speeds-grid { grid-template-columns: 1fr; }
    .coverage-map-visual { height: 180px; }
    .nav-actions .btn { padding: 7px 12px; font-size: 0.75rem; }
}

/* --- Landscape Phone Fix --- */
@media (max-height: 500px) and (orientation: landscape) {
    .hero { min-height: auto; padding-top: 80px; padding-bottom: 30px; }
    .hero-title { font-size: 1.8rem; }
    .hero-trust-badges { margin-bottom: 15px; }
    .hero-buttons { flex-direction: row; flex-wrap: wrap; }
    #preloader { overflow-y: auto; }
}

/* --- Print Styles --- */
@media print {
    .navbar, .page-transition-overlay, #preloader, .nav-toggle { display: none !important; }
    .hero { min-height: auto; padding-top: 20px; }
    .section { padding: 30px 0; }
    body::before { display: none; }
}

@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

