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

:root {
  --primary-blue: #001f54;
  --sky-cyan: #00b4d8;
  --neon-green: #00ffb0;
  --dark-gray: #374151;
  --light-gray: #f3f4f6;
  --white: #ffffff;
  --text-dark: #1f2937;
  --text-light: #6b7280;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--sky-cyan) 100%);
  background-attachment: fixed;
  color: var(--text-dark);
  line-height: 1.6;
}

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

/* Header Styles */
.floating-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 31, 84, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.floating-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-blue), var(--sky-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-blue), var(--sky-cyan));
  transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

nav a:hover,
nav a.active {
  color: var(--sky-cyan);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-blue);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  padding: 150px 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  color: var(--white);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--neon-green);
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 255, 176, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 255, 176, 0.4);
}

.hero-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Features Section */
.features {
  padding: 100px 0;
  background: var(--white);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--primary-blue);
}

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

.feature-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 31, 84, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 180, 216, 0.2);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  color: var(--sky-cyan);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-blue);
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.8;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(0, 31, 84, 0.05), rgba(0, 180, 216, 0.05));
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  min-height: 250px;
}

.testimonial-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 31, 84, 0.1);
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonial-card.active {
  display: block;
  opacity: 1;
}

.testimonial-text {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.testimonial-author strong {
  display: block;
  color: var(--primary-blue);
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 0.9rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--light-gray);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--sky-cyan);
  width: 30px;
  border-radius: 6px;
}

/* Page Hero */
.page-hero {
  padding: 150px 0 80px;
  text-align: center;
  color: var(--white);
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-hero p {
  font-size: 1.25rem;
  opacity: 0.95;
}

/* Content Sections */
.content-section,
.mission-statement,
.network-overview,
.coverage-intro,
.expansion-plans {
  padding: 80px 0;
  background: var(--white);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.content-text h2 {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.content-text p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.content-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 31, 84, 0.15);
}

.content-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Values Section */
.values-section,
.pillars-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(0, 31, 84, 0.05), rgba(0, 180, 216, 0.05));
}

.values-grid,
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-card,
.pillar-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 31, 84, 0.08);
}

.value-card h3,
.pillar-card h3 {
  color: var(--primary-blue);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.value-card p,
.pillar-card p {
  color: var(--text-light);
  line-height: 1.8;
}

.pillar-icon {
  width: 50px;
  height: 50px;
  color: var(--sky-cyan);
  margin-bottom: 1rem;
}

/* Stats Section */
.stats-section,
.network-stats {
  padding: 80px 0;
  background: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--sky-cyan));
  border-radius: 15px;
  color: var(--white);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

/* Mission Content */
.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mission-text h2 {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.mission-text p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.mission-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 31, 84, 0.15);
}

.mission-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Vision Section */
.vision-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(0, 31, 84, 0.05), rgba(0, 180, 216, 0.05));
}

.vision-content {
  max-width: 900px;
  margin: 0 auto;
}

.vision-content h2 {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  text-align: center;
}

.vision-content > p {
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
  text-align: center;
}

.vision-goals {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.goal-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 31, 84, 0.08);
}

.goal-icon {
  width: 30px;
  height: 30px;
  background: var(--neon-green);
  color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

/* Network Cards */
.network-types {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(0, 31, 84, 0.05), rgba(0, 180, 216, 0.05));
}

.network-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.network-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 31, 84, 0.1);
  transition: all 0.3s ease;
}

.network-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 180, 216, 0.2);
}

.network-badge {
  background: linear-gradient(135deg, var(--primary-blue), var(--sky-cyan));
  color: var(--white);
  padding: 0.5rem 1rem;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-block;
  margin: 1.5rem 1.5rem 0;
  border-radius: 20px;
}

.network-card h3 {
  padding: 0 1.5rem;
  margin: 1rem 0;
  color: var(--primary-blue);
  font-size: 1.75rem;
}

.network-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.network-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.network-features {
  list-style: none;
  padding: 1.5rem;
}

.network-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
}

.network-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--neon-green);
  font-weight: 700;
}

.network-card > p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* Network Map */
.network-map-section,
.coverage-visualization {
  padding: 80px 0;
  background: var(--white);
}

.map-container,
.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 31, 84, 0.15);
  margin-bottom: 2rem;
}

.map-container img,
.map-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

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

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.legend-color {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}

.map-note {
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 1rem;
}

.map-note a {
  color: var(--sky-cyan);
  text-decoration: none;
}

/* Coverage Regions */
.coverage-regions {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(0, 31, 84, 0.05), rgba(0, 180, 216, 0.05));
}

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

.region-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 31, 84, 0.08);
}

.region-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.region-header h3 {
  color: var(--primary-blue);
  font-size: 1.5rem;
}

.signal-indicator {
  display: flex;
  gap: 3px;
  align-items: flex-end;
}

.signal-bar {
  width: 4px;
  background: var(--light-gray);
  border-radius: 2px;
}

.signal-bar:nth-child(1) {
  height: 8px;
}
.signal-bar:nth-child(2) {
  height: 12px;
}
.signal-bar:nth-child(3) {
  height: 16px;
}
.signal-bar:nth-child(4) {
  height: 20px;
}
.signal-bar:nth-child(5) {
  height: 24px;
}

