/* ═══════════════════════════════════════════════
   POSEIDON POWER WASHING — Global Stylesheet
   Luxury Nautical · Deep Ocean + Gold
   ═══════════════════════════════════════════════ */

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

:root {
  --deep-ocean: #0a1628;
  --navy: #0f2440;
  --midnight: #132d4f;
  --steel-blue: #1e4976;
  --water: #2d7bc4;
  --sky: #4a9eed;
  --foam: #edf4fb;
  --white: #ffffff;
  --gold: #c9a84c;
  --gold-light: #e4cc7a;
  --gold-bright: #f5e6a3;
  --sand: #f7f3ea;
  --body-text: #3a4a5c;
  --light-text: #7d8fa3;
  --border-subtle: rgba(10, 22, 40, 0.06);
  --display: 'Cormorant Garamond', Georgia, serif;
  --body: 'Outfit', system-ui, sans-serif;
  --shadow-sm: 0 2px 12px rgba(10, 22, 40, 0.05);
  --shadow-md: 0 8px 30px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.12);
  --radius: 10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--body-text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { transition: color 0.3s; }

/* ─── UTILITY ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 2rem; }

section { padding: 6rem 0; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.section-title {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--deep-ocean);
  line-height: 1.12;
  margin-bottom: 1.2rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--light-text);
  max-width: 600px;
  line-height: 1.7;
  font-weight: 300;
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(10, 22, 40, 0.97);
  padding: 0.65rem 2.5rem;
  box-shadow: 0 2px 40px rgba(0,0,0,0.3);
  backdrop-filter: blur(14px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo .trident {
  font-size: 1.8rem;
  filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.4));
}

.nav-logo-text {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.nav-logo-text span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.82);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--deep-ocean) !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 4px;
  font-weight: 600 !important;
  transition: background 0.3s, transform 0.3s !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--deep-ocean);
  padding: 1rem 2.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  transition: all 0.3s;
  cursor: pointer;
  font-family: var(--body);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  padding: 1rem 2.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.3);
  transition: all 0.3s;
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--deep-ocean);
  padding: 0.85rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid var(--deep-ocean);
  transition: all 0.3s;
}

.btn-outline-dark:hover {
  background: var(--deep-ocean);
  color: var(--white);
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  position: relative;
  padding: 10rem 0 5rem;
  background: linear-gradient(170deg, var(--deep-ocean) 0%, var(--navy) 50%, var(--steel-blue) 100%);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 60% at 20% 80%, rgba(45, 123, 196, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 85% 20%, rgba(201, 168, 76, 0.06) 0%, transparent 50%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.page-hero .section-title { color: var(--white); margin-bottom: 1rem; }
.page-hero .section-subtitle { color: rgba(255,255,255,0.6); max-width: 560px; }

.page-hero .wave-container {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  overflow: hidden;
}

.page-hero .wave {
  position: absolute;
  bottom: 0; left: -5%;
  width: 110%; height: 100%;
}

.page-hero .wave svg { width: 100%; height: 100%; }
.page-hero .wave-1 { animation: waveFloat 8s ease-in-out infinite; opacity: 0.6; }
.page-hero .wave-2 { animation: waveFloat 6s ease-in-out infinite reverse; opacity: 0.3; bottom: 8px; }

@keyframes waveFloat {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-2%); }
}

/* ─── HOME HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(170deg, var(--deep-ocean) 0%, var(--navy) 40%, var(--midnight) 70%, var(--steel-blue) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 60% at 20% 80%, rgba(45, 123, 196, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 80% 50% at 80% 20%, rgba(201, 168, 76, 0.08) 0%, transparent 50%);
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  filter: saturate(0.3);
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.07;
  filter: saturate(0.9);
  z-index: 0;
}

.wave-container {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 120px;
  overflow: hidden;
}

.wave {
  position: absolute;
  bottom: 0; left: -5%;
  width: 110%; height: 100%;
}

.wave svg { width: 100%; height: 100%; }
.wave-1 { animation: waveFloat 8s ease-in-out infinite; opacity: 0.6; }
.wave-2 { animation: waveFloat 6s ease-in-out infinite reverse; opacity: 0.3; bottom: 10px; }
.wave-3 { animation: waveFloat 10s ease-in-out infinite; opacity: 0.15; bottom: 20px; }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 6rem 2rem 8rem;
  animation: fadeUp 1s ease-out;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 0.5rem 1.3rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  animation: fadeUp 1s ease-out 0.2s both;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  animation: fadeUp 1s ease-out 0.3s both;
}

.hero h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.65);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.7;
  animation: fadeUp 1s ease-out 0.5s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s ease-out 0.6s both;
}

.hero-trust {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 3.5rem;
  flex-wrap: wrap;
  animation: fadeUp 1s ease-out 0.8s both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ─── HOME: ABOUT SECTION ─── */
