@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap");

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

:root {
  --navy-blue: #001f3f;
  --bright-blue: #0074d9;
  --soft-white: #fafafa;
  --silver-gray: #c0c0c0;
  --accent-orange: #ff851b;
  --gradient-bg: linear-gradient(135deg, #001f3f, #0074d9);
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--gradient-bg);
  color: var(--soft-white);
  line-height: 1.6;
  min-height: 100vh;
}

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

/* Header & Navigation */
header {
  background: rgba(0, 31, 63, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--soft-white);
  letter-spacing: 0.5px;
}

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

.nav-menu a {
  color: var(--soft-white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--accent-orange);
}

.nav-menu a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-orange);
}

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

/* Hero Section */
.hero {
  padding: 4rem 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

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

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--silver-gray);
}

.hero-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--bright-blue);
  color: var(--soft-white);
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 116, 217, 0.3);
}

.cta-button:hover {
  background: var(--accent-orange);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 133, 27, 0.4);
}

.cta-button.secondary {
  background: var(--accent-orange);
}

.cta-button.secondary:hover {
  background: var(--bright-blue);
}

/* Features Section */
.features {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.05);
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  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.1);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 116, 217, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

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

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

.feature-card p {
  color: var(--silver-gray);
}

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

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--silver-gray);
}

/* Page Hero */
.page-hero {
  padding: 3rem 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.page-hero p {
  font-size: 1.2rem;
  color: var(--silver-gray);
}

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

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

.content-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.content-text h3 {
  font-size: 1.8rem;
  margin: 2rem 0 1rem;
  color: var(--accent-orange);
}

.content-text p {
  margin-bottom: 1.5rem;
  color: var(--silver-gray);
  line-height: 1.8;
}

.expertise-list {
  list-style: none;
  padding-left: 0;
}

.expertise-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--silver-gray);
}

.expertise-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--bright-blue);
  font-weight: bold;
}

.content-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

/* Stats Section */
.stats-section {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.05);
}

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

.stat-card {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-orange);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--silver-gray);
}

/* Coverage Page */
.coverage-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.coverage-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.coverage-map {
  margin: 3rem 0;
  text-align: center;
}

.coverage-map img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.coverage-regions h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

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

.region-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

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

.region-card p {
  color: var(--silver-gray);
  margin-bottom: 1rem;
}

.coverage-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.coverage-badge.excellent {
  background: var(--bright-blue);
  color: var(--soft-white);
}

.coverage-badge.good {
  background: var(--accent-orange);
  color: var(--soft-white);
}

.coverage-features h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 10px;
}

.feature-item .feature-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.feature-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: var(--silver-gray);
}

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

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

.plan-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 116, 217, 0.3);
}

.plan-card.featured {
  background: rgba(0, 116, 217, 0.2);
  border: 2px solid var(--bright-blue);
}

.plan-card.enterprise {
  background: rgba(255, 133, 27, 0.2);
  border: 2px solid var(--accent-orange);
}

.plan-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-orange);
  color: var(--soft-white);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

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

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

.plan-header h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.plan-subtitle {
  color: var(--silver-gray);
}

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

.plan-features li {
  padding: 0.75rem 0;
  color: var(--silver-gray);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.plan-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.2);
  color: var(--soft-white);
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.plan-button:hover {
  background: var(--bright-blue);
}

.plan-button.primary {
  background: var(--bright-blue);
}

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

.plans-info {
  text-align: center;
  margin-top: 4rem;
}

.plans-info h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

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

.info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.info-icon {
  font-size: 2rem;
}

/* Networks Page */
.network-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.network-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.network-technologies {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 4rem;
}

.tech-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.tech-card.reverse {
  direction: rtl;
}

.tech-card.reverse > * {
  direction: ltr;
}

.tech-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

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

.tech-header h3 {
  font-size: 2rem;
  color: var(--bright-blue);
}

.tech-content p {
  color: var(--silver-gray);
  margin-bottom: 1.5rem;
}

