/* ================================================
   BoatRecycle.co.uk - Main Stylesheet
   UK Boat Disposal Specialists
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Source+Serif+4:ital,wght@0,300;0,400;0,600;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy: #0a1628;
  --deep-blue: #0d2444;
  --ocean: #1a4a7a;
  --sea: #2271b3;
  --teal: #0e9f8c;
  --rust: #c94b1e;
  --gold: #e8a020;
  --sand: #f5efe6;
  --white: #ffffff;
  --light-grey: #f0f4f8;
  --mid-grey: #8a9bb0;
  --dark-grey: #2d3748;
  --text: #1a2433;
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif: 'Source Serif 4', serif;
  --font-body: 'DM Sans', sans-serif;
  --shadow-sm: 0 2px 8px rgba(10,22,40,0.12);
  --shadow-md: 0 6px 24px rgba(10,22,40,0.18);
  --shadow-lg: 0 16px 48px rgba(10,22,40,0.24);
  --radius: 4px;
  --radius-md: 8px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--sea); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--teal); }

/* ---- UTILITY ---- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--grey { background: var(--light-grey); }
.section--navy { background: var(--navy); color: var(--white); }
.section--deep { background: var(--deep-blue); color: var(--white); }
.section--sand { background: var(--sand); }
.text-center { text-align: center; }
.text-white { color: var(--white); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn--primary { background: var(--rust); color: var(--white); }
.btn--primary:hover { background: #a83d18; color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--secondary { background: var(--teal); color: var(--white); }
.btn--secondary:hover { background: #0c8a7a; color: var(--white); transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn--outline:hover { background: var(--white); color: var(--navy); }
.btn--gold { background: var(--gold); color: var(--navy); }
.btn--gold:hover { background: #cc8c1a; color: var(--navy); transform: translateY(-1px); }

/* ---- TOP BAR ---- */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: var(--gold); }
.topbar a:hover { color: var(--white); }

/* ---- HEADER ---- */
.site-header {
  background: var(--deep-blue);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 48px; height: 48px;
  background: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.5px;
  color: var(--white);
  flex-shrink: 0;
}
.logo-text { line-height: 1.1; }
.logo-text .brand { font-family: var(--font-display); font-size: 26px; color: var(--white); letter-spacing: 1px; }
.logo-text .tagline { font-size: 11px; color: var(--gold); letter-spacing: 0.5px; text-transform: uppercase; }

/* Main Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > a, .nav-dropdown > a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: all 0.2s;
  white-space: nowrap;
}
.main-nav > a:hover, .nav-dropdown > a:hover { background: rgba(255,255,255,0.1); color: var(--white); }

.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 10px; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px 0;
  z-index: 200;
  border-top: 3px solid var(--teal);
}
.dropdown-menu a {
  display: block;
  padding: 9px 20px;
  color: var(--text);
  font-size: 14px;
  transition: background 0.15s;
}
.dropdown-menu a:hover { background: var(--light-grey); color: var(--sea); }
.nav-dropdown:hover .dropdown-menu { display: block; }

.header-cta { display: flex; align-items: center; gap: 12px; }
.tel-badge {
  background: var(--rust);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.hamburger { display: none; }

/* ---- MOBILE BOTTOM NAV ---- */

/* Drawer: hidden at ALL screen sizes by default */
.mobile-services-drawer {
  display: none !important;
  position: fixed;
  bottom: 62px;
  left: 0; right: 0;
  background: var(--deep-blue);
  border-top: 3px solid var(--teal);
  z-index: 8999;
  max-height: 70vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.6);
}
/* Only show when JS adds .open */
.mobile-services-drawer.open {
  display: block !important;
}
.mobile-services-drawer a {
  display: block;
  padding: 17px 24px;
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.mobile-services-drawer a:last-child { border-bottom: none; }
.mobile-services-drawer a:active { background: rgba(255,255,255,0.1); }

/* Bottom nav bar: hidden at ALL sizes by default */
.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 62px;
  background: var(--navy);
  border-top: 3px solid var(--teal);
  z-index: 9000;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
}
.mobile-nav-inner {
  display: flex;
  align-items: stretch;
  height: 100%;
}
.mobile-nav-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px 2px;
  color: rgba(255,255,255,0.7);
  font-size: 10px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  gap: 3px;
  font-family: var(--font-body);
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav-btn span { line-height: 1; }
.mobile-nav-btn:active { background: rgba(255,255,255,0.1); color: var(--white); }
.mobile-nav-btn.primary { background: var(--rust); color: var(--white); }
.mobile-nav-btn.primary:active { background: #a83d18; }

/* Only show on mobile */
@media (max-width: 900px) {
  body { padding-bottom: 62px; }
  .mobile-nav { display: block; }
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--deep-blue) 40%, var(--ocean) 100%);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-badge {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  color: var(--white);
  line-height: 1.0;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-family: var(--font-serif);
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.7); font-size: 14px; }
.trust-item::before { content: ''; color: var(--teal); font-weight: 700; font-size: 16px; }