.home-about { background: var(--white); }

.home-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.home-about-content .section-subtitle { margin-bottom: 1.5rem; }

.home-about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
}

.value-card {
  padding: 1.4rem;
  border-radius: 8px;
  background: var(--foam);
  border: 1px solid var(--border-subtle);
  transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.value-card .icon { font-size: 1.4rem; margin-bottom: 0.5rem; display: block; }

.value-card h4 {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--deep-ocean);
  margin-bottom: 0.25rem;
}

.value-card p { font-size: 0.84rem; color: var(--light-text); line-height: 1.5; }

.home-about-visual { position: relative; }

.about-image-main {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-stat-bar {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  display: flex;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.stat {
  padding: 1.3rem 1.8rem;
  text-align: center;
  border-right: 1px solid var(--border-subtle);
}

.stat:last-child { border: none; }

.stat .number {
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--deep-ocean);
  line-height: 1;
}

.stat .label {
  font-size: 0.7rem;
  color: var(--light-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
  font-weight: 500;
}

/* ─── HOME: SERVICES PREVIEW ─── */
.home-services {
  background: var(--deep-ocean);
  position: relative;
}

.home-services .section-title { color: var(--white); }
.home-services .section-subtitle { color: rgba(255,255,255,0.45); }

.home-services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.home-services-header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

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

.service-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
  z-index: 2;
}

.service-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-4px);
}

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

.service-card-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity 0.4s;
}

.service-card:hover .service-card-img { opacity: 0.9; }

.service-card-body { padding: 1.5rem; }

.service-card h3 {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.service-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

/* ─── HOME: BEFORE/AFTER ─── */
.before-after { background: var(--sand); }

.ba-header { text-align: center; margin-bottom: 4rem; }
.ba-header .section-subtitle { margin: 0 auto; }

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

.ba-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white);
  transition: transform 0.3s;
}

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

.ba-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.ba-card-info {
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ba-card-info .location {
  font-weight: 600;
  color: var(--deep-ocean);
  font-size: 0.95rem;
}

.ba-card-info .date {
  font-size: 0.82rem;
  color: var(--light-text);
}

/* ─── HOME: PROCESS ─── */
.process { background: var(--white); }

.process-header { text-align: center; margin-bottom: 4rem; }
.process-header .section-subtitle { margin: 0 auto; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 12%; right: 12%;
  height: 2px;
  background: linear-gradient(to right, var(--gold), rgba(201, 168, 76, 0.15));
}

.step { text-align: center; position: relative; }

.step-number {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--deep-ocean);
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
  border: 3px solid var(--gold);
}

.step h4 {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--deep-ocean);
  margin-bottom: 0.4rem;
}

.step p { font-size: 0.88rem; color: var(--light-text); line-height: 1.6; }

