/* ============================================================
   A1 Rooflines — Global Stylesheet
   Brand: Navy #002147 | Orange #FF7F00
   ============================================================ */

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

:root {
  --navy: #002147;
  --orange: #FF7F00;
  --light-bg: #f5f7fa;
  --text: #222;
  --muted: #555;
}

body { font-family: 'Segoe UI', Arial, sans-serif; color: var(--text); }

/* ── NAV ──────────────────────────────────────────────────── */
nav {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 70px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-badge {
  background: var(--orange);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -1px;
  flex-shrink: 0;
}
.logo-text { color: #fff; font-size: 18px; font-weight: 700; line-height: 1.2; }
.logo-text span { display: block; color: var(--orange); font-size: 11px; font-weight: 400; letter-spacing: 1px; text-transform: uppercase; }
nav ul { list-style: none; display: flex; gap: 28px; }
nav ul a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
nav ul a:hover, nav ul a.active { color: var(--orange); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-cta {
  background: var(--orange);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: #e06e00 !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HOMEPAGE HERO ────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #001530 0%, #002a5e 60%, #001530 100%);
  color: #fff;
  padding: 90px 40px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 500px;
}
.hero-content { max-width: 580px; }
.hero-badge {
  display: inline-block;
  background: rgba(255,127,0,0.15);
  border: 1px solid rgba(255,127,0,0.4);
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero h1 { font-size: 46px; font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.hero h1 span { color: var(--orange); }
.hero p { font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 36px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--orange);
  color: #fff;
  padding: 14px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: background 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: #e06e00; }
.btn-outline {
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
  padding: 14px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 50px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.stat-num { font-size: 28px; font-weight: 800; color: var(--orange); }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 2px; }
.hero-image-placeholder {
  flex-shrink: 0;
  background: rgba(255,127,0,0.08);
  border: 2px dashed rgba(255,127,0,0.4);
  border-radius: 12px;
  width: 380px;
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  text-align: center;
  gap: 12px;
}
.hero-image-placeholder svg { opacity: 0.4; }

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #001530 0%, #002a5e 60%, #001530 100%);
  color: #fff;
  padding: 64px 40px 56px;
  text-align: center;
}
.page-hero .hero-badge {
  display: inline-block;
  background: rgba(255,127,0,0.15);
  border: 1px solid rgba(255,127,0,0.4);
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.page-hero h1 { font-size: 40px; font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.page-hero h1 span { color: var(--orange); }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.7; max-width: 620px; margin: 0 auto; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { margin: 0 6px; }

/* ── TRUST BAR ───────────────────────────────────────────── */
.trust-bar {
  background: var(--orange);
  color: #fff;
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 16px 40px;
  flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; }
.trust-item::before { content: '✓'; font-size: 16px; }

/* ── SECTIONS ────────────────────────────────────────────── */
.section { padding: 80px 40px; }
.section-alt { background: var(--light-bg); }
.section-label {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title { font-size: 34px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.section-subtitle { font-size: 16px; color: var(--muted); max-width: 560px; line-height: 1.7; margin-bottom: 48px; }

/* ── SERVICES GRID ───────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 10px;
  padding: 32px 28px;
  border: 1px solid #e4e8ef;
  transition: box-shadow 0.2s, border-color 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-card:hover { box-shadow: 0 8px 28px rgba(0,33,71,0.1); border-color: var(--orange); }
.service-icon {
  width: 54px;
  height: 54px;
  background: rgba(255,127,0,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 26px;
}
.service-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.card-link { color: var(--orange); font-size: 13px; font-weight: 600; margin-top: 14px; display: block; }

/* ── WHY US ──────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 22px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-check {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,127,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
  font-weight: 800;
  font-size: 16px;
}
.why-item h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.why-item p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.coverage-box {
  background: var(--navy);
  border-radius: 12px;
  padding: 40px 36px;
  color: #fff;
}
.coverage-box h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.coverage-box .sub { color: rgba(255,255,255,0.6); font-size: 14px; margin-bottom: 28px; }
.coverage-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  background: rgba(255,127,0,0.15);
  border: 1px solid rgba(255,127,0,0.35);
  color: #FF9F40;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
}

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: 10px;
  padding: 28px 26px;
  border: 1px solid #e4e8ef;
}
.stars { color: var(--orange); font-size: 16px; margin-bottom: 14px; }
.testimonial-card p { font-size: 14px; color: var(--muted); line-height: 1.7; font-style: italic; margin-bottom: 18px; }
.reviewer { font-size: 14px; font-weight: 700; color: var(--navy); }
.reviewer span { font-weight: 400; color: var(--muted); font-size: 13px; }

/* ── CTA BAND ────────────────────────────────────────────── */
.cta-band {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 70px 40px;
}
.cta-band h2 { font-size: 34px; font-weight: 800; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.7); font-size: 16px; margin-bottom: 36px; }
.cta-band .tel { font-size: 30px; font-weight: 800; color: var(--orange); display: block; margin-bottom: 8px; text-decoration: none; }
.cta-band .tel:hover { text-decoration: underline; }
.cta-email { color: rgba(255,255,255,0.7); font-size: 15px; }
.cta-email a { color: #fff; text-decoration: none; }
.cta-email a:hover { text-decoration: underline; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: #001025;
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 28px 40px;
  font-size: 13px;
  line-height: 1.8;
}
footer strong { color: #fff; }
footer a { color: rgba(255,255,255,0.5); text-decoration: none; }
footer a:hover { color: var(--orange); }

/* ── SCROLL TO TOP ───────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 20px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  z-index: 998;
  transition: background 0.2s;
  line-height: 1;
}
.scroll-top:hover { background: #e06e00; }
.scroll-top.visible { display: flex; }

/* ── COOKIE BANNER ───────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #001025;
  color: rgba(255,255,255,0.85);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 9999;
  font-size: 13px;
  flex-wrap: wrap;
  border-top: 2px solid var(--orange);
}
.cookie-banner p { margin: 0; flex: 1; min-width: 200px; }
.cookie-banner a { color: var(--orange); }
.cookie-buttons { display: flex; gap: 10px; }
.cookie-accept {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}
.cookie-accept:hover { background: #e06e00; }
.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 20px;
  border-radius: 5px;
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
}

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 46px;
  height: 46px;
  background: rgba(255,127,0,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.contact-detail h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.contact-detail p { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0; }
.contact-detail a { font-size: 14px; color: var(--muted); text-decoration: none; line-height: 1.6; }
.contact-detail a:hover { color: var(--orange); }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 4px; }
.hours-table tr { border-bottom: 1px solid #edf0f5; }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 7px 0; font-size: 14px; color: var(--muted); }
.hours-table td:first-child { font-weight: 600; color: var(--navy); width: 130px; }
.open-badge {
  display: inline-block;
  background: #e6f9ed;
  color: #1a7a3a;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 8px;
  vertical-align: middle;
}
.contact-form { background: #fff; border-radius: 12px; padding: 40px 36px; border: 1px solid #e4e8ef; }
.contact-form h3 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #d0d7e4;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  transition: border-color 0.2s;
  background: #fff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
  font-family: inherit;
}
.form-submit:hover { background: #e06e00; }
.form-note { font-size: 12px; color: var(--muted); margin-top: 10px; text-align: center; }
.map-wrap { border-radius: 12px; overflow: hidden; border: 1px solid #e4e8ef; }
.map-wrap iframe { display: block; }

/* ── GALLERY PAGE ────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 20px;
}
.gallery-item { border-radius: 10px; overflow: hidden; background: #fff; border: 1px solid #e4e8ef; }
.gallery-item img { width: 100%; height: 220px; object-fit: cover; display: block; }
.gallery-caption { padding: 12px 16px; font-size: 13px; color: var(--muted); font-weight: 500; }
.gallery-placeholder {
  width: 100%;
  height: 220px;
  background: var(--light-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #aab;
  font-size: 13px;
  text-align: center;
  gap: 8px;
  border-bottom: 1px solid #e4e8ef;
}
.gallery-placeholder .ph-icon { font-size: 32px; }

/* ── AREAS PAGE ──────────────────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.area-card {
  background: #fff;
  border-radius: 10px;
  padding: 28px 26px;
  border: 1px solid #e4e8ef;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.area-card:hover { box-shadow: 0 8px 28px rgba(0,33,71,0.1); border-color: var(--orange); }
.area-badge {
  display: inline-block;
  background: rgba(255,127,0,0.1);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.area-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.area-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── SERVICE DETAIL PAGES ────────────────────────────────── */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: start;
}
.service-body h2 { font-size: 26px; font-weight: 800; color: var(--navy); margin: 36px 0 14px; }
.service-body h2:first-child { margin-top: 0; }
.service-body p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.service-body ul { margin: 0 0 20px 0; padding-left: 0; list-style: none; }
.service-body ul li {
  font-size: 15px;
  color: var(--muted);
  padding: 8px 0 8px 28px;
  position: relative;
  border-bottom: 1px solid #edf0f5;
  line-height: 1.6;
}
.service-body ul li:last-child { border-bottom: none; }
.service-body ul li::before { content: '✓'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
.service-sidebar {
  background: var(--navy);
  border-radius: 12px;
  padding: 32px 28px;
  color: #fff;
  position: sticky;
  top: 90px;
}
.service-sidebar h3 { font-size: 17px; font-weight: 800; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.15); }
.sidebar-links { list-style: none; margin-bottom: 28px; }
.sidebar-links li a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: block;
  transition: color 0.2s;
}
.sidebar-links li:last-child a { border-bottom: none; }
.sidebar-links li a:hover { color: var(--orange); }
.sidebar-links li a.active { color: var(--orange); font-weight: 600; }
.sidebar-cta {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 13px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: background 0.2s;
}
.sidebar-cta:hover { background: #e06e00; }
.sidebar-tel { text-align: center; margin-top: 14px; font-size: 13px; color: rgba(255,255,255,0.55); }
.sidebar-tel a { color: var(--orange); font-weight: 700; text-decoration: none; display: block; font-size: 16px; margin-top: 4px; }

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.value-card {
  background: var(--navy);
  border-radius: 10px;
  padding: 28px 24px;
  color: #fff;
  text-align: center;
}
.value-icon { font-size: 36px; margin-bottom: 14px; }
.value-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.value-card p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6; }
.accreditations { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }
.accred-badge {
  background: #fff;
  border: 2px solid #e4e8ef;
  border-radius: 10px;
  padding: 16px 24px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  min-width: 130px;
}
.accred-badge .icon { font-size: 28px; display: block; margin-bottom: 6px; }
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-stat-box {
  background: var(--navy);
  border-radius: 12px;
  padding: 40px 36px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.about-stat .num { font-size: 40px; font-weight: 800; color: var(--orange); }
.about-stat .lbl { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; line-height: 1.4; }

/* ── PRIVACY POLICY ──────────────────────────────────────── */
.prose { max-width: 800px; margin: 0 auto; }
.prose h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin: 40px 0 14px;
  padding-top: 40px;
  border-top: 1px solid #e4e8ef;
}
.prose h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.prose p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.prose ul { margin: 0 0 16px 22px; }
.prose ul li { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 6px; }
.prose a { color: var(--orange); }
.prose strong { color: var(--text); }
.policy-updated { font-size: 13px; color: var(--muted); margin-bottom: 40px; padding: 12px 16px; background: var(--light-bg); border-radius: 6px; border-left: 3px solid var(--orange); }

/* ── FLOATING QUOTE BUTTON ───────────────────────────────── */
.float-quote {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: var(--navy);
  color: #fff;
  border-radius: 50px;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: none;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 18px rgba(0,33,71,0.35);
  z-index: 997;
  transition: background 0.2s, transform 0.2s;
  border: 2px solid rgba(255,127,0,0.4);
}
.float-quote:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-2px); }
.float-quote.visible { display: flex; }

/* ── INFO BANNER (optional use) ──────────────────────────── */
.info-banner {
  background: rgba(255,127,0,0.08);
  border: 1px solid rgba(255,127,0,0.25);
  border-radius: 10px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.info-banner .icon { font-size: 24px; flex-shrink: 0; }
.info-banner p { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0; }
.info-banner strong { color: var(--navy); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .about-intro-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  nav ul {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 12px 24px 20px;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
  nav ul.open { display: flex; }
  nav ul li a { display: block; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 15px; }
  nav ul li:last-child a { border-bottom: none; }
  nav { padding: 0 20px; }
  .hero { flex-direction: column; padding: 60px 24px; }
  .hero h1 { font-size: 32px; }
  .hero-image-placeholder { width: 100%; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .page-hero { padding: 48px 24px 40px; }
  .page-hero h1 { font-size: 30px; }
  .section { padding: 56px 24px; }
  .section-title { font-size: 28px; }
  .trust-bar { gap: 24px; padding: 16px 24px; }
  .cta-band { padding: 50px 24px; }
  .cta-band h2 { font-size: 26px; }
  .cta-band .tel { font-size: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .cookie-banner { padding: 16px 24px; flex-direction: column; align-items: flex-start; }
  .about-stat-box { grid-template-columns: 1fr 1fr; }
  footer { padding: 24px 20px; }
}
