@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

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

:root {
  --navy:        #002147;
  --navy-dark:   #001025;
  --navy-mid:    #002a5e;
  --orange:      #FF7F00;
  --orange-dark: #e06e00;
  --light-bg:    #f7f9fc;
  --text:        #1a1f2e;
  --muted:       #5a6478;
  --border:      #e2e8f0;
  --shadow-sm:   0 2px 10px rgba(0,33,71,0.07);
  --shadow-md:   0 8px 30px rgba(0,33,71,0.13);
  --shadow-lg:   0 24px 64px rgba(0,0,0,0.2);
  --radius:      10px;
  --radius-lg:   16px;
}

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── NAV ──────────────────────────────────────────────────── */
nav {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 74px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 24px rgba(0,0,0,0.22);
}
.logo { display: flex; align-items: center; gap: 0; text-decoration: none; }
.logo img { height: 52px; width: auto; display: block; }
.logo-badge {
  background: var(--orange);
  color: transparent;
  font-size: 0;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M3,17 L16,4 L29,17 L26,17 L26,29 L6,29 L6,17 Z' fill='white'/%3E%3Crect x='12' y='20' width='8' height='9' rx='1.5' fill='%23FF7F00'/%3E%3Crect x='6' y='19' width='7' height='7' rx='1' fill='%23FF7F00'/%3E%3Crect x='19' y='19' width='7' height='7' rx='1' fill='%23FF7F00'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px 30px;
  box-shadow: 0 4px 14px rgba(255,127,0,0.35);
}
.logo-text {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.3px;
}
.logo-text span {
  display: block;
  color: rgba(255,165,50,0.9);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
}
nav ul { list-style: none; display: flex; gap: 28px; align-items: center; }
nav ul a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  letter-spacing: 0.1px;
}
nav ul a:hover, nav ul a.active { color: var(--orange); }

/* Services dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 10px; opacity: 0.7; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #001830;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 16px 0 10px;
  min-width: 220px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  z-index: 999;
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgba(255,255,255,0.08);
}
.dropdown-menu a {
  display: block;
  padding: 9px 20px;
  color: rgba(255,255,255,0.78) !important;
  font-size: 13px;
  white-space: nowrap;
  border-radius: 0;
}
.dropdown-menu a:hover { color: var(--orange) !important; background: rgba(255,127,0,0.07); }
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { display: block; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-cta {
  background: var(--orange);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(255,127,0,0.32);
  letter-spacing: 0.1px;
}
.nav-cta:hover {
  background: var(--orange-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255,127,0,0.42);
}

/* 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); }

/* ── HERO IMAGE BLOCK ────────────────────────────────────── */
.hero-image-block {
  flex-shrink: 0;
  width: 490px;
  height: 350px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 28px 72px rgba(0,0,0,0.48);
  border: 3px solid rgba(255,127,0,0.38);
  position: relative;
  z-index: 1;
}
.hero-image-block img,
.hero-image-block video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-image-placeholder {
  flex-shrink: 0;
  background: rgba(255,127,0,0.07);
  border: 2px dashed rgba(255,127,0,0.35);
  border-radius: var(--radius-lg);
  width: 380px;
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.35);
  font-size: 14px;
  text-align: center;
  gap: 12px;
}

