/* Design System & Variables */
:root {
  --primary-green: #00a651;
  --dark-green: #008248;
  --light-green: #22c55e;
  --glow-green: rgba(0, 166, 81, 0.4);
  
  --dark-bg: #070c14;
  --dark-surface: #0e1622;
  --dark-border: #1a2536;
  
  --light-bg: #ffffff;
  --light-surface: #f1f5f9;
  --light-border: #e5e7eb;
  
  --text-white: #ffffff;
  --text-light-gray: #9ca3af;
  --text-dark-gray: #374151;
  --text-muted: #6b7280;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-bengali: 'Hind Siliguri', sans-serif;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-glow: 0 0 20px rgba(0, 166, 81, 0.3);
}

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

*:focus,
*:active,
*:target,
*:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--light-bg);
  color: var(--text-dark-gray);
  line-height: 1.6;
}

/* Typography in Bengali */
.bn-sub, .address-text, .help-desk p, #order-form label, .service-card p {
  font-family: var(--font-bengali);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background-color: var(--primary-green);
  color: var(--text-white);
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-family: var(--font-heading);
  text-align: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 166, 81, 0.2);
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: var(--dark-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 166, 81, 0.4);
}

.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: var(--text-white);
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-family: var(--font-heading);
  text-align: center;
  border: 2px solid var(--text-white);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  background-color: var(--text-white);
  color: var(--dark-bg);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.9rem;
  border: 1.5px solid var(--primary-green);
  color: var(--primary-green);
}

.btn-sm:hover {
  background-color: var(--primary-green);
  color: var(--text-white);
}

.w-100 {
  width: 100%;
}

/* Top Contact Strip */
.top-bar {
  background-color: #04080e;
  border-bottom: 1px solid var(--dark-border);
  padding: 10px 0;
  font-size: 0.85rem;
  color: var(--text-light-gray);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.top-bar-left {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar-left span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-left i {
  color: var(--primary-green);
}

.login-btn {
  display: flex;
  align-items: center;
  gap: 6px;
}

.login-btn i {
  color: var(--primary-green);
}

.login-btn:hover {
  color: var(--primary-green);
}

.header {
  background-color: #030806;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #121924;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  display: block;
}

/* Hide image and borders before src is resolved or loaded to prevent browser loading border */
.logo img:not([src]), 
.logo img[src=""] {
  opacity: 0 !important;
  visibility: hidden !important;
  border: none !important;
  outline: none !important;
}

.logo:focus,
.logo:active,
.logo *:focus,
.logo *:active {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

.logo-text {
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.5px;
}

.logo-text strong {
  color: var(--primary-green);
  font-weight: 800;
}

.logo-text span {
  color: var(--text-white);
  font-size: 0.9rem;
  font-weight: 500;
  display: block;
  margin-top: -3px;
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-menu a {
  color: var(--text-light-gray);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 0;
  position: relative;
}

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

.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-green);
}

/* Dropdown styling */
.dropdown {
  position: relative;
}

.dropdown-trigger i {
  font-size: 0.75rem;
  margin-left: 2px;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: 4px;
  min-width: 180px;
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  z-index: 10;
}

.dropdown-content a {
  display: block;
  padding: 8px 16px;
  font-size: 0.9rem;
  color: var(--text-light-gray);
}

.dropdown-content a:hover {
  background-color: var(--dark-border);
  color: var(--text-white);
}

.dropdown:hover .dropdown-content {
  display: block;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

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

/* Hero Section */
.hero {
  background: linear-gradient(to right, #030806 0%, #030806 35%, rgba(3, 8, 6, 0.3) 60%, rgba(3, 8, 6, 0) 100%), url('images/hero-router-v3.png');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  color: var(--text-white);
  padding: 100px 0;
  border-bottom: 1px solid var(--dark-border);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 40px;
  align-items: center;
}

.badge-subtitle {
  color: var(--primary-green);
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 2px;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 15px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.text-green {
  color: var(--primary-green);
}

.hero-desc {
  color: var(--text-light-gray);
  font-size: 1.1rem;
  margin-bottom: 35px;
  max-width: 540px;
}

.hero-features {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 40px;
}

.feat-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.feat-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--primary-green);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  box-shadow: 0 0 10px rgba(0, 166, 81, 0.15);
  flex-shrink: 0;
}

.feat-item span {
  font-size: 0.82rem;
  font-weight: 500;
  color: #e5e7eb;
  white-space: nowrap;
}

.hero-actions {
  display: flex;
  gap: 20px;
}

.hero-image-container {
  display: none;
}

.speed-indicator {
  display: none;
}

.speed-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 0 15px rgba(0, 166, 81, 0.8), 0 0 30px rgba(0, 166, 81, 0.4);
}

.speed-unit {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.9;
  text-shadow: 0 0 10px rgba(0, 166, 81, 0.8);
}

/* Quick Services */
.quick-services {
  padding: 60px 0;
  background-color: #030806; /* Seamless dark forest-green black matching Hero */
  border-bottom: 1px solid var(--dark-border);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 20px;
}

.service-card {
  background-color: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  padding: 25px 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  min-height: 220px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  border-color: var(--primary-green);
  background-color: #121c2d;
}

.service-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(0, 166, 81, 0.15);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 15px;
  transition: var(--transition);
}

/* Special color for bKash pay card */
.service-card:nth-child(2) .service-icon {
  background-color: rgba(226, 18, 91, 0.15);
  color: #e2125b;
}

.service-card:hover .service-icon {
  background-color: var(--primary-green);
  color: var(--text-white);
}

.service-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-white);
  line-height: 1.3;
}

