/* ══════════════════════════════════════════
   SEVA'S SERVICES — style.css
   Fonts: Libre Baskerville (headings) + Jost (body)
══════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --navy:    #0b2035;
  --navy2:   #0e2d4f;
  --blue:    #1778b8;
  --aqua:    #2ab8e8;
  --aqua2:   #5cd4f5;
  --white:   #ffffff;
  --off:     #f4f9fd;
  --text:    #0b2035;
  --muted:   #567288;
  --border:  rgba(11, 32, 53, 0.09);
  --radius:  18px;
  --shadow:  0 6px 40px rgba(11, 32, 53, 0.11);
}

/* ── RESET ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

/* ══════════════════════════════
   STICKY HEADER
══════════════════════════════ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  padding: 0 clamp(16px, 4vw, 60px);
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}
header.scrolled {
  background: rgba(11, 32, 53, 0.93);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 28px rgba(11, 32, 53, 0.28);
}
.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  text-decoration: none;
}
.logo em { color: var(--aqua); font-style: normal; }

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
nav a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
nav a:hover { color: var(--white); }

.btn-nav {
  background: linear-gradient(135deg, var(--aqua), var(--aqua2));
  color: var(--navy);
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 50px;
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  cursor: pointer;
  box-shadow: 0 3px 16px rgba(42, 184, 232, 0.42);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 24px rgba(42, 184, 232, 0.55);
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.png');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 14s ease forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    rgba(11, 32, 53, 0.78) 0%,
    rgba(11, 32, 53, 0.48) 55%,
    rgba(11, 32, 53, 0.18) 100%
  );
}

/* Animated water drips */
.hero-drips {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.drip {
  position: absolute;
  top: -30px;
  width: 2px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(to bottom, transparent, rgba(92, 212, 245, 0.55));
  animation: dripFall linear infinite;
}
.drip:nth-child(1) { left: 8%;  height: 120px; animation-duration: 3.2s; animation-delay: 0.0s; }
.drip:nth-child(2) { left: 21%; height: 80px;  animation-duration: 2.8s; animation-delay: 1.1s; }
.drip:nth-child(3) { left: 38%; height: 140px; animation-duration: 3.6s; animation-delay: 0.4s; }
.drip:nth-child(4) { left: 55%; height: 90px;  animation-duration: 2.5s; animation-delay: 2.0s; }
.drip:nth-child(5) { left: 70%; height: 110px; animation-duration: 3.0s; animation-delay: 0.7s; }
.drip:nth-child(6) { left: 85%; height: 100px; animation-duration: 3.4s; animation-delay: 1.5s; }
@keyframes dripFall {
  0%   { top: -140px; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.4; }
  100% { top: 110%;   opacity: 0; }
}

/* Glass sweep effect */
.hero-sweep {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 38%,
    rgba(255, 255, 255, 0.055) 42%,
    rgba(255, 255, 255, 0.025) 44%,
    transparent 48%
  );
  animation: sweepSlide 8s ease-in-out infinite;
}
@keyframes sweepSlide {
  0%   { transform: translateX(-60%); }
  50%  { transform: translateX(60%); }
  100% { transform: translateX(-60%); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}
.hero-content > * {
  opacity: 0;
  animation: fadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-content > *:nth-child(1) { animation-delay: 0.15s; }
.hero-content > *:nth-child(2) { animation-delay: 0.30s; }
.hero-content > *:nth-child(3) { animation-delay: 0.45s; }
.hero-content > *:nth-child(4) { animation-delay: 0.60s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 7px 18px;
  color: var(--aqua2);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-badge::before { content: '◆'; font-size: 0.48rem; }

.hero h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 18px;
  text-shadow: 0 3px 32px rgba(11, 32, 53, 0.5);
}
.hero h1 em { font-style: italic; color: var(--aqua2); }

.hero-sub {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  max-width: 500px;
  margin: 0 auto 34px;
  line-height: 1.72;
  font-weight: 300;
}
.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* wave at bottom of hero */
.hero-wave {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  z-index: 3;
  line-height: 0;
}
.hero-wave svg { display: block; width: 100%; }

/* ══════════════════════════════
   BUTTONS (shared)
══════════════════════════════ */
.btn-primary {
  background: linear-gradient(135deg, var(--aqua), var(--aqua2));
  color: var(--navy);
  border: none;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 22px rgba(42, 184, 232, 0.48);
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.02em;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 34px rgba(42, 184, 232, 0.62);
}
.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.38);
  padding: 13px 26px;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--aqua2);
}
.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--aqua), var(--aqua2));
  color: var(--navy);
  border: none;
  padding: 13px 22px;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 0.93rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(42, 184, 232, 0.36);
  letter-spacing: 0.03em;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 28px rgba(42, 184, 232, 0.52);
}
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ══════════════════════════════
   STATS BAR
