/* Heath Jackson Plumbing — Geometric Maritime Authority */
/* Palette: Navy #080b69 | Teal #68ccd1 | Bright Blue #1db6e8 | Dark Teal #08485d */

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

:root {
  --primary: #1db6e8;
  --primary-dark: #0d9bc9;
  --teal: #68ccd1;
  --navy: #080b69;
  --navy-deep: #05084a;
  --dark-teal: #08485d;
  --light: #f4f8fa;
  --white: #ffffff;
  --text: #1a1a2e;
  --text-muted: #5a6275;
  --border: #d4e8ef;
  --radius: 4px;
  --shadow: 0 4px 24px rgba(8,11,105,0.10);
  --shadow-lg: 0 12px 48px rgba(8,11,105,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 1rem;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--primary);
  color: white;
  padding: .5rem 1rem;
  border-radius: var(--radius);
  z-index: 9999;
  font-weight: 700;
  text-decoration: none;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.03em;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; display: block; }

/* Geometric Decorative Elements */
.geo-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.geo-divider::before,
.geo-divider::after {
  content: '';
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  flex: 1;
}
.geo-divider-diamond {
  width: 10px;
  height: 10px;
  background: var(--primary);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.section-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .75rem;
}

.section-title { margin-bottom: .75rem; }
.section-title span { color: var(--primary); }
.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.text-center { text-align: center; }
.text-center .section-desc { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2rem;
  border-radius: var(--radius);
  font-family: 'Josefin Sans', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s;
  text-decoration: none;
}
.btn-primary {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(29,182,232,.35);
}
.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: white;
  color: white;
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  color: white;
  transform: translateY(-2px);
}
.btn:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; }

/* ===== HEADER ===== */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(8,11,105,.3);
}

.top-bar {
  background: var(--dark-teal);
  padding: .4rem 0;
  font-size: .82rem;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.top-bar a {
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: .35rem;
  font-family: 'Josefin Sans', sans-serif;
  letter-spacing: .05em;
  font-size: .8rem;
}
.top-bar a:hover { color: white; }
.top-bar-badges {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.badge-item {
  color: rgba(255,255,255,.75);
  font-size: .78rem;
  font-family: 'Josefin Sans', sans-serif;
  letter-spacing: .04em;
}
.badge-item strong { color: var(--teal); }

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: .875rem;
  text-decoration: none;
}
.logo img {
  height: 52px;
  width: auto;
  filter: brightness(1.05);
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-name {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.1;
}
.logo-tagline {
  font-size: .7rem;
  color: var(--teal);
  letter-spacing: .15em;
  text-transform: uppercase;
  font-family: 'Josefin Sans', sans-serif;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}
.nav-menu li a {
  display: block;
  padding: .6rem 1rem;
  color: rgba(255,255,255,.85);
  font-family: 'Josefin Sans', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all .2s;
  position: relative;
}
.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width .25s;
}
.nav-menu li a:hover,
.nav-menu li a.active {
  color: white;
}
.nav-menu li a:hover::after,
.nav-menu li a.active::after {
  width: calc(100% - 2rem);
}
.nav-menu li a:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }
.nav-cta { margin-left: .75rem; }

/* Mobile menu */
.hamburger {
  display: none;
  background: none;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: var(--radius);
  padding: .4rem .6rem;
  cursor: pointer;
  color: white;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all .3s;
}
.hamburger:focus-visible { outline: 2px solid var(--teal); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://lirp.cdn-website.com/5e2bf264/dms3rep/multi/opt/488906212_1176081780975911_4521733606130088140_n-1920w.jpg');
  background-size: cover;
  background-position: center top;
  opacity: .25;
}
/* Geometric overlay pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(8,11,105,.95) 0%, rgba(8,11,105,.7) 50%, rgba(8,72,93,.5) 100%);
  z-index: 1;
}
/* Geometric accent lines */
.hero-geo {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.hero-geo::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  border: 80px solid rgba(104,204,209,.08);
  border-radius: 50%;
}
.hero-geo::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: 60px;
  width: 320px;
  height: 320px;
  border: 50px solid rgba(29,182,232,.07);
  transform: rotate(45deg);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-content { max-width: 580px; }