/* ── HOMEPAGE HERO ────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #001025 0%, #002147 45%, #002a5e 70%, #001a3d 100%);
  color: #fff;
  padding: 100px 48px 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  min-height: 580px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 72% 50%, rgba(255,127,0,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(0,42,94,0.7) 0%, transparent 45%);
  pointer-events: none;
}
.hero-content { max-width: 600px; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,127,0,0.12);
  border: 1px solid rgba(255,127,0,0.32);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 26px;
}
.hero h1 {
  font-size: 54px;
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 22px;
  letter-spacing: -1.5px;
}
.hero h1 span { color: var(--orange); }
.hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.78;
  margin-bottom: 40px;
  font-weight: 400;
  max-width: 520px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--orange);
  color: #fff;
  padding: 15px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  display: inline-block;
  box-shadow: 0 4px 18px rgba(255,127,0,0.38);
  letter-spacing: 0.1px;
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(255,127,0,0.48);
}
.btn-outline {
  border: 2px solid rgba(255,255,255,0.28);
  color: #fff;
  padding: 15px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); background: rgba(255,127,0,0.06); }
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-num { font-size: 32px; font-weight: 900; color: var(--orange); letter-spacing: -0.5px; line-height: 1; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 5px; font-weight: 500; letter-spacing: 0.2px; }

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #001025 0%, #002147 45%, #002a5e 70%, #001a3d 100%);
  color: #fff;
  padding: 72px 48px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 110%, rgba(255,127,0,0.07) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,127,0,0.12);
  border: 1px solid rgba(255,127,0,0.32);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-size: 46px;
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 18px;
  letter-spacing: -1px;
  position: relative;
  z-index: 1;
}
.page-hero h1 span { color: var(--orange); }
.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.68);
  line-height: 1.78;
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.breadcrumb {
  font-size: 12.5px;
  color: rgba(255,255,255,0.38);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  font-weight: 500;
}
.breadcrumb a { color: rgba(255,255,255,0.38); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { margin: 0 8px; }

/* ── TRUST BAR ───────────────────────────────────────────── */
.trust-bar {
  background: var(--orange);
  color: #fff;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  overflow: hidden;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  padding: 15px 30px;
  position: relative;
  letter-spacing: 0.2px;
}
.trust-item + .trust-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 16px;
  width: 1px;
  background: rgba(255,255,255,0.3);
}
.trust-item::after { content: '✓'; font-size: 13px; font-weight: 900; order: -1; }

/* ── SECTIONS ────────────────────────────────────────────── */
.section { padding: 88px 48px; }
.section-alt { background: var(--light-bg); }
.section-label {
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: 38px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: -0.8px;
  line-height: 1.15;
}
.section-subtitle {
  font-size: 16px;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.78;
  margin-bottom: 52px;
}