══════════════════════════════ */
.stats-bar {
  background: var(--navy);
  padding: 30px clamp(16px, 4vw, 60px);
}
.stats-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.stat {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 14px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}
.stat:last-child { border-right: none; }
.stat-number {
  font-family: 'Libre Baskerville', serif;
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--aqua2);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ══════════════════════════════
   SHARED SECTION STYLES
══════════════════════════════ */
.section { padding: 88px clamp(16px, 4vw, 60px); }
.section-alt { background: var(--off); }
.section-inner { max-width: 1160px; margin: 0 auto; }

.section-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 11px;
}
.section-title {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.13;
  margin-bottom: 14px;
}
.section-sub {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.78;
  max-width: 480px;
  font-weight: 400;
}
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(42, 184, 232, 0.18), transparent);
}

/* ══════════════════════════════
   OWNER SECTION
══════════════════════════════ */
.owner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 52px;
}
.owner-photo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(11, 32, 53, 0.17);
}
.owner-photo img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}
.owner-badge {
  position: absolute;
  bottom: 22px; left: 22px;
  background: rgba(11, 32, 53, 0.84);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(42, 184, 232, 0.3);
  border-radius: 14px;
  padding: 14px 18px;
}
.owner-badge strong {
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  color: var(--white);
  display: block;
  margin-bottom: 2px;
}
.owner-badge span {
  font-size: 0.75rem;
  color: var(--aqua2);
  letter-spacing: 0.06em;
}
.owner-avatar {
  width: 62px; height: 62px;
  background: linear-gradient(135deg, var(--aqua), var(--aqua2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Libre Baskerville', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 22px;
  box-shadow: 0 4px 18px rgba(42, 184, 232, 0.4);
}
.owner-name {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}
.owner-role {
  font-size: 0.75rem;
  color: var(--aqua);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.owner-bio {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.82;
  margin-bottom: 26px;
}
.pills { display: flex; gap: 10px; flex-wrap: wrap; }
.pill {
  background: rgba(42, 184, 232, 0.1);
  border: 1px solid rgba(42, 184, 232, 0.24);
  border-radius: 50px;
  padding: 6px 15px;
  font-size: 0.78rem;
  color: var(--aqua);
  font-weight: 600;
}

/* ══════════════════════════════
   SERVICES
══════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}
.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--aqua), var(--aqua2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover {
  border-color: rgba(42, 184, 232, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(11, 32, 53, 0.1);
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 50px; height: 50px;
  background: rgba(42, 184, 232, 0.1);
  border: 1px solid rgba(42, 184, 232, 0.22);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 16px;
}
.service-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.service-desc { color: var(--muted); font-size: 0.88rem; line-height: 1.72; }

/* ══════════════════════════════
   QUOTE CALCULATOR
══════════════════════════════ */
.quote-section {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy2) 100%);
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 85% 15%, rgba(42, 184, 232, 0.13) 0%, transparent 70%),
    radial-gradient(ellipse 45% 65% at 5% 85%,  rgba(92, 212, 245, 0.08) 0%, transparent 60%);
}