.hero-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  opacity: 0;
  animation: fadeUp .6s ease .2s forwards;
}
.hero-label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--teal);
}
.hero h1 {
  color: white;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp .6s ease .35s forwards;
}
.hero h1 em {
  font-style: normal;
  color: var(--teal);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp .6s ease .5s forwards;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp .6s ease .65s forwards;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
  opacity: 0;
  animation: fadeUp .6s ease .8s forwards;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.75);
  font-family: 'Josefin Sans', sans-serif;
  letter-spacing: .04em;
}
.trust-item svg { color: var(--teal); flex-shrink: 0; }

/* Hero card (right side) */
.hero-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(104,204,209,.2);
  border-radius: 8px;
  padding: 2.5rem;
  opacity: 0;
  animation: fadeIn .8s ease 1s forwards;
}
.hero-card h3 {
  font-family: 'Josefin Sans', sans-serif;
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.emergency-number {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .5rem;
  text-decoration: none;
}
.emergency-number:hover { color: white; }
.emergency-label {
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 2rem;
  font-family: 'Josefin Sans', sans-serif;
}
.card-divider {
  height: 1px;
  background: rgba(104,204,209,.15);
  margin: 1.5rem 0;
}
.hero-hours {
  font-size: .88rem;
  color: rgba(255,255,255,.75);
}
.hero-hours p { margin-bottom: .35rem; font-family: 'Josefin Sans', sans-serif; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.hours-grid { display: flex; flex-direction: column; gap: .4rem; }
.hours-row { display: flex; justify-content: space-between; font-size: .88rem; color: rgba(255,255,255,.8); }
.emergency-note { font-size: .8rem; color: var(--teal); margin-top: .75rem; font-family: 'Josefin Sans', sans-serif; letter-spacing: .03em; }

/* ===== STATS BAND ===== */
.stats-band {
  background: var(--dark-teal);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--dark-teal) 100%);
}
.stats-grid {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 1.5rem 3rem;
  border-right: 1px solid rgba(104,204,209,.15);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--teal);
  display: block;
  line-height: 1;
  margin-bottom: .35rem;
}
.stat-label {
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  font-family: 'Josefin Sans', sans-serif;
}

/* ===== SERVICES ===== */
.services-section { background: var(--light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .3s;
}
.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleY(1); }

.service-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transform: rotate(0deg);
  transition: transform .3s;
}
.service-card:hover .service-icon { transform: rotate(5deg) scale(1.1); }
.service-icon svg { color: white; }

.service-name {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--navy);
}
.service-desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ===== WHY US ===== */
.why-section { background: white; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-image-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.why-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 8px;
}
.why-image-badge {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
  background: var(--primary);
  color: white;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  font-family: 'Josefin Sans', sans-serif;
  box-shadow: var(--shadow-lg);
}
.why-image-badge .badge-num {
  font-size: 2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}
.why-image-badge .badge-txt {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .9;
}

.why-list { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-check {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .15rem;
}
.why-check svg { color: white; }
.why-item-content h4 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: .2rem;
  color: var(--navy);
}
.why-item-content p { font-size: .9rem; color: var(--text-muted); margin: 0; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--light); }
.testimonial-carousel-wrap {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.tc-track-wrap { overflow: hidden; border-radius: 12px; }
.tc-track { display: flex; transition: transform .5s ease; }
.tc-slide {
  min-width: 100%;
  background: white;
  border-radius: 12px;
  padding: 3rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.tc-quote-mark {
  font-size: 5rem;
  color: var(--teal);
  font-family: Georgia, serif;
  line-height: .5;
  margin-bottom: 1rem;
  opacity: .4;
}
.tc-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.tc-stars { color: #f5a623; margin-bottom: .75rem; letter-spacing: 2px; }
.tc-author {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .08em;
  color: var(--navy);
}
.tc-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.tc-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: all .2s;
}
.tc-btn:hover { background: var(--primary); border-color: var(--primary); color: white; }
.tc-btn:focus-visible { outline: 2px solid var(--primary); }
.tc-dots { display: flex; gap: .5rem; }
.tc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: all .3s;
  padding: 0;
}
.tc-dot.active { background: var(--primary); transform: scale(1.3); }

/* ===== SERVICE AREA MAP ===== */
.map-section { background: white; }
.map-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}
#service-area-map {
  height: 420px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.service-areas-list { display: flex; flex-direction: column; gap: .75rem; }