.service-card p {
  font-size: 0.8rem;
  color: var(--text-light-gray);
  margin-bottom: 12px;
}

.card-arrow {
  color: var(--primary-green);
  font-size: 0.9rem;
  margin-top: auto;
  transition: var(--transition);
}

.service-card:hover .card-arrow {
  transform: translateX(4px);
}

/* Our Packages Section */
.packages-section {
  padding: 80px 0;
  background-color: var(--dark-bg);
  border-bottom: 1px solid var(--dark-border);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 20px;
}

.section-subtitle {
  color: var(--primary-green);
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 8px;
}

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

.section-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-white);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.package-card {
  background-color: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  padding: 40px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  transition: var(--transition);
  overflow: hidden;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.6);
  border-color: rgba(0, 166, 81, 0.4);
  background-color: #121c2d;
}

/* Blaze/Popular package styles */
.package-card.popular {
  border: 2px solid var(--primary-green);
  box-shadow: 0 10px 30px rgba(0, 166, 81, 0.25);
}
.package-card.popular:hover {
  background-color: #121c2d;
}

.popular-badge {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-green);
  color: var(--text-white);
  padding: 4px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 20px;
  font-family: var(--font-heading);
}

.package-header {
  margin-bottom: 25px;
}

.package-header h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--primary-green);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.package-header .speed {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-white);
}

.price-wrap {
  display: flex;
  align-items: baseline;
  margin-bottom: 30px;
}

.price-wrap .currency {
  font-size: 1.25rem;
  font-weight: 600;
  margin-right: 3px;
  color: var(--text-white);
}

.price-wrap .price {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text-white);
}

.price-wrap .period {
  color: var(--text-light-gray);
  font-size: 0.95rem;
  margin-left: 5px;
  font-family: var(--font-bengali);
}

.features-list {
  list-style: none;
  margin-bottom: 35px;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #e5e7eb;
  margin-bottom: 12px;
}

.features-list li i {
  color: var(--primary-green);
  font-size: 0.9rem;
}

.btn-order {
  width: 100%;
  background-color: var(--primary-green);
  color: var(--text-white);
  border: none;
  padding: 12px;
  font-weight: 600;
  font-family: var(--font-heading);
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-order:hover {
  background-color: var(--dark-green);
  transform: scale(1.02);
}

/* Coverage Section */
.coverage-section {
  background-color: var(--dark-bg);
  padding: 100px 0;
  color: var(--text-white);
  border-bottom: 1px solid var(--dark-border);
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

.text-white {
  color: var(--text-white) !important;
}

.coverage-desc {
  color: var(--text-light-gray);
  font-size: 1.05rem;
  margin-bottom: 30px;
  max-width: 500px;
}

.vector-map-wrap {
  margin-top: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  overflow: visible;
  box-shadow: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pulse-ring {
  transform-origin: center;
  animation: pulse-ring-anim 2s infinite ease-out;
}

.coverage-right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.cov-card {
  background-color: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
}

.cov-card:hover {
  border-color: var(--primary-green);
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0, 166, 81, 0.1);
}

.cov-icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background-color: rgba(0, 166, 81, 0.1);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  transition: var(--transition);
}

.cov-card:hover .cov-icon {
  background-color: var(--primary-green);
  color: var(--text-white);
}

.cov-info h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.cov-info p {
  font-size: 0.85rem;
  color: var(--text-light-gray);
}

/* Help Desk / Call Section */
.help-desk {
  padding: 50px 0;
  background-color: var(--light-surface);
  border-bottom: 1px solid var(--light-border);
}

.help-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.help-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.help-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2.5px solid var(--primary-green);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 0 15px rgba(0, 166, 81, 0.2);
}

.help-text h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-dark-gray);
  margin-bottom: 5px;
  font-weight: 800;
}

.help-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.help-right {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-card {
  background-color: var(--light-bg);
  border: 1px solid var(--light-border);
  border-radius: 8px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: var(--shadow-sm);
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-green);
}

.cc-icon {
  font-size: 1.5rem;
  color: var(--primary-green);
}