.signal-bar.excellent {
  background: var(--neon-green);
}

.signal-bar.good {
  background: var(--sky-cyan);
}

.coverage-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.coverage-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.badge-5g {
  background: linear-gradient(135deg, var(--primary-blue), var(--sky-cyan));
  color: var(--white);
}

.badge-4g {
  background: var(--sky-cyan);
  color: var(--white);
}

.badge-fiber {
  background: var(--neon-green);
  color: var(--primary-blue);
}

.badge-expanding {
  background: var(--light-gray);
  color: var(--text-dark);
}

.region-card p {
  color: var(--text-light);
  line-height: 1.8;
}

/* Expansion Timeline */
.expansion-content {
  max-width: 900px;
  margin: 0 auto;
}

.expansion-content > p {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 3rem;
  font-size: 1.125rem;
}

.expansion-timeline {
  display: grid;
  gap: 2rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  align-items: start;
}

.timeline-year {
  font-size: 2rem;
  font-weight: 700;
  color: var(--sky-cyan);
  text-align: center;
}

.timeline-content {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 31, 84, 0.08);
}

.timeline-content h3 {
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--text-light);
  line-height: 1.8;
}

/* Coverage CTA */
.coverage-cta {
  padding: 80px 0;
  background: var(--white);
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.cta-content p {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: var(--white);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto 4rem;
}

.faq-item {
  background: var(--white);
  border-radius: 15px;
  margin-bottom: 1rem;
  box-shadow: 0 5px 20px rgba(0, 31, 84, 0.08);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-blue);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--sky-cyan);
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: var(--sky-cyan);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

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

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
  line-height: 1.8;
}

.faq-answer a {
  color: var(--sky-cyan);
  text-decoration: none;
}

.faq-contact {
  text-align: center;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(0, 31, 84, 0.05), rgba(0, 180, 216, 0.05));
  border-radius: 20px;
}

.faq-contact h3 {
  font-size: 1.75rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.faq-contact p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2,
.contact-form-wrapper h2 {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

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

.contact-method {
  display: flex;
  gap: 1.5rem;
  align-items: start;
}

.method-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-blue), var(--sky-cyan));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.method-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.method-details h3 {
  color: var(--primary-blue);
  margin-bottom: 0.25rem;
}

.method-details p {
  color: var(--text-dark);
  font-weight: 600;
  margin: 0;
}

.method-hours {
  color: var(--text-light);
  font-size: 0.9rem;
}

.location-map {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 31, 84, 0.15);
}

.location-map img {
  width: 100%;
  height: auto;
  display: block;
}

/* Contact Form */
.contact-form {
  display: grid;
  gap: 1.5rem;
}

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

.form-group label {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem;
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sky-cyan);
}

.form-group textarea {
  resize: vertical;
}

.submit-button {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--sky-cyan));
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 180, 216, 0.3);
}

.form-success {
  display: none;
  text-align: center;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(0, 255, 176, 0.1), rgba(0, 180, 216, 0.1));
  border-radius: 15px;
}

.form-success.show {
  display: block;
}

.form-success svg {
  width: 60px;
  height: 60px;
  color: var(--neon-green);
  margin-bottom: 1rem;
}

.form-success h3 {
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--text-light);
}

/* Cookie Policy */
.policy-content {
  padding: 80px 0;
  background: var(--white);
}

.policy-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.policy-intro {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--light-gray);
}

.policy-intro p:first-child {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.policy-section {
  margin-bottom: 3rem;
}

.policy-section h2 {
  color: var(--primary-blue);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.policy-section p,
.policy-section li {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.policy-section ul {
  padding-left: 2rem;
}

.cookie-type {
  background: linear-gradient(135deg, rgba(0, 31, 84, 0.05), rgba(0, 180, 216, 0.05));
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
}

.cookie-type h3 {
  color: var(--primary-blue);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.cookie-examples {
  margin-top: 1rem;
}

.cookie-examples strong {
  color: var(--text-dark);
}

.cookie-examples ul {
  margin-top: 0.5rem;
}

.contact-details {
  background: var(--light-gray);
  padding: 1.5rem;
  border-radius: 10px;
  margin-top: 1rem;
}

.contact-details p {
  margin: 0.5rem 0;
}

.policy-cta {
  text-align: center;
  margin-top: 3rem;
}

#manageCookies {
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--sky-cyan));
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

#manageCookies:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 180, 216, 0.3);
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--primary-blue), var(--sky-cyan));
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
}

.footer-section p {
  opacity: 0.9;
  line-height: 1.8;
}

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

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

.footer-section ul li a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 968px) {
  nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero .container,
  .content-grid,
  .mission-content,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .section-title {
    font-size: 2rem;
  }

  .features-grid,
  .network-cards,
  .regions-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 80px 1fr;
    gap: 1rem;
  }

  .timeline-year {
    font-size: 1.5rem;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 120px 0 60px;
  }

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

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

  .page-hero h1 {
    font-size: 2rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-number {
    font-size: 2rem;
  }
}