.tech-features {
  list-style: none;
}

.tech-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--silver-gray);
}

.tech-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-orange);
  font-weight: bold;
}

.tech-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.network-infrastructure h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

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

.infrastructure-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.infrastructure-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 116, 217, 0.3);
}

.infrastructure-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.infrastructure-item h3 {
  padding: 1.5rem;
  font-size: 1.5rem;
  color: var(--bright-blue);
}

.infrastructure-item p {
  padding: 0 1.5rem 1.5rem;
  color: var(--silver-gray);
}

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

.mission-statement h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

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

.mission-pillars h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

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

.pillar-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

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

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

.pillar-card p {
  color: var(--silver-gray);
}

.mission-vision {
  margin-bottom: 4rem;
}

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

.vision-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.vision-text h3 {
  font-size: 1.8rem;
  margin: 2rem 0 1rem;
  color: var(--accent-orange);
}

.vision-text p {
  color: var(--silver-gray);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.commitment-list {
  list-style: none;
}

.commitment-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--silver-gray);
}

.commitment-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--bright-blue);
  font-weight: bold;
}

.vision-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.mission-impact h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

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

.impact-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
}

.impact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent-orange);
}

.impact-card p {
  color: var(--silver-gray);
}

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

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

.contact-form-container h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

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

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

.form-group label {
  font-weight: 600;
  color: var(--soft-white);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--soft-white);
  font-family: "Montserrat", 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(--bright-blue);
  background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--silver-gray);
}

.submit-button {
  padding: 1rem 2rem;
  background: var(--bright-blue);
  color: var(--soft-white);
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
}

.submit-button:hover {
  background: var(--accent-orange);
  transform: translateY(-2px);
}

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 10px;
  display: none;
}

.form-message.success {
  background: rgba(0, 255, 0, 0.2);
  border: 1px solid rgba(0, 255, 0, 0.5);
  display: block;
}

.form-message.error {
  background: rgba(255, 0, 0, 0.2);
  border: 1px solid rgba(255, 0, 0, 0.5);
  display: block;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 10px;
}

.contact-info-card h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.contact-info-card .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

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

.info-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--bright-blue);
}

.info-content p {
  color: var(--silver-gray);
  line-height: 1.6;
}

.office-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.support-card {
  background: rgba(255, 133, 27, 0.2);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  border: 2px solid var(--accent-orange);
}

.support-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.support-card p {
  color: var(--silver-gray);
  margin-bottom: 1rem;
}

.support-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-orange) !important;
}

/* Privacy Policy Page */
.privacy-content {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-text h2 {
  font-size: 2rem;
  margin: 2rem 0 1rem;
  color: var(--bright-blue);
}

.privacy-text h3 {
  font-size: 1.5rem;
  margin: 1.5rem 0 1rem;
  color: var(--accent-orange);
}

.privacy-text p {
  color: var(--silver-gray);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.privacy-text ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.privacy-text li {
  color: var(--silver-gray);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.contact-details {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 10px;
  margin-top: 2rem;
}

.contact-details p {
  margin-bottom: 0;
}

/* Footer */
footer {
  background: rgba(0, 31, 63, 0.95);
  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 h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--bright-blue);
}

.footer-section p {
  color: var(--silver-gray);
  line-height: 1.6;
}

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

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

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

.footer-section ul li a:hover {
  color: var(--accent-orange);
}

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

.footer-bottom p {
  color: var(--silver-gray);
}

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

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 31, 63, 0.98);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  }

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

  .hero .container,
  .content-grid,
  .contact-grid,
  .vision-content,
  .tech-card {
    grid-template-columns: 1fr;
  }

  .tech-card.reverse {
    direction: ltr;
  }

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

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

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

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }

  .feature-grid,
  .regions-grid,
  .pillars-grid,
  .impact-grid,
  .infrastructure-grid {
    grid-template-columns: 1fr;
  }
}
