/* =============================================================
   SUN STATE ELITE WASH LLC
   Pressure Washing & Exterior Cleaning — St. Petersburg, FL

   Palette:
     --primary:    #0077CC  (electric blue — water, power, trust)
     --primary-dk: #005A99  (deep blue)
     --accent:     #FFD600  (sunshine yellow — Florida sun)
     --dark:       #0A1628  (navy — authority, footer/dark sections)
     --dark-mid:   #132238  (navy mid)
     --tint:       #E8F4FD  (sky blue tint — light section bg)
     --surface:    #FFFFFF  (white — cleanliness)
     --gray-50:    #F7FAFC
     --gray-100:   #EDF2F7
     --gray-200:   #E2E8F0
     --gray-400:   #A0AEC0
     --gray-600:   #4A5568
     --gray-800:   #2D3748
     --gray-900:   #1A202C

   Fonts: Montserrat (headings) + Inter (body)
   ============================================================= */

/* ---------------------------------------------------------------
   RESET & BASE
   --------------------------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0077CC;
  --primary-dk: #005A99;
  --primary-light: #3399DD;
  --primary-10: rgba(0, 119, 204, 0.1);
  --primary-20: rgba(0, 119, 204, 0.2);
  --accent: #FFD600;
  --accent-dk: #E6C200;
  --dark: #0A1628;
  --dark-mid: #132238;
  --tint: #E8F4FD;
  --surface: #FFFFFF;
  --gray-50: #F7FAFC;
  --gray-100: #EDF2F7;
  --gray-200: #E2E8F0;
  --gray-400: #A0AEC0;
  --gray-600: #4A5568;
  --gray-800: #2D3748;
  --gray-900: #1A202C;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.08);
  --shadow-md: 0 4px 12px rgba(10, 22, 40, 0.1);
  --shadow-lg: 0 8px 30px rgba(10, 22, 40, 0.12);
  --shadow-xl: 0 16px 48px rgba(10, 22, 40, 0.16);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-800);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

a:hover { color: var(--primary-dk); }

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

ul, ol { list-style: none; }

/* ---------------------------------------------------------------
   TYPOGRAPHY
   --------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: var(--gray-900);
}

.section-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.section-title em {
  font-style: italic;
  color: var(--primary);
}

.section-title--light {
  color: var(--surface);
}

.section-title--light em {
  color: var(--accent);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  line-height: 1.7;
}

/* ---------------------------------------------------------------
   BUTTONS
   --------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.4;
}

.btn--primary {
  background: var(--primary);
  color: var(--surface);
  border-color: var(--primary);
}

.btn--primary:hover {
  background: var(--primary-dk);
  border-color: var(--primary-dk);
  color: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 119, 204, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn--outline:hover {
  background: var(--primary);
  color: var(--surface);
  transform: translateY(-2px);
}

.btn--outline-light {
  background: transparent;
  color: var(--surface);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--surface);
  color: var(--surface);
  transform: translateY(-2px);
}

.btn--yellow {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
}

.btn--yellow:hover {
  background: var(--accent-dk);
  border-color: var(--accent-dk);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 214, 0, 0.4);
}

.btn--lg {
  padding: 0.9rem 2rem;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
}

/* ---------------------------------------------------------------
   NAVIGATION
   --------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.nav--scrolled {
  height: 64px;
  background: rgba(255, 255, 255, 0.97);
  border-bottom-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo__icon {
  flex-shrink: 0;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo__name-top {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--primary);
}

.logo__name-bottom {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: var(--gray-600);
  margin-top: 1px;
}

.logo--light .logo__name-top {
  color: var(--surface);
}

.logo--light .logo__name-bottom {
  color: var(--gray-400);
}

/* Nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-800);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-decoration: none;
}

.nav__link:hover {
  color: var(--primary);
  background: var(--primary-10);
}

.nav__link--cta {
  background: var(--primary);
  color: var(--surface) !important;
  margin-left: 0.5rem;
  padding: 0.55rem 1.2rem;
}

.nav__link--cta:hover {
  background: var(--primary-dk) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.nav__hamburger-line {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.nav__hamburger[aria-expanded="true"] .nav__hamburger-line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav__hamburger[aria-expanded="true"] .nav__hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__hamburger[aria-expanded="true"] .nav__hamburger-line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ---------------------------------------------------------------
   HERO
   --------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(170deg, var(--surface) 0%, var(--tint) 50%, var(--surface) 100%);
  overflow: hidden;
}

.hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-10);
  padding: 0.45rem 1rem;
  border-radius: 50px;
  border: 1px solid var(--primary-20);
  margin-bottom: 1.25rem;
}

.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 1.25rem;
  color: var(--dark);
}

.hero__title em {
  font-style: italic;
  color: var(--primary);
  position: relative;
}

.hero__description {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Hero stats */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  width: fit-content;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.hero__stat-plus,
.hero__stat-percent {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent);
}

