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

:root {
  --primary-blue: #002f6c;
  --primary-aqua: #00c6a7;
  --accent-green: #06d6a0;
  --accent-yellow: #ffd166;
  --neutral-gray: #adb5bd;
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  --shadow: rgba(0, 0, 0, 0.1);
}

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

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

/* Header & Navigation */
header {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-aqua);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-blue);
}

/* Hero Section */
.hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 4rem;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 47, 108, 0.8) 0%, rgba(0, 198, 167, 0.6) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--text-light);
}

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

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--accent-green);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(6, 214, 160, 0.3);
}

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

/* Page Hero */
.page-hero {
  background: rgba(255, 255, 255, 0.95);
  padding: 4rem 0;
  text-align: center;
  margin-bottom: 3rem;
  border-radius: 20px;
  margin-top: 2rem;
}

.page-hero h1 {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--text-dark);
}

/* Features Section */
.features {
  padding: 4rem 0;
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--text-light);
  margin-bottom: 3rem;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 15px var(--shadow);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

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

/* Testimonials */
.testimonials {
  background: rgba(255, 255, 255, 0.1);
  padding: 4rem 0;
  margin: 4rem 0;
}

.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--text-light);
  margin-bottom: 3rem;
}

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px var(--shadow);
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-blue);
}

/* Contact Form */
.contact-section {
  background: rgba(255, 255, 255, 0.95);
  padding: 3rem;
  border-radius: 15px;
  margin: 4rem auto;
  box-shadow: 0 4px 15px var(--shadow);
}

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

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s;
}

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

.error-message {
  display: block;
  color: #e74c3c;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  min-height: 1.2rem;
}

.submit-button {
  width: 100%;
  padding: 1rem;
  background: var(--accent-green);
  color: var(--text-light);
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(6, 214, 160, 0.3);
}

.success-message {
  margin-top: 1rem;
  padding: 1rem;
  background: #d4edda;
  color: #155724;
  border-radius: 8px;
  display: none;
}

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

/* Content Sections */
.content-section {
  padding: 4rem 0;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: center;
}

.content-grid.reverse {
  direction: rtl;
}

.content-grid.reverse > * {
  direction: ltr;
}

.content-text h2 {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 2rem;
}

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

.content-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 15px var(--shadow);
}

.alt-bg {
  background: rgba(255, 255, 255, 0.1);
}

.alt-bg .content-text h2,
.alt-bg h2 {
  color: var(--text-light);
}

.alt-bg .content-text p {
  color: var(--text-light);
}

/* Plans Section */
.plans-section {
  padding: 4rem 0;
}

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

.plan-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 15px var(--shadow);
  transition: transform 0.3s;
  position: relative;
}

.plan-card:hover {
  transform: translateY(-5px);
}

.plan-card.featured {
  border: 3px solid var(--accent-green);
}

.plan-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: var(--accent-green);
  color: var(--text-light);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

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

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

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.plan-price .currency {
  font-size: 1.25rem;
  color: var(--text-dark);
}

.plan-price .amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.plan-price .period {
  font-size: 1rem;
  color: var(--text-dark);
}

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

.plan-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.plan-button {
  width: 100%;
  padding: 1rem;
  background: var(--primary-blue);
  color: var(--text-light);
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.plan-button:hover {
  background: var(--primary-aqua);
}

/* Comparison Table */
.comparison-section {
  background: rgba(255, 255, 255, 0.95);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px var(--shadow);
}

.comparison-section h2 {
  text-align: center;
  color: var(--primary-blue);
  margin-bottom: 2rem;
}

.table-responsive {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.comparison-table th {
  background: var(--primary-blue);
  color: var(--text-light);
  font-weight: 600;
}

.comparison-table tr:hover {
  background: rgba(0, 198, 167, 0.1);
}

/* Network Stats */
.network-stats {
  padding: 4rem 0;
}

.network-stats h2 {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

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

.stat-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 15px var(--shadow);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-dark);
}

/* Tech Grid */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.tech-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px var(--shadow);
}