/* ---- SERVICE CARDS ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { display: none; }
.service-card h3 { font-family: var(--font-display); font-size: 22px; letter-spacing: 0.5px; margin-bottom: 10px; color: var(--navy); }
.service-card p { font-size: 14px; color: #4a5568; line-height: 1.6; margin-bottom: 16px; }
.service-card a { color: var(--sea); font-weight: 600; font-size: 14px; }

/* ---- IMAGE GRID ---- */
.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.image-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.image-placeholder {
  width: 100%;
  height: 220px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--deep-blue), var(--ocean));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  gap: 8px;
}
.image-placeholder .ph-icon { display: none; }

/* ---- SECTION HEADERS ---- */
.section-header { margin-bottom: 48px; }
.section-tag {
  display: inline-block;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.section--navy .section-title,
.section--deep .section-title { color: var(--white); }
.section-sub {
  font-family: var(--font-serif);
  font-size: 17px;
  color: #4a5568;
  max-width: 640px;
  line-height: 1.7;
}
.section--navy .section-sub,
.section--deep .section-sub { color: rgba(255,255,255,0.7); }

/* ---- CONTENT LAYOUT ---- */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }

.content-body h2 { font-family: var(--font-display); font-size: 36px; color: var(--navy); margin-bottom: 16px; letter-spacing: 0.5px; }
.content-body h3 { font-family: var(--font-display); font-size: 26px; color: var(--navy); margin: 28px 0 12px; }
.content-body p { margin-bottom: 16px; color: #3d4f63; line-height: 1.75; }
.content-body ul { margin: 12px 0 20px 20px; }
.content-body ul li { margin-bottom: 8px; color: #3d4f63; }
.content-body ul li::marker { color: var(--teal); }

/* ---- STEPS / PROCESS ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.step-item { text-align: center; }
.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 28px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step-item h4 { font-family: var(--font-display); font-size: 20px; margin-bottom: 8px; letter-spacing: 0.5px; }
.step-item p { font-size: 14px; color: #4a5568; }

/* ---- BOATS WE HANDLE ---- */
.boats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.boat-chip {
  background: var(--deep-blue);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s;
}
.boat-chip .boat-emoji { display: none; }
.boat-chip:hover { background: var(--sea); }

/* ---- STATS ---- */
.stats-bar {
  background: var(--teal);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item {}
.stat-num { font-family: var(--font-display); font-size: 52px; color: var(--white); line-height: 1; }
.stat-label { color: rgba(255,255,255,0.85); font-size: 14px; margin-top: 6px; }

/* ---- REVIEWS ---- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
}
.review-stars { color: var(--gold); font-size: 18px; margin-bottom: 12px; }
.review-text { font-family: var(--font-serif); font-style: italic; color: #4a5568; margin-bottom: 16px; font-size: 15px; line-height: 1.7; }
.reviewer { font-weight: 600; font-size: 14px; color: var(--navy); }
.reviewer-loc { font-size: 13px; color: var(--mid-grey); }

/* ---- FAQ ---- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid #e2e8f0;
  padding: 20px 0;
}
.faq-q {
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q::after { content: '+'; font-size: 22px; color: var(--teal); flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { display: none; padding-top: 14px; color: #4a5568; line-height: 1.7; font-size: 15px; }
.faq-item.open .faq-a { display: block; }

/* ---- ESTIMATE TOOL ---- */
.estimate-box {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-md);
  max-width: 700px;
  margin: 0 auto;
}
.estimate-box h3 { font-family: var(--font-display); font-size: 28px; color: var(--navy); margin-bottom: 8px; }
.estimate-box p { color: #4a5568; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--navy); text-transform: uppercase; letter-spacing: 0.5px; }
.form-group select, .form-group input {
  padding: 12px 14px;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.2s;
  background: var(--white);
}
.form-group select:focus, .form-group input:focus { outline: none; border-color: var(--teal); }
.estimate-result {
  background: var(--light-grey);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  margin-top: 20px;
  display: none;
}
.estimate-result.show { display: block; }
.estimate-price { font-family: var(--font-display); font-size: 48px; color: var(--teal); }
.estimate-note { font-size: 13px; color: var(--mid-grey); margin-top: 8px; }

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 { font-family: var(--font-display); font-size: 26px; color: var(--navy); margin-bottom: 8px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e2e8f0;
}
.contact-detail:last-child { border-bottom: none; }
.contact-icon {
  width: 44px; height: 44px;
  background: var(--light-grey);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  margin-bottom: 14px;
  transition: border-color 0.2s;
}
.contact-form textarea { height: 130px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--teal); }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--rust) 0%, #9c3614 100%);
  padding: 60px 0;
  text-align: center;
}
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px); color: var(--white); margin-bottom: 12px; letter-spacing: 0.5px; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 17px; margin-bottom: 28px; }
.cta-banner .btn { margin: 0 8px; }