.area-tag {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .875rem 1rem;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Josefin Sans', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--navy);
  transition: all .2s;
}
.area-tag:hover { border-color: var(--teal); background: rgba(104,204,209,.08); }
.area-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--dark-teal) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(104,204,209,.05);
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: rgba(29,182,232,.05);
  transform: rotate(45deg);
}
.cta-band-inner { position: relative; z-index: 1; }
.cta-band h2 { color: white; margin-bottom: .75rem; }
.cta-band p { color: rgba(255,255,255,.75); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-phone-big {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--teal);
  display: block;
  margin-bottom: .5rem;
  text-decoration: none;
  letter-spacing: .05em;
  transition: color .2s;
}
.cta-phone-big:hover { color: white; }
.cta-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo-name { font-size: 1.1rem; margin-bottom: .75rem; }
.footer-brand p {
  font-size: .88rem;
  line-height: 1.7;
  color: rgba(255,255,255,.55);
  margin-bottom: 1.25rem;
}
.footer-social { display: flex; gap: .75rem; }
.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.07);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all .2s;
  border: 1px solid rgba(255,255,255,.1);
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: white; }
.footer-social a:focus-visible { outline: 2px solid var(--teal); }

.footer-col h4 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.25rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-links li a {
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.footer-links li a::before { content: '›'; color: var(--teal); font-size: 1.1rem; }
.footer-links li a:hover { color: white; }
.footer-links li a:focus-visible { outline: 1px solid var(--teal); }

.footer-contact { list-style: none; display: flex; flex-direction: column; gap: .8rem; }
.footer-contact li {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}
.footer-contact li svg { color: var(--teal); flex-shrink: 0; margin-top: .15rem; }
.footer-contact a { color: rgba(255,255,255,.7); }
.footer-contact a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: white; }
.footer-badges { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.footer-badge {
  padding: .35rem .75rem;
  border: 1px solid rgba(104,204,209,.2);
  border-radius: var(--radius);
  font-family: 'Josefin Sans', sans-serif;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
}

/* ===== ABOUT PAGE ===== */
.page-hero {
  background: var(--navy);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 60%, var(--dark-teal) 100%);
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(104,204,209,.03) 20px,
    rgba(104,204,209,.03) 40px
  );
}
.page-hero-inner {
  position: relative;
  z-index: 1;
}
.page-hero h1 { color: white; margin-bottom: .75rem; }
.page-hero .breadcrumb {
  font-family: 'Josefin Sans', sans-serif;
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,.5); }
.page-hero .breadcrumb a:hover { color: var(--teal); }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 600px; }

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
}
.about-geo-frame {
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 2px solid var(--teal);
  border-radius: 8px;
  opacity: .3;
  pointer-events: none;
}
.about-text h2 { margin-bottom: 1rem; }
.about-text p { color: var(--text-muted); margin-bottom: 1rem; }
.credentials-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.credential-item {
  padding: 1rem;
  background: var(--light);
  border-radius: var(--radius);
  border-left: 3px solid var(--primary);
}
.credential-item strong {
  font-family: 'Josefin Sans', sans-serif;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  display: block;
  margin-bottom: .2rem;
}
.credential-item span { font-size: .9rem; color: var(--text-muted); }

/* Team */
.team-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.team-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all .3s;
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.team-card-top {
  background: linear-gradient(135deg, var(--navy), var(--dark-teal));
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(104,204,209,.2);
  border: 3px solid rgba(104,204,209,.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-avatar svg { color: var(--teal); }
.team-card-body { padding: 1.5rem; text-align: center; }
.team-name {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--navy);
  margin-bottom: .25rem;
}
.team-title {
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--primary);
  font-family: 'Josefin Sans', sans-serif;
}

