:root {
  --gold: #f2b705;
  --gold-dark: #c98a00;
  --amber: #f5d061;
  --charcoal: #1e1f24;
  --slate: #31323a;
  --graphite: #3f414d;
  --silver: #d9dbdf;
  --mist: #f3f4f6;
  --white: #ffffff;
  --hero-tilt-x: 0deg;
  --hero-tilt-y: 0deg;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  margin: 0;
  color: var(--mist);
  background: radial-gradient(
      circle at top,
      rgba(242, 183, 5, 0.15),
      transparent 40%
    ),
    #0f1014;
  font-size: clamp(14px, 1.5vw, 16px);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* No Internet Connection Screen */
.no-internet-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f1014 0%, #16171f 50%, #0f1117 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  animation: noInternetFadeIn 0.4s ease-out;
}

@keyframes noInternetFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.no-internet-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  text-align: center;
  padding: 2rem;
  max-width: 500px;
  width: 100%;
}

.no-internet-icon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(244, 67, 54, 0.15),
    rgba(244, 67, 54, 0.05)
  );
  border: 2px solid rgba(244, 67, 54, 0.3);
  border-radius: 50%;
  color: #f44336;
  animation: noInternetIconPulse 2s ease-in-out infinite;
}

@keyframes noInternetIconPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(244, 67, 54, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 20px rgba(244, 67, 54, 0);
  }
}

.no-internet-icon svg {
  width: 60px;
  height: 60px;
}

.no-internet-content h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.02em;
}

.no-internet-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.6;
}

.retry-btn {
  background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
  color: var(--charcoal);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(242, 183, 5, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  white-space: nowrap;
}

.retry-btn span {
  display: inline-block;
}

.retry-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 183, 5, 0.3);
  background: linear-gradient(135deg, var(--amber) 0%, var(--gold) 100%);
}

.retry-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(242, 183, 5, 0.2);
}

.retry-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  animation: retryIconRotate 2s linear infinite;
}

.retry-btn:hover svg {
  animation: retryIconRotate 0.5s linear infinite;
}

@keyframes retryIconRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.page {
  min-height: 100vh;
  background: linear-gradient(180deg, #101119 0%, #16171f 50%, #0f1117 100%);
  color: var(--mist);
  opacity: 1;
}

.eyebrow {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: clamp(0.65rem, 1.5vw, 0.72rem);
  font-weight: 600;
  color: var(--gold) !important;
  text-shadow: 0 0 15px rgba(242, 183, 5, 0.4);
}

.section-header .eyebrow {
  color: var(--gold) !important;
}

/* Header Navigation */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  padding: 1rem 0;
  z-index: 1000;
  width: 100%;
  box-sizing: border-box;
  transition: background 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    border-bottom 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: background, border-bottom, box-shadow;
}

/* Header when scrolled - sticky with solid background */
.header.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #0f1115;
  /* border-bottom: 1px solid rgba(242, 183, 5, 0.25); */
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4),
    0 1px 0 rgba(255, 255, 255, 0.05) inset;
  border-bottom: 1px solid rgba(242, 183, 5, 0.2);
}

/* Hero Section */
.hero {
  position: relative;
  padding: calc(3rem + 56px) 0 2.5rem 0;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(242, 183, 5, 0.2);
  background: #11121a;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  box-sizing: border-box;
}

/* Clean Particles container - visually appealing */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.3s ease;
  filter: blur(0.5px);
}

/* Canvas styling for particles */
#particles-js {
  width: 100%;
  height: 100%;
  background: transparent;
  opacity: 0.9;
}

/* Subtle enhancement on hover */
.hero:hover #particles-js {
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* Darkened background image */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("../images/background/cuatas_bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.4;
  filter: brightness(0.5) contrast(1.1);
}

/* Dark overlay for additional darkening */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: 
    /* Dark overlay for additional darkening */ linear-gradient(
    180deg,
    rgba(10, 11, 15, 0.65) 0%,
    rgba(15, 17, 21, 0.55) 50%,
    rgba(10, 11, 15, 0.65) 100%
  );
  background-size: 100% 100%;
}

/* Subtle background animation for interactivity */
@keyframes backgroundShift {
  0%,
  100% {
    background-position: 0 0, 0 0, 0 0, 0 0, 50% 0%, 0 0;
  }
  50% {
    background-position: 30px 30px, -30px -30px, 10px 10px, -10px -10px, 50% 0%,
      0 0;
  }
}

/* Subtle glow pulse animation */
@keyframes glowPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.02);
  }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .hero::before {
    animation: none;
  }

  .hero::after {
    animation: none;
  }
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 2vw, 2rem);
  margin: 0 auto;
  position: relative;
  z-index: 10;
  padding: 0;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.brand:hover {
  opacity: 0.9;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand p {
  margin: 0;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
}

.brand .eyebrow {
  font-size: 0.575rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.125rem;
  display: block;
}

.nav-menu-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  font-weight: 500;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease, text-shadow 0.2s ease;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.nav-links a:hover {
  color: var(--gold);
  text-shadow: 0 0 15px rgba(242, 183, 5, 0.5);
}

.nav-links a.active {
  color: var(--gold);
  text-shadow: 0 0 15px rgba(242, 183, 5, 0.5);
}

/* Navigation Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.dropdown-trigger svg {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
  margin-left: 0.25rem;
}

.nav-dropdown:hover .dropdown-trigger svg {
  transform: rotate(180deg);
}

@media (min-width: 1369px) {
  .nav-dropdown.active .dropdown-trigger svg {
    transform: rotate(180deg);
  }
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 1rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 0.5rem 0;
  min-width: 200px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
  width: 100%;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  text-shadow: none;
}

.dropdown-menu a:hover {
  background: rgba(242, 183, 5, 0.1);
  color: var(--gold);
  padding-left: 1.75rem;
}

/* Login Button */
.login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(242, 183, 5, 0.15) 0%,
    rgba(242, 183, 5, 0.05) 100%
  );
  border: 1px solid rgba(242, 183, 5, 0.3);
  border-radius: 0.5rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.desktop-login {
  display: inline-flex;
}

.mobile-login {
  display: none;
}

.login-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(242, 183, 5, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.login-btn:hover {
  background: linear-gradient(
    135deg,
    rgba(242, 183, 5, 0.25) 0%,
    rgba(242, 183, 5, 0.15) 100%
  );
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(242, 183, 5, 0.3);
}

.login-btn:hover::before {
  left: 100%;
}

.login-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(242, 183, 5, 0.2);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1001;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  margin: 0;
  position: relative;
  box-sizing: border-box;
}

.nav-toggle:hover {
  background: transparent;
}

.nav-toggle:active {
  transform: scale(0.95);
  transform-origin: center;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
  display: block;
  margin: 0;
  transform-origin: center center;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -11px;
  margin-top: -1px;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.nav-toggle span:nth-child(2) {
  transform: translateY(0);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(7px);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(0) rotate(45deg);
  transform-origin: center center;
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateY(0) scaleX(0);
  transform-origin: center center;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
  transform-origin: center center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(0.5rem, 1.5vw, 1rem) 0;
  width: 100%;
  box-sizing: border-box;
}

/* Ensure all hero content is above particles */
.hero-content > * {
  position: relative;
  z-index: 1;
}

.hero-content > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 400px;
  gap: 0;
}

.hero-content .eyebrow {
  margin-bottom: clamp(0.625rem, 1.2vw, 0.875rem);
}

.hero-content h1 {
  font-size: clamp(2rem, 6vw + 1rem, 4.5rem);
  margin: 0;
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5), 0 0 40px rgba(242, 183, 5, 0.1);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-content h1.hero-heading {
  display: inline-block;
}

.hero-heading .text-gold {
  color: var(--gold);
  font-weight: 800;
}

.hero-heading .speed-icon {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5rem;
  color: var(--gold);
  width: clamp(2rem, 4vw, 3rem);
  height: clamp(2rem, 4vw, 3rem);
  animation: speedPulse 2s ease-in-out infinite;
  filter: drop-shadow(0 2px 8px rgba(242, 183, 5, 0.3));
}

@keyframes speedPulse {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: scale(1.1) rotate(5deg);
    opacity: 0.9;
  }
}

.hero-heading-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.65rem;
}

.hero-heading-icon svg {
  width: clamp(1.75rem, 3vw, 2.25rem);
  height: clamp(1.75rem, 3vw, 2.25rem);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

.hero-content .description {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  margin-right: auto;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
  font-size: clamp(0.9rem, 1.8vw + 0.3rem, 1.1rem);
  max-width: 90%;
  width: fit-content;
  white-space: nowrap;
  padding: 0 clamp(1.25rem, 2.5vw, 2rem);
  padding-left: clamp(0.75rem, 1.5vw, 1.25rem);
  border-left: 4px solid var(--gold);
  background: transparent;
  border-radius: 0 0.75rem 0.75rem 0;
  backdrop-filter: blur(10px);
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  transition: all 0.3s ease;
}

.hero-content .description::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(
    180deg,
    var(--gold) 0%,
    rgba(242, 183, 5, 0.7) 100%
  );
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 15px rgba(242, 183, 5, 0.5);
  opacity: 0.8;
}

.hero-content .description:hover {
  background: transparent;
  border-left-color: rgba(242, 183, 5, 0.9);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset, 0 0 20px rgba(242, 183, 5, 0.2);
}

.hero-content .description:hover::before {
  opacity: 1;
  box-shadow: 0 0 20px rgba(242, 183, 5, 0.7);
}

.hero-comparison-text {
  margin-top: clamp(0.75rem, 1.5vw, 1.25rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  padding: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  line-height: 1.7;
  width: fit-content;
  max-width: 100%;
}

.hero-comparison-text p {
  margin: 0;
  margin-bottom: clamp(0.375rem, 0.75vw, 0.5rem);
  text-align: left;
}

.hero-comparison-text p:last-child {
  margin-bottom: 0;
}

.hero-comparison-text p strong {
  color: var(--gold);
  font-weight: 600;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: clamp(0.75rem, 1.5vw, 1.25rem);
  margin-bottom: 0;
  padding-top: 0;
}

.btn {
  padding: 0.9rem 1.8rem;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

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

.btn-text {
  display: inline-block;
}

.btn:hover .btn-icon {
  transform: translateX(2px);
}

.btn.ghost:hover .btn-icon {
  transform: translateX(3px);
}

.btn.primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
  color: var(--charcoal);
  box-shadow: 0 4px 15px rgba(242, 183, 5, 0.25),
    0 2px 5px rgba(242, 183, 5, 0.15);
  font-weight: 700;
  border: none;
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(242, 183, 5, 0.35),
    0 4px 10px rgba(242, 183, 5, 0.2);
  background: linear-gradient(135deg, var(--amber) 0%, var(--gold) 100%);
  color: var(--graphite);
}

/* Request Coverage button (desktop & mobile) - charcoal text */
a.btn.primary[href="#contact"] {
  color: var(--charcoal);
}

a.btn.primary[href="#contact"]:hover {
  color: var(--charcoal);
}

/* Request Site Survey button - dark green text */
.cta-group .btn.primary[href*="request_site_review"] {
  color: var(--charcoal);
}

.cta-group .btn.primary[href*="request_site_review"]:hover {
  color: var(--slate);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  backdrop-filter: none;
  transform: perspective(1000px) rotateX(var(--hero-tilt-x))
    rotateY(var(--hero-tilt-y));
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: radial-gradient(
    circle at center,
    rgba(242, 183, 5, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: -1;
  opacity: 0.6;
  animation: pulse-glow 3s ease-in-out infinite;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: -40px;
  z-index: -2;
  background-image: radial-gradient(
      circle at 20% 30%,
      rgba(0, 212, 255, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(242, 183, 5, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(0, 212, 255, 0.05) 0%,
      transparent 70%
    ),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(0, 212, 255, 0.02) 20px,
      rgba(0, 212, 255, 0.02) 22px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 20px,
      rgba(242, 183, 5, 0.02) 20px,
      rgba(242, 183, 5, 0.02) 22px
    );
  border-radius: 50%;
  opacity: 0.8;
  animation: background-rotate 20s linear infinite;
  pointer-events: none;
}

@keyframes pulse-glow {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

@keyframes background-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.hero-card img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3))
    drop-shadow(0 0 30px rgba(242, 183, 5, 0.2));
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  z-index: 1;
}

.hero-card:hover img {
  transform: translateY(-5px) scale(1.02);
}

.label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  margin: 0 0 0.5rem;
}

.stat {
  font-size: 3.5rem;
  margin: 0.5rem 0;
  font-weight: 700;
  color: var(--gold);
  font-family: "Space Grotesk", sans-serif;
  line-height: 1;
}

.helper {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 1rem 0 1.5rem;
}

.hero-card ul {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-card ul li {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  line-height: 1.5;
  padding: 0.75rem;
  padding-left: 0.75rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-card ul li:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(242, 183, 5, 0.2);
  transform: translateX(4px);
}

.hero-card ul li svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--gold);
  filter: drop-shadow(0 0 4px rgba(242, 183, 5, 0.3));
  transition: all 0.3s ease;
}

.hero-card ul li:hover svg {
  color: var(--amber);
  filter: drop-shadow(0 0 8px rgba(242, 183, 5, 0.5));
  transform: scale(1.1);
}

/* Hero Element Animations - Removed */

main {
  padding: 0 clamp(1.5rem, 5vw, 4rem) 4rem;
}

/* Intermediate breakpoints for better zoom responsiveness */
@media (max-width: 1200px) {
  .nav {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-group {
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 1024px) {
  .nav {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-group {
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 900px) {
  .nav {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-group {
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  main {
    padding: 0 clamp(1rem, 4vw, 1.5rem) 4rem;
  }

  .header {
    padding: 1rem clamp(1rem, 4vw, 1.5rem);
  }

  .nav {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0.25rem 0;
  }

  .brand img {
    width: clamp(36px, 7vw, 42px);
    height: clamp(36px, 7vw, 42px);
  }

  .brand p {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
  }

  .brand .eyebrow {
    font-size: clamp(0.55rem, 1.8vw, 0.6rem);
  }

  /* Mobile: Request Coverage button text charcoal */
  a.btn.primary[href="#contact"] {
    color: var(--charcoal);
  }

  a.btn.primary[href="#contact"]:hover {
    color: var(--charcoal);
  }
}

.section {
  margin: 4rem auto;
  max-width: 1200px;
}

.section-header h2 {
  margin: 0.4rem 0 0.8rem;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.6rem);
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
}

.section-header p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 720px;
}

/* Services Section Enhancement */
#services {
  position: relative;
}

#services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(242, 183, 5, 0.3),
    transparent
  );
  opacity: 0.5;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.cards article {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.cards article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cards article:hover {
  transform: translateY(-8px);
  border-color: rgba(242, 183, 5, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(242, 183, 5, 0.1);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
}

.cards article:hover::before {
  opacity: 1;
}

.service-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(242, 183, 5, 0.2),
    rgba(242, 183, 5, 0.1)
  );
  border: 1px solid rgba(242, 183, 5, 0.3);
  border-radius: 1rem;
  color: var(--gold);
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.cards article:hover .service-icon {
  background: linear-gradient(
    135deg,
    rgba(242, 183, 5, 0.3),
    rgba(242, 183, 5, 0.2)
  );
  border-color: var(--gold);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px rgba(242, 183, 5, 0.3);
}

.service-icon svg {
  width: 32px;
  height: 32px;
}

.cards h3 {
  margin: 0;
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
}

.cards article p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  font-size: 0.95rem;
  margin: 0;
}

.cards ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cards ul li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.6;
  padding-left: 1.75rem;
  position: relative;
  transition: color 0.3s ease;
}

.cards ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(242, 183, 5, 0.6);
  transition: all 0.3s ease;
}

.cards article:hover ul li::before {
  width: 8px;
  height: 8px;
  box-shadow: 0 0 12px rgba(242, 183, 5, 0.8);
}

.cards article:hover ul li {
  color: rgba(255, 255, 255, 0.95);
  padding-left: 1.85rem;
}

.plans .plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.plan-grid article {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.plan-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.plan-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(242, 183, 5, 0.3);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
}

.plan-grid article:hover::before {
  opacity: 1;
}

.plan-grid .featured {
  border: 2px solid var(--gold);
  background: linear-gradient(
    135deg,
    rgba(242, 183, 5, 0.15) 0%,
    rgba(242, 183, 5, 0.05) 50%,
    rgba(255, 255, 255, 0.03) 100%
  );
  box-shadow: 0 8px 32px rgba(242, 183, 5, 0.2);
  position: relative;
}

.plan-grid .featured::after {
  content: "Popular";
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--charcoal);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(242, 183, 5, 0.3);
}

/* Plan Card Structure */
.plan-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.plan-label {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.plan-speed-wrapper {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.plan-speed {
  font-size: 2.25rem;
  margin: 0;
  color: var(--gold);
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.2;
}

/* Plan Pricing */
.plan-pricing {
  margin-bottom: 1.5rem;
}

.plan-price-wrapper {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.plan-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  font-family: "Space Grotesk", sans-serif;
}

.plan-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  line-height: 1;
}

.plan-period {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 0.25rem;
}

.plan-price-display {
  display: none; /* Hide old price display, using new structure */
}

/* Plan Description */
.plan-description {
  margin-bottom: 1.5rem;
}

.plan-description p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Plan Features */
.plan-features {
  flex-grow: 1;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.plan-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.plan-features-list li:hover {
  color: rgba(255, 255, 255, 0.95);
}

.plan-features-list li:hover .plan-feature-icon {
  background: linear-gradient(
    135deg,
    rgba(242, 183, 5, 0.35),
    rgba(242, 183, 5, 0.25)
  );
  border-color: var(--gold);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(242, 183, 5, 0.4);
}

.plan-feature-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(242, 183, 5, 0.25),
    rgba(242, 183, 5, 0.15)
  );
  border: 2px solid rgba(242, 183, 5, 0.4);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(242, 183, 5, 0.2);
}

.plan-features-list li span:last-child {
  flex: 1;
}

/* Plan Action (legacy purchase button styles removed) */

/* Plans Wrapper */
.plans-wrapper {
  position: relative;
  margin-top: 2rem;
  width: 100%;
}

.plans-wrapper .plan-grid {
  margin-top: 0;
}

.plans-wrapper #plans-swiper {
  margin-top: 0;
}

/* Swiper Plans Carousel */
.plans-swiper {
  padding: 2rem 3rem 4rem !important;
  overflow: visible;
}

.plans-swiper .swiper-wrapper {
  align-items: stretch;
}

.plans-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.plans-swiper .swiper-slide article {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.plans-swiper .swiper-slide article:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(242, 183, 5, 0.3);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
}

.plans-swiper .swiper-slide article:hover::before {
  opacity: 1;
}

.plans-swiper .swiper-slide article.featured {
  border: 2px solid var(--gold);
  background: linear-gradient(
    135deg,
    rgba(242, 183, 5, 0.15) 0%,
    rgba(242, 183, 5, 0.05) 50%,
    rgba(255, 255, 255, 0.03) 100%
  );
  box-shadow: 0 8px 32px rgba(242, 183, 5, 0.2);
  position: relative;
}

.plans-swiper .swiper-slide article.featured::after {
  content: "Popular";
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--charcoal);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(242, 183, 5, 0.3);
}

.plans-swiper .swiper-slide article button {
  align-self: center;
  background: linear-gradient(
    135deg,
    rgba(242, 183, 5, 0.1) 0%,
    rgba(242, 183, 5, 0.05) 100%
  );
  border: 1.5px solid var(--gold);
  color: var(--gold);
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: auto;
  width: auto;
  min-width: 180px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(242, 183, 5, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  text-align: center;
}

/* Swiper Navigation Buttons */
.plans-swiper .swiper-button-next,
.plans-swiper .swiper-button-prev {
  width: 48px;
  height: 48px;
  background: linear-gradient(
    135deg,
    rgba(242, 183, 5, 0.2),
    rgba(242, 183, 5, 0.1)
  );
  border: 1px solid rgba(242, 183, 5, 0.4);
  border-radius: 50%;
  color: var(--gold);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.plans-swiper .swiper-button-next:after,
.plans-swiper .swiper-button-prev:after {
  font-size: 18px;
  font-weight: 700;
}

.plans-swiper .swiper-button-next:hover,
.plans-swiper .swiper-button-prev:hover {
  background: linear-gradient(
    135deg,
    rgba(242, 183, 5, 0.3),
    rgba(242, 183, 5, 0.2)
  );
  border-color: var(--gold);
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(242, 183, 5, 0.4);
}

.plans-swiper .swiper-button-next:active,
.plans-swiper .swiper-button-prev:active {
  transform: scale(0.95);
}

.plans-swiper .swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Swiper Pagination */
.plans-swiper .swiper-pagination {
  bottom: 0 !important;
  position: relative;
  margin-top: 2rem;
}

.plans-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  transition: all 0.3s ease;
}

.plans-swiper .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 32px;
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(242, 183, 5, 0.6);
}

/* Video Demo Section */
.video-demo {
  position: relative;
  padding: 5rem 2.5rem;
}

.video-demo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(242, 183, 5, 0.3),
    transparent
  );
  opacity: 0.5;
}

.video-demo .section-header {
  text-align: left;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.video-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

.video-wrapper {
  position: relative;
  width: 100%;
}

.video-frame {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.video-frame::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    135deg,
    rgba(242, 183, 5, 0.3),
    rgba(242, 183, 5, 0.1),
    rgba(242, 183, 5, 0.3)
  );
  border-radius: 1.5rem;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

/* Empty State Styling */
.video-empty-state {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  padding: 4rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  backdrop-filter: blur(10px);
  text-align: center;
}

.video-empty-icon {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(242, 183, 5, 0.15),
    rgba(242, 183, 5, 0.08)
  );
  border: 2px solid rgba(242, 183, 5, 0.2);
  border-radius: 50%;
  color: var(--gold);
  margin-bottom: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.video-empty-state:hover .video-empty-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(
    135deg,
    rgba(242, 183, 5, 0.25),
    rgba(242, 183, 5, 0.15)
  );
  border-color: rgba(242, 183, 5, 0.4);
  box-shadow: 0 8px 32px rgba(242, 183, 5, 0.3);
}

.video-empty-icon svg {
  width: 64px;
  height: 64px;
  transition: transform 0.4s ease;
}

.video-empty-state:hover .video-empty-icon svg {
  transform: scale(1.1);
}

.video-empty-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(242, 183, 5, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.video-empty-state:hover .video-empty-glow {
  opacity: 1;
}

.video-empty-title {
  margin: 0 0 1rem 0;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.3;
}

.video-empty-description {
  margin: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 500px;
}

.coverage {
  position: relative;
  padding: 5rem 2.5rem;
}

.coverage::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(242, 183, 5, 0.3),
    transparent
  );
  opacity: 0.5;
}

.coverage .section-header {
  text-align: left;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.coverage-map-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 1.5rem;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.coverage-map {
  width: 100%;
  height: 600px;
  border-radius: 1.5rem;
  position: relative;
  z-index: 1;
}

.coverage-map .leaflet-container {
  background: #1a1c22;
  border-radius: 1.5rem;
}

.coverage-map .leaflet-control-zoom {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 0.5rem;
  overflow: hidden;
}

.coverage-map .leaflet-control-zoom a {
  background: transparent;
  color: var(--white) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  width: 36px;
  height: 36px;
  line-height: 36px;
}

.coverage-map .leaflet-control-zoom a:hover {
  background: rgba(242, 183, 5, 0.2) !important;
  color: var(--gold) !important;
}

.coverage-map .leaflet-control-zoom a:last-child {
  border-bottom: none;
}

.coverage-legend {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 500;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px currentColor;
}

.legend-dot.active {
  background: #4caf50;
  color: #4caf50;
}

.legend-dot.upcoming {
  background: var(--gold);
  color: var(--gold);
}

/* Custom Marker Styles */
.custom-marker {
  background: transparent !important;
  border: none !important;
}

.marker-pin {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.marker-pulse {
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.active-marker .marker-pulse {
  background: rgba(76, 175, 80, 0.3);
  border: 2px solid rgba(76, 175, 80, 0.5);
}

.upcoming-marker .marker-pulse {
  background: rgba(242, 183, 5, 0.3);
  border: 2px solid rgba(242, 183, 5, 0.5);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* Map Popup Styles */
.leaflet-popup-content-wrapper {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  ) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 1rem !important;
  color: var(--white) !important;
  padding: 0 !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}

.leaflet-popup-content {
  margin: 1.5rem !important;
  min-width: 200px;
}

.leaflet-popup-tip {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.map-popup h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
}

.popup-description {
  margin: 0 0 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.5;
}

.popup-details {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  line-height: 1.6;
}

.map-popup .coverage-status {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.coverage-grid {
  display: none;
}

.coverage-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.coverage-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  border-color: rgba(242, 183, 5, 0.3);
}

.coverage-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(242, 183, 5, 0.1);
  border-radius: 50%;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.coverage-item h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
}

.coverage-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.5;
}

.coverage-status {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}

.coverage-status.active {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.coverage-status.upcoming {
  background: rgba(242, 183, 5, 0.2);
  color: var(--gold);
  border: 1px solid rgba(242, 183, 5, 0.3);
}

/* Coverage Statistics */
.coverage-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.coverage-stat-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.coverage-stat-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(242, 183, 5, 0.2);
  transform: translateY(-2px);
}

.coverage-stat-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(242, 183, 5, 0.15),
    rgba(242, 183, 5, 0.05)
  );
  border-radius: 0.75rem;
  color: var(--gold);
  border: 1px solid rgba(242, 183, 5, 0.2);
}

.coverage-stat-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.coverage-stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
}

.coverage-stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Coverage Areas */
.coverage-areas {
  margin-top: 3rem;
}

.coverage-areas-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 2rem;
  font-family: "Space Grotesk", sans-serif;
  text-align: center;
}

.coverage-branch-section {
  margin-bottom: 3rem;
}

.coverage-branch-section:last-child {
  margin-bottom: 0;
}

.coverage-branch-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 1.5rem;
  font-family: "Space Grotesk", sans-serif;
  text-align: left;
}

.coverage-areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.locations-loading {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  min-height: 200px;
}

.locations-loading-spinner {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  animation: spin-loading 1s linear infinite;
}

@keyframes spin-loading {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.locations-loading-spinner svg {
  width: 100%;
  height: 100%;
}

.locations-loading-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin: 0;
  font-weight: 500;
}

.coverage-area-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 1.75rem;
  transition: all 0.3s ease;
  max-width: 400px;
  width: 100%;
}

.coverage-area-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(242, 183, 5, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

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

.coverage-area-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(242, 183, 5, 0.1);
  border-radius: 0.5rem;
  color: var(--gold);
}

.coverage-area-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 0.75rem;
  font-family: "Space Grotesk", sans-serif;
}

.coverage-area-card > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1rem;
}

.coverage-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.coverage-features li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  padding-left: 1.5rem;
  position: relative;
}

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

.coverage-note {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.coverage-note-content {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.coverage-note-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(76, 175, 80, 0.15),
    rgba(76, 175, 80, 0.05)
  );
  border-radius: 0.75rem;
  color: #4caf50;
  border: 1px solid rgba(76, 175, 80, 0.2);
}

.coverage-note-content > div:last-child {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.coverage-note-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

.coverage-note-content .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* Steps Section */
.steps {
  padding: 4rem 2.5rem;
}

.steps .section-header {
  text-align: left;
  margin-bottom: 3rem;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.step-item {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.step-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(242, 183, 5, 0.4);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
}

.step-item:hover::before {
  opacity: 1;
}

.step-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(242, 183, 5, 0.2),
    rgba(242, 183, 5, 0.1)
  );
  border: 1px solid rgba(242, 183, 5, 0.3);
  border-radius: 1rem;
  color: var(--gold);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.step-item:hover .step-icon {
  background: linear-gradient(
    135deg,
    rgba(242, 183, 5, 0.3),
    rgba(242, 183, 5, 0.2)
  );
  border-color: var(--gold);
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(242, 183, 5, 0.3);
}

.step-icon svg {
  width: 32px;
  height: 32px;
}

.step-number {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 4rem;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
  color: rgba(242, 183, 5, 0.08);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}

.step-item h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  position: relative;
  z-index: 1;
}

.step-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

/* Features Section - Unique Design */
.features {
  padding: 4rem 2.5rem;
}

.features .section-header {
  text-align: left;
  margin-bottom: 3rem;
}

.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.features-card {
  position: relative;
  background: linear-gradient(
    145deg,
    rgba(15, 17, 21, 0.95) 0%,
    rgba(22, 23, 31, 0.9) 100%
  );
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  overflow: hidden;
  min-height: 420px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.features-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(242, 183, 5, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.features-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(242, 183, 5, 0.05) 0%,
    transparent 50%,
    rgba(242, 183, 5, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.features-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(242, 183, 5, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: rgba(242, 183, 5, 0.5);
  background: linear-gradient(
    145deg,
    rgba(15, 17, 21, 1) 0%,
    rgba(22, 23, 31, 0.95) 100%
  );
}

.features-card:hover::before {
  opacity: 1;
}

.features-card:hover::after {
  opacity: 1;
}

.features-icon-wrapper {
  position: relative;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.features-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(242, 183, 5, 0.2),
    rgba(242, 183, 5, 0.1)
  );
  border: 2px solid rgba(242, 183, 5, 0.3);
  border-radius: 1.25rem;
  color: var(--gold);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(242, 183, 5, 0.15);
}

.features-card:hover .features-icon {
  background: linear-gradient(
    135deg,
    rgba(242, 183, 5, 0.35),
    rgba(242, 183, 5, 0.25)
  );
  border-color: var(--gold);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px rgba(242, 183, 5, 0.4);
}

.features-icon svg {
  width: 32px;
  height: 32px;
  transition: transform 0.4s ease;
}

.features-card:hover .features-icon svg {
  transform: scale(1.1);
}

.features-icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: radial-gradient(
    circle,
    rgba(242, 183, 5, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.features-card:hover .features-icon-glow {
  opacity: 1;
}

.features-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.features-content h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.3;
}

.features-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  font-size: 0.95rem;
}

.features-benefits {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.features-benefits li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.features-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
}

.features-card:hover .features-benefits li {
  color: rgba(255, 255, 255, 0.85);
  padding-left: 1.75rem;
}

.features-decoration {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  gap: 0.5rem;
  opacity: 0.3;
  z-index: 0;
}

.features-decoration-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: featuresDotPulse 2s ease-in-out infinite;
}

.features-decoration-dot:nth-child(2) {
  animation-delay: 0.3s;
}

.features-decoration-dot:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes featuresDotPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.2);
  }
}

.features-card:hover .features-decoration {
  opacity: 0.6;
}

/* Testimonials Section */
.testimonials {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 1.5rem;
  padding: 3rem 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonials-swiper {
  margin-top: 2.5rem;
  padding-bottom: 3rem;
}

.testimonials-swiper .swiper-slide {
  height: 100%;
  display: flex;
  align-items: stretch;
}

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

.testimonial-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  backdrop-filter: blur(10px);
  height: 100%;
  width: 100%;
  min-height: 350px;
  box-sizing: border-box;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(242, 183, 5, 0.3);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
  flex-grow: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(242, 183, 5, 0.3);
}

.testimonial-name {
  margin: 0;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
}

.testimonial-role {
  margin: 0.25rem 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.testimonials-swiper .swiper-pagination {
  bottom: 0 !important;
  position: relative;
  margin-top: 2rem;
}

.testimonials-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  transition: all 0.3s ease;
}

.testimonials-swiper .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 32px;
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(242, 183, 5, 0.6);
}

/* Logo List Section */
.logos {
  padding: 4rem 2.5rem;
  text-align: center;
}

.logo-header {
  margin-bottom: 3rem;
}

.logo-header .stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.5rem;
  font-family: "Space Grotesk", sans-serif;
}

.logo-header .stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}

.logo-list-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.logo-list-wrapper:hover .logo-list-scroll {
  animation-play-state: paused;
}

.logo-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4rem;
  width: fit-content;
  margin: 0;
}

.logo-list-scroll {
  animation: scroll-logos 30s linear infinite;
  will-change: transform;
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}

.logo-item:hover {
  opacity: 1;
}

.logo-item img {
  max-width: 160px;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Gallery Section */
.gallery {
  position: relative;
  padding: 4rem 2.5rem;
}

.gallery::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(242, 183, 5, 0.3),
    transparent
  );
  opacity: 0.5;
}

.gallery .section-header {
  text-align: left;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.gallery-container {
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  grid-auto-rows: 280px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
  transform: translateY(-8px);
}

.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 1rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-image-wrapper {
  border-color: rgba(242, 183, 5, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(242, 183, 5, 0.1);
}

.gallery-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.gallery-item:hover .gallery-image-wrapper img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  border-radius: 1rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-content {
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-content {
  transform: translateY(0);
}

.gallery-content h3 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.gallery-content p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

/* Fallback for missing images */
.gallery-image-wrapper img[src*="gallery"] {
  background: linear-gradient(
    135deg,
    rgba(242, 183, 5, 0.1) 0%,
    rgba(242, 183, 5, 0.05) 100%
  );
}

.gallery-image-wrapper img:not([src]) {
  background: linear-gradient(
    135deg,
    rgba(242, 183, 5, 0.1) 0%,
    rgba(242, 183, 5, 0.05) 100%
  );
}

/* Contact Section */
.contact {
  padding: 0;
}

.contact-sections-wrapper {
  padding-bottom: 4rem;
}

.contact-sections-container-wrapper {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 1.5rem;
  padding: 3.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  max-width: 1400px;
  margin: 3rem auto 0;
}

.contact-sections-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-section-left,
.contact-section-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-section-right {
  position: sticky;
  top: 2rem;
}

.contact-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  margin: 0 0 0.5rem 0;
}

.contact-form-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0 0 1.5rem 0;
}

.contact-info-wrapper {
  width: 100%;
}

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

.contact-form-wrapper {
  width: 100%;
}

.contact-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-header .eyebrow {
  margin: 0;
  margin-bottom: 0.25rem;
}

.contact-header h2 {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.contact-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
  margin-top: 0.75rem;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(242, 183, 5, 0.2);
  transform: translateY(-2px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(242, 183, 5, 0.15),
    rgba(242, 183, 5, 0.05)
  );
  border-radius: 0.75rem;
  color: var(--gold);
  border: 1px solid rgba(242, 183, 5, 0.2);
}

.contact-item-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.contact-item-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin: 0;
}

.contact-item-value {
  font-size: 1rem;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
  margin: 0;
}

.contact-item-value:hover {
  color: var(--gold);
}

.contact-branch {
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-branch:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.branch-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 1rem 0;
  font-family: "Space Grotesk", sans-serif;
}

.contact-phone-numbers {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-phone-numbers .contact-item-value {
  display: block;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-form input,
.contact-form textarea {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  color: var(--white);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

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

.contact-form input:hover,
.contact-form textarea:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 0 3px rgba(242, 183, 5, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

/* Cloudflare Turnstile Styling */
.contact-form .cf-turnstile {
  margin-bottom: 0.5rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-form .cf-turnstile iframe {
  width: 100% !important;
  max-width: 100%;
}

/* Adjust Turnstile widget on mobile */
@media (max-width: 480px) {
  .contact-form .cf-turnstile {
    margin-bottom: 0.5rem;
    width: 100%;
    justify-content: center;
  }

  .contact-form .cf-turnstile iframe {
    width: 100% !important;
  }
}

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  border: none;
  border-radius: 0.75rem;
  padding: 1.125rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--charcoal); /* "Submit inquiry" text charcoal */
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  box-shadow: 0 4px 15px rgba(242, 183, 5, 0.2);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 183, 5, 0.3);
  background: linear-gradient(135deg, var(--amber), var(--gold));
}

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

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

.submit-btn:disabled:hover {
  transform: none;
  box-shadow: 0 4px 15px rgba(242, 183, 5, 0.2);
}

.submit-btn svg {
  transition: transform 0.3s ease;
}

.submit-btn:hover svg {
  transform: translateX(4px);
}

/* Honeypot field - hidden from users */
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

/* Notification Popup Modal */
.notification-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.notification-popup.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.notification-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
}

.notification-content {
  position: relative;
  background: var(--bg-card);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--border-color);
  border-radius: 0.875rem;
  padding: 1.5rem;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.05) inset;
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

[data-theme="light"] .notification-content {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 1px 0 rgba(0, 0, 0, 0.02) inset;
}

.notification-popup.active .notification-content {
  transform: scale(1) translateY(0);
}

.notification-popup.active .notification-content:hover {
  transform: scale(1) translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15),
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

.notification-popup.active .notification-content:hover {
  transform: scale(1) translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15),
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

.notification-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  padding: 0;
}

.notification-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}

.notification-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes scaleIn {
  from {
    transform: scale(0) rotate(-180deg);
    opacity: 0;
  }
  to {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

.notification-icon.success {
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.2) 0%,
    rgba(34, 197, 94, 0.1) 100%
  );
  border: 2px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.notification-icon.error {
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.2) 0%,
    rgba(239, 68, 68, 0.1) 100%
  );
  border: 2px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

.notification-icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  stroke-width: 3;
}

.notification-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.375rem;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.015em;
  transition: color 0.3s ease;
}

.notification-message {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.notification-button {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  border: none;
  border-radius: 0.75rem;
  padding: 0.875rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(242, 183, 5, 0.2);
  width: 100%;
}

.notification-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 183, 5, 0.3);
  background: linear-gradient(135deg, var(--amber), var(--gold));
}

.notification-button:active {
  transform: translateY(0);
}

.footer {
  background: linear-gradient(
    180deg,
    rgba(10, 11, 15, 0.95) 0%,
    rgba(15, 17, 23, 0.98) 100%
  );
  border-top: 1px solid rgba(242, 183, 5, 0.2);
  padding: 4rem clamp(1.5rem, 5vw, 4rem) 2rem;
  margin-top: 4rem;
}

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

.footer-column h4 {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 1.25rem;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.02em;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column ul li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--gold);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.footer-brand p {
  margin: 0;
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
  font-family: "Space Grotesk", sans-serif;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
  line-height: 1.6;
  font-family: "Poppins", sans-serif !important;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  color: var(--white);
  border-color: var(--gold);
  background: rgba(242, 183, 5, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(242, 183, 5, 0.3);
}

.footer-social a svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

body:not(.js-ready) [data-reveal] {
  opacity: 1;
  transform: none;
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE, TABLET, LAPTOP
   ======================================== */

/* Tablet and iPad sizes (max-width: 1024px) - Show menu icon */
@media (max-width: 1368px) {
  .nav-toggle {
    display: flex;
  }

  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-menu-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background: linear-gradient(
      180deg,
      rgba(10, 11, 15, 0.98) 0%,
      rgba(15, 17, 23, 0.98) 100%
    );
    backdrop-filter: blur(20px);
    padding: 4.5rem 0 2rem;
    border-radius: 0;
    border: none;
    border-left: 2px solid rgba(242, 183, 5, 0.3);
    box-shadow: -4px 0 40px rgba(0, 0, 0, 0.8),
      -2px 0 20px rgba(242, 183, 5, 0.1);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1000;
    gap: 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(242, 183, 5, 0.3) transparent;
  }

  .nav-menu-wrapper::-webkit-scrollbar {
    width: 6px;
  }

  .nav-menu-wrapper::-webkit-scrollbar-track {
    background: transparent;
  }

  .nav-menu-wrapper::-webkit-scrollbar-thumb {
    background: rgba(242, 183, 5, 0.3);
    border-radius: 3px;
  }

  .nav-menu-wrapper::-webkit-scrollbar-thumb:hover {
    background: rgba(242, 183, 5, 0.5);
  }

  .nav-menu-wrapper.open {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
    padding: 0;
    margin: 0;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    list-style: none;
    margin: 0;
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links > li:not(.nav-dropdown) > a {
    display: block;
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    color: rgba(255, 255, 255, 0.85);
  }

  .nav-links > li:not(.nav-dropdown) > a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--gold);
    transition: width 0.3s ease;
    opacity: 0.2;
  }

  .nav-links > li:not(.nav-dropdown) > a:hover,
  .nav-links > li:not(.nav-dropdown) > a.active {
    color: var(--gold);
    padding-left: 2.5rem;
    background: rgba(242, 183, 5, 0.05);
  }

  .nav-links > li:not(.nav-dropdown) > a:hover::before,
  .nav-links > li:not(.nav-dropdown) > a.active::before {
    width: 4px;
  }

  /* Mobile: Login Button */
  .desktop-login {
    display: none;
  }

  .mobile-login {
    display: block;
    margin-top: 0.75rem;
    padding: 0.75rem 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
  }

  .mobile-login .login-btn {
    width: auto;
    justify-content: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    text-align: center;
    border-radius: 0.5rem;
    font-weight: 500;
  }

  .mobile-login .login-btn::before {
    display: none;
  }

  /* Mobile: Dropdown with proper functionality */
  .nav-dropdown {
    position: relative;
    width: 100%;
  }

  .dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    border: none;
    background: transparent;
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
  }

  .dropdown-trigger::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--gold);
    transition: width 0.3s ease;
    opacity: 0.2;
  }

  .dropdown-trigger:hover,
  .dropdown-trigger.active {
    color: var(--gold);
    padding-left: 2.5rem;
    background: rgba(242, 183, 5, 0.05);
  }

  .dropdown-trigger:hover::before,
  .dropdown-trigger.active::before {
    width: 4px;
  }

  .dropdown-trigger svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: auto;
    flex-shrink: 0;
    opacity: 0.7;
  }

  .dropdown-trigger:hover svg,
  .dropdown-trigger.active svg {
    opacity: 1;
  }

  .nav-dropdown.active .dropdown-trigger svg {
    transform: rotate(180deg);
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(0, 0, 0, 0.25);
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    display: block;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
      padding 0.35s ease;
    border-left: 4px solid transparent;
  }

  .nav-dropdown.active .dropdown-menu {
    max-height: 500px;
    padding: 0.75rem 0;
    border-left-color: var(--gold);
    background: rgba(0, 0, 0, 0.3);
  }

  .dropdown-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
  }

  .dropdown-menu li:last-child {
    border-bottom: none;
  }

  .dropdown-menu a {
    padding: 1rem 2rem;
    padding-left: 3rem;
    font-size: 0.95rem;
    font-weight: 400;
    display: block;
    width: 100%;
    position: relative;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
  }

  .dropdown-menu a::before {
    content: "";
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
  }

  .dropdown-menu a:hover,
  .dropdown-menu a.active {
    color: var(--gold);
    padding-left: 3.5rem;
    background: rgba(242, 183, 5, 0.08);
  }

  .dropdown-menu a:hover::before,
  .dropdown-menu a.active::before {
    width: 4px;
  }

  .nav {
    position: relative;
    z-index: 1001;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .section {
    padding: 0 clamp(1.5rem, 4vw, 3rem);
  }

  .hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
  }

  .hero-heading .speed-icon {
    width: clamp(2rem, 4vw, 2.75rem);
    height: clamp(2rem, 4vw, 2.75rem);
  }

  .section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
  }

  .cards,
  .plan-grid,
  .coverage-grid,
  .steps-container {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .steps-container {
    grid-template-columns: 1fr;
  }

  .features-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .features-card {
    min-height: auto;
    padding: 2rem 1.5rem;
  }

  .features-icon-wrapper {
    width: 64px;
    height: 64px;
  }

  .features-icon {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
  }

  .features-icon svg {
    width: 28px;
    height: 28px;
  }

  .features-content h3 {
    font-size: 1.35rem;
  }

  .features-content p {
    font-size: 0.9rem;
  }

  .features-badge {
    top: 1.25rem;
    right: 1.25rem;
    padding: 0.35rem 0.75rem;
    font-size: 0.7rem;
  }

  .steps {
    padding: 3rem clamp(1.5rem, 4vw, 2.5rem);
  }

  .features {
    padding: 3rem clamp(1.5rem, 4vw, 2.5rem);
  }

  .step-item {
    padding: 2rem 1.5rem;
  }

  .step-number {
    font-size: 3.5rem;
    top: 1.5rem;
    right: 1.5rem;
  }
}

/* Tablet (481px - 768px) */
/* Unified Tablet Layout - iPad Mini, iPad Air, iPad Pro, Surface Pro
   Applies same layout structure from iPad Mini (768 x 1024) to all tablets */
@media (min-width: 481px) and (max-width: 1368px) {
  html {
    font-size: clamp(15px, 1.8vw, 16px);
  }

  /* Header - Unified sizing for all tablets */
  .header {
    padding: 0.875rem clamp(1.5rem, 4vw, 3rem);
  }

  .header.scrolled {
    position: fixed;
    background: #0f1115;
    border-bottom: 1px solid rgba(242, 183, 5, 0.25);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4),
      0 1px 0 rgba(255, 255, 255, 0.05) inset;
  }

  /* Hero Section Container - Unified sizing for all tablets */
  .hero {
    padding: calc(2rem + 56px) clamp(1.5rem, 4vw, 3rem) 2rem
      clamp(1.5rem, 4vw, 3rem);
    min-height: auto;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 2.5rem);
    max-width: 100%;
    width: 100%;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .nav {
    max-width: 100%;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .brand img {
    width: clamp(38px, 5vw, 42px);
    height: clamp(38px, 5vw, 42px);
  }

  .brand p {
    font-size: clamp(0.875rem, 1.8vw, 0.95rem);
  }

  /* Hero container wrapper for consistent sizing */
  .hero-content > div:first-child {
    order: 1;
    max-width: 100%;
    min-height: auto;
    text-align: center;
    padding: 0 clamp(0.5rem, 2vw, 1rem);
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .hero-content .eyebrow {
    margin-bottom: clamp(0.625rem, 1.2vw, 0.875rem);
  }

  .hero-content .description {
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
    padding: 0 clamp(1rem, 2vw, 1.5rem);
    padding-left: clamp(1.25rem, 2.5vw, 2rem);
    border-left-width: 3px;
    width: fit-content;
    white-space: normal;
    background: transparent;
  }

  .hero-card {
    order: 3;
    max-width: clamp(350px, 55vw, 500px);
    width: 100%;
    margin: 0 auto;
    margin-top: clamp(2rem, 4vw, 3rem);
    padding: 0;
  }

  .hero-card img {
    margin: 0 auto;
    display: block;
    margin-bottom: 0;
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.2;
    margin: 0;
    margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
  }

  .hero-heading .speed-icon {
    width: clamp(2rem, 4vw, 2.75rem);
    height: clamp(2rem, 4vw, 2.75rem);
    margin-left: 0.4rem;
  }

  .hero-content .description {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: fit-content;
    white-space: normal;
    background: transparent;
  }

  .hero-comparison-text {
    margin-top: clamp(0.75rem, 1.5vw, 1.25rem);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    padding: 0;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    max-width: 100%;
    font-size: clamp(0.875rem, 2vw, 0.95rem);
  }

  .hero-comparison-text p {
    text-align: center;
    margin: 0;
    margin-bottom: clamp(0.375rem, 0.75vw, 0.5rem);
  }

  .hero-comparison-text p:last-child {
    margin-bottom: 0;
  }

  .cta-group {
    order: 2;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: clamp(0.75rem, 1.5vw, 1.25rem);
    margin-bottom: 0;
    padding-top: 0;
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1rem, 2vw, 1.25rem);
  }

  .cta-group .btn {
    flex: 0 1 auto;
    min-width: auto;
    margin: 0;
  }

  /* Hero-card styles already defined above at line 4057 */

  /* Navigation adjustments for tablets */
  .nav {
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
    padding: 0.75rem 0;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .brand img {
    width: 56px;
    height: 56px;
  }

  .cards,
  .testimonials-grid,
  .coverage-grid,
  .steps-container {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Plans Section - Force Swiper on Tablets */
  .plans-wrapper .plan-grid {
    display: none !important;
  }

  .plans-wrapper #plans-swiper {
    display: block !important;
  }

  .plans-swiper {
    padding: 2rem 2rem 4.5rem !important;
    max-width: 550px;
    margin: 0 auto;
    width: 100%;
  }

  .plans-swiper .swiper-slide {
    width: 100% !important;
    max-width: 100%;
    display: flex;
    align-items: stretch;
  }

  .plans-swiper .swiper-slide article {
    width: 100%;
    max-width: 100%;
    padding: 2.75rem 2.25rem;
    margin: 0 auto;
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  /* Clean card layout for tablets */
  .plans-swiper .swiper-slide article .plan-header {
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .plans-swiper .swiper-slide article .plan-pricing {
    margin-bottom: 1.75rem;
  }

  .plans-swiper .swiper-slide article .plan-description {
    margin-bottom: 1.75rem;
  }

  .plans-swiper .swiper-slide article .plan-features {
    margin-bottom: 2rem;
    flex-grow: 1;
  }

  .plans-swiper .swiper-button-next,
  .plans-swiper .swiper-button-prev {
    width: 44px;
    height: 44px;
    background: linear-gradient(
      135deg,
      rgba(242, 183, 5, 0.25),
      rgba(242, 183, 5, 0.15)
    );
    border: 1.5px solid rgba(242, 183, 5, 0.5);
  }

  .plans-swiper .swiper-button-next:after,
  .plans-swiper .swiper-button-prev:after {
    font-size: 16px;
    font-weight: 700;
  }

  .plans-swiper .swiper-button-next {
    right: 0.5rem;
  }

  .plans-swiper .swiper-button-prev {
    left: 0.5rem;
  }

  .plans-swiper .swiper-pagination {
    margin-top: 2.5rem;
  }

  .plans-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }

  .plans-swiper .swiper-pagination-bullet-active {
    width: 28px;
  }

  .features-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 260px;
  }

  .gallery-item-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  /* Footer Tablet Styles - Consistent across all tablets including iPad Mini */
  .footer {
    padding: 3rem clamp(2rem, 4vw, 3rem) 2rem;
  }

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

  .footer-column {
    text-align: left;
    display: block;
  }

  /* Center the brand section (first column) - spans all 3 columns in first row */
  .footer-column:first-child {
    grid-column: 1 / -1;
    grid-row: 1;
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .footer-brand {
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .footer-brand img {
    width: 64px;
    height: 64px;
  }

  .footer-brand p {
    font-size: 1.1rem;
    text-align: center;
  }

  .footer-tagline {
    font-size: 0.9rem !important;
    max-width: none;
    margin: 0.5rem 0 0;
    text-align: center;
  }

  /* Contact Branch Tablet Styles */
  .contact-branch {
    gap: 1.5rem;
  }

  /* Services, Company, Support columns in second row - one column each */
  .footer-column:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }

  .footer-column:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }

  .footer-column:nth-child(4) {
    grid-column: 3;
    grid-row: 2;
  }

  .footer-column h4 {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    text-transform: none;
    letter-spacing: normal;
    text-align: left;
  }

  .footer-column ul {
    gap: 0.5rem;
    align-items: flex-start;
    text-align: left;
  }

  .footer-column ul li {
    font-size: 0.9rem;
    padding: 0;
    text-align: left;
  }

  .footer-social {
    justify-content: flex-start;
    gap: 0.75rem;
    margin-top: 1rem;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
  }

  .footer-social a svg {
    width: 20px;
    height: 20px;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    text-align: left;
  }

  .footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
  }

  .footer-links {
    justify-content: flex-end;
    gap: 1.5rem;
  }

  .footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 0;
  }

  /* Contact Tablet Styles */
  .contact-sections-container-wrapper {
    padding: 2.5rem;
  }

  .contact-sections-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-section-right {
    position: static;
  }

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

  /* Plans Swiper adjustments for tablets */
  /* Plans Swiper - Already handled in main tablet media query above */

  /* Coverage map adjustments */
  .coverage-map-container {
    margin-top: 2rem;
  }

  /* Coverage Stats Tablet */
  .coverage-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
  }

  .coverage-stat-item {
    padding: 1.5rem;
  }

  /* Coverage Areas Tablet */
  .coverage-areas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .coverage-note-content {
    gap: 1.25rem;
  }

  /* Steps container adjustments */
  .steps-container {
    gap: 2rem;
  }

  /* Video demo adjustments */
  .video-container {
    margin: 0 auto;
  }

  /* Section padding consistency for tablets */
  .section {
    padding: 3rem clamp(2rem, 4vw, 3rem);
  }

  /* Section header adjustments */
  .section-header {
    margin-bottom: 2.5rem;
  }

  /* Hero stats adjustments - already defined above */

  /* Logo list adjustments */
  .logo-list-wrapper {
    margin-top: 2rem;
  }

  /* Plans grid adjustments */
  .plan-grid {
    gap: 1.5rem;
  }

  /* Cards adjustments */
  .cards {
    gap: 1.5rem;
  }

  /* Testimonial cards adjustments */
  .testimonial-card {
    min-height: 320px;
  }
}

/* Desktop (1369px and above) - After all tablet sizes */
@media (min-width: 1369px) {
  .steps-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

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

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

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
  }

  .gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  main {
    padding: 0 1rem 4rem;
  }

  .header {
    padding: 0.75rem 1rem;
  }

  .header.scrolled {
    position: fixed;
    background: rgba(15, 17, 21, 0.98);
    border-bottom: 1px solid rgba(242, 183, 5, 0.15);
  }

  .nav {
    padding: 0;
  }

  .hero {
    padding: calc(1rem + 48px) 1rem 1rem 1rem;
    min-height: auto;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand p {
    font-size: clamp(0.875rem, 3vw, 0.95rem);
  }

  .brand .eyebrow {
    font-size: clamp(0.5rem, 1.5vw, 0.55rem);
  }

  .mobile-login .login-btn {
    padding: 0.4rem 0.85rem;
    font-size: 0.8rem;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    padding: 0.75rem;
  }

  .hero-content > div:first-child {
    order: 1;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: clamp(0.75rem, 1.5vw, 1.25rem);
  }

  .hero-content .description {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: fit-content;
    white-space: normal;
    padding: 0 clamp(0.875rem, 1.75vw, 1.25rem);
    padding-left: clamp(1rem, 2vw, 1.5rem);
    border-left-width: 3px;
    background: transparent;
    margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
  }

  .hero-comparison-text {
    margin-top: clamp(0.5rem, 1vw, 0.75rem);
    margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
    padding: 0;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    max-width: 100%;
    font-size: clamp(0.85rem, 2.5vw, 0.9rem);
  }

  .hero-comparison-text p {
    text-align: center;
    margin: 0;
  }

  .hero-content .eyebrow {
    text-align: center;
    margin-bottom: clamp(0.625rem, 1.2vw, 0.875rem);
  }

  .hero-content h1 {
    font-size: clamp(2.5rem, 7.5vw, 3.75rem);
    margin: 0;
    margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
    text-align: center;
    line-height: 1.2;
  }

  .hero-heading .speed-icon {
    width: clamp(1.5rem, 4vw, 2.25rem);
    height: clamp(1.5rem, 4vw, 2.25rem);
    margin-left: 0.35rem;
  }

  .hero-card {
    order: 3;
    max-width: 300px;
    margin: 0 auto;
    padding: 0;
    margin-top: clamp(2rem, 4vw, 3rem);
  }

  .hero-card[data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-card[data-reveal].visible {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-content h1.hero-heading {
    text-align: center;
  }

  .hero-content .description {
    font-size: clamp(0.875rem, 3vw, 1rem);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: fit-content;
    white-space: normal;
    background: transparent;
  }

  .hero-comparison-text {
    margin-top: clamp(0.75rem, 1.5vw, 1.25rem);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    padding: 0;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    max-width: 100%;
    font-size: clamp(0.85rem, 2.5vw, 0.9rem);
  }

  .hero-comparison-text p {
    text-align: center;
    margin: 0;
    margin-bottom: clamp(0.375rem, 0.75vw, 0.5rem);
  }

  .hero-comparison-text p:last-child {
    margin-bottom: 0;
  }

  .hero-card img {
    margin: 0 auto;
    display: block;
    margin-bottom: 0;
  }

  .cta-group {
    order: 2;
    margin-top: clamp(0.75rem, 1.5vw, 1.25rem);
    margin-bottom: 0;
    padding-top: 0;
    gap: 1rem;
  }

  .stat {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
  }

  .hero-card ul li {
    font-size: 0.85rem;
    padding: 0.625rem;
    gap: 0.875rem;
  }

  .hero-card ul li svg {
    width: 20px;
    height: 20px;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    flex: 1;
    min-width: 0;
    text-align: center;
  }

  .cta-group {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .cta-group .btn {
    width: 100%;
  }

  .section {
    margin: 3rem auto;
    padding: 0 1rem;
    max-width: 100%;
    width: 100%;
  }

  .logos {
    padding: 3rem 1rem;
  }

  .section.contact-sections-wrapper {
    max-width: 100%;
    padding: 0;
  }

  .contact-sections-container-wrapper {
    padding: 1.5rem 0.75rem;
    margin-top: 1.5rem;
  }

  .contact-sections-container {
    gap: 1.5rem;
  }

  .testimonials {
    padding: 2rem 1rem;
  }

  .section-header h2 {
    font-size: clamp(1.25rem, 5vw, 1.75rem);
  }

  /* Empty States Mobile */
  .empty-state,
  .loading-plans,
  .error-message,
  .empty-state {
    padding: 3rem 1.5rem;
    min-height: 300px;
  }

  .empty-state-icon,
  .error-icon {
    width: 72px;
    height: 72px;
  }

  .empty-state-icon svg,
  .error-icon svg {
    width: 36px;
    height: 36px;
  }

  .empty-state h3,
  .error-message h3 {
    font-size: 1.5rem;
  }

  .empty-state p,
  .error-message p,
  .loading-plans p {
    font-size: 0.95rem;
  }

  .loading-spinner {
    width: 48px;
    height: 48px;
  }

  .loading-spinner::before {
    border-width: 3px;
  }

  .loading-spinner::after {
    border-width: 2px;
  }
}

/* Swiper Responsive Styles */
@media (max-width: 767px) {
  .plans-swiper {
    padding: 1.5rem 1rem 3.5rem !important;
  }

  .plans-swiper .swiper-button-next,
  .plans-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .plans-swiper .swiper-button-next:after,
  .plans-swiper .swiper-button-prev:after {
    font-size: 14px;
  }

  .plans-swiper .swiper-button-next {
    right: 0;
  }

  .plans-swiper .swiper-button-prev {
    left: 0;
  }
}

@media (max-width: 480px) {
  .plans-swiper {
    padding: 1rem 0.5rem 3rem !important;
  }

  .plans-swiper .swiper-button-next,
  .plans-swiper .swiper-button-prev {
    width: 36px;
    height: 36px;
  }

  .plans-swiper .swiper-button-next:after,
  .plans-swiper .swiper-button-prev:after {
    font-size: 12px;
  }
}

/* Mobile (max-width: 767px) - Excludes iPad Mini (768px) which uses tablet styles */
@media (max-width: 767px) {
  html {
    font-size: clamp(14px, 2vw, 16px);
  }

  .header {
    padding: 0.75rem 1.25rem;
  }

  .header.scrolled {
    position: fixed;
    background: rgba(15, 17, 21, 0.98);
    border-bottom: 1px solid rgba(242, 183, 5, 0.15);
  }

  .hero {
    padding: calc(1.5rem + 52px) 1.25rem 1.5rem 1.25rem;
    min-height: auto;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    padding: 0;
  }

  .hero-content > div:first-child {
    order: 1;
    display: flex;
    flex-direction: column;
  }

  .hero-card {
    order: 3;
    max-width: clamp(240px, 60vw, 300px);
    margin: 0 auto;
    margin-top: clamp(2rem, 4vw, 3rem);
  }

  .hero-card[data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-card[data-reveal].visible {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-card img {
    margin: 0 auto;
    display: block;
    margin-bottom: 0;
    width: 100%;
    max-width: 100%;
  }

  .cta-group {
    order: 2;
    margin-top: clamp(0.75rem, 1.5vw, 1.25rem);
    margin-bottom: 0;
    padding-top: 0;
    gap: clamp(1rem, 2vw, 1.25rem);
  }

  .hero-content > div:first-child {
    order: 1;
    min-height: auto;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: clamp(0.75rem, 1.5vw, 1.25rem);
  }

  .hero-content .eyebrow {
    margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
  }

  .hero-content h1 {
    font-size: clamp(2.5rem, 7.5vw, 3.75rem);
    line-height: 1.2;
    margin: 0;
    margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
    text-align: center;
  }

  .hero-heading .speed-icon {
    width: clamp(1.5rem, 4vw, 2.25rem);
    height: clamp(1.5rem, 4vw, 2.25rem);
    margin-left: 0.35rem;
  }

  .hero-content .description {
    font-size: clamp(0.95rem, 3vw, 1.1rem);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: fit-content;
    white-space: normal;
    padding: 0 clamp(1rem, 2vw, 1.5rem);
    padding-left: clamp(1.25rem, 2.5vw, 2rem);
    border-left-width: 3px;
    background: transparent;
  }

  .hero-comparison-text {
    margin-top: clamp(0.75rem, 1.5vw, 1.25rem);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    padding: 0;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    max-width: 100%;
    font-size: clamp(0.85rem, 2.5vw, 0.9rem);
  }

  .hero-comparison-text p {
    text-align: center;
    margin: 0;
    margin-bottom: clamp(0.375rem, 0.75vw, 0.5rem);
  }

  .hero-comparison-text p:last-child {
    margin-bottom: 0;
  }

  .hero-card {
    order: 3;
    max-width: 300px;
    margin: 0 auto;
    padding: 0;
    border-radius: 0;
    margin-top: clamp(2rem, 4vw, 3rem);
  }

  .hero-card[data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-card[data-reveal].visible {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-card::before {
    inset: -15px;
  }

  .hero-card::after {
    inset: -30px;
  }

  .hero-card img {
    margin: 0 auto;
    display: block;
    margin-bottom: 0;
  }

  .stat {
    font-size: clamp(3rem, 6vw, 4rem);
  }

  .hero-content .description {
    font-size: clamp(0.95rem, 3vw, 1.1rem);
  }

  .btn {
    padding: clamp(0.75rem, 2vw, 0.9rem) clamp(1.2rem, 4vw, 1.8rem);
    font-size: clamp(0.875rem, 2.5vw, 1rem);
  }

  .section {
    padding: 0 clamp(1rem, 4vw, 2rem);
    max-width: 100%;
    width: 100%;
  }

  .section-header h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .cards h3,
  .plan-label {
    font-size: clamp(1.15rem, 3vw, 1.35rem);
  }

  .plan-header {
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .plan-speed {
    font-size: clamp(1.75rem, 4vw, 2rem);
  }

  .plan-price {
    font-size: clamp(2rem, 5vw, 2.25rem);
  }

  .plan-currency {
    font-size: clamp(1.25rem, 3vw, 1.35rem);
  }

  .plan-period {
    font-size: 0.9rem;
  }

  .plan-description p {
    font-size: 0.9rem;
  }

  .plan-features-list li {
    font-size: 0.85rem;
    gap: 0.625rem;
  }

  .plan-feature-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    font-size: 0.7rem;
  }

  .plan-grid article,
  .plans-swiper .swiper-slide article {
    padding: 2rem 1.5rem;
  }

  .stat-number {
    font-size: clamp(2rem, 5vw, 3.2rem);
  }

  .footer-brand p {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  }

  .footer-column h4 {
    font-size: clamp(0.9rem, 2vw, 1rem);
  }

  .video-demo {
    padding: 3rem clamp(1rem, 4vw, 2rem);
  }

  .video-demo .section-header {
    margin-bottom: 2rem;
  }

  .video-container {
    margin: 0 auto;
    padding: 0;
  }

  .video-empty-state {
    min-height: 300px;
    padding: 3rem 1.5rem;
  }

  .video-empty-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
  }

  .video-empty-icon svg {
    width: 52px;
    height: 52px;
  }

  .video-empty-title {
    font-size: 1.5rem;
  }

  .video-empty-description {
    font-size: 0.95rem;
  }

  .steps {
    padding: 3rem clamp(1rem, 4vw, 2rem);
  }

  .features {
    padding: 3rem clamp(1rem, 4vw, 2rem);
  }

  .features-icon-wrapper {
    width: 64px;
    height: 64px;
  }

  .features-icon {
    width: 64px;
    height: 64px;
    border-radius: 1.25rem;
  }

  .features-icon svg {
    width: 32px;
    height: 32px;
  }

  .step-item {
    padding: 2rem 1.5rem;
  }

  .step-icon {
    width: 56px;
    height: 56px;
  }

  .step-icon svg {
    width: 28px;
    height: 28px;
  }

  .step-number {
    font-size: 3rem;
    top: 1.5rem;
    right: 1.5rem;
  }

  .step-item h3 {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
  }

  .step-item p {
    font-size: clamp(0.875rem, 2.5vw, 0.95rem);
  }

  /* Swiper Mobile Styles */
  .plans-swiper {
    padding: 1rem 0.5rem 3rem !important;
  }

  .plans-swiper .swiper-button-next,
  .plans-swiper .swiper-button-prev {
    width: 36px;
    height: 36px;
  }

  .plans-swiper .swiper-button-next:after,
  .plans-swiper .swiper-button-prev:after {
    font-size: 12px;
  }

  .plans-swiper .swiper-button-next {
    right: 0;
  }

  .plans-swiper .swiper-button-prev {
    left: 0;
  }

  .testimonials {
    padding: 2rem clamp(1rem, 4vw, 2rem);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonials-swiper {
    margin-top: 2rem;
    padding-bottom: 2.5rem;
  }

  /* Contact Mobile Styles */
  .section.contact-sections-wrapper {
    max-width: 100%;
    padding: 0;
  }

  .contact-sections-container-wrapper {
    padding: 2rem clamp(0.75rem, 3vw, 1.5rem);
    margin-top: 2rem;
    width: 100%;
    max-width: 100%;
  }

  .contact-sections-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-section-right {
    position: static;
    width: 100%;
    max-width: 100%;
  }

  .contact-subtitle {
    font-size: 1.25rem;
  }

  .contact-info-wrapper {
    padding: 0;
  }

  .contact-form-wrapper {
    max-width: 100%;
  }

  .contact-info {
    gap: 2rem;
  }

  .contact-header {
    gap: 0.5rem;
  }

  .contact-header h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .contact-description {
    font-size: 0.95rem;
    margin-top: 0.5rem;
  }

  .contact-branch {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    gap: 1.25rem;
  }

  .branch-title {
    font-size: 1rem;
    margin-bottom: 0.875rem;
  }

  .contact-phone-numbers {
    gap: 0.4rem;
  }

  .contact-phone-numbers .contact-item-value {
    font-size: 0.95rem;
  }

  .contact-details {
    gap: 1.25rem;
  }

  .contact-item {
    padding: 1rem;
    gap: 0.875rem;
  }

  .contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .contact-icon svg {
    width: 20px;
    height: 20px;
  }

  .contact-item-value {
    font-size: 0.95rem;
    word-break: break-word;
  }

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

  .contact-form {
    gap: 1.25rem;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
  }

  .submit-btn {
    padding: 1rem 1.75rem;
    font-size: 0.95rem;
  }

  /* Notification Popup Mobile Styles */
  .notification-content {
    padding: 2rem;
    max-width: 420px;
    border-radius: 0.875rem;
  }

  .notification-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
  }

  .notification-icon svg {
    width: 32px;
    height: 32px;
  }

  .notification-title {
    font-size: 1.5rem;
    margin-bottom: 0.375rem;
  }

  .notification-message {
    font-size: 0.8125rem;
    margin-bottom: 1rem;
  }

  .notification-button {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  /* Notification Popup Mobile Styles - 480px */
  .notification-content {
    padding: 1.5rem 1.25rem;
    max-width: 100%;
  }

  .notification-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 0.75rem;
  }

  .notification-icon svg {
    width: 28px;
    height: 28px;
  }

  .notification-title {
    font-size: 1.25rem;
  }

  .notification-message {
    font-size: 0.75rem;
    margin-bottom: 0.875rem;
  }

  .notification-button {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }

  /* Gallery Mobile Styles */
  .gallery {
    padding: 3rem clamp(1rem, 4vw, 2rem);
  }

  .gallery .section-header {
    margin-bottom: 2rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    grid-auto-rows: 250px;
  }

  .gallery-item-large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-overlay {
    padding: 1.5rem;
    opacity: 1;
    background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.5) 50%,
      rgba(0, 0, 0, 0.9) 100%
    );
  }

  .gallery-content {
    transform: translateY(0);
  }

  .gallery-content h3 {
    font-size: 1.25rem;
  }

  .gallery-content p {
    font-size: 0.875rem;
  }

  .coverage {
    padding: 3rem clamp(1rem, 4vw, 2rem);
  }

  .coverage-map {
    height: 400px;
  }

  .coverage-legend {
    bottom: 10px;
    right: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
  }

  .legend-item {
    font-size: 0.75rem;
  }

  .coverage-note {
    padding: 1.5rem;
    margin-top: 2rem;
  }

  .coverage-note-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .coverage-note-icon {
    align-self: center;
  }

  .coverage-note-content .btn {
    align-self: center;
    width: 100%;
    max-width: 280px;
  }

  /* Coverage Stats Mobile */
  .coverage-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .coverage-stat-item {
    padding: 1.25rem;
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .coverage-stat-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }

  .coverage-stat-value {
    font-size: 1.5rem;
  }

  .coverage-stat-label {
    font-size: 0.8rem;
  }

  /* Coverage Areas Mobile */
  .coverage-areas {
    margin-top: 2rem;
  }

  .coverage-areas-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .coverage-areas-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .coverage-branch-section {
    margin-bottom: 2rem;
  }

  .coverage-branch-title {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
  }

  .coverage-area-card {
    padding: 1.5rem;
  }

  .coverage-area-card h4 {
    font-size: 1.1rem;
  }

  .coverage-area-card > p {
    font-size: 0.9rem;
  }

  .logos {
    padding: 3rem clamp(1rem, 4vw, 2rem);
  }

  .logo-header .stat-number {
    font-size: 2.5rem;
  }

  .logo-header {
    margin-bottom: 2rem;
  }

  .logo-list {
    gap: 2rem;
  }

  .logo-list-scroll {
    animation: scroll-logos 25s linear infinite;
  }

  .logo-item img {
    max-width: 120px;
    max-height: 60px;
  }

  .footer {
    padding: 2rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(242, 183, 5, 0.15);
  }

  .footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  /* Brand column - full width, spans both columns */
  .footer-column:first-child {
    grid-column: 1 / -1;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Services - left column */
  .footer-column:nth-child(2) {
    grid-column: 1;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-left: 0.5rem;
  }

  .footer-column:nth-child(2) h4,
  .footer-column:nth-child(2) ul {
    text-align: center;
    align-items: center;
  }

  .footer-column:nth-child(2) ul li {
    text-align: center;
  }

  /* Company - right column */
  .footer-column:nth-child(3) {
    grid-column: 2;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
  }

  .footer-column:nth-child(3) h4,
  .footer-column:nth-child(3) ul {
    text-align: center;
    align-items: center;
  }

  .footer-column:nth-child(3) ul li {
    text-align: center;
  }

  /* Contact column - full width, spans both columns */
  .footer-column:last-child {
    grid-column: 1 / -1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .loading-logo {
    width: 70px;
    height: 70px;
  }

  .no-internet-icon {
    width: 100px;
    height: 100px;
  }

  .no-internet-icon svg {
    width: 50px;
    height: 50px;
  }

  .no-internet-content h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .no-internet-content p {
    font-size: 0.95rem;
  }

  .retry-btn {
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
    width: 100%;
    max-width: 300px;
  }

  .footer-column {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-column h4 {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    font-weight: 600;
    text-align: center;
    width: 100%;
  }

  /* Center-align h4 for Services and Company */
  .footer-column:nth-child(2) h4,
  .footer-column:nth-child(3) h4 {
    text-align: center;
  }

  .footer-brand {
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }

  .footer-brand img {
    width: 48px;
    height: 48px;
  }

  .footer-brand p {
    font-size: 0.95rem;
    margin: 0;
  }

  .footer-tagline {
    font-size: 0.8rem !important;
    max-width: 260px;
    margin: 0.5rem auto 0;
    line-height: 1.5;
  }

  .footer-column ul {
    gap: 0.4rem;
    align-items: center;
    text-align: center;
  }

  /* Center-align ul for Services and Company */
  .footer-column:nth-child(2) ul,
  .footer-column:nth-child(3) ul {
    align-items: center;
    text-align: center;
  }

  .footer-column ul li {
    font-size: 0.85rem;
    padding: 0.3rem 0;
    line-height: 1.5;
    text-align: center;
  }

  /* Center-align li for Services and Company */
  .footer-column:nth-child(2) ul li,
  .footer-column:nth-child(3) ul li {
    text-align: center;
    padding: 0.25rem 0;
  }

  .footer-social {
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.75rem;
    width: 100%;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
  }

  .footer-social a svg {
    width: 18px;
    height: 18px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
  }

  .footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .footer-links a {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    padding: 0.2rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}

/* Plan Price Display - Legacy styles removed, using new structure */

/* Empty State - Internet Services Plans Section */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  background: linear-gradient(
    135deg,
    rgba(242, 183, 5, 0.08) 0%,
    rgba(242, 183, 5, 0.03) 100%
  );
  border-radius: 1.5rem;
  border: 1px solid rgba(242, 183, 5, 0.25);
  backdrop-filter: blur(10px);
  min-height: 420px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.empty-state-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(242, 183, 5, 0.2),
    rgba(242, 183, 5, 0.1)
  );
  border: 2px solid rgba(242, 183, 5, 0.35);
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: 0 8px 24px rgba(242, 183, 5, 0.15);
  animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

.empty-state-icon svg {
  width: 52px;
  height: 52px;
  color: var(--gold);
  filter: drop-shadow(0 2px 4px rgba(242, 183, 5, 0.2));
}

.empty-state h3 {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.015em;
}

.empty-state p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  max-width: 520px;
  line-height: 1.75;
  font-weight: 400;
}

.empty-state .btn {
  margin-top: 1.5rem;
  padding: 0.95rem 2.25rem;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: #111827;
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(242, 183, 5, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  gap: 0.5rem;
}

.empty-state .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(242, 183, 5, 0.35);
  background: linear-gradient(135deg, var(--amber), var(--gold));
}

.empty-state .btn:active {
  transform: translateY(-1px);
}

/* Loading State */
.loading-plans {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background: linear-gradient(
    135deg,
    rgba(242, 183, 5, 0.08) 0%,
    rgba(242, 183, 5, 0.03) 100%
  );
  border-radius: 1.5rem;
  border: 1px solid rgba(242, 183, 5, 0.25);
  backdrop-filter: blur(10px);
  min-height: 420px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.loading-spinner {
  width: 60px;
  height: 60px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-spinner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 4px solid rgba(242, 183, 5, 0.1);
  border-top-color: var(--gold);
  border-right-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.loading-spinner::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  border: 3px solid rgba(242, 183, 5, 0.15);
  border-top-color: var(--amber);
  border-radius: 50%;
  animation: spin 0.6s cubic-bezier(0.5, 0, 0.5, 1) infinite reverse;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loading-plans p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Error State */
.error-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  background: linear-gradient(
    135deg,
    rgba(244, 67, 54, 0.08) 0%,
    rgba(244, 67, 54, 0.03) 100%
  );
  border-radius: 1.5rem;
  border: 1px solid rgba(244, 67, 54, 0.25);
  backdrop-filter: blur(10px);
  min-height: 420px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.error-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(244, 67, 54, 0.2),
    rgba(244, 67, 54, 0.1)
  );
  border: 2px solid rgba(244, 67, 54, 0.35);
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: 0 8px 24px rgba(244, 67, 54, 0.15);
  animation: floatIcon 3s ease-in-out infinite;
}

.error-icon svg {
  width: 52px;
  height: 52px;
  color: #f44336;
  filter: drop-shadow(0 2px 4px rgba(244, 67, 54, 0.2));
}

.error-message h3 {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.015em;
}

.error-message p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  max-width: 520px;
  line-height: 1.75;
}

.error-message .error-action {
  margin-top: 1.5rem;
}

.error-message .error-action button {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: #111827;
  border: none;
  padding: 0.95rem 2.25rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(242, 183, 5, 0.25);
}

.error-message .error-action button:hover {
  background: linear-gradient(135deg, var(--amber), var(--gold));
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(242, 183, 5, 0.35);
}

.error-message .error-action button:active {
  transform: translateY(-1px);
}

/* Chatbot Widget */
.chatbot-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  font-family: "Poppins", sans-serif;
}

.chatbot-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 380px;
  max-width: calc(100vw - 2rem);
  height: 500px;
  max-height: calc(100vh - 120px);
  background: rgba(15, 17, 21, 0.98);
  border: 1px solid rgba(242, 183, 5, 0.3);
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(242, 183, 5, 0.1);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.chatbot-window.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chatbot-window.active ~ .chatbot-toggle {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  border-bottom: 1px solid rgba(242, 183, 5, 0.2);
  background: rgba(242, 183, 5, 0.05);
  border-radius: 1rem 1rem 0 0;
}

.chatbot-header-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.chatbot-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  flex-shrink: 0;
}

.chatbot-header-text h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
}

.chatbot-status {
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.chatbot-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  display: inline-block;
}

.chatbot-close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.chatbot-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chatbot-messages::-webkit-scrollbar {
  width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
  background: rgba(242, 183, 5, 0.3);
  border-radius: 3px;
}

.chatbot-messages::-webkit-scrollbar-thumb:hover {
  background: rgba(242, 183, 5, 0.5);
}

.chatbot-message {
  display: flex;
  animation: messageSlideIn 0.3s ease;
}

@keyframes messageSlideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chatbot-message-bot {
  justify-content: flex-start;
}

.chatbot-message-content {
  max-width: 75%;
  padding: 0.875rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.chatbot-message-bot .chatbot-message-content {
  background: rgba(242, 183, 5, 0.1);
  border-color: rgba(242, 183, 5, 0.2);
}

.chatbot-message-content p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.chatbot-input-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem;
  border-top: 1px solid rgba(242, 183, 5, 0.2);
  background: rgba(242, 183, 5, 0.03);
  border-radius: 0 0 1rem 1rem;
}

.chatbot-input {
  flex: 1;
  min-width: 0;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  color: var(--white);
  font-size: 0.9rem;
  font-family: "Poppins", sans-serif;
  transition: all 0.2s ease;
}

.chatbot-input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(242, 183, 5, 0.1);
}

.chatbot-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.chatbot-send {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  border: none;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.chatbot-send svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.chatbot-send:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(242, 183, 5, 0.4);
  background: linear-gradient(135deg, var(--amber), var(--gold));
}

.chatbot-send:active {
  transform: translateY(0);
}

.chatbot-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  border: none;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(242, 183, 5, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.chatbot-toggle:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 30px rgba(242, 183, 5, 0.5);
  background: linear-gradient(135deg, var(--amber), var(--gold));
}

.chatbot-toggle:active {
  transform: translateY(-2px) scale(1.02);
}

.chatbot-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ef4444;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(15, 17, 21, 0.98);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Responsive Chatbot */
@media (min-width: 481px) and (max-width: 1368px) {
  .chatbot-container {
    bottom: 1.5rem;
    right: 1.5rem;
  }

  .chatbot-window {
    width: 360px;
    height: 480px;
    max-height: calc(100vh - 110px);
  }

  .chatbot-input-container {
    padding: 1.125rem;
    gap: 0.7rem;
  }

  .chatbot-input {
    padding: 0.8rem 0.95rem;
    font-size: 0.875rem;
  }

  .chatbot-send {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }

  .chatbot-send svg {
    width: 19px;
    height: 19px;
  }

  .chatbot-toggle {
    width: 58px;
    height: 58px;
  }

  .chatbot-toggle svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 768px) {
  .chatbot-container {
    bottom: 1rem;
    right: 1rem;
    left: auto;
  }

  .chatbot-window {
    width: calc(100vw - 2rem);
    height: 450px;
    max-height: calc(100vh - 100px);
    right: 0;
    left: auto;
  }

  .chatbot-header {
    padding: 1rem;
  }

  .chatbot-avatar {
    width: 36px;
    height: 36px;
  }

  .chatbot-avatar svg {
    width: 18px;
    height: 18px;
  }

  .chatbot-header-text h4 {
    font-size: 0.9rem;
  }

  .chatbot-status {
    font-size: 0.7rem;
  }

  .chatbot-input-container {
    padding: 1rem;
    gap: 0.625rem;
  }

  .chatbot-input {
    padding: 0.75rem 0.875rem;
    font-size: 0.875rem;
    min-width: 0;
  }

  .chatbot-send {
    width: 40px;
    height: 40px;
    min-width: 40px;
    flex-shrink: 0;
  }

  .chatbot-send svg {
    width: 18px;
    height: 18px;
  }

  .chatbot-toggle {
    width: 56px;
    height: 56px;
  }

  .chatbot-toggle svg {
    width: 20px;
    height: 20px;
  }

  .chatbot-badge {
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    top: -2px;
    right: -2px;
  }
}

@media (max-width: 480px) {
  .chatbot-container {
    bottom: 0.75rem;
    right: 0.75rem;
    left: auto;
  }

  .chatbot-window {
    bottom: 70px;
    width: calc(100vw - 1.5rem);
    height: 400px;
    max-height: calc(100vh - 90px);
    right: 0;
    left: auto;
  }

  .chatbot-header {
    padding: 0.875rem;
  }

  .chatbot-header-info {
    gap: 0.625rem;
  }

  .chatbot-avatar {
    width: 32px;
    height: 32px;
  }

  .chatbot-avatar svg {
    width: 16px;
    height: 16px;
  }

  .chatbot-header-text h4 {
    font-size: 0.85rem;
  }

  .chatbot-status {
    font-size: 0.65rem;
    margin-top: 0.2rem;
  }

  .chatbot-close {
    padding: 0.4rem;
  }

  .chatbot-close svg {
    width: 18px;
    height: 18px;
  }

  .chatbot-messages {
    padding: 1rem;
  }

  .chatbot-message-content {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    max-width: 85%;
  }

  .chatbot-input-container {
    padding: 0.875rem;
    gap: 0.5rem;
  }

  .chatbot-input {
    padding: 0.7rem 0.75rem;
    font-size: 0.85rem;
    min-width: 0;
  }

  .chatbot-send {
    width: 36px;
    height: 36px;
    min-width: 36px;
    flex-shrink: 0;
  }

  .chatbot-send svg {
    width: 16px;
    height: 16px;
  }

  .chatbot-toggle {
    width: 52px;
    height: 52px;
  }

  .chatbot-toggle svg {
    width: 18px;
    height: 18px;
  }

  .chatbot-badge {
    width: 18px;
    height: 18px;
    font-size: 0.65rem;
    top: -2px;
    right: -2px;
  }
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-consent {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(calc(100% + 3rem));
  z-index: 9999;
  width: 100%;
  max-width: 400px;
  padding: 1.5rem;
  background: linear-gradient(
    145deg,
    rgba(26, 27, 35, 0.98) 0%,
    rgba(15, 16, 20, 0.98) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(242, 183, 5, 0.15);
  border-radius: 1.25rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05), 0 0 40px rgba(242, 183, 5, 0.08);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.4s ease;
}

.cookie-consent.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.cookie-consent.hide {
  transform: translateX(-50%) translateY(calc(100% + 3rem));
  opacity: 0;
}

.cookie-consent-container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cookie-consent-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.cookie-consent-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(242, 183, 5, 0.15) 0%,
    rgba(242, 183, 5, 0.05) 100%
  );
  border: 1px solid rgba(242, 183, 5, 0.2);
  border-radius: 0.875rem;
  color: var(--gold, #f2b705);
  transition: all 0.3s ease;
}

.cookie-consent-icon svg {
  width: 24px;
  height: 24px;
}

.cookie-consent:hover .cookie-consent-icon {
  background: linear-gradient(
    135deg,
    rgba(242, 183, 5, 0.2) 0%,
    rgba(242, 183, 5, 0.08) 100%
  );
  transform: rotate(-8deg) scale(1.05);
}

.cookie-consent-text {
  flex: 1;
  padding-top: 0.125rem;
}

.cookie-consent-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.01em;
}

.cookie-consent-description {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0;
}

.cookie-consent-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cookie-btn {
  flex: 1;
  padding: 0.75rem 1.25rem;
  border-radius: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cookie-btn-decline {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-btn-decline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

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

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--gold, #f2b705) 0%, #f5d061 100%);
  color: #1e1f24;
  box-shadow: 0 4px 16px rgba(242, 183, 5, 0.25);
}

.cookie-btn-accept::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.cookie-btn-accept:hover::before {
  left: 100%;
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(242, 183, 5, 0.35);
}

.cookie-btn-accept:active {
  transform: translateY(0);
  box-shadow: 0 4px 16px rgba(242, 183, 5, 0.25);
}

/* Tablet adjustments */
@media (max-width: 768px) {
  .cookie-consent {
    bottom: 1.5rem;
    max-width: 380px;
    padding: 1.25rem;
  }

  .cookie-consent-icon {
    width: 44px;
    height: 44px;
  }

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

  .cookie-consent-title {
    font-size: 0.9375rem;
  }

  .cookie-consent-description {
    font-size: 0.75rem;
  }

  .cookie-btn {
    padding: 0.6875rem 1rem;
    font-size: 0.75rem;
  }
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .cookie-consent {
    bottom: 1rem;
    left: 0.75rem;
    right: 0.75rem;
    max-width: none;
    width: auto;
    padding: 1.125rem;
    border-radius: 1rem;
    transform: translateX(0) translateY(calc(100% + 2rem));
  }

  .cookie-consent.show {
    transform: translateX(0) translateY(0);
  }

  .cookie-consent.hide {
    transform: translateX(0) translateY(calc(100% + 2rem));
  }

  .cookie-consent-container {
    gap: 1rem;
  }

  .cookie-consent-content {
    gap: 0.875rem;
  }

  .cookie-consent-icon {
    width: 40px;
    height: 40px;
    border-radius: 0.75rem;
  }

  .cookie-consent-icon svg {
    width: 20px;
    height: 20px;
  }

  .cookie-consent-title {
    font-size: 0.875rem;
    margin-bottom: 0.375rem;
  }

  .cookie-consent-description {
    font-size: 0.75rem;
    line-height: 1.5;
  }

  .cookie-consent-actions {
    gap: 0.625rem;
  }

  .cookie-btn {
    padding: 0.625rem 0.875rem;
    font-size: 0.75rem;
    border-radius: 0.5rem;
  }
}
