/* ============================================================
   APEX ELITE PLUMBING — style.css
   Design: Industrial Luxury | Dark Navy + Steel + Alert Red
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Lato:ital,wght@0,300;0,400;0,700;1,300&family=Oswald:wght@300;400;500;600;700&display=swap');

/* ── CSS VARIABLES ────────────────────────────────────────── */
:root {
  --navy:        #0B1D35;
  --navy-mid:    #112748;
  --navy-light:  #1A3A5C;
  --steel:       #6B8FA8;
  --steel-light: #A8C4D8;
  --steel-pale:  #E8EFF5;
  --red:         #C8281E;
  --red-light:   #E8332A;
  --red-dark:    #9E1F16;
  --white:       #FFFFFF;
  --off-white:   #F4F7FA;
  --gray-100:    #EEF2F6;
  --gray-300:    #C5D1DC;
  --gray-500:    #7A8FA0;
  --gray-700:    #3D5166;
  --gold:        #C9A84C;
  --gold-light:  #E2C170;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-heading: 'Oswald', sans-serif;
  --font-body:    'Lato', sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-sm:  0 2px 8px rgba(11,29,53,0.12);
  --shadow-md:  0 6px 24px rgba(11,29,53,0.18);
  --shadow-lg:  0 16px 48px rgba(11,29,53,0.26);
  --shadow-xl:  0 32px 80px rgba(11,29,53,0.38);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.18s ease;

  --max-width: 1260px;
  --nav-height: 80px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── UTILITY ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  border-left: 3px solid var(--red);
  padding-left: 10px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.section-title span { color: var(--red); }

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-700);
  max-width: 580px;
  margin-top: 14px;
  font-weight: 300;
  line-height: 1.75;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  transform: translateX(-100%);
  transition: transform var(--transition);
}
.btn:hover::before { transform: translateX(0); }

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(200,40,30,0.35);
}
.btn-primary:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,40,30,0.45);
}

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

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-steel {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-steel:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── NAVIGATION ───────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(11, 29, 53, 0.96);
  backdrop-filter: blur(12px) saturate(1.4);
  border-bottom: 1px solid rgba(107,143,168,0.2);
  transition: all var(--transition);
}

.site-nav.scrolled {
  height: 66px;
  box-shadow: 0 4px 32px rgba(11,29,53,0.4);
  background: rgba(11, 29, 53, 0.99);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-main {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

.nav-logo-main span { color: var(--red); }

.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel-light);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel-light);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 12px rgba(200,40,30,0.3);
}
.nav-cta:hover { background: var(--red-light) !important; }
.nav-cta::after { display: none !important; }

.nav-phone {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold) !important;
  letter-spacing: 0.04em;
}
.nav-phone::after { background: var(--gold) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}
.hamburger:hover { background: rgba(255,255,255,0.08); }

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--navy);
  border-top: 1px solid rgba(107,143,168,0.2);
  z-index: 999;
  padding: 20px 0 30px;
  transform: translateY(-10px);
  opacity: 0;
  transition: all var(--transition);
  pointer-events: none;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  display: block;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel-light);
  border-bottom: 1px solid rgba(107,143,168,0.1);
  transition: all var(--transition-fast);
}
.mobile-menu a:hover,
.mobile-menu a.active { color: var(--white); padding-left: 44px; }
.mobile-menu a.active { color: var(--gold); }

.mobile-menu .mobile-cta {
  margin: 20px 32px 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: none !important;
  width: calc(100% - 64px);
  justify-content: center;
}
.mobile-menu .mobile-cta:hover { background: var(--red-light); padding-left: 24px !important; }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  background-image:
    linear-gradient(135deg, rgba(107,143,168,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(200,40,30,0.06) 0%, transparent 60%);
  color: var(--steel-light);
  padding-top: 80px;
  margin-top: 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 52px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(107,143,168,0.18);
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-brand-name span { color: var(--red); }

.footer-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 18px;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--gray-500);
  margin-bottom: 24px;
  font-weight: 300;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--steel-light);
  margin-bottom: 10px;
  transition: color var(--transition-fast);
}
.footer-contact-item:hover { color: var(--white); }
.footer-contact-item .icon { color: var(--red); font-size: 1rem; flex-shrink: 0; }

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}