.hero__stat-star {
  font-size: 1.1rem;
  color: var(--accent);
}

.hero__stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-top: 0.25rem;
  letter-spacing: 0.02em;
}

.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: var(--gray-200);
}

/* Hero visual — before/after */
.hero__visual {
  position: relative;
}

.hero__before-after {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 3px solid var(--surface);
}

.hero__before,
.hero__after {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__before {
  background: linear-gradient(145deg, #6B7B8D 0%, #8B9DAF 30%, #5A6A7A 70%, #4A5A6A 100%);
}

.hero__after {
  background: linear-gradient(145deg, #E8F4FD 0%, #B8DFF5 30%, #dceefb 60%, #ffffff 100%);
}

.hero__label {
  position: absolute;
  top: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  z-index: 2;
}

.hero__label--before {
  left: 12px;
  background: rgba(74, 90, 106, 0.8);
  color: var(--surface);
}

.hero__label--after {
  right: 12px;
  background: var(--primary);
  color: var(--surface);
}

.hero__house-svg {
  width: 80%;
  height: auto;
}

.hero__divider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--surface);
  z-index: 3;
  transform: translateX(-50%);
}

.hero__divider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  color: var(--primary);
}

/* Sparkle animations */
.sparkle {
  animation: sparkle 2s ease-in-out infinite;
}

.sparkle--1 { animation-delay: 0s; }
.sparkle--2 { animation-delay: 0.4s; }
.sparkle--3 { animation-delay: 0.8s; }
.sparkle--4 { animation-delay: 1.2s; }
.sparkle--5 { animation-delay: 0.6s; }

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

/* Spray ring animations */
.spray-ring {
  animation: sprayPulse 3s ease-in-out infinite;
}

.spray-ring--1 { animation-delay: 0s; }
.spray-ring--2 { animation-delay: 1s; }

@keyframes sprayPulse {
  0%, 100% { opacity: 0.15; transform-origin: center; }
  50% { opacity: 0.35; }
}

/* Hero decorative water drops */
.hero__drops {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__drop {
  position: absolute;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.04;
}

.hero__drop--1 {
  width: 300px;
  height: 300px;
  top: -80px;
  right: -60px;
  animation: float 8s ease-in-out infinite;
}

.hero__drop--2 {
  width: 200px;
  height: 200px;
  bottom: 10%;
  left: -40px;
  animation: float 10s ease-in-out infinite reverse;
}

.hero__drop--3 {
  width: 150px;
  height: 150px;
  top: 40%;
  right: 30%;
  opacity: 0.03;
  animation: float 12s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(15px, -20px); }
  66% { transform: translate(-10px, 10px); }
}

/* ---------------------------------------------------------------
   TRUST BAR
   --------------------------------------------------------------- */
.trust-bar {
  background: var(--primary);
  padding: 1.25rem 0;
}

.trust-bar__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--surface);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.trust-bar__item svg {
  flex-shrink: 0;
  opacity: 0.9;
}

/* ---------------------------------------------------------------
   ABOUT
   --------------------------------------------------------------- */
.about {
  padding: 6rem 0;
  background: var(--surface);
}

.about__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.about__visual {
  position: relative;
}

.about__image-placeholder {
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--tint) 0%, #d0e8f7 50%, var(--primary-10) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 2px dashed var(--primary-20);
}

.about__image-text {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 500;
  opacity: 0.6;
}

.about__badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--primary);
  color: var(--surface);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about__badge-number {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}

