*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; scroll-padding-top: 150px; }
  #leave-feedback { scroll-margin-top: 150px; }
  body { font-family: 'Open Sans', sans-serif; background: #F6F7F9; }

  :root {
    --header-bg:      #FCFFD7;
    --nav-text:       #152538;
    --nav-active:     var(--gold-dark);
    --nav-underline:  var(--gold);
    --nav-hover:      var(--gold-dark);
    --btn-bg:         #0A1428;
    --btn-text:       #FCFFD7;
    --btn-hover-bg:   var(--gold);
    --btn-hover-text: #152538;
    --hamburger:      #152538;
    --mobile-menu-bg: #ede1ba;
    --mobile-border:  var(--gold);

    /* Gold system (Option B — three-tone, agreed with Tarek) */
    --gold:           #c69e46; /* main gold — buttons, icons, underlines */
    --gold-dark:      #a97b23; /* hover states, links, text-on-light */
    --gold-pale:      #f7dd89; /* pale backgrounds, subtle accents */
  }

  /* ── Consolidated classes replacing former inline styles ── */
  .stat-card-link { text-decoration: none; color: inherit; }
  .about-photo-img img.img-top { object-position: center top; }
  .service-overview-text { font-family: 'Open Sans', sans-serif; font-size: 16px; color: #555; line-height: 1.8; margin-bottom: 18px; }
  .services-section--flush { padding-top: 0; }
  .legal-content a { color: var(--gold-dark); }
  .legal-updated-footer { margin-top: 24px; }

  .header-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  /* Skip to content link */
  .skip-link {
    position: absolute;
    top: -60px;
    left: 0;
    background: #0A1428;
    color: #FCFFD7;
    padding: 12px 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    z-index: 2000;
    border-radius: 0 0 8px 0;
    transition: top 0.2s ease;
  }
  .skip-link:focus {
    top: 0;
  }

  /* ── FOCUS VISIBLE — header interactive elements ── */
  .nav-links li a:focus-visible,
  .nav-more-btn:focus-visible,
  .dropdown-menu a:focus-visible,
  .btn-call:focus-visible,
  .mobile-call:focus-visible,
  .hamburger:focus-visible,
  .mobile-menu a:focus-visible,
  .mobile-menu .btn-call-mobile:focus-visible,
  .mobile-menu .btn-quote-mobile:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
  }

  /* ── HEADER BAR ── */
  .site-header {
    background: var(--header-bg);
    height: 100px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
  }
  .header-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
  }

  /* Logo */
  .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    height: 100%;
    padding: 6px 0;
  }
  .logo img {
    height: 100%;
    width: auto;
    display: block;
    object-fit: contain;
  }

  /* ── DESKTOP NAV ── */
  nav { display: flex; align-items: center; }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin-right: 12px;
  }
  .nav-links li a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--nav-text);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    letter-spacing: 0.2px;
    position: relative;
    transition: color 0.18s;
    white-space: nowrap;
  }
  .nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 12px; right: 12px;
    height: 2px;
    background: var(--nav-underline);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
  }
  .nav-links li a:hover { color: var(--nav-hover); }
  .nav-links li a:hover::after { transform: scaleX(1); }
  .nav-links li a.active { color: var(--nav-active); font-weight: 700; }
  .nav-links li a.active::after { transform: scaleX(1); }

  /* ── MORE DROPDOWN ── */
  .nav-more {
    position: relative;
  }
  .nav-more-btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--nav-text);
    background: none;
    border: 1.5px solid var(--nav-text);
    border-radius: 50px;
    padding: 7px 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: border-color 0.18s, color 0.18s, background 0.18s;
    white-space: nowrap;
    letter-spacing: 0.2px;
  }
  .nav-more-btn:hover {
    border-color: var(--nav-active);
    color: var(--nav-active);
    background: rgba(198,158,70,0.08);
  }
  .nav-more-btn .chevron {
    font-size: 10px;
    transition: transform 0.25s ease;
    display: inline-block;
  }
  .nav-more-btn.open .chevron { transform: rotate(180deg); }

  /* Dropdown panel */
  .dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    min-width: 200px;
    padding: 6px 0;
    z-index: 100;
    animation: fadeIn 0.18s ease;
  }
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .dropdown-menu.open { display: block; }
  .dropdown-menu a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: var(--nav-text);
    text-decoration: none;
    padding: 11px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #F3F4F6;
    transition: color 0.15s, background 0.15s;
  }
  .dropdown-menu a:last-child { border-bottom: none; }
  .dropdown-menu a:hover {
    color: var(--nav-active);
    background: #FFF8EC;
  }
  .dropdown-menu a svg {
    width: 15px; height: 15px;
    flex-shrink: 0;
    opacity: 0.5;
  }

  /* Call Now Button */
  .btn-call {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.3px;
    background: var(--btn-bg);
    color: var(--btn-text);
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.18s, color 0.18s, transform 0.15s;
    white-space: nowrap;
    margin-left: 10px;
  }
  .btn-call:hover {
    background: var(--btn-hover-bg);
    color: var(--btn-hover-text);
    transform: translateY(-1px);
  }
  .btn-call svg { width: 13px; height: 13px; flex-shrink: 0; }

  /* Hamburger */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 14px;
    margin-left: 8px;
  }
  .hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--hamburger);
    border-radius: 2px;
    transition: all 0.28s ease;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  /* ── MOBILE MENU ── */
  .mobile-menu {
    display: none;
    background: var(--mobile-menu-bg);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    padding: 8px 24px 20px;
    flex-direction: column;
    border-top: 2px solid var(--mobile-border);
    animation: slideDown 0.25s ease;
  }
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--nav-text);
    text-decoration: none;
    padding: 13px 8px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    transition: color 0.15s;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .mobile-menu a:last-of-type { border-bottom: none; }
  .mobile-menu a:hover { color: var(--nav-active); }
  .mobile-menu a svg { width: 15px; height: 15px; flex-shrink: 0; opacity: 0.4; }

  /* Mobile section divider label */
  .mobile-section-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 10px;
    color: var(--nav-active);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 8px 4px;
    display: block;
  }

  .mobile-menu .btn-call-mobile {
    margin-top: 12px;
    background: var(--btn-bg);
    color: var(--btn-text);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    padding: 15px;
    border-radius: 50px;
    text-decoration: none;
    display: block;
    border-bottom: none;
    transition: background 0.18s, color 0.18s;
  }
  .mobile-menu .btn-call-mobile:hover {
    background: var(--btn-hover-bg);
    color: var(--btn-hover-text);
  }

  /* Mobile tap-to-call */
  .mobile-call {
    display: none;
    align-items: center;
    gap: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--nav-text);
    text-decoration: none;
    background: rgba(198,158,70,0.12);
    border: 1.5px solid var(--mobile-border);
    border-radius: 50px;
    padding: 15px 16px;
    white-space: nowrap;
    transition: background 0.18s;
  }
  .mobile-call:hover { background: rgba(198,158,70,0.22); }
  .mobile-call svg { width: 13px; height: 13px; flex-shrink: 0; }

  /* ── TRUST STRIP ── */
  .trust-strip {
    background: #0A1428;
    padding: 7px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #FCFFD7;
    letter-spacing: 0.3px;
    flex-wrap: wrap;
  }
  .trust-strip .ts-item {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
  }
  .trust-strip .ts-item svg {
    width: 12px;
    height: 12px;
    color: var(--gold);
    flex-shrink: 0;
  }
  .trust-strip .ts-divider {
    color: rgba(252,255,215,0.25);
    font-size: 14px;
  }
  .trust-strip .ts-avail {
    margin-left: auto;
    color: var(--gold);
    font-weight: 700;
    white-space: nowrap;
  }
  /* Keep the strip visible on mobile; centre it and give the availability
     item its own centred line so "7 Days a Week" never strands on the left. */
  @media (max-width: 600px) {
    .trust-strip { justify-content: center; gap: 8px 14px; padding: 8px 16px; }
    .trust-strip .ts-divider { display: none; }
    .trust-strip .ts-avail { margin-left: 0; flex-basis: 100%; text-align: center; }
  }

  /* ── MOBILE QUOTE BUTTON ── */
  .mobile-menu .btn-quote-mobile {
    margin-top: 10px;
    background: transparent;
    color: var(--btn-bg);
    border: 2px solid var(--btn-bg);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    padding: 13px;
    border-radius: 50px;
    text-decoration: none;
    display: block;
    border-bottom: 2px solid var(--btn-bg);
    transition: background 0.18s, color 0.18s;
  }
  .mobile-menu .btn-quote-mobile:hover {
    background: var(--btn-bg);
    color: var(--btn-text);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 960px) {
    .nav-links, .nav-more, .btn-call { display: none; }
    .hamburger { display: flex; }
    .mobile-call { display: flex; }
  }
  @media (max-width: 480px) {
    .site-header { height: 72px; }
    .logo img { max-height: 56px; }
    .mobile-menu { top: 72px; }
  }

  /* ── HERO SECTION ── */
  .hero {
    position: relative;
    height: calc(100vh - var(--header-wrapper-h, 132px));
    display: flex;
    overflow: hidden;
    background: var(--gold-pale);
    width: 100%;
  }

  /* Photo side — left, diagonal clip */
  .hero-photo {
    position: absolute;
    left: 0;
    top: 0;
    width: 55%;
    height: 100%;
    clip-path: polygon(0 0, 82% 0, 100% 100%, 0 100%);
    z-index: 1;
  }
  .hero-photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left top;
    display: block;
  }
  /* Dark overlay on photo */
  .hero-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
  }
  /* Placeholder when no image */
  .hero-photo-placeholder {
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
  }
  .hero-photo-placeholder svg { opacity: 0.2; }
  .hero-photo-placeholder span {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  /* Text side — right, gold background */
  .hero-content {
    position: relative;
    z-index: 2;
    width: 50%;
    margin-left: 50%;
    height: calc(100vh - var(--header-wrapper-h, 132px));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 50px 48px 50px 40px;
    gap: 16px;
    box-sizing: border-box;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(10,20,40,0.08);
    border: 1px solid rgba(10,20,40,0.15);
    border-radius: 50px;
    padding: 6px 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 11px;
    color: #161616;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    width: fit-content;
    align-self: center;
  }
  .hero-badge svg { width: 12px; height: 12px; flex-shrink: 0; }
  .hero-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 36px;
    color: #161616;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-align: center;
    width: 100%;
  }
  .hero-content h1 span { color: var(--gold-dark); }

  .hero-content p {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #333;
    line-height: 1.7;
    text-align: center;
    width: 100%;
  }

  .hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 4px;
    justify-content: center;
    width: 100%;
  }
  .hero-btn-primary {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    background: #161616;
    color: var(--gold-pale);
    border: none;
    border-radius: 50px;
    padding: 15px 28px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.18s, transform 0.15s;
    white-space: nowrap;
  }
  .hero-btn-primary:hover { background: #0a1428; transform: translateY(-2px); }

  .hero-btn-secondary {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    background: none;
    color: #161616;
    border: 2px solid #161616;
    border-radius: 50px;
    padding: 13px 28px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.18s, color 0.18s, transform 0.15s;
    white-space: nowrap;
  }
  .hero-btn-secondary:hover {
    background: #161616;
    color: var(--gold-pale);
    transform: translateY(-2px);
  }

  /* Scroll indicator */
  .hero-scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    opacity: 0.5;
    animation: bounce 2s infinite;
  }
  .hero-scroll span {
    font-family: 'Open Sans', sans-serif;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #161616;
  }
  @keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
  }

  /* Hero responsive */
  @media (max-width: 960px) {
    .hero {
      height: auto !important;
      min-height: unset;
      flex-direction: column;
      display: block;
    }
    .hero-photo {
      position: relative !important;
      width: 100%;
      height: 320px;
      clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
      display: block;
    }
    .hero-photo img {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: left top;
    }
    .hero-content {
      width: 100% !important;
      height: auto !important;
      margin-left: 0 !important;
      padding: 36px 32px 48px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .hero-content h1 { font-size: 28px; }
    .hero-scroll { display: none; }
  }
  @media (max-width: 480px) {
    .hero-photo { height: 280px; }
    .hero-content { padding: 28px 20px 40px; }
    .hero-content h1 { font-size: 22px; }
    .hero-content p { font-size: 14px; }
    .hero-btns { flex-direction: column; width: 100%; }
    .hero-btn-primary, .hero-btn-secondary { justify-content: center; width: 100%; }
  }

  @media (prefers-reduced-motion: reduce) {
    .hero-scroll { animation: none; }
    .service-card { transition: none; }
    .service-link svg { transition: none; }
    .service-link:hover svg { transform: none; }
  }

    /* ── SECTION 1.3: STATS ── */
  .stats-section {
    background: #ffffff;
    padding: 60px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  }
  .stats-eyebrow {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 28px;
  }
  .stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    padding: 20px 24px;
    border-right: 1px solid #E5E7EB;
  }
  .stat-card:last-child { border-right: none; }
  .stat-icon {
    width: 52px; height: 52px;
    background: #FFF8EC;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 4px;
  }
  .stat-icon svg { width: 24px; height: 24px; stroke: var(--gold-dark); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .stat-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 42px;
    color: #161616;
    line-height: 1;
    letter-spacing: -1px;
  }
  .stat-number span { color: var(--gold-dark); }
  .stat-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #6B7280;
    font-weight: 600;
  }

  /* Stats responsive */
  @media (max-width: 768px) {
    .stats-inner {
      grid-template-columns: repeat(2, 1fr);
    }
    .stat-card:nth-child(2) { border-right: none; }
    .stat-card:nth-child(1),
    .stat-card:nth-child(2) {
      border-bottom: 1px solid #E5E7EB;
    }
    .stat-number { font-size: 32px; }
  }
  @media (max-width: 480px) {
    .stats-section { padding: 40px 16px; }
    .stats-eyebrow { font-size: 10px; letter-spacing: 2px; margin-bottom: 20px; }
    .stat-number { font-size: 28px; }
    .stat-label { font-size: 13px; }
  }

  /* ── SECTION 1.4: ABOUT ── */
  .about-section {
    background: #F6F7F9;
    padding: 80px 24px;
  }
  .about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  /* Photo side */
  .about-photo {
    position: relative;
    border-radius: 12px;
    overflow: visible;
  }
  .about-photo-img {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 12px;
    overflow: hidden;
    background: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
  }
  .about-photo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
  }
  .about-placeholder-icon { opacity: 0.2; }
  .about-placeholder-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  .about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold-dark);
    color: #fff;
    border-radius: 12px;
    padding: 18px 22px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(169,123,35,0.35);
    z-index: 2;
  }
  .about-badge strong {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 30px;
    display: block;
    line-height: 1;
    color: #fff;
  }
  .about-badge span {
    font-family: 'Open Sans', sans-serif;
    font-size: 11px;
    opacity: 0.9;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }

  /* Text side */
  .about-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .about-tag {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 11px;
    color: var(--gold-dark);
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .about-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 34px;
    color: #161616;
    line-height: 1.2;
    letter-spacing: -0.3px;
  }
  .about-text h2 span { color: var(--gold-dark); }
  .about-text p {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #444;
    line-height: 1.8;
  }
  /* Bullets — 2-column grid; right column gets a left border as the divider */
  .about-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 0;
    margin-top: 4px;
    list-style: none;
    padding: 0;
  }
  .about-bullet {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #161616;
    font-weight: 600;
    padding: 4px 14px 4px 0;
  }
  /* Right column bullets — padding-left creates space from the divider border */
  .about-bullet.about-bullet--right {
    border-left: 1px solid #d1c5b0;
    padding-left: 14px;
    padding-right: 0;
  }
  .about-bullet-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: #FFF8EC;
    border: 1.5px solid var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .about-bullet-icon svg {
    width: 13px; height: 13px;
    stroke: var(--gold-dark);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  /* CTA button row */
  .about-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 4px;
  }
  /* Learn More text link */
  .about-learn-more {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--gold-dark);
    text-decoration: none;
    display: inline-block;
    transition: color 0.18s;
  }
  .about-learn-more:hover { color: var(--gold-dark); }

  /* About responsive */
  @media (max-width: 960px) {
    .about-inner {
      grid-template-columns: 1fr;
      gap: 48px;
    }
    .about-photo { max-width: 480px; margin: 0 auto; }
    .about-badge { right: -15px; bottom: -15px; }
    .about-text h2 { font-size: 28px; }
  }
  @media (max-width: 480px) {
    .about-section { padding: 60px 20px; }
    .about-text h2 { font-size: 26px; }
    /* Collapse to single column, remove divider border */
    .about-bullets { grid-template-columns: 1fr; }
    .about-bullet.about-bullet--right {
      border-left: none;
      padding-left: 0;
    }
    .about-btns { flex-direction: column; }
    .about-btns .hero-btn-primary,
    .about-btns .hero-btn-secondary { width: 100%; justify-content: center; }
  }

  /* ── SECTION 1.5: SERVICES ── */
  .services-section {
    background: #ffffff;
    padding: 80px 24px;
    text-align: center;
  }
  .services-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .services-header {
    margin-bottom: 50px;
  }
  .services-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 34px;
    color: #161616;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
  }
  .services-header h2 span {
    color: var(--gold-dark);
  }
  .services-header p {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #555;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: left;
  }
  .service-card {
    background: #F6F7F9;
    border-radius: 12px;
    padding: 32px 24px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
  }
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
    border-color: rgba(169,123,35,0.3);
  }
  .service-icon {
    width: 56px;
    height: 56px;
    background: #FFF8EC;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  .service-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--gold-dark);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #161616;
    margin-bottom: 12px;
  }
  .service-card p {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
    flex: 1;
  }
  .service-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #8a6419; /* WCAG AA fix: darker than --gold-dark for 4.5:1 contrast on #F6F7F9 card bg */
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
    margin-top: 20px;
  }
  .service-link:hover {
    color: #161616;
  }
  .service-link:focus-visible {
    outline: 2px solid var(--gold-dark);
    outline-offset: 3px;
    border-radius: 2px;
  }
  .service-link svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s;
  }
  .service-link:hover svg {
    transform: translateX(4px);
  }
  .service-card--emergency-footer {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
  }
  .service-card--emergency-footer .service-link {
    margin-top: 0;
  }
  .service-card--emergency-footer .service-divider {
    width: 1px;
    height: 16px;
    background: #d0d0d0;
    flex-shrink: 0;
  }
  .service-card--emergency .service-call {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 11px;
    color: #ffffff;
    text-decoration: none;
    background: #0A1428;
    border-radius: 50px;
    padding: 5px 12px;
    transition: background 0.2s;
  }
  .service-card--emergency .service-call svg {
    width: 11px;
    height: 11px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .service-card--emergency .service-call:hover {
    background: #152538;
  }
  .service-card--emergency .service-call:focus-visible {
    outline: 2px solid #0A1428;
    outline-offset: 3px;
    border-radius: 2px;
  }
  .services-viewall {
    text-align: center;
    margin-top: 40px;
  }
  .services-viewall a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--gold-dark);
    text-decoration: none;
    border-bottom: 1.5px solid rgba(138,100,25,0.35);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
  }
  .services-viewall a:hover {
    color: #161616;
    border-color: rgba(22,22,22,0.4);
  }
  .services-viewall a:focus-visible {
    outline: 2px solid var(--gold-dark);
    outline-offset: 3px;
    border-radius: 2px;
  }

  /* Services responsive */
  @media (max-width: 960px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 600px) {
    .services-grid {
      grid-template-columns: 1fr;
    }
    .services-section { padding: 60px 20px; }
    .services-header h2 { font-size: 26px; }
  }

  /* ── SECTION 1.6: WHY CHOOSE US / TRUST ── */
  .trust-section {
    background: #0A1428;
    padding: 80px 24px;
    text-align: center;
  }
  .trust-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .trust-header {
    margin-bottom: 50px;
  }
  .trust-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 34px;
    color: #F9FAFA;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
  }
  .trust-header h2 span {
    color: var(--gold-pale);
  }
  .trust-header p {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
  }
  .trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .trust-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px 24px;
    transition: border-color 0.25s ease;
  }
  .trust-card:hover {
    border-color: var(--gold-dark);
  }
  @media (prefers-reduced-motion: no-preference) {
    .trust-card {
      transition: transform 0.25s ease, border-color 0.25s ease;
    }
    .trust-card:hover {
      transform: translateY(-6px);
    }
  }
  .trust-icon {
    width: 64px;
    height: 64px;
    background: rgba(169, 123, 35, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
  }
  .trust-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--gold-pale);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .trust-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #F9FAFA;
    margin-bottom: 12px;
  }
  .trust-card p {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
  }

  /* Trust responsive */
  @media (max-width: 960px) {
    .trust-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 480px) {
    .trust-section { padding: 60px 20px; }
    .trust-header h2 { font-size: 26px; }
    .trust-grid { grid-template-columns: 1fr; gap: 16px; }
    .trust-card { padding: 26px 18px; }
  }

  /* Featured single testimonial inside trust-section (audience pages) —
     reuses .testimonial-card from the reviews carousel, but scoped here
     since it's a single centred card on a dark background, not a
     multi-card carousel row. */
  .trust-testimonial {
    max-width: 560px;
    margin: 40px auto 0;
  }
  .trust-section .testimonial-card {
    min-width: 0;
    text-align: left;
  }
  @media (max-width: 480px) {
    .trust-testimonial { margin-top: 28px; }
  }

  /* ── SECTION 1.6a: GALLERY / RECENT PROJECTS ── */
  .gallery-section {
    background: #ffffff;
    padding: 80px 24px;
  }
  .gallery-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .gallery-header {
    text-align: center;
    margin-bottom: 48px;
  }
  .gallery-tag {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 11px;
    color: var(--gold-dark);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
  }
  .gallery-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 34px;
    color: #161616;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
  }
  .gallery-header h2 span { color: var(--gold-dark); }
  .gallery-header p {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #555;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.6;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .gallery-item {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #1a1a1a;
  }
  .gallery-item:focus-visible {
    outline: 3px solid var(--gold-dark);
    outline-offset: 3px;
  }
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }
  .gallery-item:hover img {
    transform: scale(1.06);
  }
  @media (prefers-reduced-motion: reduce) {
    .gallery-item img { transition: none; }
    .gallery-item:hover img { transform: none; }
  }
  .gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,20,40,0.75) 0%, rgba(10,20,40,0) 55%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .gallery-item:hover .gallery-item-overlay {
    opacity: 1;
  }
  .gallery-item-overlay span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #ffffff;
  }
  .gallery-item-zoom {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .gallery-item:hover .gallery-item-zoom { opacity: 1; }
  .gallery-item-zoom svg {
    width: 16px; height: 16px;
    stroke: #161616;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  /* Placeholder state (no image yet) */
  .gallery-item-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0A1428 100%);
  }
  .gallery-item-placeholder svg { opacity: 0.25; width: 36px; height: 36px; stroke: #fff; fill: none; stroke-width: 1.5; }
  .gallery-item-placeholder span {
    font-family: 'Open Sans', sans-serif;
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: center;
    padding: 0 16px;
  }

  /* Lightbox */
  .lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6,13,28,0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 24px;
  }
  .lightbox-overlay.open { display: flex; }
  .lightbox-content {
    position: relative;
    max-width: 900px;
    width: 100%;
  }
  .lightbox-content img {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    display: block;
  }
  .lightbox-close {
    position: absolute;
    top: -48px;
    right: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(255,255,255,0.25);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }
  .lightbox-close:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
  .lightbox-close svg { width: 18px; height: 18px; }
  .lightbox-caption {
    text-align: center;
    margin-top: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
  }

  /* Gallery responsive */
  @media (max-width: 960px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 600px) {
    .gallery-section { padding: 60px 20px; }
    .gallery-header h2 { font-size: 26px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .lightbox-close { top: -44px; width: 34px; height: 34px; }
  }
  @media (max-width: 420px) {
    .gallery-grid { grid-template-columns: 1fr; }
  }

  /* ── SECTION 1.7: TESTIMONIALS CAROUSEL ── */
  .testimonials-section {
    background: #F6F7F9;
    padding: 80px 24px;
    overflow: hidden;
  }
  .testimonials-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .testimonials-header {
    text-align: center;
    margin-bottom: 48px;
  }
  .testimonials-tag {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 11px;
    color: var(--gold-dark);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
  }
  .testimonials-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 34px;
    color: #161616;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
  }
  .testimonials-header h2 span { color: var(--gold-dark); }
  .testimonials-header p {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #555;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.6;
  }

  /* Carousel wrapper */
  .carousel-wrapper {
    position: relative;
    padding: 0 56px;
  }
  .carousel-viewport {
    overflow: hidden;
  }
  .carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: stretch;
  }

  /* Each card takes exactly 1/3 width minus gap */
  .testimonial-card {
    min-width: calc((100% - 48px) / 3);
    background: #ffffff;
    border-radius: 14px;
    padding: 32px 28px;
    border: 1px solid #E5E7EB;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    box-sizing: border-box;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
  }
  .testimonial-card:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    transform: translateY(-4px);
  }
  .testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 22px;
    font-family: Georgia, serif;
    font-size: 72px;
    color: var(--gold-pale);
    line-height: 1;
    pointer-events: none;
  }
  .testimonial-stars {
    display: flex;
    gap: 3px;
  }
  .testimonial-stars svg {
    width: 16px; height: 16px;
    fill: #D1D5DB;
  }
  .testimonial-stars svg.is-filled {
    fill: var(--gold-dark);
  }
  /* Visually hidden but available to screen readers (e.g. "Rated 5 out of 5") */
  .sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .testimonial-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #374151;
    line-height: 1.75;
    flex: 1;
    position: relative;
    z-index: 1;
  }
  .testimonial-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #F3F4F6;
    margin-top: auto;
  }
  .testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #0A1428;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--gold-pale);
  }
  .testimonial-info strong {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #161616;
    display: block;
  }
  .testimonial-info span {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    color: #6B7280;
  }

  /* Prev / Next arrow buttons */
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid #E5E7EB;
    color: #161616;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }
  .carousel-btn:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: #fff;
  }
  .carousel-btn svg { width: 18px; height: 18px; }
  .carousel-btn-prev { left: 0; }
  .carousel-btn-next { right: 0; }
  .carousel-btn:disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
  }

  /* Dots */
  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 36px;
  }
  .carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D1D5DB;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    transition: background 0.2s, transform 0.2s;
  }
  /* Invisible 36x36 tap target centred on the dot, so spacing between
     visible dots stays at the original 8px gap on every screen size */
  .carousel-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 36px;
    height: 36px;
    transform: translate(-50%, -50%);
  }
  .carousel-dot.active {
    background: var(--gold-dark);
    transform: scale(1.35);
  }

  /* Mobile-only swipe affordance, shown since arrow buttons are hidden below 600px */
  .carousel-swipe-hint {
    display: none;
  }

  /* Tablet: 2 cards */
  @media (max-width: 960px) {
    .testimonial-card {
      min-width: calc((100% - 24px) / 2);
    }
  }
  /* Mobile: 1 card */
  @media (max-width: 600px) {
    .testimonials-section { padding: 60px 20px; }
    .testimonials-header h2 { font-size: 26px; }
    .carousel-wrapper { padding: 0 0 0 0; }
    .testimonial-card {
      min-width: 100%;
      padding: 24px 20px;
    }
    .testimonial-card::before { font-size: 56px; }
    .carousel-btn { display: none; }
    .carousel-swipe-hint {
      display: block;
      text-align: center;
      font-family: 'Open Sans', sans-serif;
      font-size: 12px;
      color: #9CA3AF;
      margin-top: 8px;
    }
  }

  /* CTA below carousel */
  .testimonials-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 44px;
    flex-wrap: wrap;
  }
  .testimonials-cta p {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #555;
  }
  .testimonials-cta p strong {
    color: #161616;
    font-weight: 700;
  }
  .btn-review {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    background: #161616;
    color: var(--gold-pale);
    border: none;
    border-radius: 50px;
    padding: 12px 22px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.18s, transform 0.15s;
    white-space: nowrap;
  }
  .btn-review:hover { background: #0a1428; transform: translateY(-1px); }
  .btn-review svg { width: 14px; height: 14px; }

  /* ── LEAVE FEEDBACK FORM (customer-submitted, moderated before publishing) ── */
  .feedback-section {
    background: #ffffff;
    padding: 0 24px 80px;
  }
  .feedback-inner {
    max-width: 620px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    padding: 36px;
  }
  .feedback-inner h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 26px;
    color: #161616;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
  }
  .feedback-inner h2 span { color: var(--gold-dark); }
  .feedback-intro {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 24px;
  }
  /* Interactive star rating — radio buttons styled as stars, no JS required */
  .form-group.form-group--rating {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
  }
  .feedback-stars {
    display: inline-flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 6px;
    margin-bottom: 0;
  }
  .feedback-stars input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
  }
  .feedback-stars label {
    cursor: pointer;
    font-size: 0; /* hide the radio-adjacent label's own text node if any */
    line-height: 1;
    display: inline-block;
    transform-origin: center;
    transition: transform 0.1s;
  }
  .feedback-stars label::before {
    content: "\2606"; /* ☆ genuine outline star — no fill trickery needed */
    font-size: 58px;
    line-height: 1;
    color: #333333;
  }
  .feedback-stars label:hover { transform: scale(1.1); }
  .feedback-stars label:hover::before,
  .feedback-stars label:hover ~ label::before,
  .feedback-stars input:checked ~ label::before {
    content: "\2605"; /* ★ genuine filled star */
    color: var(--gold);
  }
  .feedback-stars input:focus-visible + label {
    outline: 2px solid var(--gold-dark);
    outline-offset: 3px;
    border-radius: 2px;
  }
  .feedback-stars-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #161616;
    margin-bottom: 0;
  }
  @media (max-width: 480px) {
    .form-group.form-group--rating { gap: 10px; }
    .feedback-stars label::before { font-size: 46px; }
  }
  .feedback-optional {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #9CA3AF;
  }
  @media (max-width: 600px) {
    .feedback-inner { padding: 28px 20px; }
    .feedback-inner h2 { font-size: 22px; }
  }

  /* ── SECTION 1.7a: FAQ ── */
  .faq-section {
    background: #F6F7F9;
    padding: 80px 24px;
  }
  .faq-inner {
    max-width: 800px;
    margin: 0 auto;
  }
  .faq-header {
    text-align: center;
    margin-bottom: 48px;
  }
  .faq-tag {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 11px;
    color: var(--gold-dark);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
  }
  .faq-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 34px;
    color: #161616;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
  }
  .faq-header h2 span { color: var(--gold-dark); }
  .faq-header p {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #555;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
  }

  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .faq-item {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }
  .faq-item.open {
    border-color: var(--gold-dark);
    box-shadow: 0 0 0 3px rgba(169, 123, 35, 0.08);
  }
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    text-align: left;
  }
  .faq-question:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: -3px;
  }
  .faq-question span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15.5px;
    color: #161616;
    line-height: 1.4;
  }
  .faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #FFF8EC;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s ease, transform 0.3s ease;
  }
  .faq-item.open .faq-icon {
    background: var(--gold-dark);
    transform: rotate(180deg);
  }
  .faq-icon svg {
    width: 14px; height: 14px;
    stroke: var(--gold-dark);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.2s ease;
  }
  .faq-item.open .faq-icon svg { stroke: #ffffff; }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .faq-answer-inner {
    padding: 0 24px 22px;
  }
  .faq-answer-inner p {
    font-family: 'Open Sans', sans-serif;
    font-size: 14.5px;
    color: #555;
    line-height: 1.75;
  }

  @media (prefers-reduced-motion: reduce) {
    .faq-item { transition: none; }
    .faq-icon { transition: none; }
    .faq-answer { transition: none; }
  }

  /* FAQ bottom CTA */
  .faq-cta {
    text-align: center;
    margin-top: 40px;
  }
  .faq-cta p {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #555;
    margin-bottom: 16px;
  }
  .faq-cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .faq-cta-btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    border-radius: 50px;
    padding: 14px 28px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.18s, color 0.18s, transform 0.15s;
  }
  .faq-cta-btn:hover { transform: translateY(-2px); }
  .faq-cta-btn:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
  }
  .faq-cta-btn svg { width: 14px; height: 14px; }
  .faq-cta-btn--call {
    background: #0A1428;
    color: var(--gold-pale);
    border: none;
  }
  .faq-cta-btn--call:hover { background: #152538; }
  .faq-cta-btn--outline {
    background: transparent;
    color: #0A1428;
    border: 1.5px solid #0A1428;
  }
  .faq-cta-btn--outline:hover { background: #0A1428; color: var(--gold-pale); }

  /* FAQ responsive */
  @media (max-width: 600px) {
    .faq-section { padding: 60px 20px; }
    .faq-header h2 { font-size: 26px; }
    .faq-question { padding: 18px 18px; }
    .faq-question span { font-size: 14.5px; }
    .faq-answer-inner { padding: 0 18px 20px; }
    .faq-cta-btns { flex-direction: column; align-items: stretch; }
    .faq-cta-btn { justify-content: center; width: 100%; }
  }

  /* ── SECTION 1.8: CONTACT ── */
  .contact-section {
    background: #0A1428;
    padding: 80px 24px;
    scroll-margin-top: 100px;
  }
  .contact-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .contact-header {
    text-align: center;
    margin-bottom: 56px;
  }
  .contact-tag {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 11px;
    color: var(--gold-pale);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
  }
  .contact-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 34px;
    color: #F9FAFA;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
  }
  .contact-header h2 span { color: var(--gold-pale); }
  .contact-header p {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.6;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
    align-items: start;
  }

  /* Left: info cards */
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .contact-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: border-color 0.25s ease, transform 0.25s ease;
    text-decoration: none;
  }
  .contact-card--link {
    cursor: pointer;
  }
  .contact-card--link:hover {
    border-color: var(--gold-dark);
    transform: translateY(-3px);
  }
  .contact-card--info {
    cursor: default;
  }
  .contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(169, 123, 35, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .contact-card-icon svg {
    width: 22px; height: 22px;
    stroke: var(--gold-pale);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .contact-card-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #F9FAFA;
    margin-bottom: 6px;
  }
  .contact-card-text p,
  .contact-card-text span {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    text-decoration: none;
    display: block;
  }
  .contact-card--link:hover .contact-card-text span { color: var(--gold-pale); }

  /* WhatsApp chat button under cards */
  .contact-whatsapp-btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    background: #25D366;
    color: #0A1428;
    border: none;
    border-radius: 50px;
    padding: 16px 28px;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.18s, transform 0.15s;
    margin-top: 6px;
  }
  .contact-whatsapp-btn:hover {
    background: #1ebe5a;
    transform: translateY(-2px);
  }
  .contact-whatsapp-btn svg { width: 18px; height: 18px; }


  /* Right: form panel */
  .contact-form-panel {
    background: #ffffff;
    border-radius: 18px;
    padding: 44px;
  }
  .contact-form-panel h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: #161616;
    margin-bottom: 6px;
  }
  .contact-form-panel > p {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 28px;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
  }
  .form-group label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #161616;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #161616;
    background: #F6F7F9;
    border: 1.5px solid #E5E7EB;
    border-radius: 8px;
    padding: 12px 14px;
    outline: none;
    transition: border-color 0.18s;
    width: 100%;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--gold-dark);
    box-shadow: 0 0 0 3px rgba(169, 123, 35, 0.25);
  }
  .form-group textarea {
    resize: vertical;
    min-height: 110px;
  }
  .form-submit-btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    background: #161616;
    color: var(--gold-pale);
    border: none;
    border-radius: 50px;
    padding: 16px 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    transition: background 0.18s, transform 0.15s;
    margin-top: 8px;
  }
  .form-submit-btn:hover {
    background: #0a1428;
    transform: translateY(-2px);
  }
  .form-submit-btn svg { width: 15px; height: 15px; }
  .form-note {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    color: #6B7280;
    text-align: center;
    margin-top: 14px;
  }
  .form-error {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: #B42318;
    text-align: center;
    margin-top: 14px;
  }

  /* Inline success confirmation (replaces form on successful submit) */
  .contact-form-success {
    text-align: center;
    padding: 40px 12px;
  }
  .contact-form-success-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(169, 123, 35, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
  }
  .contact-form-success-icon svg {
    width: 26px; height: 26px;
    stroke: var(--gold-dark);
    fill: none;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .contact-form-success h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: #161616;
    margin-bottom: 10px;
  }
  .contact-form-success p {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
  }
  .contact-form-success p a {
    color: var(--gold-dark);
    font-weight: 600;
    text-decoration: none;
  }
  .contact-form-success p a:hover { text-decoration: underline; }

  /* Contact responsive */
  @media (max-width: 960px) {
    .contact-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .contact-header h2 { font-size: 28px; }
  }
  @media (max-width: 600px) {
    .contact-section { padding: 60px 20px; }
    .contact-header h2 { font-size: 26px; }
    .contact-form-panel { padding: 28px 24px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
  }

  /* ── SECTION 1.9: FOOTER ── */
  .site-footer {
    background: #060D1C;
    padding: 64px 24px 0;
  }
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  /* Column 1: Brand */
  .footer-brand img {
    height: 64px;
    width: auto;
    object-fit: contain;
    margin-bottom: 16px;
  }
  .footer-brand p {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 280px;
  }
  .footer-socials {
    display: flex;
    gap: 10px;
  }
  .footer-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
  }
  .footer-social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #161616;
  }
  .footer-social-link svg { width: 17px; height: 17px; }

  /* Columns 2-4: link groups */
  .footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #F9FAFA;
    letter-spacing: 0.5px;
    margin-bottom: 22px;
    text-transform: uppercase;
  }
  .footer-col ul {
    list-style: none;
    column-count: 2;
    column-gap: 16px;
  }
  .footer-col ul a {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.18s, padding-left 0.18s;
    display: inline-block;
    padding: 6px 0;
  }
  .footer-col ul a:hover {
    color: var(--gold);
    padding-left: 4px;
  }

  /* Column 4: contact details */
  .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
  }
  .footer-contact-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .footer-contact-item a,
  .footer-contact-item span {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    line-height: 1.6;
  }
  .footer-contact-item a:hover { color: var(--gold); }

  /* <address> element reset — remove browser default italic */
  .footer-address-block {
    font-style: normal;
  }

  /* Call CTA button in footer contact column */
  .footer-cta-call {
    display: block;
    width: 100%;
    text-align: center;
    background: transparent;
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid var(--gold);
    padding: 13px 28px;
    margin-bottom: 20px;
    transition: background 0.2s, color 0.2s;
    box-sizing: border-box;
  }
  .footer-cta-call:hover {
    background: var(--gold);
    color: #0A1428;
  }

  /* Reviews placeholder */
  .footer-reviews-placeholder {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: var(--gold);
    font-weight: 600;
  }

  /* Sprite SVG sizing for footer contact icons */
  .footer-contact-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    margin-top: 2px;
  }

  /* Sprite SVG sizing for footer badge icons */
  .footer-badge svg {
    width: 14px;
    height: 14px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
  }

  /* Bottom bar */
  .footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-copyright {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.62);
  }
  .footer-badges {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
  }
  .footer-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.3px;
  }
  .footer-legal {
    display: flex;
    gap: 18px;
  }
  .footer-legal a {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.62);
    text-decoration: none;
    transition: color 0.18s;
  }
  .footer-legal a:hover { color: var(--gold); }

  /* Footer responsive */
  @media (max-width: 960px) {
    .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 40px 32px;
    }
    .footer-brand { grid-column: 1 / -1; }
  }
  @media (max-width: 600px) {
    .site-footer { padding: 48px 20px 0; }
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 36px;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 14px;
      text-align: left;
    }
    .footer-badges { gap: 14px; }
    .footer-legal { gap: 14px; }
  }

  /* ══════════════════════════════════════════════
     SHARED SUB-PAGE COMPONENTS
     (used across About, Services, and other inner pages)
     ══════════════════════════════════════════════ */

  /* ── PAGE BANNER (sub-page title band) ── */
  .page-banner {
    background: #0A1428;
    padding: 64px 24px;
    text-align: center;
  }
  .page-banner-inner {
    max-width: 800px;
    margin: 0 auto;
  }
  .page-breadcrumb {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 14px;
  }
  .page-breadcrumb a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.18s;
  }
  .page-breadcrumb a:hover { color: var(--gold-pale); }
  .page-breadcrumb span { color: var(--gold-pale); font-weight: 600; }
  .page-banner h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 38px;
    color: #F9FAFA;
    letter-spacing: -0.3px;
  }
  .page-banner p {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    margin-top: 14px;
    line-height: 1.6;
  }
  @media (max-width: 600px) {
    .page-banner { padding: 48px 20px; }
    .page-banner h1 { font-size: 28px; }
  }

  /* ── VALUES SECTION ── */
  .values-section {
    background: #ffffff;
    padding: 80px 24px;
    text-align: center;
  }
  .values-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .values-header { margin-bottom: 50px; }
  .values-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 34px;
    color: #161616;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
  }
  .values-header h2 span { color: var(--gold-dark); }
  .values-header p {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #555;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
  }
  .values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: left;
  }
  .value-card {
    background: #F6F7F9;
    border-radius: 12px;
    padding: 32px 24px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
  }
  .value-icon {
    width: 56px;
    height: 56px;
    background: #FFF8EC;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  .value-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--gold-dark);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .value-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: #161616;
    margin-bottom: 10px;
  }
  .value-card p {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
  }
  @media (max-width: 960px) {
    .values-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 600px) {
    .values-section { padding: 60px 20px; }
    .values-header h2 { font-size: 26px; }
    .values-grid { grid-template-columns: 1fr; }
  }

  /* ── GENERIC CTA BAND ── */
  .cta-band {
    background: #F6F7F9;
    padding: 64px 24px;
    text-align: center;
  }
  .cta-band-inner {
    max-width: 680px;
    margin: 0 auto;
  }
  .cta-band h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: #161616;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
  }
  .cta-band h2 span { color: var(--gold-dark); }
  .cta-band p {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #555;
    margin-bottom: 28px;
    line-height: 1.6;
  }
  .cta-band-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .cta-band--urgent {
    border-top: 3px solid var(--gold);
  }
  .cta-band-quote-link {
    display: inline-flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #888;
    text-decoration: underline;
    text-underline-offset: 3px;
    padding: 8px 4px;
  }
  .cta-band-quote-link:hover { color: #555; }
  .cta-band-quote-link:focus-visible {
    outline: 2px solid var(--gold-dark);
    outline-offset: 3px;
    border-radius: 2px;
  }
  @media (max-width: 600px) {
    .cta-band { padding: 48px 20px; }
    .cta-band h2 { font-size: 22px; }
    .cta-band-btns { flex-direction: column; align-items: stretch; }
    .cta-band-btns .hero-btn-primary,
    .cta-band-btns .hero-btn-secondary { justify-content: center; }
  }

  /* ══════════════════════════════════════════════
     SERVICE DETAIL PAGE COMPONENTS
     (used across all 9 individual service pages)
     ══════════════════════════════════════════════ */

  /* ── Generic narrow content wrapper (for centered headers + left-aligned lists) ── */
  .included-wrap {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
  }

  /* ── OUR PROCESS ── */
  .process-section {
    background: #F6F7F9;
    padding: 80px 24px;
    text-align: center;
  }
  .process-inner { max-width: 1200px; margin: 0 auto; }
  .process-header { margin-bottom: 50px; }
  .process-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 34px;
    color: #161616;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
  }
  .process-header h2 span { color: var(--gold-dark); }
  .process-header p {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #555;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
  }
  .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: left;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .process-step {
    background: #ffffff;
    border-radius: 12px;
    padding: 28px 24px;
  }
  .process-step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #161616;
    color: var(--gold-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 16px;
  }
  .process-step h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #161616;
    margin-bottom: 8px;
  }
  .process-step p {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
  }
  .process-step-tel {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--gold-dark);
    text-decoration: none;
  }
  .process-step-tel:hover { color: #161616; }
  .process-step-tel:focus-visible {
    outline: 2px solid var(--gold-dark);
    outline-offset: 3px;
    border-radius: 2px;
  }
  .process-step-tel svg {
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
  }
  @media (max-width: 960px) {
    .process-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 600px) {
    .process-section { padding: 60px 20px; }
    .process-header h2 { font-size: 26px; }
    .process-grid { grid-template-columns: 1fr; }
  }

  /* ── URGENT CALL CTA (near-top, emergency-electrician only) ── */
  .urgent-cta-section {
    background: #ffffff;
    padding: 24px;
  }
  .urgent-cta-inner {
    max-width: 640px;
    margin: 0 auto;
  }
  .urgent-safety-note {
    background: #FCF3E3;
    border-left: 4px solid var(--gold);
    border-radius: 0;
    padding: 14px 16px;
    margin: 0 0 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #0A1428;
    line-height: 1.5;
  }
  .urgent-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #0A1428;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    padding: 16px;
    border-radius: 50px;
    transition: background 0.2s;
  }
  .urgent-call-btn:hover { background: #152538; }
  .urgent-call-btn:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
  }
  .urgent-call-btn svg {
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
  }
  @media (max-width: 600px) {
    .urgent-cta-section { padding: 20px; }
  }

  /* ── COMPACT CREDENTIALS STRIP ── */
  .credentials-strip {
    background: #ffffff;
    padding: 36px 24px;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
  }
  .credentials-strip-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  .credential-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #161616;
  }
  .credential-badge svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold-dark);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
  }
  @media (max-width: 600px) {
    .credentials-strip-inner { gap: 20px; }
    .credential-badge { font-size: 13px; }
  }

  /* ── RELATED SERVICES ── */
  .related-section {
    background: #ffffff;
    padding: 80px 24px;
    text-align: center;
  }
  .related-inner { max-width: 1200px; margin: 0 auto; }
  .related-header { margin-bottom: 40px; }
  .related-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 30px;
    color: #161616;
    letter-spacing: -0.3px;
  }
  .related-header h2 span { color: var(--gold-dark); }
  .related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: left;
  }
  .related-card {
    background: #F6F7F9;
    border-radius: 12px;
    padding: 22px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  }
  .related-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #FFF8EC;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .related-card-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold-dark);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .related-card span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #161616;
  }
  @media (max-width: 960px) {
    .related-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 600px) {
    .related-section { padding: 60px 20px; }
    .related-header h2 { font-size: 24px; }
    .related-grid { grid-template-columns: 1fr; }
  }

  /* ══════════════════════════════════════════════
     REVIEWS / TIPS / LEGAL PAGE COMPONENTS
     ══════════════════════════════════════════════ */

  /* ── Static reviews grid (non-carousel, for dedicated Reviews page) ── */
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  @media (max-width: 960px) {
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 600px) {
    .reviews-grid { grid-template-columns: 1fr; }
  }

  /* ── Coming soon badge (Tips & Advice placeholder cards) ── */
  .coming-soon-badge {
    display: inline-block;
    background: #FFF8EC;
    color: var(--gold-dark);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 14px;
  }
  .topic-card-disabled {
    cursor: default;
  }

  /* ── Legal page typography (Privacy Policy / Terms of Service) ── */
  .legal-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #161616;
    margin-top: 32px;
    margin-bottom: 12px;
  }
  .legal-content h2:first-child { margin-top: 0; }
  .legal-content p {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 8px;
  }
  .legal-updated {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: #9CA3AF;
    margin-bottom: 32px;
  }