.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: var(--gray-500);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '›';
  color: var(--red);
  font-size: 1rem;
  line-height: 1;
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-newsletter p {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin-bottom: 16px;
  font-weight: 300;
}

.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(107,143,168,0.25);
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: none;
  outline: none;
  font-size: 0.85rem;
}
.newsletter-form input::placeholder { color: var(--gray-500); }

.newsletter-form button {
  background: var(--red);
  color: var(--white);
  padding: 12px 18px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background var(--transition-fast);
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--red-light); }

.footer-hours {
  margin-top: 20px;
}
.footer-hours p {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-bottom: 6px;
  font-weight: 300;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.footer-hours p span { color: var(--steel-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 0.8rem;
  color: var(--gray-700);
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom a { color: var(--gray-500); transition: color var(--transition-fast); }
.footer-bottom a:hover { color: var(--white); }

.footer-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--gray-500);
}
.footer-badge strong { color: var(--gold); }

/* ── BACK TO TOP ──────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 18px rgba(200,40,30,0.4);
  z-index: 900;
  opacity: 0;
  transform: translateY(20px) scale(0.85);
  transition: all var(--transition);
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}
.back-to-top:hover {
  background: var(--red-light);
  transform: translateY(-3px) scale(1.05);
}

/* ── PAGE HEADER (Inner pages) ────────────────────────────── */
.page-header {
  background: var(--navy);
  background-image:
    linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 60%),
    radial-gradient(ellipse at 70% 50%, rgba(200,40,30,0.15) 0%, transparent 65%);
  padding: calc(var(--nav-height) + 60px) 0 60px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 50%;
  height: 200%;
  background: repeating-linear-gradient(
    -55deg,
    rgba(107,143,168,0.04) 0px,
    rgba(107,143,168,0.04) 1px,
    transparent 1px,
    transparent 28px
  );
}

.page-header-content { position: relative; z-index: 1; }

.page-header-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  background: rgba(200,40,30,0.12);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(200,40,30,0.25);
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 14px;
}

.page-header h1 span { color: var(--red); }

.page-header p {
  font-size: 1.05rem;
  color: var(--steel-light);
  font-weight: 300;
  max-width: 520px;
  line-height: 1.7;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--gray-700);
  margin-top: 24px;
}
.breadcrumb a { color: var(--steel); transition: color var(--transition-fast); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--red); }

/* ── DIVIDER ──────────────────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 12px 0 36px;
}
.divider-line { flex: 1; height: 1px; background: var(--gray-300); }
.divider-line.short { max-width: 60px; }
.divider-dot { width: 6px; height: 6px; background: var(--red); border-radius: 50%; }

/* ── REVEAL ANIMATION ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── SKIP NAV ACCESSIBILITY ───────────────────────────────── */
.skip-nav {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--red);
  color: var(--white);
  padding: 8px 16px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  z-index: 9999;
  transition: top 0.2s;
}
.skip-nav:focus { top: 8px; }