/* ===== SERVICES PAGE ===== */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.service-full-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  transition: all .3s;
}
.service-full-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
  transform: translateY(-3px);
}
.service-full-card .service-icon { margin-bottom: 1rem; }
.service-full-card h3 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.05rem;
  letter-spacing: .04em;
  color: var(--navy);
  margin-bottom: .5rem;
}
.service-full-card p { font-size: .9rem; color: var(--text-muted); margin: 0; }

/* Before/After */
.ba-section { background: var(--light); }
.ba-slider {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  aspect-ratio: 16/10;
  user-select: none;
  box-shadow: var(--shadow-lg);
}
.ba-slider img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-before {
  position: absolute;
  top: 0; left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}
.ba-before img { width: var(--ba-full-w, 100%); height: 100%; object-fit: cover; display: block; }
.ba-handle {
  position: absolute;
  top: 0; left: 50%;
  width: 4px;
  height: 100%;
  background: white;
  cursor: ew-resize;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 8px rgba(0,0,0,.3);
}
.ba-handle-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
  font-size: 18px;
  color: var(--navy);
  font-weight: 700;
}
.ba-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FAQ ===== */
.faq-section { background: white; }
.faq-list { max-width: 750px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  cursor: pointer;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .03em;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  transition: color .2s;
}
.faq-item summary:hover { color: var(--primary); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-chevron { transition: transform .3s; flex-shrink: 0; margin-left: 1rem; color: var(--primary); }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  padding: .25rem 0 1.25rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-size: .95rem;
}
.faq-item summary:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }

/* ===== CONTACT PAGE ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-form-wrap {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form-wrap h2 { margin-bottom: .5rem; }
.contact-form-wrap p { color: var(--text-muted); margin-bottom: 2rem; }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Nunito', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: var(--light);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(29,182,232,.12);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: rgba(29,182,232,.08);
  border: 1px solid rgba(29,182,232,.2);
  border-radius: 8px;
  color: var(--dark-teal);
}
.form-success h3 { font-family: 'Josefin Sans', sans-serif; margin-bottom: .5rem; }

.contact-info-card { display: flex; flex-direction: column; gap: 1.5rem; }
.info-block {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { color: white; }
.info-content h4 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .25rem;
}
.info-content p, .info-content a {
  font-size: .95rem;
  color: var(--text);
  font-weight: 600;
  margin: 0;
  line-height: 1.5;
}
.info-content a { color: var(--primary); }
.info-content a:hover { color: var(--primary-dark); }
.info-divider { height: 1px; background: var(--border); margin: .25rem 0; }

.payment-icons { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .75rem; }
.payment-icon {
  padding: .3rem .7rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .8rem;
  font-family: 'Josefin Sans', sans-serif;
  letter-spacing: .05em;
  color: var(--text-muted);
}

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .2s; }
.reveal:nth-child(4) { transition-delay: .3s; }
.reveal:nth-child(5) { transition-delay: .4s; }
.reveal:nth-child(6) { transition-delay: .5s; }

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  background: var(--primary);
  color: white;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(29,182,232,.4);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.floating-cta:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(29,182,232,.55); color: white; }
.floating-cta:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .map-layout { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-story { grid-template-columns: 1fr; gap: 2rem; }
  .why-image-badge { right: 1rem; }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .hero-geo { display: none; }
  .stat-item { padding: 1.25rem 1.5rem; border-right: none; border-bottom: 1px solid rgba(104,204,209,.15); }
  .stat-item:last-child { border-bottom: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .credentials-row { grid-template-columns: 1fr; }

  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy-deep);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    z-index: 200;
  }
  .nav-menu.open { display: flex; }
  .nav-menu li a { font-size: 1.3rem; padding: 1rem 2rem; }
  .nav-menu li a::after { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }
  .nav-close {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 201;
    display: none;
  }
  .nav-menu.open ~ .nav-close { display: block; }

  .top-bar-badges { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .section { padding: 3.5rem 0; }
  .services-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 3rem; }
  .hero-trust { flex-direction: column; gap: .75rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