/* ── SERVICES GRID ───────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 30px 30px;
  border: 1px solid var(--border);
  border-top: 3px solid transparent;
  transition: box-shadow 0.25s, border-top-color 0.25s, transform 0.22s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  border-top-color: var(--orange);
  transform: translateY(-4px);
}
.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,127,0,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 26px;
  transition: background 0.2s;
}
.service-card:hover .service-icon { background: rgba(255,127,0,0.18); }
.service-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.78; }
.card-link {
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s;
}
.service-card:hover .card-link { gap: 9px; }

/* ── WHY US ──────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-item { display: flex; gap: 18px; align-items: flex-start; }
.why-check {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,127,0,0.1);
  border: 1.5px solid rgba(255,127,0,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
  font-weight: 900;
  font-size: 15px;
}
.why-item h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 5px; letter-spacing: -0.1px; }
.why-item p { font-size: 14px; color: var(--muted); line-height: 1.72; }
.coverage-box {
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  color: #fff;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,127,0,0.12);
}
.coverage-box h3 { font-size: 24px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.3px; }
.coverage-box .sub { color: rgba(255,255,255,0.52); font-size: 14px; margin-bottom: 30px; }
.coverage-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  background: rgba(255,127,0,0.12);
  border: 1px solid rgba(255,127,0,0.28);
  color: #FFa840;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  display: inline-block;
}
a.tag:hover { background: rgba(255,127,0,0.22); border-color: rgba(255,127,0,0.5); }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 8px;
  right: 22px;
  font-size: 96px;
  color: rgba(255,127,0,0.07);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.stars { color: var(--orange); font-size: 14px; margin-bottom: 16px; letter-spacing: 3px; }
.testimonial-card p {
  font-size: 14.5px;
  color: #3d4560;
  line-height: 1.78;
  font-style: italic;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.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: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #001a3d 100%);
  color: #fff;
  text-align: center;
  padding: 84px 48px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,127,0,0.09) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band h2 {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.8px;
  position: relative;
  z-index: 1;
}
.cta-band p {
  color: rgba(255,255,255,0.65);
  font-size: 17px;
  margin-bottom: 42px;
  position: relative;
  z-index: 1;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}
.cta-band .tel {
  font-size: 36px;
  font-weight: 900;
  color: var(--orange);
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
  letter-spacing: -0.8px;
  position: relative;
  z-index: 1;
  transition: opacity 0.2s;
}
.cta-band .tel:hover { opacity: 0.82; }
.cta-email { color: rgba(255,255,255,0.55); font-size: 15px; position: relative; z-index: 1; }
.cta-email a { color: rgba(255,255,255,0.82); text-decoration: none; font-weight: 500; }
.cta-email a:hover { color: var(--orange); }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: #000d1c;
  color: rgba(255,255,255,0.42);
  text-align: center;
  padding: 36px 48px;
  font-size: 13px;
  line-height: 2.1;
  border-top: 3px solid rgba(255,127,0,0.18);
}
footer strong { color: rgba(255,255,255,0.82); font-size: 14px; }
footer a { color: rgba(255,255,255,0.42); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--orange); }

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

/* ── COOKIE BANNER ───────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #000d1c;
  color: rgba(255,255,255,0.78);
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 9999;
  font-size: 13.5px;
  flex-wrap: wrap;
  border-top: 2px solid rgba(255,127,0,0.3);
}
.cookie-banner p { margin: 0; flex: 1; min-width: 200px; line-height: 1.65; }
.cookie-banner a { color: var(--orange); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 10px; }
.cookie-accept {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 9px 24px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}
.cookie-accept:hover { background: var(--orange-dark); }
.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 9px 22px;
  border-radius: 7px;
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s, color 0.2s;
}
.cookie-decline:hover { border-color: rgba(255,255,255,0.45); color: rgba(255,255,255,0.75); }

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; 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: 48px;
  height: 48px;
  background: rgba(255,127,0,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  border: 1px solid rgba(255,127,0,0.15);
}
.contact-detail h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.contact-detail p { font-size: 14px; color: var(--muted); line-height: 1.65; margin: 0; }
.contact-detail a { font-size: 14px; color: var(--muted); text-decoration: none; }
.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: 8px 0; font-size: 14px; color: var(--muted); }
.hours-table td:first-child { font-weight: 600; color: var(--navy); width: 140px; }
.open-badge {
  display: inline-block;
  background: #e6f9ed;
  color: #1a7a3a;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 10px;
  margin-left: 8px;
  vertical-align: middle;
}
.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.contact-form h3 { font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 28px; letter-spacing: -0.3px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,127,0,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 15px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  font-family: inherit;
  box-shadow: 0 4px 16px rgba(255,127,0,0.32);
  letter-spacing: 0.1px;
}
.form-submit:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 6px 22px rgba(255,127,0,0.42); }
.form-note { font-size: 12px; color: var(--muted); margin-top: 12px; text-align: center; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.map-wrap iframe { display: block; }

/* ── GALLERY PAGE ────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  transition: box-shadow 0.25s, transform 0.22s;
  box-shadow: var(--shadow-sm);
}
.gallery-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.gallery-item img { width: 100%; height: 230px; object-fit: cover; display: block; }
.gallery-caption { padding: 14px 18px; font-size: 13px; color: var(--muted); font-weight: 500; background: #fff; border-top: 1px solid var(--border); }
.gallery-placeholder {
  width: 100%; height: 230px;
  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;
}
.gallery-placeholder .ph-icon { font-size: 32px; }

/* ── AREAS PAGE ──────────────────────────────────────────── */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.area-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  border: 1px solid var(--border);
  border-top: 3px solid transparent;
  transition: box-shadow 0.25s, border-top-color 0.25s, transform 0.22s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.area-card:hover { box-shadow: var(--shadow-md); border-top-color: var(--orange); transform: translateY(-3px); }
