/* ============================================
   COVERAGE PAGE - ULTIMATE PREMIUM
   World-Class Design System
   ============================================ */

/* ============================================
   COVERAGE HERO - MATCHES ABOUT & SERVICES
   ============================================ */
.coverage-hero {
  position: relative;
  min-height: 420px;
  max-height: 550px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #030712;
  padding: 0;
}

/* BACKGROUND LIGHT (DEPTH) */
.coverage-hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    circle at 70% 50%, 
    rgba(59, 130, 246, 0.2), 
    transparent 60%
  );
  pointer-events: none;
}

/* NETWORK GLOW EFFECT - Subtle dots */
.coverage-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 75% 40%, rgba(96, 165, 250, 0.6) 2px, transparent 2px),
    radial-gradient(circle at 85% 55%, rgba(96, 165, 250, 0.4) 2px, transparent 2px),
    radial-gradient(circle at 70% 65%, rgba(255, 170, 50, 0.5) 2px, transparent 2px);
  background-repeat: no-repeat;
  z-index: 1;
  animation: pulseSubtle 4s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes pulseSubtle {
  from { opacity: 0.3; }
  to { opacity: 0.7; }
}

/* HERO IMAGE - Full immersive */
.coverage-hero .hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.coverage-hero .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: brightness(0.7) contrast(1.1);
  animation: slowZoom 25s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}

/* FADE OVERLAY - Blends image into dark background */
.coverage-hero .hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #030712 0%,
    rgba(3, 7, 18, 0.9) 25%,
    rgba(3, 7, 18, 0.5) 50%,
    transparent 100%
  );
  pointer-events: none;
}

/* CONTENT ABOVE EVERYTHING */
.coverage-hero .hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.coverage-hero .hero-content {
  max-width: 520px;
  overflow: visible;
  word-wrap: break-word;
}

.coverage-hero .breadcrumb-trail {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.coverage-hero .breadcrumb-trail a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}

.coverage-hero .breadcrumb-trail a:hover {
  color: var(--white);
}

.coverage-hero .breadcrumb-trail .current {
  color: var(--white);
}

.coverage-hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.08;
  margin-bottom: 8px;
  overflow: visible;
  word-wrap: break-word;
}

.coverage-hero h2 {
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 12px;
  overflow: visible;
  word-wrap: break-word;
}

.coverage-hero p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 460px;
  overflow: visible;
  word-wrap: break-word;
}

/* ============================================
   COVERAGE CHECKER - REDESIGNED
   ============================================ */
.coverage-checker {
  padding: 60px 40px 80px;
  position: relative;
  z-index: 2;
}

.coverage-checker-container {
  max-width: 820px;
  margin: 0 auto;
}

/* Section Header */
.checker-section-header {
  text-align: center;
  margin-bottom: 32px;
}

.checker-section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--cyan);
  background: rgba(96, 165, 250, 0.08);
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.checker-section-header h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.checker-section-header p {
  font-size: 16px;
  color: var(--gray);
}

/* Checker Box - Clean & Premium */
.checker-box {
  background: var(--card);
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: 20px;
  padding: 48px 48px 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.checker-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.03), transparent 50%);
  pointer-events: none;
}

/* Search Container */
.search-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-bottom: 14px;
}

.search-input-wrapper:focus-within {
  border-color: var(--cyan);
  box-shadow: 0 0 0 6px rgba(96, 165, 250, 0.08);
}