/* ── HOME: HERO ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(200,40,30,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(107,143,168,0.1) 0%, transparent 50%),
    linear-gradient(160deg, var(--navy-mid) 0%, var(--navy) 50%, #060F1A 100%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(107,143,168,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107,143,168,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
}

.hero-diagonal {
  position: absolute;
  bottom: -1px; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 0 160px 100vw;
  border-color: transparent transparent var(--white) transparent;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 80px 0 100px;
  max-width: 740px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200,40,30,0.12);
  border: 1px solid rgba(200,40,30,0.3);
  border-radius: 100px;
  padding: 6px 16px 6px 8px;
  margin-bottom: 28px;
}

.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,40,30,0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(200,40,30,0); }
}

.hero-eyebrow-text {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 28px;
}

.hero-title .accent { color: var(--red); }
.hero-title .thin {
  font-weight: 400;
  color: var(--steel-light);
  display: block;
  font-size: 0.6em;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--steel-light);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stat {
  border-left: 2px solid rgba(107,143,168,0.3);
  padding-left: 16px;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.02em;
}
.hero-stat-num span { color: var(--red); }

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--steel);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 180px;
  right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 3;
}
.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--steel));
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: var(--red);
  animation: scroll-line 1.8s ease-in-out infinite;
}
@keyframes scroll-line {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(300%); }
}
.hero-scroll-text {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
  writing-mode: vertical-lr;
}

/* ── HOME: QUICK SERVICES ─────────────────────────────────── */
.quick-services {
  padding: 100px 0;
  background: var(--white);
}

.quick-services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

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

.service-card-quick {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid var(--gray-100);
}

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

.service-card-quick:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); background: var(--white); }
.service-card-quick:hover::before { transform: scaleX(1); }

.qs-icon {
  width: 60px;
  height: 60px;
  background: rgba(200,40,30,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 22px;
  transition: all var(--transition);
}
.service-card-quick:hover .qs-icon {
  background: var(--red);
  transform: scale(1.08);
}
.service-card-quick:hover .qs-icon svg { color: var(--white); }

.qs-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}

.qs-desc {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.7;
  font-weight: 300;
}

.qs-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  transition: gap var(--transition-fast);
}
.qs-link:hover { gap: 10px; }

/* ── HOME: WHY CHOOSE US ──────────────────────────────────── */
.why-us {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--red), var(--gold), var(--red));
}

.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us-left .section-title { color: var(--white); }
.why-us-left .section-sub { color: var(--steel-light); }

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.trust-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(107,143,168,0.18);
  border-radius: var(--radius-md);
  padding: 26px;
  transition: all var(--transition);
}
.trust-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(200,40,30,0.4);
  transform: translateY(-4px);
}

.trust-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: block;
}

.trust-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}

.trust-desc {
  font-size: 0.82rem;
  color: var(--steel);
  line-height: 1.65;
  font-weight: 300;
}

.why-us-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.metric-item {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(107,143,168,0.12);
}
.metric-item:first-child { border-top: 1px solid rgba(107,143,168,0.12); }

.metric-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  min-width: 100px;
}
.metric-num span { color: var(--red); }

.metric-info {}
.metric-label {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.metric-desc {
  font-size: 0.82rem;
  color: var(--steel);
  font-weight: 300;
}

/* ── ABOUT: STORY ─────────────────────────────────────────── */
.about-story {
  padding: 100px 0;
  background: var(--white);
}

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-visual {
  position: relative;
}

.story-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--steel-light);
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.story-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(107,143,168,0.06) 0px, rgba(107,143,168,0.06) 1px,
    transparent 1px, transparent 20px
  );
}

.story-year-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.story-year-badge .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.story-year-badge .label {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
}

.story-timeline {
  margin-top: 36px;
  position: relative;
}

.timeline-item {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  position: relative;
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--red);
  min-width: 52px;
  padding-top: 2px;
}

.timeline-content {}
.timeline-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 4px;
}
.timeline-desc {
  font-size: 0.85rem;
  color: var(--gray-700);
  font-weight: 300;
  line-height: 1.65;
}

/* ── ABOUT: TEAM ──────────────────────────────────────────── */
.team-section {
  padding: 100px 0;
  background: var(--off-white);
}

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

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.team-photo {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

.team-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(107,143,168,0.08) 0px, rgba(107,143,168,0.08) 1px,
    transparent 1px, transparent 16px
  );
}

.team-photo .initials {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255,255,255,0.15);
  position: relative;
  z-index: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.team-tag {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
}