.tech-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.tech-card h3 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

/* Coverage Map */
.coverage-map-section {
  margin: 3rem 0;
  text-align: center;
}

.coverage-map {
  width: 100%;
  max-width: 800px;
  border-radius: 15px;
  box-shadow: 0 4px 15px var(--shadow);
  margin-bottom: 2rem;
}

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

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
}

.legend-color {
  width: 30px;
  height: 30px;
  border-radius: 5px;
}

.legend-color.excellent {
  background: #06d6a0;
}

.legend-color.good {
  background: #ffd166;
}

.legend-color.standard {
  background: #adb5bd;
}

/* Region Cards */
.region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.region-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 15px var(--shadow);
}

.region-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.signal-bars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin: 1rem 0;
}

.signal-bars .bar {
  width: 8px;
  height: 30px;
  background: #e0e0e0;
  border-radius: 2px;
}

.signal-bars .bar.active {
  background: var(--accent-green);
}

/* Mission Section */
.mission-statement {
  text-align: center;
  margin-bottom: 3rem;
}

.mission-statement h2 {
  color: var(--text-light);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.lead-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 900px;
  margin: 0 auto;
}

.mission-image-section {
  text-align: center;
  margin: 3rem 0;
}

.mission-image {
  width: 100%;
  max-width: 800px;
  border-radius: 15px;
  box-shadow: 0 4px 15px var(--shadow);
}

/* Values Section */
.values-section {
  padding: 4rem 0;
}

.values-section h2 {
  text-align: center;
  color: var(--text-light);
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

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

.value-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 15px var(--shadow);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

/* Goals List */
.goals-list {
  max-width: 900px;
  margin: 0 auto;
}

.goal-item {
  display: flex;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px var(--shadow);
}

.goal-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-aqua);
  flex-shrink: 0;
}

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

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 10px var(--shadow);
}

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

.faq-question:hover {
  background: rgba(0, 198, 167, 0.1);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 0.3s;
}

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

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

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  line-height: 1.8;
}

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

/* Contact CTA */
.contact-cta {
  text-align: center;
  padding: 4rem 0;
}

.contact-cta h2 {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 2rem;
}

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

/* Contact Page */
.contact-content {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.contact-info {
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px var(--shadow);
}

.contact-info h2 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.contact-details {
  margin-top: 2rem;
}

.contact-detail-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.contact-detail-item h3 {
  color: var(--primary-blue);
  margin-bottom: 0.25rem;
}

.detail-note {
  font-size: 0.875rem;
  color: #666;
}

.contact-form-section {
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px var(--shadow);
}

.contact-form-section h2 {
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

/* Map Section */
.map-section {
  padding: 4rem 0;
  text-align: center;
}

.map-section h2 {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 2rem;
}

.location-map {
  width: 100%;
  max-width: 800px;
  border-radius: 15px;
  box-shadow: 0 4px 15px var(--shadow);
}

/* Privacy Policy */
.policy-content {
  background: rgba(255, 255, 255, 0.95);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px var(--shadow);
  margin-bottom: 3rem;
}

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

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

.policy-section p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.policy-section ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.policy-section li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

.policy-section a {
  color: var(--primary-aqua);
  text-decoration: none;
}

.policy-section a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background: rgba(0, 0, 0, 0.3);
  color: var(--text-light);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

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

.footer-section h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

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

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

.footer-section a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--accent-green);
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 10px var(--shadow);
  }

  .nav-links.active {
    display: flex;
  }

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

  .hero-content p {
    font-size: 1rem;
  }

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

  .features h2,
  .testimonials h2 {
    font-size: 2rem;
  }

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

  .content-grid.reverse {
    direction: ltr;
  }

  .goal-item {
    flex-direction: column;
    text-align: center;
  }
}