.about__badge-text {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  opacity: 0.9;
  margin-top: 0.2rem;
}

.about__text {
  font-size: 1.05rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.about__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.about__highlight {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-800);
}

.about__highlight svg {
  flex-shrink: 0;
}

/* ---------------------------------------------------------------
   SERVICES
   --------------------------------------------------------------- */
.services {
  padding: 6rem 0;
  background: var(--gray-50);
}

.services__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.services__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.services__header .section-subtitle {
  margin: 0 auto;
}

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

/* Service card */
.service-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-20);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  background: var(--primary-10);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.25rem;
  transition: all var(--transition);
}

.service-card:hover .service-card__icon {
  background: var(--primary);
  color: var(--surface);
}

.service-card__title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--gray-900);
}

.service-card__desc {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.service-card__features {
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-card__features li {
  font-size: 0.85rem;
  color: var(--gray-600);
  padding: 0.3rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.service-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.6;
}

.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: gap var(--transition);
  margin-top: auto;
}

.service-card__cta:hover {
  gap: 0.7rem;
}

/* ---------------------------------------------------------------
   WHY CHOOSE US
   --------------------------------------------------------------- */
.why-us {
  padding: 6rem 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(0, 119, 204, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 214, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.why-us__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.why-us__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.why-us__header .section-tag {
  color: var(--accent);
}

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

.why-us__card {
  background: var(--dark-mid);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all var(--transition);
}

.why-us__card:hover {
  border-color: rgba(0, 119, 204, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.why-us__number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.why-us__card:hover .why-us__number {
  opacity: 0.5;
}

.why-us__card-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--surface);
  margin-bottom: 0.75rem;
}

.why-us__card-desc {
  font-size: 0.92rem;
  color: var(--gray-400);
  line-height: 1.65;
}

/* ---------------------------------------------------------------
   SERVICE AREAS
   --------------------------------------------------------------- */
.areas {
  padding: 6rem 0;
  background: var(--surface);
}

.areas__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.areas__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.area-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  border: 1.5px solid var(--gray-200);
  color: var(--gray-600);
  transition: all var(--transition);
  cursor: default;
}

.area-tag:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-10);
}

.area-tag--primary {
  background: var(--primary);
  color: var(--surface);
  border-color: var(--primary);
}

.area-tag--primary:hover {
  background: var(--primary-dk);
  border-color: var(--primary-dk);
  color: var(--surface);
}

.areas__map {
  position: relative;
}

.areas__map-placeholder {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-100);
}

.areas__map-svg {
  width: 100%;
  height: auto;
}

/* Map pulse animation */
.map-pulse {
  animation: mapPulse 2s ease-in-out infinite;
}

@keyframes mapPulse {
  0%, 100% { r: 12; opacity: 0.9; }
  50% { r: 16; opacity: 0.6; }
}

/* ---------------------------------------------------------------
   CTA BANNER
   --------------------------------------------------------------- */
.cta-banner {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-dk) 0%, var(--primary) 50%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 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");
  pointer-events: none;
}

.cta-banner__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-banner__title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--surface);
  margin-bottom: 1rem;
}

.cta-banner__text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cta-banner__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------------------------------------------------------------
   QUOTE / CONTACT FORM
   --------------------------------------------------------------- */
.quote {
  padding: 6rem 0;
  background: var(--gray-50);
}

.quote__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.quote__text {
  font-size: 1.05rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.75;
}

.quote__contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.quote__contact-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.quote__contact-item svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.quote__contact-item strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.15rem;
}

.quote__contact-item span,
.quote__contact-item a {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.quote__contact-item a:hover {
  color: var(--primary);
}

/* Form */
.quote__form-wrapper {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}

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

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.4rem;
}

.required {
  color: #E53E3E;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder {
  color: var(--gray-400);
}

.form-input:focus {
  border-color: var(--primary);
  background: var(--surface);
  box-shadow: 0 0 0 3px var(--primary-10);
  outline: none;
}

.form-input.error {
  border-color: #E53E3E;
  background: #FFF5F5;
}

.form-input.error:focus {
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%234A5568' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-error {
  display: none;
  font-size: 0.78rem;
  color: #E53E3E;
  margin-top: 0.3rem;
  font-weight: 500;
}