.team-info { padding: 28px 28px 32px; }

.team-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 3px;
}

.team-role {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.team-bio {
  font-size: 0.85rem;
  color: var(--gray-700);
  line-height: 1.75;
  font-weight: 300;
}

.team-certs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.cert-badge {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  border: 1px solid var(--gray-300);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

/* ── ABOUT: VALUES ────────────────────────────────────────── */
.values-section {
  padding: 100px 0;
  background: var(--navy);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  border: 1px solid rgba(107,143,168,0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.value-item {
  padding: 50px 40px;
  border-right: 1px solid rgba(107,143,168,0.15);
  transition: background var(--transition);
}
.value-item:last-child { border-right: none; }
.value-item:hover { background: rgba(255,255,255,0.04); }

.value-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(107,143,168,0.1);
  line-height: 1;
  margin-bottom: 10px;
}

.value-icon { font-size: 2rem; margin-bottom: 18px; display: block; }

.value-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 14px;
}

.value-desc {
  font-size: 0.88rem;
  color: var(--steel);
  line-height: 1.75;
  font-weight: 300;
}

/* ── SERVICES: GRID ───────────────────────────────────────── */
.services-grid-section {
  padding: 100px 0;
  background: var(--off-white);
}

.services-main-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.service-card-header {
  padding: 36px 36px 24px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.service-card-header::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(200,40,30,0.04);
  transition: transform var(--transition);
}
.service-card:hover .service-card-header::before {
  transform: scale(3);
  background: rgba(200,40,30,0.07);
}

.service-icon-wrap {
  width: 72px;
  height: 72px;
  background: var(--navy);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 22px;
  position: relative;
  transition: all var(--transition);
}

.service-card:hover .service-icon-wrap {
  background: var(--red);
  transform: rotate(-5deg) scale(1.08);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--navy);
  margin-bottom: 4px;
}

.service-subtitle {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}

.service-card-body {
  padding: 0 36px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--gray-700);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 20px;
  flex: 1;
}

.service-features {
  margin-bottom: 24px;
}
.service-features li {
  font-size: 0.82rem;
  color: var(--navy);
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 300;
}
.service-features li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.service-card-footer {
  padding: 20px 36px 32px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-price {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--steel);
}

/* Featured service card */
.service-card.featured {
  border: 2px solid var(--red);
  grid-row: span 1;
}

.service-card.featured .service-card-header {
  background: var(--navy);
}

.service-card.featured .service-title { color: var(--white); }
.service-card.featured .service-icon-wrap { background: rgba(200,40,30,0.2); }
.service-card.featured:hover .service-icon-wrap { background: var(--red); }

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-section {
  padding: 100px 0;
  background: var(--off-white);
}

.masonry-grid {
  columns: 3;
  column-gap: 28px;
  margin-top: 56px;
}

.review-card {
  break-inside: avoid;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -10px; right: 20px;
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 900;
  color: rgba(200,40,30,0.05);
  line-height: 1;
}

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

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 8px;
}

.stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  font-size: 0.95rem;
}

.verified-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(107,143,168,0.1);
  color: var(--steel);
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.verified-badge .check { color: #22a94b; }

.review-text {
  font-size: 0.93rem;
  color: var(--gray-700);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 22px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--gray-100);
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
  letter-spacing: 0.04em;
}

.reviewer-name {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}
.reviewer-meta {
  font-size: 0.75rem;
  color: var(--steel);
  font-weight: 300;
}

