/* ============================================
   MULLINER ENVIRONMENTAL — Coastal Theme
   Ocean Blue · White · Silver · Dark Blue
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Spinnaker&display=swap');

:root {
  /* Core palette */
  --ocean:        #0077B6;
  --ocean-light:  #00A8E8;
  --ocean-bright: #48CAE4;
  --sky:          #90E0EF;
  --sky-pale:     #CAF0F8;
  --dark-blue:    #023E8A;
  --navy:         #03045E;
  --white:        #FFFFFF;
  --silver:       #C0C8D0;
  --silver-light: #E8ECF0;
  --silver-pale:  #F4F6F8;
  --warm-white:   #FAFBFC;

  /* Functional */
  --text-dark:    #1A2A3A;
  --text-mid:     #4A5C6E;
  --text-light:   #7A8C9E;
  --accent:       #FF6B35;
  --accent-hover: #E85A28;
  --success:      #2EC4B6;

  /* Typography */
  --font-display: 'Montserrat', -apple-system, sans-serif;
  --font-body:    'Spinnaker', -apple-system, sans-serif;

  /* Spacing */
  --section-pad: clamp(4rem, 8vw, 7rem);
  --container:   1200px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; }

/* ---- Utility ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* ============================================
   TOP BAR — Phone CTA
   ============================================ */
.top-bar {
  background: var(--navy);
  color: var(--white);
  padding: 0.55rem 0;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}
.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.top-bar__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
}
.top-bar__phone a {
  color: var(--ocean-bright);
  transition: color 0.2s;
}
.top-bar__phone a:hover { color: var(--white); }
.top-bar__phone svg { width: 16px; height: 16px; flex-shrink: 0; }
.top-bar__email a {
  color: var(--silver);
  transition: color 0.2s;
}
.top-bar__email a:hover { color: var(--white); }
.top-bar__badge {
  background: var(--accent);
  color: var(--white);
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  animation: pulse-badge 2s ease-in-out infinite;
}
@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--silver-light);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s;
}
.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}
.nav__logo {
  display: flex;
  align-items: center;
}
.nav__logo-img {
  height: 110px;
  width: auto;
  object-fit: contain;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.2s;
  position: relative;
}
.nav__links a:hover { color: var(--ocean); }
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--ocean);
  transition: width 0.3s var(--ease-out);
}
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  background: var(--ocean);
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: background 0.2s, transform 0.2s;
}
.nav__cta:hover {
  background: var(--dark-blue);
  transform: translateY(-1px);
}
.nav__cta::after { display: none !important; }

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  background: none;
  width: 36px;
  height: 36px;
  position: relative;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  position: absolute;
  left: 7px;
  transition: 0.3s var(--ease-out);
}
.nav__toggle span:nth-child(1) { top: 10px; }
.nav__toggle span:nth-child(2) { top: 17px; }
.nav__toggle span:nth-child(3) { top: 24px; }
.nav__toggle.active span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { top: 17px; transform: rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  background: linear-gradient(165deg, rgba(3,4,94,0.88) 0%, rgba(2,62,138,0.82) 40%, rgba(0,119,182,0.78) 100%),
              url('images/clouds.jpg') center/cover no-repeat;
  color: var(--white);
  padding: clamp(4rem, 10vw, 7rem) 0 clamp(5rem, 12vw, 9rem);
  overflow: hidden;
}
.hero__bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    radial-gradient(circle at 20% 50%, var(--ocean-bright) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, var(--ocean-bright) 1px, transparent 1px),
    radial-gradient(circle at 60% 80%, var(--ocean-bright) 1px, transparent 1px);
  background-size: 60px 60px, 80px 80px, 45px 45px;
}
.hero__wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: auto;
  color: var(--white);
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(4px);
}
.hero__badge svg { width: 14px; height: 14px; }
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero__title em {
  font-style: normal;
  color: var(--ocean-bright);
}
.hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s var(--ease-out);
}
.btn--primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(255,107,53,0.35);
}
.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,107,53,0.4);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}
.btn svg { width: 18px; height: 18px; }

/* Hero visual — services card */
.hero__visual {
  display: flex;
  justify-content: center;
}
.hero__card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 1.75rem;
  width: 100%;
  max-width: 420px;
}
.hero__card-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
}
.hero__services-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.hero__service-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  transition: all 0.25s var(--ease-out);
  text-decoration: none;
  color: var(--white);
}
.hero__service-item:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  transform: translateX(4px);
}
.hero__service-item svg {
  width: 24px;
  height: 24px;
  color: var(--ocean-bright);
  flex-shrink: 0;
}
.hero__service-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
}
.hero__service-item span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}

/* Hero — Why Mulliner horizontal bar */
.hero__why-bar {
  position: relative;
  z-index: 2;
  margin-top: 2.5rem;
  padding-bottom: 1rem;
}
.hero__why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.hero__why-item {
  text-align: center;
  padding: 1rem 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  backdrop-filter: blur(8px);
}
.hero__why-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ocean-bright);
  line-height: 1;
}
.hero__why-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.3rem;
  letter-spacing: 0.02em;
}