.search-icon {
  position: absolute;
  left: 16px;
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.search-input-wrapper input {
  flex: 1;
  padding: 18px 90px 18px 46px;
  background: transparent;
  border: none;
  font-size: 16px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

.search-input-wrapper input:focus {
  outline: none;
}

.search-input-wrapper input::placeholder {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 400;
}

/* Clear Button */
.clear-btn {
  position: absolute;
  right: 50px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  padding: 4px;
  transition: all 0.3s;
  display: none;
  align-items: center;
  justify-content: center;
}

.clear-btn.visible {
  display: flex;
}

.clear-btn:hover {
  color: var(--white);
}

.clear-btn svg {
  width: 16px;
  height: 16px;
}

/* Voice Button */
.voice-btn {
  position: absolute;
  right: 12px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  padding: 6px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.voice-btn:hover {
  color: var(--cyan);
}

.voice-btn.listening {
  color: #ef4444;
  animation: pulse-voice 1.2s ease-in-out infinite;
}

@keyframes pulse-voice {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.voice-btn svg {
  width: 22px;
  height: 22px;
}

/* Search Actions */
.search-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: 'Inter', sans-serif;
}

.action-btn:hover {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(96, 165, 250, 0.2);
  color: var(--white);
  transform: translateY(-2px);
}

.action-btn:active {
  transform: translateY(0);
}

.action-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.action-btn.location-btn svg {
  stroke: var(--cyan);
}

.action-btn.map-toggle-btn svg {
  stroke: var(--cyan);
}

.action-btn.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* ============================================
   RESULTS - Only shows after search
   ============================================ */
.coverage-result {
  margin-top: 24px;
  padding: 20px 24px;
  border-radius: 12px;
  display: none;
  animation: resultSlideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes resultSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.coverage-result.success {
  display: block;
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.coverage-result.error {
  display: block;
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.coverage-result.loading {
  display: block;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.result-success,
.result-error {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.result-success svg,
.result-error svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}

.result-success svg {
  stroke: #22c55e;
}

.result-error svg {
  stroke: #ef4444;
}

.result-success strong,
.result-error strong {
  display: block;
  font-size: 16px;
  color: var(--white);
  font-weight: 600;
}

.result-success span,
.result-error span {
  font-size: 14px;
  color: var(--gray);
  display: block;
  margin-top: 2px;
}

.result-cta {
  display: inline-block;
  margin-top: 10px;
  color: var(--cyan);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
}

.result-cta:hover {
  color: var(--white);
  border-bottom-color: var(--cyan);
}

/* ============================================
   PACKAGE DISPLAY - Only shows after successful search
   ============================================ */
.package-display {
  margin-top: 20px;
  display: none;
  animation: resultSlideUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.package-display.visible {
  display: block;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.package-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.package-card:hover {
  transform: translateY(-4px);
  border-color: rgba(96, 165, 250, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.04);
}

.package-card.featured {
  border-color: rgba(96, 165, 250, 0.25);
  background: rgba(59, 130, 246, 0.04);
}

.package-badge {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: var(--navy);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 10px;
  border-radius: 20px;
  white-space: nowrap;
  z-index: 2;
}

.package-speed {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 2px;
  letter-spacing: -0.5px;
  padding-top: 10px;
}

.package-card.featured .package-speed {
  padding-top: 14px;
}

.package-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.package-price span {
  font-size: 12px;
  font-weight: 400;
  color: var(--gray);
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 14px 0;
}

.package-features li {
  font-size: 12px;
  color: var(--gray);
  padding: 3px 0;
}

.package-btn {
  display: inline-block;
  background: var(--cyan);
  color: var(--navy);
  border: none;
  padding: 8px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  width: 100%;
}

.package-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(96, 165, 250, 0.3);
}

.no-packages {
  color: var(--gray);
  font-size: 14px;
  text-align: center;
  padding: 20px;
}

/* ============================================
   MAP SECTION - PREMIUM
   ============================================ */
.map-section {
  padding: 0 40px 60px;
  display: none;
  animation: resultSlideUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.map-section.visible {
  display: block;
}

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

.map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.map-header h3 {
  font-size: 20px;
  font-weight: 700;
}

.map-header p {
  font-size: 14px;
  color: var(--gray);
}

.map-actions {
  display: flex;
  gap: 10px;
}

.pin-btn,
.close-map-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: 'Inter', sans-serif;
}

.pin-btn:hover,
.close-map-btn:hover {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(96, 165, 250, 0.2);
}

.pin-btn svg,
.close-map-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--cyan);
}

.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.coverage-map {
  height: 420px;
  width: 100%;
}

.map-result {
  margin-top: 16px;
  min-height: 40px;
}

/* ============================================
   LEAD FORM - PREMIUM
   ============================================ */
.lead-section {
  padding: 40px 40px 80px;
  animation: resultSlideUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lead-container {
  max-width: 700px;
  margin: 0 auto;
}

.lead-box {
  background: var(--card);
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: 24px;
  padding: 48px 52px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.lead-badge {
  display: inline-block;
  background: rgba(96, 165, 250, 0.08);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.lead-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.lead-subtitle {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 28px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

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

.required {
  color: #ef4444;
}

.optional {
  color: var(--gray);
  font-weight: 400;
  font-size: 12px;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  font-size: 14px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.06);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
  border-color: #ef4444;
}

.form-group input.success,
.form-group textarea.success,
.form-group select.success {
  border-color: #34d399;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.input-focus-ring {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 2px;
}

.form-group input:focus ~ .input-focus-ring,
.form-group textarea:focus ~ .input-focus-ring {
  width: 80%;
  left: 10%;
}

.error-message {
  font-size: 12px;
  color: #ef4444;
  display: none;
}

.error-message.visible {
  display: block;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--gray);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--cyan);
  flex-shrink: 0;
  cursor: pointer;
}

/* ============================================
   FORM SUMMARY - PREMIUM
   ============================================ */
.form-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.summary-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.summary-icon {
  font-size: 20px;
}

.summary-item > div {
  display: flex;
  flex-direction: column;
}

.summary-label {
  font-size: 11px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.summary-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

/* ============================================
   SUBMIT BUTTON - PREMIUM
   ============================================ */
.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 32px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: var(--white);
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: 'Inter', sans-serif;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.submit-btn:hover::before {
  opacity: 1;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.submit-btn svg {
  width: 20px;
  height: 20px;
}

.submit-btn.loading {
  pointer-events: none;
}

.form-security {
  font-size: 12px;
  color: var(--gray);
  text-align: center;
  margin-top: 8px;
}

/* ============================================
   FORM SUCCESS - PREMIUM
   ============================================ */
.form-success {
  text-align: center;
  padding: 20px 0;
  animation: resultSlideUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-icon {
  font-size: 64px;
  margin-bottom: 16px;
}

.form-success h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.form-success p {
  color: var(--gray);
  font-size: 15px;
  max-width: 450px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

.success-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 400px;
  margin: 0 auto 24px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.detail-item span {
  font-size: 11px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.detail-item strong {
  font-size: 14px;
  color: var(--white);
}

.btn-home {
  display: inline-block;
  padding: 12px 32px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}

.btn-home:hover {
  border-color: var(--cyan);
  background: rgba(59, 130, 246, 0.05);
}

/* ============================================
   PRICING SECTION - PREMIUM
   ============================================ */
.pricing-section {
  padding: 60px 40px 72px;
  background: linear-gradient(180deg, #050c1a 0%, #0a1535 50%, #050c1a 100%);
}

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

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--cyan);
  background: rgba(96, 165, 250, 0.08);
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--gray);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.pricing-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(96, 165, 250, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured {
  border-color: rgba(96, 165, 250, 0.25);
  background: rgba(59, 130, 246, 0.04);
}

.pricing-badge {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: var(--navy);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 10px;
  border-radius: 20px;
  white-space: nowrap;
  z-index: 2;
}

.pricing-speed {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 2px;
  letter-spacing: -0.5px;
  padding-top: 12px;
}

.pricing-card.featured .pricing-speed {
  padding-top: 16px;
}

.pricing-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.pricing-price span {
  font-size: 13px;
  font-weight: 400;
  color: var(--gray);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
}

.pricing-features li {
  font-size: 13px;
  color: var(--gray);
  padding: 4px 0;
}

.pricing-btn {
  display: inline-block;
  background: var(--blue-lt);
  color: var(--white);
  border: none;
  padding: 10px 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.pricing-btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

.pricing-note {
  margin-top: 24px;
  font-size: 13px;
  color: var(--gray);
  text-align: center;
  line-height: 1.7;
}

/* ============================================
   CTA SECTION - MATCHES SERVICES PAGE
   ============================================ */
.cta-section {
  padding: 80px 40px;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, #0a1535 0%, #0f1a4a 40%, #0a1535 100%);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 50px 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.cta-container::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  flex: 1;
}

.cta-content h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--white) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content p {
  font-size: 16px;
  color: var(--gray);
  margin: 0;
}

.cta-buttons {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

.cta-primary {
  display: inline-block;
  background: var(--blue-lt);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35);
}

.cta-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.cta-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.5);
}

.cta-primary:hover::before {
  opacity: 1;
}

.cta-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  white-space: nowrap;
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ============================================
   AUTOCOMPLETE - PREMIUM
   ============================================ */
.autocomplete-container {
  position: absolute !important;
  top: calc(100% + 6px) !important;
  left: 0 !important;
  right: 0 !important;
  background: var(--card) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 14px !important;
  max-height: 260px !important;
  overflow-y: auto !important;
  z-index: 1000 !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4) !important;
  padding: 6px !important;
}

.autocomplete-item {
  padding: 12px 16px !important;
  cursor: pointer !important;
  border-radius: 10px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  transition: all 0.2s !important;
  color: rgba(255, 255, 255, 0.8) !important;
}

.autocomplete-item:hover {
  background: rgba(59, 130, 246, 0.08) !important;
  color: var(--white) !important;
}

.autocomplete-item .tier-badge {
  font-size: 10px !important;
  font-weight: 600 !important;
  padding: 2px 12px !important;
  border-radius: 20px !important;
}

.autocomplete-item .tier-badge.standard {
  background: rgba(96, 165, 250, 0.1) !important;
  color: var(--cyan) !important;
}

.autocomplete-item .tier-badge.special {
  background: rgba(168, 85, 247, 0.1) !important;
  color: #a855f7 !important;
}

/* ============================================
   SKELETON LOADING - PREMIUM
   ============================================ */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.skeleton-loading {
  animation: shimmer 1.5s ease-in-out infinite;
  background: linear-gradient(90deg, rgba(255,255,255,0.02) 25%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0.02) 75%);
  background-size: 200% 100%;
  border-radius: 12px;
  padding: 20px;
}

.skeleton-line {
  height: 14px;
  margin: 8px 0;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
}

.skeleton-line.short { width: 60%; }
.skeleton-line.medium { width: 80%; }
.skeleton-line.long { width: 100%; }

/* ============================================
   COMING SOON FORM - PREMIUM
   ============================================ */
.coming-soon-form-wrapper {
  margin-top: 20px;
}

.coming-soon-form {
  background: rgba(59, 130, 246, 0.04);
  border: 1px solid rgba(59, 130, 246, 0.08);
  border-radius: 16px;
  padding: 28px;
  margin-top: 16px;
  text-align: center;
}

.coming-soon-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.coming-soon-form h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.coming-soon-form p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 16px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.coming-soon-input-group {
  display: flex;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto;
}

.coming-soon-input-group input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}

.coming-soon-input-group input:focus {
  outline: none;
  border-color: var(--cyan);
}

.coming-soon-input-group input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.coming-soon-input-group button {
  padding: 12px 24px;
  background: var(--cyan);
  color: var(--navy);
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}

.coming-soon-input-group button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(96, 165, 250, 0.3);
}

.coming-soon-form small {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  color: var(--gray);
}

.future-notification {
  margin-top: 12px;
  min-height: 24px;
}

.future-notification .success {
  color: #34d399;
}

.future-notification .error {
  color: #ef4444;
}

.coming-soon-vote {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--gray);
}

.vote-btn {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
}

.vote-btn:hover {
  border-color: var(--cyan);
  background: rgba(59, 130, 246, 0.15);
}

.vote-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   RESPONSIVE - PREMIUM
   ============================================ */
@media (max-width: 1024px) {
  .coverage-hero {
    max-height: none;
    min-height: 380px;
  }

  .coverage-hero .hero-image {
    width: 65%;
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .cta-container {
    padding: 40px 50px;
  }

  .cta-buttons {
    flex-shrink: 1;
  }
}

@media (max-width: 768px) {
  .coverage-hero {
    min-height: auto;
    padding: 60px 0 40px 0;
    max-height: none;
  }

  .coverage-hero .hero-image {
    width: 100%;
    height: 100%;
    opacity: 0.3;
  }

  .coverage-hero .hero-image img {
    opacity: 1;
    filter: brightness(0.5) contrast(1.2);
  }

  .coverage-hero .hero-image::after {
    background: linear-gradient(
      180deg,
      #030712 0%,
      rgba(3, 7, 18, 0.9) 30%,
      rgba(3, 7, 18, 0.6) 60%,
      #030712 100%
    );
  }

  .coverage-hero .hero-inner {
    padding: 0 20px;
  }

  .coverage-hero .hero-content {
    max-width: 100%;
    text-align: center;
    padding-bottom: 10px;
  }

  .coverage-hero h1 {
    font-size: 28px;
  }

  .coverage-hero h2 {
    font-size: 16px;
  }

  .coverage-hero p {
    font-size: 14px;
    max-width: 100%;
  }

  .coverage-hero .breadcrumb-trail {
    justify-content: center;
  }

  /* Fix for globe overlay on mobile */
  .globe-overlay {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    transform: none !important;
    width: 160px !important;
    height: 160px !important;
    margin: 0 auto 10px !important;
    display: block !important;
  }
  
  .globe-ring-1 { width: 150px; height: 150px; }
  .globe-ring-2 { width: 130px; height: 130px; }
  .globe-ring-3 { width: 110px; height: 110px; }
  .cyber-globe-core { width: 80px; height: 80px; }
  .globe-node { width: 18px; height: 18px; font-size: 7px; }
  .node-pos-1 { top: 3px; left: 50%; transform: translateX(-50%); }
  .node-pos-2 { top: 30px; right: 3px; }
  .node-pos-3 { bottom: 40px; right: -1px; }
  .node-pos-4 { bottom: 8px; left: 72%; }
  .node-pos-5 { bottom: 22px; left: 14px; }
  .node-pos-6 { top: 45px; left: 1px; }

  /* Coverage Checker - Mobile */
  .coverage-checker {
    padding: 40px 20px 60px;
  }

  .checker-box {
    padding: 28px 20px 24px;
    border-radius: 16px;
  }

  .checker-section-header h2 {
    font-size: 24px;
  }

  .checker-section-header p {
    font-size: 14px;
  }

  .search-input-wrapper input {
    font-size: 14px;
    padding: 14px 80px 14px 40px;
  }

  .search-icon svg {
    width: 18px;
    height: 18px;
  }

  .voice-btn svg {
    width: 18px;
    height: 18px;
  }

  .search-actions {
    flex-direction: column;
    align-items: center;
  }

  .action-btn {
    width: 100%;
    justify-content: center;
  }

  .packages-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .package-card {
    padding: 16px 12px;
  }

  .package-speed {
    font-size: 17px;
  }

  .package-price {
    font-size: 16px;
  }

  .map-section {
    padding: 0 20px 40px;
  }

  .coverage-map {
    height: 300px;
  }

  .map-header {
    flex-direction: column;
    text-align: center;
  }

  .map-actions {
    width: 100%;
    justify-content: center;
  }

  .pricing-section {
    padding: 40px 20px 48px;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .pricing-card {
    padding: 20px 16px;
  }

  .cta-section {
    padding: 48px 20px;
  }

  .cta-container {
    flex-direction: column;
    text-align: center;
    padding: 32px 20px;
    gap: 20px;
  }

  .cta-content h2 {
    font-size: 22px;
  }

  .cta-content p {
    font-size: 14px;
  }

  .cta-buttons {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .cta-primary,
  .cta-secondary {
    padding: 12px 24px;
    font-size: 13px;
    white-space: normal;
    flex: 1;
    min-width: 150px;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-summary {
    grid-template-columns: 1fr;
  }

  .success-details {
    grid-template-columns: 1fr;
  }

  .lead-box {
    padding: 24px 16px;
  }

  .lead-title {
    font-size: 20px;
  }

  .coming-soon-input-group {
    flex-direction: column;
  }

  .coming-soon-input-group button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .coverage-hero {
    min-height: auto;
    padding: 40px 0 30px 0;
  }

  .coverage-hero h1 {
    font-size: 24px;
  }

  .coverage-hero h2 {
    font-size: 15px;
  }

  .coverage-hero p {
    font-size: 13px;
  }

  /* Globe even smaller on very small screens */
  .globe-overlay {
    width: 140px !important;
    height: 140px !important;
  }
  
  .globe-ring-1 { width: 130px; height: 130px; }
  .globe-ring-2 { width: 110px; height: 110px; }
  .globe-ring-3 { width: 90px; height: 90px; }
  .cyber-globe-core { width: 70px; height: 70px; }
  .globe-node { width: 16px; height: 16px; font-size: 6px; }
  .node-pos-1 { top: 2px; left: 50%; transform: translateX(-50%); }
  .node-pos-2 { top: 25px; right: 2px; }
  .node-pos-3 { bottom: 35px; right: -1px; }
  .node-pos-4 { bottom: 6px; left: 72%; }
  .node-pos-5 { bottom: 18px; left: 12px; }
  .node-pos-6 { top: 38px; left: 1px; }

  /* Coverage Checker - Small Mobile */
  .coverage-checker {
    padding: 30px 16px 40px;
  }

  .checker-box {
    padding: 20px 14px 18px;
    border-radius: 12px;
  }

  .checker-section-header h2 {
    font-size: 20px;
  }

  .search-input-wrapper input {
    font-size: 13px;
    padding: 12px 70px 12px 36px;
  }

  .search-icon svg {
    width: 16px;
    height: 16px;
  }

  .voice-btn svg {
    width: 16px;
    height: 16px;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 0 auto;
  }

  .action-btn {
    font-size: 12px;
    padding: 8px 16px;
  }

  .pricing-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .pricing-speed {
    font-size: 16px;
  }

  .pricing-price {
    font-size: 18px;
  }

  .coverage-map {
    height: 220px;
  }

  .cta-container {
    padding: 24px 16px;
  }

  .cta-content h2 {
    font-size: 20px;
  }

  .cta-content p {
    font-size: 13px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    max-width: 260px;
    padding: 10px 20px;
    font-size: 13px;
  }

  .coming-soon-input-group {
    flex-direction: column;
  }

  .coming-soon-input-group button {
    width: 100%;
  }

  .lead-box {
    padding: 20px 12px;
  }

  .lead-title {
    font-size: 18px;
  }

  .form-summary {
    gap: 10px;
    padding: 12px 14px;
  }

  .summary-item {
    gap: 6px;
  }

  .summary-icon {
    font-size: 14px;
  }

  .summary-value {
    font-size: 12px;
  }
}

@media (max-width: 380px) {
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 0 auto;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 0 auto;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  nav,
  .whatsapp-fab,
  .cta-section,
  footer {
    display: none !important;
  }

  .checker-box {
    box-shadow: none !important;
    border: 1px solid #1a1a1a !important;
  }

  .coverage-hero {
    min-height: auto !important;
    padding: 40px !important;
  }
}

/* ============================================
   FUTURISTIC GLOBE OVERLAY - COVERAGE PAGE
   ============================================ */

/* Globe Container - Positioned on RIGHT side */
.globe-overlay {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  z-index: 5;
  width: 320px;
  height: 320px;
  pointer-events: none;
}

/* Outer Orbital Rings */
.globe-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.15);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ringSpin 20s linear infinite;
}

.globe-ring-1 {
  width: 300px;
  height: 300px;
  border-color: rgba(59, 130, 246, 0.12);
  animation-duration: 30s;
}

.globe-ring-2 {
  width: 260px;
  height: 260px;
  border-color: rgba(59, 130, 246, 0.08);
  animation-duration: 25s;
  animation-direction: reverse;
}

.globe-ring-3 {
  width: 220px;
  height: 220px;
  border-color: rgba(96, 165, 250, 0.06);
  animation-duration: 20s;
  border-style: dashed;
}

@keyframes ringSpin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Cyber Globe Core - VIBRANT BLUE */
.cyber-globe-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(59, 130, 246, 0.8) 0%, rgba(37, 99, 235, 0.5) 30%, rgba(2, 6, 23, 0.95) 80%);
  box-shadow: 
    inset 0 0 60px rgba(59, 130, 246, 0.5),
    0 0 50px rgba(59, 130, 246, 0.4),
    0 0 100px rgba(37, 99, 235, 0.25),
    0 0 150px rgba(59, 130, 246, 0.15);
  border: 1.5px solid rgba(59, 130, 246, 0.4);
  animation: globeFloat 8s ease-in-out infinite alternate;
}

@keyframes globeFloat {
  0% { transform: translate(-50%, -50%) scale(1); }
  100% { transform: translate(-50%, -50%) scale(1.02); }
}

/* Globe Mesh - More visible */
.globe-mesh {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  background-image: 
    linear-gradient(rgba(59, 130, 246, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.3) 1px, transparent 1px);
  background-size: 10px 10px;
  border-radius: 50%;
  animation: meshScroll 10s linear infinite;
}

@keyframes meshScroll {
  0% { background-position: 0 0; }
  100% { background-position: 50px 50px; }
}

/* Globe Pulse Ring - More visible */
.globe-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(59, 130, 246, 0.3);
  animation: pulseRing 3s ease-in-out infinite;
}

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

/* Floating Nodes - Vibrant */
.globe-node {
  position: absolute;
  width: 28px;
  height: 28px;
  background: rgba(3, 10, 36, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid #3b82f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  font-size: 11px;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.4), inset 0 0 10px rgba(59, 130, 246, 0.2);
  z-index: 10;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: auto;
  cursor: pointer;
}

.globe-node i {
  position: relative;
  z-index: 2;
}

.globe-node:hover {
  color: #ffffff;
  border-color: #60a5fa;
  background: rgba(59, 130, 246, 0.3);
  transform: scale(1.2);
  box-shadow: 0 0 30px #3b82f6, 0 0 60px rgba(59, 130, 246, 0.3);
}

/* Node Pulse Ring - Vibrant */
.node-pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1.5px solid rgba(59, 130, 246, 0.3);
  animation: nodePulse 2.5s ease-out infinite;
}

.globe-node:nth-child(1) .node-pulse-ring { animation-delay: 0s; }
.globe-node:nth-child(2) .node-pulse-ring { animation-delay: 0.4s; }
.globe-node:nth-child(3) .node-pulse-ring { animation-delay: 0.8s; }
.globe-node:nth-child(4) .node-pulse-ring { animation-delay: 1.2s; }
.globe-node:nth-child(5) .node-pulse-ring { animation-delay: 1.6s; }
.globe-node:nth-child(6) .node-pulse-ring { animation-delay: 2.0s; }

@keyframes nodePulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* Node Positions - CORRECTED to match other pages */
.node-pos-1 { top: 8px; left: 50%; transform: translateX(-50%); }
.node-pos-2 { top: 55px; right: 12px; }
.node-pos-3 { bottom: 85px; right: -2px; }
.node-pos-4 { bottom: 18px; left: 72%; }
.node-pos-5 { bottom: 40px; left: 28px; }
.node-pos-6 { top: 88px; left: 5px; }

/* Connection Lines SVG */
.globe-connections {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.conn-line {
  stroke: rgba(59, 130, 246, 0.2);
  stroke-width: 1;
  animation: linePulse 3s ease-in-out infinite;
}

.conn-line:nth-child(1) { animation-delay: 0s; }
.conn-line:nth-child(2) { animation-delay: 0.4s; }
.conn-line:nth-child(3) { animation-delay: 0.8s; }
.conn-line:nth-child(4) { animation-delay: 1.2s; }
.conn-line:nth-child(5) { animation-delay: 1.6s; }
.conn-line:nth-child(6) { animation-delay: 2.0s; }
.conn-line:nth-child(7) { animation-delay: 2.4s; }
.conn-line:nth-child(8) { animation-delay: 2.8s; }

@keyframes linePulse {
  0%, 100% { stroke: rgba(59, 130, 246, 0.1); }
  50% { stroke: rgba(59, 130, 246, 0.4); }
}

.center-dot {
  fill: #60a5fa;
  opacity: 0.8;
  animation: centerDotPulse 2s ease-in-out infinite;
}

@keyframes centerDotPulse {
  0%, 100% { opacity: 0.5; r: 3; }
  50% { opacity: 1; r: 5; }
}

/* Responsive - Adjust globe position on smaller screens */
@media (max-width: 1024px) {
  .globe-overlay {
    width: 260px;
    height: 260px;
    right: 3%;
  }
  .globe-ring-1 { width: 240px; height: 240px; }
  .globe-ring-2 { width: 200px; height: 200px; }
  .globe-ring-3 { width: 160px; height: 160px; }
  .cyber-globe-core { width: 120px; height: 120px; }
  .globe-node { width: 24px; height: 24px; font-size: 10px; }
  .node-pos-2 { top: 45px; right: 8px; }
  .node-pos-3 { bottom: 65px; right: -1px; }
  .node-pos-6 { top: 70px; left: 3px; }
}

/* ============================================
   EXTRA LARGE SCREENS - COVERAGE PAGE
   ============================================ */

/* For screens 1800px and larger (100+ inch monitors) */
@media (min-width: 1800px) {
  .coverage-hero {
    min-height: 500px;
    max-height: 650px;
  }

  .coverage-hero .hero-inner {
    max-width: 1400px;
    padding: 0 60px;
  }

  .coverage-hero .hero-content {
    max-width: 650px;
  }

  .coverage-hero h1 {
    font-size: clamp(40px, 4vw, 56px);
  }

  .coverage-hero h2 {
    font-size: clamp(22px, 1.8vw, 28px);
  }

  .coverage-hero p {
    font-size: 17px;
  }

  .coverage-hero .hero-image {
    width: 58%;
  }

  /* Globe larger on large screens */
  .globe-overlay {
    width: 400px;
    height: 400px;
  }

  .globe-ring-1 { width: 380px; height: 380px; }
  .globe-ring-2 { width: 330px; height: 330px; }
  .globe-ring-3 { width: 280px; height: 280px; }

  .cyber-globe-core {
    width: 180px;
    height: 180px;
  }

  .globe-node {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .node-pos-2 { top: 65px; right: 15px; }
  .node-pos-3 { bottom: 100px; right: -2px; }
  .node-pos-6 { top: 105px; left: 6px; }

  /* Coverage Checker */
  .coverage-checker {
    padding: 80px 60px 100px;
  }

  .checker-box {
    padding: 56px 64px;
    border-radius: 24px;
  }

  .checker-section-header h2 {
    font-size: 38px;
  }

  .checker-section-header p {
    font-size: 17px;
  }

  .search-input-wrapper input {
    font-size: 18px;
    padding: 20px 100px 20px 52px;
  }

  .search-icon svg {
    width: 22px;
    height: 22px;
  }

  .voice-btn svg {
    width: 24px;
    height: 24px;
  }

  .action-btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  /* Packages */
  .packages-grid {
    gap: 18px;
  }

  .package-card {
    padding: 24px 20px;
  }

  .package-speed {
    font-size: 22px;
  }

  .package-price {
    font-size: 20px;
  }

  /* Pricing */
  .pricing-section {
    padding: 80px 60px 90px;
  }

  .pricing-grid {
    max-width: 1400px;
    gap: 24px;
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .pricing-speed {
    font-size: 24px;
  }

  .pricing-price {
    font-size: 26px;
  }

  /* Map */
  .coverage-map {
    height: 500px;
  }

  /* CTA */
  .cta-container {
    max-width: 1400px;
    padding: 60px 80px;
  }

  .cta-content h2 {
    font-size: 32px;
  }

  .cta-content p {
    font-size: 18px;
  }

  .cta-primary {
    padding: 16px 40px;
    font-size: 17px;
  }

  /* Lead Form */
  .lead-box {
    padding: 56px 64px;
  }

  .lead-title {
    font-size: 32px;
  }
}

/* For screens 2200px and larger */
@media (min-width: 2200px) {
  .coverage-hero .hero-inner {
    max-width: 1600px;
    padding: 0 80px;
  }

  .coverage-hero h1 {
    font-size: clamp(48px, 4vw, 64px);
  }

  .globe-overlay {
    width: 480px;
    height: 480px;
  }

  .globe-ring-1 { width: 450px; height: 450px; }
  .globe-ring-2 { width: 390px; height: 390px; }
  .globe-ring-3 { width: 330px; height: 330px; }

  .cyber-globe-core {
    width: 210px;
    height: 210px;
  }

  .globe-node {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .checker-box {
    padding: 64px 72px;
  }

  .packages-grid {
    gap: 20px;
  }

  .pricing-grid {
    max-width: 1600px;
    gap: 28px;
  }

  .cta-container {
    max-width: 1600px;
    padding: 70px 100px;
  }
}

/* For screens 3000px and larger */
@media (min-width: 3000px) {
  .coverage-hero .hero-inner {
    max-width: 1800px;
    padding: 0 100px;
  }

  .coverage-hero h1 {
    font-size: 72px;
  }

  .coverage-hero .hero-content {
    max-width: 800px;
  }

  .globe-overlay {
    width: 550px;
    height: 550px;
  }

  .globe-ring-1 { width: 520px; height: 520px; }
  .globe-ring-2 { width: 460px; height: 460px; }
  .globe-ring-3 { width: 400px; height: 400px; }

  .cyber-globe-core {
    width: 250px;
    height: 250px;
  }

  .globe-node {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .checker-box {
    padding: 72px 80px;
  }

  .checker-section-header h2 {
    font-size: 44px;
  }

  .pricing-grid {
    max-width: 1800px;
    gap: 32px;
  }

  .pricing-card {
    padding: 40px 32px;
  }

  .pricing-speed {
    font-size: 28px;
  }

  .pricing-price {
    font-size: 30px;
  }

  .packages-grid {
    gap: 24px;
  }

  .package-card {
    padding: 28px 24px;
  }

  .package-speed {
    font-size: 26px;
  }

  .package-price {
    font-size: 24px;
  }

  .coverage-map {
    height: 600px;
  }

  .cta-container {
    max-width: 1800px;
    padding: 80px 120px;
  }

  .cta-content h2 {
    font-size: 40px;
  }

  .cta-content p {
    font-size: 20px;
  }

  .cta-primary {
    padding: 20px 48px;
    font-size: 20px;
  }

  .lead-box {
    padding: 64px 72px;
  }

  .lead-title {
    font-size: 36px;
  }

  .lead-subtitle {
    font-size: 18px;
  }

  .form-group label {
    font-size: 15px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 16px;
    padding: 16px 20px;
  }
}