/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #006aff;
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 40px;
    border: 2px solid white;
    border-radius: 12px;
  }

  .scroll-indicator::after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    margin: 8px auto 0;
    background: white;
    border-radius: 50%;
    animation: scroll 1.5s infinite;
  }

  @keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
  }

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 16px;
    right: 16px;
    z-index: 1000;
    background: #25d366;
    color: white;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

@media (min-width: 640px) {
    .whatsapp-float {
        width: 48px;
        height: 48px;
        bottom: 24px;
        right: 24px;
    }
}

.whatsapp-float:hover {
    background: #128c7e;
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 22px;
    height: 22px;
}

@media (min-width: 640px) {
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 3px 12px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 3px 12px rgba(37, 211, 102, 0.4), 0 0 0 8px rgba(37, 211, 102, 0.08);
    }
    100% {
        box-shadow: 0 3px 12px rgba(37, 211, 102, 0.3);
    }
}


/* Full Screen Sections */
section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

/* Interactive Particle Background */
.particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: #0f172a;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    background: linear-gradient(135deg, #1e293b, #334155);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
    line-height: 1.7;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #dbeafe, #e0f2fe);
    border: 1px solid #bfdbfe;
    border-radius: 50px;
    color: #1e40af;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    text-align: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #0c2447, #105cb3);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #0891b2);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid #e2e8f0;
    color: #334155;
}

.btn-outline:hover {
    background: #f8fafc;
    border-color: #0c2447;
    color: #0c2447;
}

.btn-full {
    width: 100%;
}