/* ─── HOME: CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy), var(--steel-blue));
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(5.0);
  background-image: url('images/PoseidonPWLLCAction_logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top;
  opacity: 0.08;
}

.cta-banner h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}

.cta-banner p {
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-banner .btn-primary { position: relative; }

/* ─── ABOUT PAGE ─── */
.about-intro { background: var(--white); }

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-intro-text p {
  font-size: 1.05rem;
  color: var(--body-text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-intro-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-intro-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.about-apart {
  background: var(--sand);
}

.about-apart-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-apart-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-apart-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.about-apart-text p {
  font-size: 1.05rem;
  color: var(--body-text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* ─── SERVICES PAGE ─── */
.services-intro {
  background: var(--white);
  text-align: center;
}

.services-intro .section-subtitle {
  margin: 0 auto;
}

.service-detail {
  padding: 5rem 0;
  position: relative;
}

.service-detail:nth-child(even) { background: var(--foam); }
.service-detail:nth-child(odd) { background: var(--white); }

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-detail:nth-child(even) .service-detail-grid { direction: rtl; }
.service-detail:nth-child(even) .service-detail-grid > * { direction: ltr; }

.service-detail-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.service-detail-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.service-detail-content h3 {
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--deep-ocean);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.service-detail-content p {
  font-size: 1rem;
  color: var(--body-text);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ─── FAQ ─── */
.faq { background: var(--deep-ocean); }

.faq-header { text-align: center; margin-bottom: 3.5rem; }
.faq .section-title { color: var(--white); }
.faq .section-subtitle { color: rgba(255,255,255,0.45); margin: 0 auto; }

.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.3s;
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform 0.3s, border-color 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-answer-inner {
  padding: 0 0 1.5rem 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.faq-item.open .faq-answer { max-height: 300px; }

/* ─── ESTIMATE PAGE ─── */
.estimate-section {
  background: var(--white);
}

.estimate-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.contact-icon {
  width: 54px; height: 54px;
  border-radius: 12px;
  background: var(--foam);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-item .label {
  font-size: 0.72rem;
  color: var(--light-text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.contact-item .value {
  color: var(--deep-ocean);
  font-size: 1.05rem;
  font-weight: 500;
}

.contact-item .value a {
  color: var(--deep-ocean);
  text-decoration: none;
}

.contact-item .value a:hover { color: var(--gold); }

.estimate-form-card {
  background: var(--foam);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2.5rem;
}

.estimate-form-card h3 {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--deep-ocean);
  margin-bottom: 0.4rem;
}

.estimate-form-card .form-sub {
  font-size: 0.88rem;
  color: var(--light-text);
  margin-bottom: 2rem;
}

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

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

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--body-text);
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid rgba(10, 22, 40, 0.12);
  border-radius: 6px;
  color: var(--deep-ocean);
  font-family: var(--body);
  font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

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

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: var(--deep-ocean);
  border: none;
  border-radius: 6px;
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  margin-top: 0.5rem;
}

.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ─── SERVICE AREAS (Home) ─── */
.areas { background: var(--sand); position: relative; overflow: hidden; }

.areas::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.06);
}

.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.area-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.area-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}

.area-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.area-item strong { font-size: 1rem; color: var(--deep-ocean); }
.area-item span { font-size: 0.82rem; color: var(--light-text); margin-left: auto; }

.areas-cta-card {
  background: linear-gradient(135deg, var(--navy), var(--steel-blue));
  border-radius: 16px;
  padding: 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.areas-cta-card::before {
  content: '🔱';
  position: absolute;
  font-size: 12rem;
  opacity: 0.04;
  top: -2rem; right: -2rem;
}

.areas-cta-card h3 {
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}

.areas-cta-card p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 2rem;
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--deep-ocean);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand .footer-logo-text {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--white);
  display: block;
  margin-bottom: 1rem;
}

.footer-brand .footer-logo-text span { color: var(--gold); }

.footer-brand p {
  color: rgba(255,255,255,0.4);
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.55rem; }

.footer-col ul a {
  text-decoration: none;
  color: rgba(255,255,255,0.4);
  font-size: 0.88rem;
}

.footer-col ul a:hover { color: var(--gold); }

.portal-btn {
  background: transparent;
  border: 1px solid var(--gold);
  border-radius: 4px;
  color: var(--gold);
  cursor: pointer;
  padding: 8px 16px;
  font-family: var(--body);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.portal-btn:hover {
  background: var(--gold);
  color: var(--deep-ocean);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255,255,255,0.25);
  font-size: 0.78rem;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s, transform 0.7s;
}

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

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
  .process-steps::before { display: none; }
  .ba-grid { grid-template-columns: repeat(2, 1fr); }
  .ba-grid .ba-card:nth-child(3) { grid-column: span 2; max-width: 50%; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(10, 22, 40, 0.98);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    backdrop-filter: blur(14px);
  }

  .nav-links.active { display: flex; }
  .hamburger { display: flex; }

  .home-about-grid,
  .about-intro-grid,
  .about-apart-grid,
  .areas-grid,
  .estimate-grid,
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .service-detail:nth-child(even) .service-detail-grid { direction: ltr; }

  .about-stat-bar {
    position: relative;
    bottom: auto; right: auto;
    margin-top: 1.5rem;
  }

  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .ba-grid .ba-card:nth-child(3) { grid-column: auto; max-width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .home-about-values { grid-template-columns: 1fr; }

  section { padding: 4rem 0; }
  .container, .container-narrow { padding: 0 1.5rem; }
}

@media (max-width: 480px) {
  .hero-trust { flex-direction: column; align-items: center; gap: 1rem; }
  .about-stat-bar { flex-direction: column; }
  .stat { border-right: none; border-bottom: 1px solid var(--border-subtle); }
  .stat:last-child { border: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav { padding: 0.8rem 1.2rem; }
  .nav.scrolled { padding: 0.6rem 1.2rem; }
}

/* =====================================================
   CAROUSEL STYLES - Add this to your styles.css file
   ===================================================== */

/* Before & After Carousel */
.ba-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 60px;
}

.ba-carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s ease;
  will-change: transform;
}

.ba-carousel-item {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: calc(33.333% - 1rem);
  background: var(--navy-dark);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ba-carousel-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.ba-carousel-item > img,
.ba-carousel-item .video-wrapper {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.ba-carousel-item .ba-card-info {
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--navy-dark);
}

.ba-carousel-item .ba-card-info .location {
  color: var(--navy-dark);
  font-weight: 600;
  font-size: 0.95rem;
}

.ba-carousel-item .ba-card-info .date {
  color: var(--gold);
  font-size: 0.85rem;
}

/* Video Wrapper */
.video-wrapper {
  position: relative;
  cursor: pointer;
  height: 280px;
  overflow: hidden;
}

.video-wrapper .video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-wrapper:hover .video-thumbnail {
  transform: scale(1.05);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, background 0.3s ease;
}

.video-play-btn svg {
  width: 30px;
  height: 30px;
  color: var(--navy-dark);
  margin-left: 4px;
}

.video-wrapper:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--gold-light);
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal-content video {
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
}

/* Carousel Navigation Buttons */
.ba-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.ba-carousel-btn:hover {
  background: var(--gold);
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

.ba-carousel-btn svg {
  width: 24px;
  height: 24px;
  color: var(--navy-dark);
}

.ba-carousel-prev {
  left: 0;
}

.ba-carousel-next {
  right: 0;
}

/* Carousel Dots */
.ba-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.ba-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--navy-light);
  opacity: 0.4;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ba-carousel-dot.active,
.ba-carousel-dot:hover {
  opacity: 1;
  background: var(--gold);
}

/* Video Modal */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
}

.video-modal-content video {
  width: 100%;
  height: auto;
  display: block;
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 2px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  line-height: 1;
}

.video-modal-close:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
}

/* Responsive Carousel */
@media (max-width: 1024px) {
  .ba-carousel-item {
    flex: 0 0 calc(50% - 0.75rem);
    min-width: calc(50% - 0.75rem);
  }
}

@media (max-width: 768px) {
  .ba-carousel {
    padding: 0 50px;
  }
  
  .ba-carousel-item {
    flex: 0 0 100%;
    min-width: 100%;
  }
  
  .ba-carousel-item > img,
  .ba-carousel-item .video-wrapper {
    height: 250px;
  }
  
  .ba-carousel-btn {
    width: 40px;
    height: 40px;
  }
  
  .video-play-btn {
    width: 60px;
    height: 60px;
  }
  
  .video-play-btn svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .ba-carousel {
    padding: 0 40px;
  }
  
  .ba-carousel-btn {
    width: 35px;
    height: 35px;
  }
  
  .ba-carousel-btn svg {
    width: 20px;
    height: 20px;
  }
}