/* Legacy stat classes (unused but kept for safety) */
.hero__stat-grid { display: none; }
.hero__stat { display: none; }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--silver-pale);
  padding: 2rem 0;
  border-bottom: 1px solid var(--silver-light);
}
.trust-bar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem 3rem;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
}
.trust-bar__item svg {
  width: 20px;
  height: 20px;
  color: var(--ocean);
  flex-shrink: 0;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ocean);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.services__grid--center {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 1.5rem;
  max-width: 720px;
  margin: 1.5rem auto 0;
}
.service-card {
  background: var(--warm-white);
  border: 1px solid var(--silver-light);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--ocean), var(--ocean-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.service-card:hover {
  border-color: var(--ocean-bright);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,119,182,0.1);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--sky-pale), var(--sky));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--dark-blue);
}
.service-card__icon svg { width: 26px; height: 26px; }
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.service-card__desc {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.service-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ocean);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.service-card__tag svg { width: 14px; height: 14px; }

/* ============================================
   HEALTH / INDOOR ENVIRONMENT
   ============================================ */
.health {
  padding: var(--section-pad) 0;
  background: var(--white);
  border-top: 1px solid var(--silver-light);
}
.health__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}
.health__lead {
  font-size: 1.12rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-weight: 500;
}
.health__desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.health__cards,
.health__card,
.health__card-icon,
.health__card-title,
.health__card-desc { display: none; }

.health__triggers {
  background: linear-gradient(135deg, var(--sky-pale), rgba(202,240,248,0.3));
  border: 1px solid rgba(144,224,239,0.3);
  border-radius: 16px;
  padding: 2rem;
}
.health__triggers-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.health__symptoms-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.health__symptom {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255,255,255,0.7);
  border-radius: 10px;
}
.health__symptom svg {
  width: 22px;
  height: 22px;
  color: var(--ocean);
  flex-shrink: 0;
  margin-top: 2px;
}
.health__symptom strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0.15rem;
}
.health__symptom span {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.health__cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn--outline-dark {
  border-color: var(--ocean);
  color: var(--ocean);
}
.btn--outline-dark:hover {
  background: var(--ocean);
  color: var(--white);
}

/* ============================================
   INSPECTION FOCUS / PROCESS
   ============================================ */
.process {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--silver-pale) 0%, var(--white) 100%);
}
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}
.process__step {
  text-align: center;
  padding: 2rem 1.25rem;
  position: relative;
  counter-increment: step;
}
.process__step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--sky);
  line-height: 1;
  margin-bottom: 1rem;
}
.process__step-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.process__step-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ============================================
   SERVICE AREA / MAP
   ============================================ */
.service-area {
  padding: var(--section-pad) 0;
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.service-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(0,119,182,0.2) 0%, transparent 70%);
}
.service-area .container {
  position: relative;
  z-index: 2;
}
.service-area .section-label { color: var(--ocean-bright); }
.service-area .section-title { color: var(--white); }
.service-area .section-desc { color: rgba(255,255,255,0.65); }

.area__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}
.area__map-container {
  position: relative;
}
.area__map-container svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.3));
}
.area__regions {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.area__region {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.3s;
}
.area__region:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--ocean-bright);
}
.area__region-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--ocean), var(--ocean-bright));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.area__region-icon svg { width: 20px; height: 20px; color: var(--white); }
.area__region-name {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.area__region-desc {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* ============================================
   WHY MULLINER / DIFFERENTIATORS
   ============================================ */
.why {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.why__item {
  padding: 2rem;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--sky-pale), var(--white));
  border: 1px solid var(--silver-light);
  text-align: center;
}
.why__item-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  background: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ocean);
  box-shadow: 0 4px 16px rgba(0,119,182,0.1);
}
.why__item-icon svg { width: 26px; height: 26px; }
.why__item-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.why__item-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--ocean) 0%, var(--dark-blue) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 85% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.cta-banner__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
}
.cta-banner__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn--white {
  background: var(--white);
  color: var(--dark-blue);
}
.btn--white:hover {
  background: var(--silver-pale);
  transform: translateY(-2px);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact {
  padding: var(--section-pad) 0;
  background: var(--silver-pale);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.contact__info-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}
.contact__info-desc {
  color: var(--text-mid);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.contact__detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.contact__detail-icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ocean);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.contact__detail-icon svg { width: 18px; height: 18px; }

.contact__form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  border: 1px solid var(--silver-light);
}
.contact__form-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--silver-light);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--warm-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(0,119,182,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { cursor: pointer; }
.btn--submit {
  width: 100%;
  justify-content: center;
  background: var(--ocean);
  color: var(--white);
  padding: 0.9rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  transition: all 0.25s;
}
.btn--submit:hover {
  background: var(--dark-blue);
  transform: translateY(-1px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 3rem 0 1.5rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.footer__brand-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 300px;
}
.footer__col-title {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ocean-bright);
  margin-bottom: 1rem;
}
.footer__col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  padding: 0.25rem 0;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__sub { margin: 0 auto 2rem; }
  .hero__actions { justify-content: center; }
  .hero__visual { margin-top: 2rem; }
  .hero__why-grid { grid-template-columns: repeat(4, 1fr); }
  .hero__service-item { text-align: left; }
  .health__inner { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr 1fr; }
  .area__content { grid-template-columns: 1fr; }
  .area__map-container { order: -1; max-width: 450px; margin: 0 auto; }
  .why__grid { grid-template-columns: 1fr 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .top-bar__inner { justify-content: center; text-align: center; }
  .top-bar__email { display: none; }
  .nav__links { display: none; }
  .nav__links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.5rem;
    border-bottom: 1px solid var(--silver-light);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
    gap: 1rem;
  }
  .nav__toggle { display: block; }
  .nav__logo-img { height: 70px; }
  .hero__why-grid { grid-template-columns: 1fr 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .services__grid--center { grid-template-columns: 1fr; max-width: 100%; }
  .health__symptoms-grid, .health__triggers-list { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
