/* =============================================
   Clean It Better Pressure Washing - Redesign
   Primary: #0099FF | Navy: #0A1628 | White
   Fonts: Inter (body), DM Serif Display (headings)
   ============================================= */

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

:root {
  --blue: #0099FF;
  --blue-dark: #0077CC;
  --blue-glow: rgba(0, 153, 255, 0.15);
  --blue-glow-strong: rgba(0, 153, 255, 0.3);
  --navy: #0A1628;
  --navy-light: #0F1F35;
  --navy-lighter: #162A45;
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --text: #1E293B;
  --text-light: #94A3B8;
  --text-muted: #64748B;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-lg: 0 4px 20px rgba(0,0,0,0.1), 0 8px 32px rgba(0,0,0,0.06);
  --shadow-xl: 0 8px 40px rgba(0,0,0,0.12), 0 16px 48px rgba(0,0,0,0.08);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'DM Serif Display', Georgia, serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

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

/* --- SECTION HEADER --- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  background: var(--blue-glow);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-tag--light {
  color: var(--blue);
  background: rgba(0, 153, 255, 0.2);
}

.section-header--light .section-title,
.section-header--light .section-sub {
  color: var(--white);
}

.section-header--light .section-sub {
  color: var(--gray-400);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* --- TOP BAR --- */
.top-bar {
  background: var(--navy);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  z-index: 1001;
}

.top-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-300);
}

.top-bar__item svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.top-bar__phone {
  color: var(--blue);
  font-weight: 700;
  transition: color var(--transition);
}

.top-bar__phone:hover {
  color: var(--white);
}

/* --- NAVIGATION --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  transition: box-shadow var(--transition);
  border-bottom: 1px solid transparent;
}

.nav--scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  border-bottom-color: var(--gray-200);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo img {
  height: 52px;
  width: auto;
}

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

.nav__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-600);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
  position: relative;
}

.nav__link:hover,
.nav__link--active {
  color: var(--blue);
  background: var(--blue-glow);
}

.nav__cta {
  margin-left: 8px;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__hamburger--open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger--open span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger--open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(0, 153, 255, 0.3);
}

.btn--primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  box-shadow: 0 6px 24px rgba(0, 153, 255, 0.4);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

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

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

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

.btn--white {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}

.btn--white:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1.05rem;
  border-radius: 12px;
}

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

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(10, 22, 40, 0.85) 0%,
    rgba(10, 22, 40, 0.7) 40%,
    rgba(10, 22, 40, 0.85) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 900px;
}

.hero__title {
  margin-bottom: 24px;
}

.hero__title-line1 {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  line-height: 1.1;
}

.hero__title-line2 {
  display: block;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  color: var(--blue);
  line-height: 1.1;
  text-shadow: 0 0 60px rgba(0, 153, 255, 0.4);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--gray-300);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(10, 22, 40, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: center;
  gap: 0;
}

.hero__stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  color: var(--gray-300);
  font-size: 0.9rem;
  font-weight: 600;
  position: relative;
}

.hero__stat svg {
  color: var(--blue);
  flex-shrink: 0;
}

.hero__stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.15);
}

/* --- AWARD --- */
.award {
  padding: 64px 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.award__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: left;
}

.award__badge {
  width: 120px;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}

.award__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.award__sub {
  font-size: 1rem;
  color: var(--gray-500);
}