.whatsapp-color {
  color: #25D366 !important;
}

.cc-info {
  display: flex;
  flex-direction: column;
}

.cc-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-dark-gray);
}

.cc-lbl {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  font-weight: 600;
}

/* Footer Section */
.footer {
  background-color: #03060c;
  color: var(--text-light-gray);
  padding: 80px 0 0 0;
  border-top: 1px solid var(--dark-border);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.brand-col .logo {
  margin-bottom: 20px;
}

.address-text {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #a0aec0;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.05);
  color: var(--text-light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-green);
  color: var(--text-white);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-heading);
  color: var(--text-white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #a0aec0;
}

.footer-links a:hover {
  color: var(--primary-green);
  padding-left: 4px;
}

.footer-contact-info {
  list-style: none;
}

.footer-contact-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #a0aec0;
}

.footer-contact-info i {
  font-size: 0.95rem;
}

/* Footer Bottom */
.footer-bottom {
  background-color: #010306;
  border-top: 1px solid var(--dark-border);
  padding: 30px 0;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.payment-row {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.payment-gateways-img {
  width: 100%;
  max-width: 800px;
  height: auto;
  opacity: 0.85;
  transition: var(--transition);
}

.payment-gateways-img:hover {
  opacity: 1;
}

.copyright-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  width: 100%;
}

.copyright-text a {
  color: var(--text-light-gray);
}

.copyright-text a:hover {
  color: var(--primary-green);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 55px;
  height: 55px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 99;
  transition: var(--transition);
  animation: pulse-widget 2.5s infinite;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: translateY(-5px) scale(1.05);
}

/* Order Request Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Modal open hash state mapping */
.modal:target {
  display: flex;
}

.modal-content {
  background-color: var(--light-bg);
  border-radius: 10px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: modal-anim 0.3s ease-out;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  color: var(--text-muted);
}

.modal-close:hover {
  color: var(--primary-green);
}

.modal h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-dark-gray);
  margin-bottom: 8px;
}

.modal p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 25px;
  line-height: 1.4;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-dark-gray);
  margin-bottom: 6px;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--light-border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(0, 166, 81, 0.15);
}

/* Keyframes */
@keyframes pulse-glow {
  0% { transform: scale(1.0); opacity: 0.8; }
  100% { transform: scale(1.05); opacity: 1.0; }
}

@keyframes pulse-widget {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulse-ring-anim {
  0% { transform: scale(0.5); opacity: 0.8; }
  100% { transform: scale(2.5); opacity: 0; }
}

@keyframes modal-anim {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1.0); opacity: 1; }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-features {
    justify-content: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-image-container {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .brand-col {
    grid-column: span 2;
  }

  /* Stack coverage items vertically on tablets */
  .coverage-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .coverage-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .vector-map-wrap {
    max-width: 350px;
    margin: 20px auto;
  }

  /* Show image below text on mobile/tablet */
  .hero {
    background: radial-gradient(circle at 50% 50%, rgba(0, 166, 81, 0.18) 0%, #030806 85%);
    padding: 60px 0;
  }
  .hero-image-container {
    display: block;
    width: 100%;
  }
  .hero-img {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 440px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  }
  .radial-glow {
    display: block;
  }
}

@media (max-width: 768px) {
  .top-bar-left {
    display: none; /* Hide contacts on mobile strip to avoid clutter */
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--dark-surface);
    border-bottom: 1px solid var(--dark-border);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }
  
  .nav-menu.mobile-active {
    display: flex;
  }
  
  .dropdown-content {
    position: static;
    display: block;
    background: none;
    box-shadow: none;
    border: none;
    padding-left: 15px;
    margin-top: 5px;
  }
  
  .dropdown-trigger i {
    transform: rotate(-90deg);
  }
  
  .connection-btn {
    display: none; /* Can request connections from packages section buttons */
  }

  .coverage-grid {
    grid-template-columns: 1fr;
  }
  
  .help-grid {
    flex-direction: column;
    align-items: flex-start;
  }
  .help-right {
    width: 100%;
  }
  .contact-card {
    flex: 1;
    min-width: 250px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .brand-col {
    grid-column: span 1;
  }
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }
}

/* FAQ Accordion Section */
.faq-section {
  padding: 50px 0;
  background-color: #070c14;
  border-bottom: 1px solid var(--dark-border);
}

.faq-list {
  max-width: 720px;
  margin: 30px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background-color: #0e1622;
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--primary-green);
  box-shadow: 0 4px 15px rgba(0, 166, 81, 0.08);
}

.faq-question {
  width: 100%;
  padding: 14px 20px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text-white);
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary-green);
}

.faq-item.active .faq-question {
  color: var(--primary-green);
}

.faq-icon {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 20px;
  color: var(--text-light-gray);
  font-size: 0.88rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding-bottom: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 10px;
}