.service-tag {
  position: absolute;
  bottom: 32px;
  right: 32px;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(200,40,30,0.07);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

.testimonials-cta {
  padding: 80px 0;
  background: var(--navy);
  text-align: center;
}

.testimonials-cta .section-title { color: var(--white); }
.testimonials-cta .section-sub { color: var(--steel-light); margin: 0 auto 36px; text-align: center; }

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

/* ── CONTACT PAGE ─────────────────────────────────────────── */
.contact-section {
  padding: 100px 0;
  background: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 70px;
  align-items: start;
}

.booking-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 50px;
  box-shadow: var(--shadow-md);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 0.88rem;
  color: var(--gray-700);
  font-weight: 300;
  margin-bottom: 36px;
}

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

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--navy);
  background: var(--off-white);
  outline: none;
  transition: all var(--transition-fast);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(11,29,53,0.08);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,40,30,0.1);
}

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

.form-group .error-msg {
  font-size: 0.75rem;
  color: var(--red);
  margin-top: 5px;
  display: none;
}
.form-group .error-msg.visible { display: block; }

.form-success {
  display: none;
  background: rgba(34,169,75,0.08);
  border: 1.5px solid rgba(34,169,75,0.3);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  margin-top: 20px;
}
.form-success.visible { display: block; }
.form-success .success-icon { font-size: 2rem; margin-bottom: 10px; }
.form-success p { font-size: 0.9rem; color: #1a7a40; font-weight: 300; }
.form-success strong { font-weight: 700; display: block; margin-bottom: 4px; font-size: 1rem; color: #1a7a40; }

.contact-sidebar {}

.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 38px;
  margin-bottom: 28px;
  color: var(--white);
}

.contact-info-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--red);
}

.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-detail:last-child { margin-bottom: 0; }

.cd-icon {
  width: 40px;
  height: 40px;
  background: rgba(200,40,30,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.cd-label {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 3px;
}
.cd-value {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 300;
  line-height: 1.5;
}
.cd-value a { color: var(--white); transition: color var(--transition-fast); }
.cd-value a:hover { color: var(--red); }

.hours-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 28px;
  border: 1px solid var(--gray-100);
}

.hours-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 20px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.87rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--gray-700); font-weight: 400; }
.hours-row .time { color: var(--navy); font-weight: 700; font-family: var(--font-heading); font-size: 0.8rem; letter-spacing: 0.06em; }
.hours-row .time.emergency { color: var(--red); }

.map-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 220px;
  background: var(--gray-100);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gray-700);
  border: 2px dashed var(--gray-300);
  font-size: 0.85rem;
  font-weight: 300;
  text-align: center;
}
.map-placeholder .map-icon { font-size: 2.5rem; opacity: 0.4; }
.map-placeholder .map-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
}
.map-placeholder .map-sub {
  font-size: 0.72rem;
  color: var(--gray-500);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }

  .footer-top { grid-template-columns: 1fr 1fr; }

  .why-us-inner { grid-template-columns: 1fr; gap: 56px; }

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

  .contact-layout { grid-template-columns: 1fr; }
  .booking-form-wrap { padding: 36px; }

  .masonry-grid { columns: 2; }

  .services-main-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-height: 66px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }

  .hero-scroll { display: none; }

  .services-grid-3 { grid-template-columns: 1fr; }

  .team-grid { grid-template-columns: 1fr; max-width: 400px; margin: 56px auto 0; }

  .values-grid { grid-template-columns: 1fr; }
  .value-item { border-right: none; border-bottom: 1px solid rgba(107,143,168,0.15); }
  .value-item:last-child { border-bottom: none; }

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

  .masonry-grid { columns: 1; }

  .services-main-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 36px; }

  .hero-cta-group { flex-direction: column; align-items: flex-start; }

  .hero-stats { gap: 24px; }

  .form-row { grid-template-columns: 1fr; }
  .booking-form-wrap { padding: 28px; }

  .back-to-top { bottom: 20px; right: 20px; }

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

  .quick-services-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 3rem; }
  .hero-content { padding: 60px 0 80px; }
  .page-header { padding: calc(var(--nav-height) + 40px) 0 40px; }
  .section-title { font-size: 1.9rem; }
  .team-card { max-width: 100%; }
  .team-grid { max-width: 100%; }
}