/* floating bubbles */
.quote-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(92, 212, 245, 0.08);
  border: 1px solid rgba(92, 212, 245, 0.14);
  animation: bubbleRise linear infinite;
}
.bubble:nth-child(1) { width: 24px; height: 24px; left: 12%; animation-duration: 9s;  animation-delay: 0.0s; }
.bubble:nth-child(2) { width: 14px; height: 14px; left: 28%; animation-duration: 7s;  animation-delay: 2.2s; }
.bubble:nth-child(3) { width: 32px; height: 32px; left: 52%; animation-duration: 11s; animation-delay: 1.0s; }
.bubble:nth-child(4) { width: 18px; height: 18px; left: 70%; animation-duration: 8s;  animation-delay: 3.5s; }
.bubble:nth-child(5) { width: 10px; height: 10px; left: 88%; animation-duration: 6s;  animation-delay: 0.8s; }
@keyframes bubbleRise {
  0%   { bottom: -40px; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.4; }
  100% { bottom: 110%; opacity: 0; }
}

.tag-light  { color: var(--aqua2); }
.title-light { color: var(--white); }
.sub-light  { color: rgba(255, 255, 255, 0.52); }

.quote-wrapper {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 44px;
  margin-top: 52px;
  backdrop-filter: blur(12px);
}
.quote-note {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 26px;
}
.quote-note strong { color: var(--aqua2); }

.slider-row { margin-bottom: 26px; }
.slider-label {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  font-weight: 500;
  margin-bottom: 9px;
}
.slider-label span:last-child { color: var(--aqua2); font-weight: 700; }

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 5px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.14);
  outline: none;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aqua), var(--aqua2));
  box-shadow: 0 2px 10px rgba(42, 184, 232, 0.5);
  cursor: pointer;
  transition: transform 0.15s;
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.2); }

.slider-ends {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
}

.checkbox-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 26px; }
.check-label {
  display: flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  font-weight: 500;
  user-select: none;
}
.check-label input[type="checkbox"] { display: none; }
.check-box {
  width: 21px; height: 21px;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}
.check-label input[type="checkbox"]:checked + .check-box {
  background: linear-gradient(135deg, var(--aqua), var(--aqua2));
  border-color: transparent;
}
.check-box::after {
  content: '✓';
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.15s;
}
.check-label input[type="checkbox"]:checked + .check-box::after { opacity: 1; }

.price-display {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  padding: 26px 30px;
  background: rgba(42, 184, 232, 0.1);
  border: 1px solid rgba(42, 184, 232, 0.24);
  border-radius: 16px;
  margin-bottom: 26px;
}
.price-number {
  font-family: 'Libre Baskerville', serif;
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.price-number sup { font-size: 2rem; vertical-align: super; }
.price-meta { padding-bottom: 7px; }
.price-label {
  font-size: 0.72rem;
  color: var(--aqua2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}
.price-note { font-size: 0.72rem; color: rgba(255, 255, 255, 0.36); }

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 52px;
  align-items: start;
  margin-top: 52px;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(42, 184, 232, 0.1);
  border: 1px solid rgba(42, 184, 232, 0.22);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.contact-label {
  font-size: 0.7rem;
  color: var(--aqua);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}
.contact-value { color: var(--navy); font-size: 0.93rem; font-weight: 600; }
.contact-value a { color: inherit; text-decoration: none; }
.contact-value a:hover { color: var(--aqua); }

.guarantee-box {
  padding: 20px 22px;
  background: rgba(42, 184, 232, 0.08);
  border: 1px solid rgba(42, 184, 232, 0.18);
  border-radius: 14px;
}
.guarantee-label {
  font-size: 0.7rem;
  color: var(--aqua);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 7px;
}
.guarantee-box p { color: var(--muted); font-size: 0.86rem; line-height: 1.65; }

/* ── FORM CARD ── */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
  position: relative;
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--aqua), var(--aqua2));
  border-radius: var(--radius) var(--radius) 0 0;
}
.form-card-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--off);
  border: 1.5px solid rgba(11, 32, 53, 0.1);
  border-radius: 10px;
  padding: 11px 13px;
  color: var(--navy);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(11, 32, 53, 0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--aqua);
  background: var(--white);
}
.form-group select option { background: var(--white); }
.form-group textarea { resize: vertical; min-height: 88px; }