/* --- SERVICES --- */
.services {
  padding: 96px 0;
  background: var(--white);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.service-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  background: var(--white);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  background: var(--blue-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card__icon svg {
  width: 26px;
  height: 26px;
  color: var(--blue);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card__desc {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.services__infographics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.services__infographic {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  border: 1px solid var(--gray-200);
}

.services__infographic img {
  width: 100%;
  height: auto;
  display: block;
}

.services__infographic-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 20px;
  background: linear-gradient(transparent, rgba(10, 22, 40, 0.8));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --- GALLERY / BEFORE & AFTER --- */
.gallery {
  padding: 96px 0;
  background: var(--navy);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.gallery__grid .ba-pair:last-child {
  grid-column: 1 / -1;
  max-width: 588px;
  margin: 0 auto;
}

.ba-pair {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.ba-pair__container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  cursor: col-resize;
}

.ba-pair__before,
.ba-pair__after {
  position: absolute;
  inset: 0;
}

.ba-pair__before img,
.ba-pair__after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-pair__before {
  z-index: 1;
  clip-path: inset(0 50% 0 0);
}

.ba-pair__after {
  z-index: 0;
}

.ba-pair__label {
  position: absolute;
  bottom: 12px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 6px;
  z-index: 5;
}

.ba-pair__label--before {
  left: 12px;
  background: rgba(220, 50, 50, 0.9);
  color: var(--white);
}

.ba-pair__label--after {
  right: 12px;
  background: rgba(0, 153, 255, 0.9);
  color: var(--white);
}

.ba-pair__slider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 10;
  width: 4px;
  transform: translateX(-50%);
  pointer-events: none;
}

.ba-pair__slider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  background: var(--white);
  box-shadow: 0 0 8px rgba(0,0,0,0.4);
}

.ba-pair__slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--blue);
  border: 3px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.ba-pair__slider-handle svg {
  width: 16px;
  height: 16px;
}

/* --- PRICING --- */
.pricing {
  padding: 96px 0;
  background: var(--gray-50);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pricing-card--featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), var(--shadow-lg);
  transform: scale(1.03);
}

.pricing-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-card__badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 0 0 8px 8px;
}

.pricing-card__header {
  margin-bottom: 28px;
}

.pricing-card__icon {
  width: 48px;
  height: 48px;
  background: var(--blue-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.pricing-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--blue);
}

.pricing-card__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--navy);
}

.pricing-card__list {
  list-style: none;
  margin-bottom: 20px;
}

.pricing-card__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.92rem;
}

.pricing-card__list li span {
  color: var(--gray-600);
}

.pricing-card__list li strong {
  color: var(--navy);
  font-weight: 800;
  font-size: 0.95rem;
}

.pricing-card__note {
  font-size: 0.82rem;
  color: var(--gray-400);
  margin-bottom: 24px;
  font-style: italic;
}

.pricing__commercial {
  text-align: center;
  font-size: 1.05rem;
  color: var(--gray-600);
  margin-bottom: 24px;
}

.pricing__commercial a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
}

.pricing__cta {
  text-align: center;
}

/* --- ABOUT --- */
.about {
  padding: 96px 0;
  background: var(--navy);
  color: var(--white);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__title {
  color: var(--white);
}

.about__text {
  font-size: 1.05rem;
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.about__value {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-300);
}

.about__value svg {
  flex-shrink: 0;
}

.about__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.about__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 153, 255, 0.2);
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- SERVICE AREAS --- */
.areas {
  padding: 96px 0;
  background: var(--white);
}

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

.areas__col {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}

.areas__col-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--blue-glow);
}

.areas__col-header h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--navy);
}

.areas__list {
  list-style: none;
}

.areas__list li {
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 8px;
}

.areas__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

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

/* --- CTA BANNER --- */
.cta-banner {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue) 0%, #006ACC 100%);
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 20% 50%, white 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, white 1px, transparent 1px),
    radial-gradient(circle at 60% 80%, white 1px, transparent 1px);
  background-size: 60px 60px, 80px 80px, 50px 50px;
}

.cta-banner__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 12px;
}

.cta-banner__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
}

.cta-banner__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- CONTACT --- */
.contact {
  padding: 96px 0;
  background: var(--white);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact__desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.contact__card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}

.contact__card-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__card-icon svg {
  width: 20px;
  height: 20px;
  color: var(--blue);
}

.contact__card strong {
  display: block;
  font-size: 0.8rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.contact__card a,
.contact__card span {
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 500;
}

.contact__card a:hover {
  color: var(--blue);
}

.contact__payment {
  font-size: 0.9rem;
  color: var(--gray-500);
  padding: 16px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}

.contact__payment strong {
  color: var(--navy);
}

/* Contact Form */
.contact__form-wrap {
  position: relative;
}

.contact__form {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-xl);
}

