/* ============================================================
   BAYFRONT SLIDING DOOR & WINDOW REPAIRS
   Shared Stylesheet — brand colors from logo
   ============================================================ */

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

:root {
  /* ── Logo Brand Colors ── */
  --navy:        #1a2b4a;   /* shield primary dark navy */
  --navy-mid:    #1f3660;   /* slightly lighter navy */
  --navy-light:  #243d6e;
  --gold:        #c9a227;   /* logo gold (door frames, REPAIRS, stars) */
  --gold-dark:   #a8851f;
  --gold-light:  #fdf3d6;
  --silver:      #e8eaed;   /* logo ribbon/banner area */
  --blue-mid:    #2a4a6b;   /* logo wave element */
  --accent:      #2a6496;   /* interactive blue (links, hover) */
  --accent-light:#e4f0f9;

  /* ── Neutrals ── */
  --white:       #ffffff;
  --off-white:   #f7f9fb;
  --text-dark:   #0d1f33;
  --text-mid:    #3d5470;
  --text-muted:  #6b849e;
  --border:      #d0dce8;

  /* ── Radii ── */
  --radius:      10px;
  --radius-lg:   16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--white);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── TOP BAR ── */
.topbar {
  background: var(--navy);
  color: #aec4d8;
  font-size: 13px;
  padding: 8px 0;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: #aec4d8; }
.topbar a:hover { color: var(--white); }
.topbar-left { display: flex; gap: 20px; align-items: center; }
.topbar-right { display: flex; gap: 20px; align-items: center; }

/* ── NAV ── */
nav {
  background: var(--white);
  border-bottom: 2px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(26,43,74,0.10);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.logo-img { height: 70px; width: auto; display: block; }
.logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--navy);
  line-height: 1.1;
}
.logo-text span {
  display: block;
  font-size: 12px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 2px;
  letter-spacing: .5px;
}
.nav-links { display: flex; gap: 24px; align-items: center; list-style: none; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--text-mid); transition: color .2s; }
.nav-links a:hover { color: var(--gold); }
.nav-links .has-dropdown { position: relative; }
.nav-links .has-dropdown > a::after { content: ' ▾'; font-size: 10px; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  border-radius: 0 0 var(--radius) var(--radius);
  min-width: 220px;
  box-shadow: 0 8px 24px rgba(26,43,74,0.12);
  z-index: 200;
  padding: 8px 0;
}
.nav-links .has-dropdown:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-mid);
  transition: background .15s, color .15s;
}
.dropdown a:hover { background: var(--gold-light); color: var(--navy); }
.btn-quote {
  background: var(--gold);
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .1s;
  display: inline-block;
}
.btn-quote:hover { background: var(--gold-dark); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  background:
    linear-gradient(135deg, rgba(26,43,74,0.78) 0%, rgba(31,54,96,0.72) 60%, rgba(42,74,107,0.65) 100%),
    url('../images/hero-bg.jpg') center center / cover no-repeat;
  color: var(--white);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: rgba(201,162,39,0.06);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: rgba(42,74,107,0.15);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.4);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub {
  font-size: 18px;
  color: #b0cde0;
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #c8dff0;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 50px;
}
.pill-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .1s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.35);
  cursor: pointer;
  transition: border-color .2s, background .2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,162,39,0.06); }

/* Hero form card */
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 20px 60px rgba(26,43,74,0.35);
  border-top: 4px solid var(--gold);
}
.hero-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.hero-card .sub { font-size: 13px; color: var(--text-muted); margin-bottom: 22px; }
.form-row { margin-bottom: 13px; }
.form-row label { display: block; font-size: 12px; font-weight: 500; color: var(--text-mid); margin-bottom: 5px; text-transform: uppercase; letter-spacing: .4px; }
.form-row input, .form-row select {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color .2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-row input:focus, .form-row select:focus { border-color: var(--gold); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-card .btn-primary { width: 100%; text-align: center; margin-top: 4px; font-size: 15px; padding: 13px; }
.hero-card .disclaimer { font-size: 11px; color: var(--text-muted); text-align: center; margin-top: 10px; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--navy);
  border-bottom: 2px solid var(--gold);
  padding: 18px 24px;
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #b0cde0;
}
.trust-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── SECTION BASE ── */
section { padding: 72px 24px; }
.section-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.15;
}
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }
.container { max-width: 1200px; margin: 0 auto; }