.form-group.has-error .form-error {
  display: block;
}

/* Submit button states */
.btn__loading {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.btn--loading .btn__text,
.btn--loading svg:last-child {
  display: none;
}

.btn--loading .btn__loading {
  display: inline-flex;
}

.spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Success state */
.quote__success {
  text-align: center;
  padding: 3rem 2rem;
}

.quote__success svg {
  margin: 0 auto 1.5rem;
}

.quote__success h3 {
  font-size: 1.5rem;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.quote__success p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

/* ---------------------------------------------------------------
   FOOTER
   --------------------------------------------------------------- */
.footer {
  background: var(--dark);
  color: var(--gray-400);
  padding: 4rem 0 0;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__tagline {
  font-size: 0.92rem;
  line-height: 1.65;
  margin-top: 1.25rem;
  color: var(--gray-400);
  max-width: 280px;
}

.footer__heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--surface);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.footer__links li {
  margin-bottom: 0.6rem;
}

.footer__links a {
  font-size: 0.9rem;
  color: var(--gray-400);
  transition: color var(--transition);
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--surface);
}

.footer__links--contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer__links--contact svg {
  flex-shrink: 0;
  margin-top: 3px;
  opacity: 0.6;
}

.footer__bottom {
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--gray-400);
  opacity: 0.8;
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  color: var(--gray-400);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color var(--transition);
}

.footer__legal a:hover {
  color: var(--surface);
}

/* ---------------------------------------------------------------
   BACK TO TOP
   --------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--surface);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--primary-dk);
  transform: translateY(-3px);
}

/* ---------------------------------------------------------------
   SCROLL REVEAL ANIMATION
   --------------------------------------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------------------------------------------------------
   RESPONSIVE — TABLET (max-width: 1024px)
   --------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .hero__description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__stats {
    margin: 0 auto;
  }

  .hero__visual {
    max-width: 500px;
    margin: 0 auto;
  }

  .about__container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about__visual {
    max-width: 400px;
    margin: 0 auto;
  }

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

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

  .areas__container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .quote__container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* ---------------------------------------------------------------
   RESPONSIVE — MOBILE (max-width: 768px)
   --------------------------------------------------------------- */
@media (max-width: 768px) {
  .nav__hamburger {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--surface);
    flex-direction: column;
    align-items: stretch;
    padding: 5rem 1.5rem 2rem;
    gap: 0.25rem;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
  }

  .nav__links.open {
    transform: translateX(0);
  }

  .nav__link {
    font-size: 1rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
  }

  .nav__link--cta {
    margin-left: 0;
    margin-top: 0.5rem;
    text-align: center;
  }

  /* Mobile overlay */
  .nav__links::before {
    content: '';
    position: fixed;
    top: 0;
    right: 280px;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 22, 40, 0.4);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
  }

  .nav__links.open::before {
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero__title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .hero__stats {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 300px;
  }

  .hero__stat-divider {
    width: 60px;
    height: 1px;
  }

  .trust-bar__container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }

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

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

  .why-us__grid {
    grid-template-columns: 1fr;
  }

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

  .quote__form-wrapper {
    padding: 1.5rem;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

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

  .back-to-top {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 42px;
    height: 42px;
  }
}

/* ---------------------------------------------------------------
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
   --------------------------------------------------------------- */
@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

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

  .hero__before-after {
    border-radius: var(--radius-md);
  }

  .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
}

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

  html {
    scroll-behavior: auto;
  }

  .fade-up {
    opacity: 1;
    transform: none;
  }

  .sparkle,
  .spray-ring,
  .hero__drop,
  .map-pulse {
    animation: none !important;
  }
}

/* ---------------------------------------------------------------
   PRINT STYLES
   --------------------------------------------------------------- */
@media print {
  .nav,
  .back-to-top,
  .cta-banner,
  .hero__drops,
  .hero__visual,
  .areas__map {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
    background: none;
  }

  .why-us {
    background: #f0f0f0;
    color: #000;
  }

  .why-us__card-title,
  .section-title--light {
    color: #000;
  }

  .why-us__card-desc {
    color: #333;
  }

  a { color: #000; }
}