.area-badge {
  display: inline-block;
  background: rgba(255,127,0,0.1);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.area-card h3 { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 10px; letter-spacing: -0.2px; }
.area-card p { font-size: 14px; color: var(--muted); line-height: 1.72; }

/* ── SERVICE DETAIL PAGES ────────────────────────────────── */
.service-detail-grid { display: grid; grid-template-columns: 1fr 300px; gap: 64px; align-items: start; }
.service-body h2 { font-size: 26px; font-weight: 800; color: var(--navy); margin: 40px 0 14px; letter-spacing: -0.3px; }
.service-body h2:first-child { margin-top: 0; }
.service-body p { font-size: 15px; color: var(--muted); line-height: 1.88; margin-bottom: 18px; }
.service-body ul { margin: 0 0 24px 0; padding-left: 0; list-style: none; }
.service-body ul li {
  font-size: 15px;
  color: var(--muted);
  padding: 10px 0 10px 30px;
  position: relative;
  border-bottom: 1px solid #edf0f5;
  line-height: 1.65;
}
.service-body ul li:last-child { border-bottom: none; }
.service-body ul li::before { content: '✓'; position: absolute; left: 0; color: var(--orange); font-weight: 800; font-size: 14px; }
.service-sidebar {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  color: #fff;
  position: sticky;
  top: 94px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,127,0,0.1);
}
.service-sidebar h3 { font-size: 17px; font-weight: 800; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.sidebar-links { list-style: none; margin-bottom: 28px; }
.sidebar-links li a {
  color: rgba(255,255,255,0.62);
  text-decoration: none;
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: block;
  transition: color 0.2s;
  font-weight: 500;
}
.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: 700; }
.sidebar-cta {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(255,127,0,0.35);
}
.sidebar-cta:hover { background: var(--orange-dark); transform: translateY(-1px); }
.sidebar-tel { text-align: center; margin-top: 14px; font-size: 13px; color: rgba(255,255,255,0.48); }
.sidebar-tel a { color: var(--orange); font-weight: 700; text-decoration: none; display: block; font-size: 16px; margin-top: 5px; }

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.value-card {
  background: linear-gradient(150deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255,127,0,0.1);
}
.value-icon { font-size: 38px; margin-bottom: 16px; }
.value-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 9px; }
.value-card p { font-size: 13px; color: rgba(255,255,255,0.58); line-height: 1.65; }
.accreditations { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }
.accred-badge {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 26px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  min-width: 140px;
  box-shadow: var(--shadow-sm);
}
.accred-badge .icon { font-size: 28px; display: block; margin-bottom: 8px; }
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-stat-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,127,0,0.1);
}
.about-stat .num { font-size: 46px; font-weight: 900; color: var(--orange); letter-spacing: -1.5px; line-height: 1; }
.about-stat .lbl { font-size: 13px; color: rgba(255,255,255,0.52); margin-top: 7px; line-height: 1.45; font-weight: 500; }

/* ── PRIVACY POLICY ──────────────────────────────────────── */
.prose { max-width: 800px; margin: 0 auto; }
.prose h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin: 44px 0 16px;
  padding-top: 44px;
  border-top: 1px solid var(--border);
  letter-spacing: -0.2px;
}
.prose h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.prose p { font-size: 15px; color: var(--muted); line-height: 1.88; margin-bottom: 16px; }
.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: 14px 18px; background: var(--light-bg); border-radius: 8px; border-left: 3px solid var(--orange); }

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

/* ── INFO BANNER ─────────────────────────────────────────── */
.info-banner {
  background: rgba(255,127,0,0.07);
  border: 1px solid rgba(255,127,0,0.18);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
}
.info-banner .icon { font-size: 24px; flex-shrink: 0; }
.info-banner p { font-size: 14px; color: var(--muted); line-height: 1.65; 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; }
  .hero { padding: 80px 40px 72px; }
  .hero-image-block { width: 100%; height: 320px; }
}