/* Navigation - Compact and Sticky */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 2rem;
    max-width: auto;/*1200px;*/
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-title {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #60a5fa, #34d399);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar.scrolled .nav-title {
    background: linear-gradient(135deg, #0c2447, #105cb3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    font-size: 0.875rem;
}

.navbar.scrolled .nav-link {
    color: #374151;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #60a5fa, #34d399);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar.scrolled .nav-link::after {
    background: linear-gradient(135deg, #0c2447, #105cb3);
}

.nav-link:hover {
    color: #60a5fa;
    background: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .nav-link:hover {
    color: #0c2447;
    background: #f0f9ff;
}

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

.nav-cta {
    background: linear-gradient(135deg, #60a5fa, #34d399);
    backgrousnd-color: #f77f00;
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.3);
    font-size: 0.875rem;
    margin-left: 1rem;
}

.navbar.scrolled .nav-cta {
    background: linear-gradient(135deg, #0c2447, #105cb3);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.nav-cta:hover {
    background: linear-gradient(135deg, #3b82f6, #10b981);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(96, 165, 250, 0.4);
}

.navbar.scrolled .nav-cta:hover {
    background: linear-gradient(135deg, #1d4ed8, #0891b2);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 0.2rem;
}

.navbar.scrolled .mobile-menu-btn {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
}

.mobile-menu-btn span {
    width: 1.25rem;
    height: 2px;
    background: #ffffff;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.navbar.scrolled .mobile-menu-btn span {
    background: #374151;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.navbar.scrolled .mobile-menu-btn:hover {
    background: #e2e8f0;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}


/* Hero Section */
/* HERO SECTION BASE STYLES */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
                to bottom,
                rgba(0, 48, 73, 0.3),
                rgba(0, 48, 73, 0.15), 
                rgba(0, 48, 73, 0)
            ),
            url('images/NPBG.png') no-repeat center center / cover;
  color: white;
  overflow: hidden;
  padding-top: 60px; /* Account for fixed navbar */
}

/* HERO BACKGROUND LAYERS */
.hero-background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.circuit-animation {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(96, 165, 250, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 165, 250, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: circuit-move 15s linear infinite;
}

@keyframes circuit-move {
  0% { transform: translate(0, 0); }
  100% { transform: translate(40px, 40px); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.hero-grgadient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(147, 51, 234, 0.2) 0%, transparent 50%);
  animation: gradient-shift 8s ease-in-out infinite;
}

@keyframes gradient-shift {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

/* HERO CONTENT CONTAINER */
.hero .container {
  display: grid;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

@media (min-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero-content {
  text-align: center;
  padding: 2rem 0;
}

@media (min-width: 1024px) {
  .hero-content {
    text-align: left;
  }
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

.title-highlight {
  background: linear-gradient(135deg, #60a5fa, #34d399, #105cb3);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  animation: gradient-text 3s ease-in-out infinite;
}

@keyframes gradient-text {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-description {
  font-size: 1.125rem;
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-buttons {
    justify-content: flex-start;
    align-items: flex-start;
  }
}

.hero-buttons .btn {
  width: 100%;
  max-width: 300px;
  text-align: center;
}

/* HERO IMAGE / CARD */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-dots {
  display: flex;
  gap: 0.5rem;
}

.card-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f40000;
}

.card-dots span:nth-child(2) {
  background: #f77f00;
}

.card-dots span:nth-child(3) {
  background: #2a59a0;
}

.card-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #cbd5e1;
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.status-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  font-size: 0.875rem;
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6b7280;
}

.status-indicator.active {
  background: #105cb3;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.status-value {
  font-weight: 600;
  color: #105cb3;
}

/* RESPONSIVE TWEAKS */
@media (max-width: 1023px) {
  .hero {
    height: auto;
    padding: 3rem 1.5rem;
  }

  .hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
  }

  .hero-card {
    width: 90%;
    max-width: 350px;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-description {
    font-size: 1rem;
  }
}

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

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Prevent horizontal scroll */
body {
  overflow-x: hidden;
}


/* Services Section - Full Screen */
.services {
    background: #f8fafc;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 4rem 0;
}

.services-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    position: relative;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #e2e8f0, #e2e8f0);
    transition: all 0.3s ease;
}

.service-card:hover::before {
    background: linear-gradient(135deg, #0c2447, #105cb3);
}

.service-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    border-color: #bfdbfe;
}

.service-card.featured {
    border-color: #0c2447;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
}

.service-card.featured::before {
    background: linear-gradient(135deg, #0c2447, #105cb3);
}

.service-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #dbeafe, #e0f2fe);
    border-radius: 12px;
    color: #0c2447;
}

.service-badge {
    background: linear-gradient(135deg, #0c2447, #105cb3);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.service-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #374151;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li::before {
    content: '✓';
    color: #105cb3;
    font-weight: 600;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0c2447;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
}

.service-link:hover {
    color: #1d4ed8;
    gap: 0.75rem;
}

/* Service Modal */
.service-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #64748b;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: #ef4444;
}

.modal-body {
    padding: 2rem;
}

/* Packages Section - Full Screen */
.packages {
    background: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.packages-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.package-card {
    position: relative;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #e2e8f0;
    transition: all 0.3s ease;
}

.package-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    border-color: #bfdbfe;
}

.package-card:hover::before {
    background: linear-gradient(135deg, #0c2447, #105cb3);
}


.package-card.featured {

    border-color: #0c2447;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
}
.popular-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0c2447, #105cb3);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
 padvding: 0.25rem 0.75rem;
   

  
}

.package-card.featured::before {
    background: linear-gradient(135deg, #0c2447, #105cb3);
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
}

.package-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.package-speed {
    margin-bottom: 1rem;
}

.speed-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #105cb3;
}

.speed-unit {
    font-size: 1.125rem;
    color: #105cb3;
    margin-left: 0.25rem;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1rem;
    color: #64748b;
    margin-right: 0.25rem;
}

.price-value {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
}

.price-period {
    color: #64748b;
    margin-left: 0.25rem;
}

.package-subtitle {
    color: #64748b;
    font-size: 0.875rem;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    padding: 0.75rem 0;
    color: #374151;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.package-features svg {
    color: #105cb3;
    flex-shrink: 0;
}

/* Coverage Section */
.coverage {
    background: #f8fafc;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.coverage-content {
    display: grid;
    gap: 4rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .coverage-content {
        grid-template-columns: 1fr 1fr;
    }
}

.coverage-map {
    display: flex;
    justify-content: center;
}

.map-container {
    text-align: center;
    width: 100%;
}

.kenya-map {
    margin-bottom: 2rem;
}

.map-svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.map-label {
    font-size: 12px;
    fill: #64748b;
    font-weight: 500;
}

.coverage-dot {
    animation: pulse-dot 2s infinite;
}

.map-legend {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #64748b;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-dot.active {
    background: #105cb3;
}

.legend-dot.expanding {
    background: #f59e0b;
}

.legend-dot.planned {
    background: #6b7280;
}

.coverage-stats {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.stats-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 12px;
    margin: 0 auto 1rem;
}

.stat-icon.active {
    background: #dcfce7;
    color: #15803d;
}

.stat-icon.expanding {
    background: #fef3c7;
    color: #d97706;
}

.stat-icon.planned {
    background: #f3f4f6;
    color: #6b7280;
}

.stat-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.stat-content p {
    color: #64748b;
    font-size: 0.875rem;
}

.coverage-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.coverage-info p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.expansion-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.timeline-item.active .timeline-dot {
    background: #105cb3;
}

.timeline-item.expanding .timeline-dot {
    background: #f59e0b;
}

.timeline-item.planned .timeline-dot {
    background: #6b7280;
}

.timeline-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.timeline-content p {
    color: #64748b;
    font-size: 0.875rem;
}

/* Speed Test Section */
.speed-test {
    background: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.speed-test-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .speed-test-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.speed-test-card {
    position: relative;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.speed-test-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #e2e8f0;
    transition: all 0.3s ease;
}

.speed-test-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    border-color: #bfdbfe;
}

.speed-test-card:hover::before {
    background: linear-gradient(135deg, #0c2447, #105cb3);
}

.speed-test-card.featured {
    border-color: #0c2447;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
}

.speed-test-card.featured::before {
    background: linear-gradient(135deg, #0c2447, #105cb3);
}

.test-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0c2447, #105cb3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.test-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #dbeafe, #e0f2fe);
    border-radius: 16px;
    color: #0c2447;
    margin: 0 auto 1.5rem;
}

.speed-test-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.speed-test-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.speed-guide {
    background: #f8fafc;
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
}

.speed-guide h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2rem;
}

.guide-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .guide-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

.guide-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #dbeafe, #e0f2fe);
    border-radius: 12px;
    color: #0c2447;
    margin: 0 auto 1rem;
}

.guide-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.guide-item p {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* About Section */
.about {
    background: #f8fafc;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.about-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
}

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

@media (min-width: 1024px) {
    .about-text {
        text-align: left;
    }
}

.about-description {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

.about-stat .stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0c2447;
    margin-bottom: 0.25rem;
}

.about-stat .stat-label {
    font-size: 0.875rem;
    color: #64748b;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #374151;
    font-weight: 500;
}

.about-feature svg {
    color: #105cb3;
    flex-shrink: 0;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
}

.overlay-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.overlay-content p {
    color: #cbd5e1;
    line-height: 1.6;
}

/* FAQ Section - Compact and Functional */
.faq {
    background: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.faq-container {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
    padding-right: 1rem;
    text-align: left;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    background: #f1f5f9;
    border-radius: 6px;
    color: #0c2447;
    transition: all 0.3s ease;
    flex-shrink: 0;
    font-size: 1rem;
    font-weight: bold;
}

.faq-item.active .faq-icon {
    background: #0c2447;
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #f8fafc;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
}

.faq-cta {
    text-align: center;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    max-width: 500px;
    margin: 0 auto;
}

.faq-cta-content {
    max-width: 400px;
    margin: 0 auto;
}

.faq-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #dbeafe, #e0f2fe);
    border-radius: 16px;
    color: #0c2447;
    margin: 0 auto 1.5rem;
}

.faq-cta h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.faq-cta p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    background: #f8fafc;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.contact-content {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #dbeafe, #e0f2fe);
    border-radius: 8px;
    color: #0c2447;
    flex-shrink: 0;
}

.contact-details h4 {
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.5;
}

.contact-form-container {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-form-container h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0c2447;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
    padding: 4rem 0 2rem;
   
}

.footer-content {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #60a5fa, #34d399);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-description {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 24rem;
}


/* Social Media Icons */
.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1rem;
}

@media (min-width: 640px) {
    .footer-social {
        gap: 1.5rem;
    }
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
}

@media (min-width: 640px) {
    .social-link {
        width: 2.5rem;
        height: 2.5rem;
    }
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
}

.social-link.facebook:hover {
    background: #1877f2;
}

.social-link.twitter:hover {
    background: #1da1f2;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.linkedin:hover {
    background: #0077b5;
}

.social-link.youtube:hover {
    background: #ff0000;
}

.social-link svg {
    width: 16px;
    height: 16px;
}

@media (min-width: 640px) {
    .social-link svg {
        width: 20px;
        height: 20px;
    }
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cbd5e1;
    font-size: 0.875rem;
}

.footer-contact-item svg {
    color: #60a5fa;
    flex-shrink: 0;
}

.footer-links {
    display: grid;
    gap: 2rem;
    grid-column: span 3;
}

@media (min-width: 768px) {
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-column h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.875rem;
}

.footer-column a:hover {
    color: #60a5fa;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.875rem;
    align-items: center;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .footer-legal {
        justify-content: flex-end;
    }
}

.footer-legal a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #60a5fa;
}

/* Mobile Navigation Styles */
@media (max-width: 1023px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .navbar.scrolled .nav-links {
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid rgba(226, 232, 240, 0.5);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        padding: 1rem;
        text-align: center;
        border-radius: 8px;
        width: 100%;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .navbar.scrolled .nav-link {
        color: #374151;
    }
    
    .nav-cta {
        margin-left: 0;
        text-align: center;
        width: 100%;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -4px);
    }
}

/* Responsive utilities */
@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .coverage-content {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .speed-test-grid {
        grid-template-columns: 1fr;
    }
    
    .guide-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.package-card,
.speed-test-card,
.faq-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Staggered animation delays */
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

.package-card:nth-child(1) { animation-delay: 0.1s; }
.package-card:nth-child(2) { animation-delay: 0.2s; }
.package-card:nth-child(3) { animation-delay: 0.3s; }
.package-card:nth-child(4) { animation-delay: 0.4s; }
.package-card:nth-child(5) { animation-delay: 0.5s; }
.package-card:nth-child(6) { animation-delay: 0.6s; }

.speed-test-card:nth-child(1) { animation-delay: 0.1s; }
.speed-test-card:nth-child(2) { animation-delay: 0.2s; }
.speed-test-card:nth-child(3) { animation-delay: 0.3s; }

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }