/* ===== LANDING PAGE (hero + header) ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #2b2b2b;
  line-height: 1.5;
  overflow-x: hidden;
}

/* Header / Nav */
.landing-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 12px 24px;
  overflow: visible;
}
.landing-header-nav {
  overflow: visible;
}
/* Nav dropdowns (Services + Service Area with cities) */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a1a;
  padding: 8px 14px;
  border-radius: 8px;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}
.nav-dropdown-trigger::after {
  content: '\25BC';
  font-size: 0.6rem;
  opacity: 0.8;
}
.nav-dropdown-service-area .nav-dropdown-trigger::after {
  content: none;
}
.nav-dropdown-service-area .nav-dropdown-trigger span {
  font-size: 0.6rem;
  opacity: 0.8;
  margin-left: 2px;
}
.nav-dropdown-service-area .nav-dropdown-trigger {
  cursor: default;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 8px 0;
  margin-top: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 200;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-service-area:hover .nav-dropdown-menu,
.nav-dropdown-service-area:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu.nav-dropdown-menu--scroll {
  max-height: 70vh;
  overflow-y: auto;
}
.nav-dropdown-menu a {
  display: block;
  padding: 12px 20px;
  font-size: 0.9rem;
  color: #2b2b2b;
  text-decoration: none;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover {
  background: rgba(0, 102, 204, 0.08);
  color: #0066cc;
}

.landing-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.landing-logo {
  height: 42px;
  width: 42px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  object-fit: cover;
  display: block;
}

.landing-nav-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.landing-nav-ctas a {
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 9px 20px;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.landing-cta-phone {
  background: linear-gradient(135deg, #ff6600, #ff8533);
  color: #ffffff;
  box-shadow: 0 6px 24px rgba(255, 102, 0, 0.5);
}

.landing-cta-phone:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 32px rgba(255, 102, 0, 0.6);
}

.landing-cta-quote {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.landing-cta-quote:hover {
  background: #ffffff;
  color: #004999;
  transform: translateY(-2px);
}

/* ===== Landing page motion ===== */
@keyframes heroFadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradientMove {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(12px, -15px) scale(1.02); }
  66% { transform: translate(-8px, 10px) scale(0.98); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.15; }
  50% { opacity: 0.25; }
}

/* Scroll-in animation for sections */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease-out, transform 0.65s ease-out;
}
.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}
.animate-on-scroll.animate-delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.animate-delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.animate-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .landing-hero,
  .landing-hero-blob { animation: none; }
  .landing-hero { background-size: 100% 100%; }
  .landing-hero-badge,
  .landing-hero h1,
  .landing-hero-p,
  .landing-hero-ctas,
  .landing-hero-trust { animation: none; }
  .animate-on-scroll { opacity: 1; transform: none; transition: none; }
}

/* Hero / Landing section */
.landing-hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px 80px;
  background: linear-gradient(135deg, #0066cc 0%, #004999 25%, #003366 50%, #004999 75%, #0066cc 100%);
  background-size: 200% 200%;
  animation: gradientMove 12s ease infinite;
  color: white;
  position: relative;
  overflow: hidden;
}

.landing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

/* Floating decorative blobs */
.landing-hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: float 18s ease-in-out infinite;
}
.landing-hero-blob:nth-child(1) {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255,153,0,0.12) 0%, transparent 70%);
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}
.landing-hero-blob:nth-child(2) {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  bottom: 20%;
  right: 8%;
  animation-delay: -6s;
}
.landing-hero-blob:nth-child(3) {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  top: 50%;
  left: 15%;
  animation-delay: -12s;
}

.landing-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

/* Staggered hero entrance */
.landing-hero h1 {
  animation: heroFadeInUp 0.7s ease-out 0.25s both;
}
.landing-hero-p {
  animation: heroFadeInUp 0.7s ease-out 0.4s both;
}
.landing-hero-ctas {
  animation: heroFadeInUp 0.7s ease-out 0.55s both;
}
.landing-hero-trust {
  animation: heroFadeInUp 0.7s ease-out 0.7s both;
}

.landing-hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: heroFadeInUp 0.7s ease-out 0.1s both;
}

.landing-hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.landing-hero h1 .accent {
  color: #ff9900;
}

.landing-hero-p {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  opacity: 0.95;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.landing-hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.landing-hero-ctas a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  min-height: 52px;
}

.landing-hero-cta-primary {
  background: #ff6600;
  color: white;
  border: 2px solid #ff6600;
  box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
}

.landing-hero-cta-primary:hover {
  background: #ff8533;
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(255, 102, 0, 0.5);
}

.landing-hero-cta-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.landing-hero-cta-secondary:hover {
  background: white;
  color: #0066cc;
  transform: translateY(-4px);
}

.landing-hero-trust {
  font-size: 0.9rem;
  opacity: 0.9;
}

.landing-hero-trust span {
  margin: 0 8px;
}

@media (max-width: 768px) {
  .landing-hero {
    min-height: auto;
    padding: 50px 20px 60px;
  }
  .landing-hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  .landing-hero-ctas a {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

/* Sticky Call bar — mobile only */
.sticky-call-bar {
  display: none;
}
@media (max-width: 768px) {
  .sticky-call-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #0066cc;
    color: #fff;
    padding: 12px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', system-ui, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  }
  .sticky-call-bar a {
    color: #fff;
    text-decoration: none;
  }
  .sticky-call-bar a:hover {
    text-decoration: underline;
  }
  body { padding-bottom: 52px; }
}