/* ---- PARTNERS ---- */
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}
.partner-badge {
  background: var(--white);
  border: 2px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 14px 24px;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s;
}
.partner-badge:hover { border-color: var(--teal); }

/* ---- LOCATION MAP ---- */
.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid #e2e8f0;
  margin: 16px 0;
}
.location-map iframe { display: block; }

/* ---- BREADCRUMB ---- */
.breadcrumb {
  background: var(--light-grey);
  padding: 12px 0;
  font-size: 13px;
  color: var(--mid-grey);
  border-bottom: 1px solid #e2e8f0;
}
.breadcrumb a { color: var(--sea); }
.breadcrumb span { margin: 0 6px; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--deep-blue) 60%, var(--ocean) 100%);
  padding: 70px 0 60px;
  text-align: center;
}
.page-hero h1 { font-family: var(--font-display); font-size: clamp(36px, 5vw, 60px); color: var(--white); letter-spacing: 1px; margin-bottom: 14px; }
.page-hero p { font-family: var(--font-serif); font-size: 18px; color: rgba(255,255,255,0.8); max-width: 620px; margin: 0 auto 24px; }

/* ---- SIDEBAR LAYOUT ---- */
.sidebar-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-widget { background: var(--white); border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.06); }
.sidebar-widget h4 { font-family: var(--font-display); font-size: 20px; color: var(--navy); margin-bottom: 14px; }
.sidebar-widget ul { list-style: none; }
.sidebar-widget ul li { padding: 7px 0; border-bottom: 1px solid #f0f0f0; font-size: 14px; }
.sidebar-widget ul li:last-child { border-bottom: none; }
.sidebar-widget ul li a { color: var(--sea); }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.footer-col p { font-size: 14px; line-height: 1.7; margin-bottom: 12px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--teal); }
.backlinks-section {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.backlinks-section p { font-size: 12px; color: rgba(255,255,255,0.3); margin-bottom: 8px; }
.backlinks { display: flex; flex-wrap: wrap; gap: 12px; }
.backlinks a { color: rgba(255,255,255,0.3); font-size: 12px; }
.backlinks a:hover { color: rgba(255,255,255,0.5); }

/* ---- PRIVACY / LEGAL ---- */
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 { font-family: var(--font-display); font-size: 28px; color: var(--navy); margin: 32px 0 12px; }
.legal-content h3 { font-family: var(--font-body); font-size: 18px; font-weight: 700; color: var(--navy); margin: 24px 0 8px; }
.legal-content p, .legal-content li { font-size: 15px; line-height: 1.75; color: #3d4f63; margin-bottom: 12px; }
.legal-content ul { margin-left: 20px; margin-bottom: 16px; }

/* ---- SITEMAP ---- */
.sitemap-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 32px; }
.sitemap-section h3 { font-family: var(--font-display); font-size: 20px; color: var(--navy); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--teal); }
.sitemap-section ul { list-style: none; }
.sitemap-section ul li { padding: 5px 0; font-size: 14px; }
.sitemap-section ul li a { color: var(--sea); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .main-nav { display: none; }

  .mobile-nav { display: block; }
  .header-cta .tel-badge { font-size: 13px; padding: 6px 12px; }
  .content-grid { grid-template-columns: 1fr; }
  .content-grid.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .sidebar-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .image-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .estimate-box { padding: 24px 16px; }
}