@media (max-width: 768px) {
  /* ── Nav ── */
  .hamburger { display: flex; }
  nav {
    padding: 0 20px;
    height: 66px;
  }
  nav ul {
    display: none;
    position: absolute;
    top: 66px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 8px 20px 24px;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 16px 40px rgba(0,0,0,0.45);
    z-index: 200;
  }
  nav ul.open { display: flex; }
  nav ul li a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    font-size: 15px;
    font-weight: 500;
  }
  nav ul li:last-child a { border-bottom: none; }
  .logo img { height: 40px; }
  .nav-cta { padding: 9px 18px; font-size: 13px; }
  /* Dropdown on mobile — collapsed by default, tap Services to expand */
  .nav-dropdown > a::after { content: ' ▾'; font-size: 11px; opacity: 0.8; }
  .nav-dropdown > a.mobile-open::after { content: ' ▴'; }
  /* Override desktop hover/focus-within so only JS class controls visibility */
  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu { display: none; }
  .dropdown-menu {
    display: none;
    position: static;
    transform: none;
    background: rgba(255,255,255,0.04);
    border: none;
    border-radius: 8px;
    box-shadow: none;
    padding: 4px 0 8px 16px;
    min-width: unset;
    margin-bottom: 4px;
  }
  .dropdown-menu.mobile-open { display: block !important; }
  .dropdown-menu::before { display: none; }
  .dropdown-menu a { font-size: 14px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .dropdown-menu li:last-child a { border-bottom: none; }

  /* ── Hero ── */
  .hero {
    flex-direction: column-reverse;
    padding: 40px 20px 52px;
    gap: 28px;
    min-height: unset;
    text-align: center;
  }
  .hero-content { max-width: 100%; }
  .hero-badge { font-size: 10px; letter-spacing: 1.5px; }
  .hero h1 { font-size: 36px; letter-spacing: -0.8px; }
  .hero p { font-size: 15.5px; margin-bottom: 30px; }
  .hero-buttons { justify-content: center; }
  .hero-image-block { width: 100%; height: 230px; border-radius: 12px; }
  .hero-stats {
    justify-content: center;
    gap: 0;
    margin-top: 36px;
    padding-top: 28px;
  }
  .hero-stats > div {
    flex: 1;
    text-align: center;
    padding: 0 10px;
    border-right: 1px solid rgba(255,255,255,0.1);
  }
  .hero-stats > div:last-child { border-right: none; }
  .stat-num { font-size: 26px; }
  .stat-label { font-size: 11px; }

  /* ── Trust bar ── */
  .trust-bar {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .trust-bar::-webkit-scrollbar { display: none; }
  .trust-item {
    white-space: nowrap;
    padding: 13px 20px;
    font-size: 12.5px;
    flex-shrink: 0;
  }

  /* ── Sections ── */
  .section { padding: 56px 20px; }
  .section-title { font-size: 28px; letter-spacing: -0.5px; }
  .section-subtitle { font-size: 15px; margin-bottom: 36px; }

  /* ── Page hero ── */
  .page-hero { padding: 48px 20px 40px; }
  .page-hero h1 { font-size: 30px; letter-spacing: -0.5px; }
  .page-hero p { font-size: 15px; }

  /* ── Services grid ── */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { padding: 28px 24px; }
  .service-card:hover { transform: none; }

  /* ── Why us ── */
  .coverage-box { padding: 32px 24px; }

  /* ── Testimonials ── */
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonial-card { padding: 26px 22px; }

  /* ── CTA band ── */
  .cta-band { padding: 56px 20px; }
  .cta-band h2 { font-size: 26px; letter-spacing: -0.4px; }
  .cta-band p { font-size: 15px; margin-bottom: 30px; }
  .cta-band .tel { font-size: 30px; }

  /* ── Contact ── */
  .contact-form { padding: 28px 20px; }
  .contact-form h3 { font-size: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; } /* prevent iOS zoom */

  /* ── About ── */
  .about-stat-box { grid-template-columns: 1fr 1fr; padding: 32px 24px; gap: 24px; }
  .about-stat .num { font-size: 36px; }
  .values-grid { grid-template-columns: 1fr 1fr; }

  /* ── Gallery ── */
  .gallery-grid { grid-template-columns: 1fr; gap: 16px; }
  .gallery-item:hover { transform: none; }

  /* ── Areas ── */
  .areas-grid { grid-template-columns: 1fr; gap: 14px; }
  .area-card:hover { transform: none; }

  /* ── Service pages ── */
  .service-body h2 { font-size: 22px; }

  /* ── Floating buttons ── */
  .float-quote {
    bottom: 20px;
    left: 16px;
    padding: 11px 18px;
    font-size: 13px;
  }
  .scroll-top {
    bottom: 20px;
    right: 16px;
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  /* ── Cookie banner ── */
  .cookie-banner {
    padding: 16px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .cookie-buttons { width: 100%; }
  .cookie-accept, .cookie-decline { flex: 1; text-align: center; }

  /* ── Footer ── */
  footer { padding: 28px 20px; font-size: 12.5px; line-height: 2; }
}

/* ── Cost Guide Layout ── */
.cost-guide-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}
.cost-guide-main { min-width: 0; }
.cost-highlight-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  background: var(--navy);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 36px;
}
.cost-highlight-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  padding: 12px;
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
}
.cost-label { font-size: 12px; color: rgba(255,255,255,0.7); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.cost-value { font-size: 20px; font-weight: 900; color: var(--orange); }

@media (max-width: 900px) {
  .cost-guide-layout { grid-template-columns: 1fr; }
}

/* ── Extra small (iPhone SE etc) ── */
@media (max-width: 390px) {
  .hero h1 { font-size: 30px; }
  .btn-primary, .btn-outline { padding: 13px 22px; font-size: 14px; }
  .values-grid { grid-template-columns: 1fr; }
  .about-stat-box { grid-template-columns: 1fr 1fr; }
}