.contact__form-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 28px;
}

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

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--navy-lighter);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-500);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  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='%2394A3B8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--navy);
  color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-glow);
}

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

.contact__form .btn {
  margin-top: 8px;
}

.contact__form-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-top: 16px;
}

/* --- FOOTER --- */
.footer {
  background: var(--navy);
  color: var(--gray-400);
  padding: 64px 0 0;
}

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

.footer__logo {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
}

.footer__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer__tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--blue);
}

.footer__links-col h4 {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-300);
  margin-bottom: 20px;
}

.footer__links-col a,
.footer__links-col span {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-500);
  padding: 5px 0;
  transition: color var(--transition);
}

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

.footer__areas {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.footer__areas strong {
  color: var(--gray-300);
}

.footer__bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* --- SCROLL REVEAL --- */
.reveal {
  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);
}

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

/* Stagger children */
.services__grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.services__grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.services__grid .reveal:nth-child(4) { transition-delay: 0.3s; }
.services__grid .reveal:nth-child(5) { transition-delay: 0.4s; }
.services__grid .reveal:nth-child(6) { transition-delay: 0.5s; }

.pricing__grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.pricing__grid .reveal:nth-child(3) { transition-delay: 0.2s; }

.gallery__grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.gallery__grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.gallery__grid .reveal:nth-child(4) { transition-delay: 0.3s; }
.gallery__grid .reveal:nth-child(5) { transition-delay: 0.4s; }

.areas__grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.areas__grid .reveal:nth-child(3) { transition-delay: 0.2s; }

/* --- RESPONSIVE --- */

/* Tablet */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__image {
    max-width: 600px;
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .hero__stat {
    padding: 16px 24px;
    font-size: 0.82rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .top-bar__inner {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 20px;
  }

  .top-bar__item:nth-child(2) {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 80px 24px 32px;
    gap: 4px;
    box-shadow: -4px 0 32px rgba(0,0,0,0.12);
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 1001;
    overflow-y: auto;
  }

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

  .nav__link {
    font-size: 1rem;
    padding: 12px 16px;
    border-bottom: 1px solid var(--gray-100);
  }

  .nav__cta {
    margin-left: 0;
    margin-top: 12px;
  }

  .hero__stats {
    flex-wrap: wrap;
    gap: 0;
  }

  .hero__stat {
    flex: 1 1 50%;
    justify-content: center;
    padding: 14px 16px;
    font-size: 0.78rem;
  }

  .hero__stat:not(:last-child)::after {
    display: none;
  }

  .hero__stat:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.08);
  }

  .hero__stat:nth-child(1),
  .hero__stat:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

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

  .award__badge {
    width: 100px;
  }

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

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

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

  .gallery__grid .ba-pair:last-child {
    max-width: none;
  }

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

  .pricing-card--featured {
    transform: none;
  }

  .pricing-card--featured:hover {
    transform: translateY(-4px);
  }

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

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

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

  .contact__form {
    padding: 28px 20px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-banner__title {
    font-size: 1.8rem;
  }

  .hero__content {
    padding: 80px 20px 60px;
  }

  .hero__buttons .btn {
    width: 100%;
  }
}

/* Small mobile */
@media (max-width: 400px) {
  .container {
    padding: 0 16px;
  }

  .hero__title-line1 {
    font-size: 2rem;
  }

  .hero__title-line2 {
    font-size: 2.3rem;
  }

  .service-card {
    padding: 28px 20px;
  }
}

/* --- Mobile nav overlay --- */
.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 999;
  opacity: 0;
  transition: opacity var(--transition);
}

.nav__overlay--visible {
  display: block;
  opacity: 1;
}

/* --- Water droplet subtle decoration --- */
.hero::after {
  content: '';
  position: absolute;
  top: 15%;
  right: 8%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 153, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.about::before {
  content: '';
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 153, 255, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.about {
  position: relative;
}