.hidden-field { display: none; }
.form-error {
  display: none;
  margin-top: 10px;
  color: #c94040;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  padding: 10px;
  background: rgba(201, 64, 64, 0.08);
  border-radius: 8px;
  margin-bottom: 10px;
}

/* ══════════════════════════════
   POPUP OVERLAY
══════════════════════════════ */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(11, 32, 53, 0.75);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  padding: 22px;
}
.overlay.active { display: flex; }

.popup {
  background: var(--white);
  border-radius: 22px;
  width: 100%;
  max-width: 490px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(11, 32, 53, 0.32);
  animation: popIn 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}
@keyframes popIn {
  from { transform: scale(0.84); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

.popup-header {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  padding: 30px 34px 26px;
  border-radius: 22px 22px 0 0;
  position: relative;
}
.popup-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white);
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.popup-close:hover { background: rgba(255, 255, 255, 0.2); }
.popup-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}
.popup-sub { font-size: 0.82rem; color: rgba(255, 255, 255, 0.5); }

.popup-body { padding: 28px 34px; }
.popup-body .form-group input,
.popup-body .form-group select,
.popup-body .form-group textarea { background: var(--off); border-color: rgba(11, 32, 53, 0.11); }
.popup-body .form-group input:focus,
.popup-body .form-group select:focus,
.popup-body .form-group textarea:focus { border-color: var(--aqua); background: var(--white); }

/* ══════════════════════════════
   SUCCESS POPUP
══════════════════════════════ */
.success-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 600;
  background: rgba(11, 32, 53, 0.82);
  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
}
.success-overlay.active { display: flex; }
.success-box {
  background: var(--white);
  border-radius: 22px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  padding: 50px 38px;
  box-shadow: 0 30px 80px rgba(11, 32, 53, 0.3);
  animation: popIn 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.success-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--aqua), var(--aqua2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  margin: 0 auto 22px;
  box-shadow: 0 8px 26px rgba(42, 184, 232, 0.42);
}
.success-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 11px;
}
.success-text { color: var(--muted); font-size: 0.93rem; line-height: 1.67; margin-bottom: 26px; }
.btn-success-close {
  background: linear-gradient(135deg, var(--aqua), var(--aqua2));
  border: none;
  color: var(--navy);
  padding: 12px 30px;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s;
}
.btn-success-close:hover { transform: translateY(-2px); }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  background: var(--navy);
  padding: 36px clamp(16px, 4vw, 60px);
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-logo {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}
.footer-logo em { color: var(--aqua); font-style: normal; }
.footer-copy  { font-size: 0.8rem;  color: rgba(255, 255, 255, 0.32); }
.footer-tag   { font-size: 0.8rem;  color: rgba(255, 255, 255, 0.28); font-style: italic; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 900px) {
  .owner-grid,
  .contact-grid,
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  nav a:not(.btn-nav) { display: none; }
}
@media (max-width: 580px) {
  .stats-inner { flex-direction: column; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.09); }
  .stat:last-child { border-bottom: none; }
  .price-display { flex-direction: column; align-items: flex-start; gap: 6px; }
  .quote-wrapper { padding: 26px 18px; }
  .popup-body, .popup-header { padding: 22px 20px; }
  .form-card { padding: 26px 20px; }
  .hero h1 { font-size: 2.5rem; }
}