/* ── ABOUT ── */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img {
  background: transparent;
  border-radius: var(--radius-lg);
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 3px solid var(--gold);
}
.about-img-inner { text-align: center; padding: 40px; }
.about-img-icon {
  width: 80px; height: 80px;
  margin: 0 auto 16px;
  background: var(--gold);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
}
.about-img-icon svg { width: 44px; height: 44px; stroke: var(--navy); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.about-img p { font-size: 16px; color: #b0cde0; line-height: 1.6; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 32px 0; }
.stat-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
}
.stat-num { font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 900; color: var(--navy); line-height: 1; }
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* ── SERVICES ── */
.services { background: transparent; }
.services .section-label { color: var(--gold); }
.services .section-title { color: var(--white); }
.services .section-sub { color: #b0cde0; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: 28px 24px;
  transition: box-shadow .2s, transform .2s;
  cursor: pointer;
}
.service-card:hover { box-shadow: 0 8px 32px rgba(26,43,74,0.12); transform: translateY(-3px); }
.service-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  border: 1px solid rgba(201,162,39,0.25);
}
.service-icon svg { width: 26px; height: 26px; stroke: var(--gold-dark); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 15px; color: var(--text-muted); line-height: 1.65; }
.service-link { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 600; color: var(--gold-dark); margin-top: 14px; }
.service-link svg { width: 14px; height: 14px; stroke: var(--gold-dark); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ── WHY US ── */
.why { background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { padding: 28px 24px; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
  border: 2px solid var(--gold);
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  margin-bottom: 16px;
  background: var(--gold-light);
}
.why-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.why-card p { font-size: 15px; color: var(--text-muted); line-height: 1.65; }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(120deg, var(--navy) 0%, var(--blue-mid) 100%);
  color: var(--white);
  text-align: center;
  padding: 64px 24px;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}
.cta-band h2 { font-size: 38px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.cta-band p { font-size: 17px; color: #a8c6df; margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 22px;
  padding: 16px 36px;
  border-radius: 10px;
  transition: background .2s, transform .1s;
}
.cta-phone:hover { background: var(--gold-dark); transform: translateY(-2px); }
.cta-phone svg { width: 22px; height: 22px; stroke: var(--navy); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ── REVIEWS ── */
.reviews { background: var(--off-white); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.review-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 24px; border-top: 3px solid var(--gold); }
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.star { color: var(--gold); font-size: 16px; }
.review-text { font-size: 15px; color: var(--text-mid); line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.review-author { display: flex; align-items: center; gap: 11px; }
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.reviewer-name { font-size: 14px; font-weight: 600; color: var(--navy); }
.review-date { font-size: 12px; color: var(--text-muted); }

/* ── FAQ ── */
.faq { background: var(--white); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  gap: 12px;
}
.faq-q svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; transition: transform .25s; }
.faq-a { display: none; font-size: 15px; color: var(--text-muted); line-height: 1.75; padding-bottom: 20px; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }

/* ── SERVICE AREAS ── */
.areas {
  background: transparent;
  border-top: 2px solid rgba(201,162,39,0.3);
  border-bottom: 2px solid rgba(201,162,39,0.3);
}
.areas .section-label { color: var(--gold); }
.areas .section-title { color: var(--white); }
.areas .section-sub { color: #b0cde0; }
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 10px; margin-top: 36px; }
.area-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color .2s, color .2s;
}
.area-chip:hover { border-color: var(--gold); color: var(--navy); }
.area-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ── CONTACT ── */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h3 { font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.contact-info p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-detail-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--gold-light); border: 1px solid rgba(201,162,39,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-icon svg { width: 20px; height: 20px; stroke: var(--gold-dark); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-detail-text strong { display: block; font-size: 14px; font-weight: 600; color: var(--navy); }
.contact-detail-text span { font-size: 14px; color: var(--text-muted); }
.contact-form { background: var(--off-white); border-radius: var(--radius-lg); border: 1px solid var(--border); border-top: 3px solid var(--gold); padding: 36px 32px; }
.contact-form h3 { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 22px; }
.contact-form .form-row { margin-bottom: 14px; }
.contact-form textarea {
  width: 100%; padding: 10px 13px;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--white);
  resize: vertical; min-height: 100px;
  outline: none; transition: border-color .2s;
}
.contact-form textarea:focus { border-color: var(--gold); }
.contact-form .btn-primary { width: 100%; font-size: 15px; padding: 13px; text-align: center; cursor: pointer; border: none; }

/* ── BREADCRUMBS ── */
.breadcrumb { background: var(--off-white); border-bottom: 1px solid var(--border); padding: 12px 24px; font-size: 13px; color: var(--text-muted); }
.breadcrumb a { color: var(--gold-dark); }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb span { margin: 0 6px; }

/* ── PAGE HERO (subpages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--blue-mid) 100%);
  color: var(--white);
  padding: 60px 24px;
  text-align: center;
  border-bottom: 3px solid var(--gold);
}
.page-hero h1 { font-size: clamp(30px, 4vw, 48px); font-weight: 900; color: var(--white); margin-bottom: 14px; }
.page-hero h1 em { color: var(--gold); font-style: normal; }
.page-hero p { font-size: 16px; color: #b0cde0; max-width: 560px; margin: 0 auto 24px; line-height: 1.7; }
.page-hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── CONTENT SECTION ── */
.content-section { padding: 64px 24px; background: var(--white); }
.content-section.alt { background: var(--off-white); }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.content-grid.wide { grid-template-columns: 2fr 1fr; }
.content-block h2 { font-size: clamp(26px, 3vw, 36px); font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.content-block h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin: 24px 0 10px; }
.content-block p { font-size: 16px; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
.content-block ul { margin: 0 0 16px 20px; }
.content-block ul li { font-size: 16px; color: var(--text-muted); line-height: 1.75; margin-bottom: 6px; }
.content-block ul li::marker { color: var(--gold); }

/* Sidebar card */
.sidebar-card { background: var(--off-white); border-radius: var(--radius-lg); border: 1px solid var(--border); border-top: 3px solid var(--gold); padding: 28px 24px; }
.sidebar-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.sidebar-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.sidebar-card .btn-primary { width: 100%; text-align: center; font-size: 15px; padding: 13px; }
.sidebar-cta-phone { display: flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 700; color: var(--navy); margin-top: 14px; }
.sidebar-cta-phone svg { stroke: var(--gold-dark); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; width: 20px; height: 20px; }

/* ── FOOTER ── */
footer { background: var(--navy); color: #8dafc9; padding: 56px 24px 30px; border-top: 3px solid var(--gold); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: #7a9ab4; margin-top: 12px; }
.footer-col h4 { font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .8px; color: var(--gold); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul a { font-size: 14px; color: #7a9ab4; transition: color .2s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(201,162,39,0.2); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: #5a7a90; }
.footer-logo-img { height: 48px; width: auto; margin-bottom: 12px; }

/* ── STICKY CALL ── */
.sticky-call {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  background: var(--gold); color: var(--navy);
  font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 14px;
  padding: 13px 20px; border-radius: 50px;
  box-shadow: 0 4px 20px rgba(201,162,39,0.5);
  display: flex; align-items: center; gap: 9px;
  transition: transform .2s, box-shadow .2s;
}
.sticky-call:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,162,39,0.55); }
.sticky-call svg { width: 18px; height: 18px; stroke: var(--navy); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: 84px;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 2px solid var(--gold);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(26,43,74,0.15);
  z-index: 99;
  max-height: calc(100vh - 84px);
  overflow-y: auto;
  padding: 16px 0;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  transition: background .15s, color .15s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { background: var(--gold-light); color: var(--navy); }
.mobile-menu .mobile-link {
  display: block;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
}
.mobile-menu .mobile-link:hover { background: var(--gold-light); color: var(--navy); }

/* Collapsible sections */
.mobile-section { border-bottom: 1px solid var(--border); }
.mobile-section-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
}
.mobile-section-toggle svg {
  width: 18px; height: 18px;
  stroke: var(--gold); fill: none; stroke-width: 2.5;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.25s;
  flex-shrink: 0;
}
.mobile-section.open .mobile-section-toggle svg { transform: rotate(180deg); }
.mobile-section-items { display: none; background: var(--off-white); }
.mobile-section.open .mobile-section-items { display: block; }
.mobile-section-items a {
  display: block;
  padding: 11px 32px;
  font-size: 14px;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
}
.mobile-section-items a:last-child { border-bottom: none; }
.mobile-section-items a:hover { background: var(--gold-light); color: var(--navy); }

.mobile-menu .mobile-cta {
  margin: 12px 24px;
  display: block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  padding: 13px;
  border-radius: 8px;
  text-align: center;
  border-bottom: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .about-grid, .contact-grid, .content-grid, .content-grid.wide { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .btn-quote { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}
