    :root {
      --red: #090c14;
      --red-dark: #c93335;
      --red-light: #fccc03;
      --navy: #1a1f36;
      --navy-mid: #252b45;
      --navy-light: #2e3555;
      --white: #ffffff;
      --off-white: #f7f8fc;
      --light-grey: #eef0f6;
      --mid-grey: #9299b0;
      --text: #3a3f5c;
      --text-light: #6b7194;
      --border: #e2e5f0;
      --light-blue-gradient: linear-gradient(135deg, #157eb8 0%, #1a1f36 100%)
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }

    /* ── TOP BAR ── */
    .topbar {
      background: var(--navy);
      padding: 0.55rem 2rem;
      display: flex; justify-content: flex-end; align-items: center; gap: 1.5rem;
    }
    .topbar-contact {
      font-size: 0.8rem; color: rgba(255,255,255,0.75);
      display: flex; gap: 2rem;
    }
    .topbar-contact span { display: flex; align-items: center; gap: 0.4rem; }
    .topbar-contact a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s; }
    .topbar-contact a:hover { color: white; }
    .topbar-socials { display: flex; gap: 0.7rem; }
    .topbar-socials a {
      /* width: 26px; height: 26px;
      border-radius: 50%; */
      background: rgba(255,255,255,0.12);
      display: flex; align-items: center; justify-content: center;
      color: white; text-decoration: none; font-size: 0.7rem;
      transition: background 0.2s;
    }
    .topbar-socials a:hover { background: var(--red); }
    .btn-emergency {
      background: var(--red); color: white;
      padding: 0.4rem 1.1rem; border-radius: 4px;
      font-size: 0.78rem; font-weight: 600; text-decoration: none;
      display: flex; align-items: center; gap: 0.4rem;
      transition: background 0.2s;
    }
    .btn-emergency:hover { background: var(--red-dark); }

    /* ── NAV ── */
    nav {
      background: #fffaf4;
      padding: 0 2rem;
      display: flex; align-items: center; justify-content: space-between;
      border-bottom: 1px solid var(--border);
      position: sticky; top: 0; z-index: 100;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    }
    .nav-logo {
      padding: 0.9rem 0;
      display: flex; align-items: center; gap: 0.6rem;
      text-decoration: none;
    }
    .logo-icon {
      width: 42px; height: 42px;
      background: var(--red);
      border-radius: 6px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem;
    }
    .logo-text { line-height: 1.1; }
    .logo-text .logo-main {
      font-size: 1.35rem; font-weight: 800; color: var(--navy);
      letter-spacing: -0.02em;
    }
    .logo-text .logo-main span { color: var(--red); }
    .logo-text .logo-sub {
      font-size: 0.62rem; font-weight: 500; color: var(--mid-grey);
      letter-spacing: 0.12em; text-transform: uppercase;
    }
    .nav-links { display: flex; list-style: none; }
    .nav-links li a {
      display: block; padding: 1.2rem 1rem;
      font-size: 0.82rem; font-weight: 600; color: var(--text);
      text-decoration: none; text-transform: uppercase; letter-spacing: 0.05em;
      transition: color 0.2s; position: relative;
    }
    .nav-links li a::after {
      content: ''; position: absolute; bottom: 0; left: 1rem; right: 1rem;
      height: 2px; background: var(--red); transform: scaleX(0); transition: transform 0.25s;
    }
    .nav-links li a:hover { color: var(--red); }
    .nav-links li a:hover::after,
    .nav-links li a.active::after { transform: scaleX(1); }
    .nav-links li a.active { color: var(--red); }
    .nav-cta {
      background: var(--red); color: white;
      padding: 0.6rem 1.3rem; border-radius: 4px;
      font-size: 0.8rem; font-weight: 700; text-decoration: none;
      display: flex; align-items: center; gap: 0.4rem;
      transition: background 0.2s, transform 0.15s;
      white-space: nowrap;
    }
    .nav-cta:hover { background: var(--red-dark); transform: translateY(-1px); }

    /* ── HERO ── */
    .hero {
      position: relative; min-height: 90vh;
      display: flex; flex-direction: column; justify-content: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0; z-index: 0;
    }
    .hero-bg img {
      width: 100%; height: 100%; object-fit: cover; display: block;
    }
    .hero-bg::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(105deg, rgba(26,31,54,0.88) 45%, rgba(26,31,54,0.5) 100%);
    }
    .hero-inner {
      position: relative; z-index: 2;
      max-width: 1200px; margin: 0 auto; padding: 5rem 1.5rem 3rem;
      width: 100%;
    }
    .hero-label {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: rgba(232,72,74,0.2); color: var(--red-light);
      border: 1px solid rgba(232,72,74,0.4);
      padding: 0.35rem 0.9rem; border-radius: 100px;
      font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
      margin-bottom: 1.5rem;
      opacity: 0; animation: fadeUp 0.6s 0.1s ease forwards;
    }
    .hero-label::before { content: ''; width: 6px; height: 6px; background: var(--red); border-radius: 50%; animation: blink 1.5s infinite; }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }
    .hero h1 {
      font-size: clamp(2rem, 4.5vw, 4rem); font-weight: 800;
      color: white; line-height: 1.15; max-width: 680px;
      letter-spacing: -0.02em;
      opacity: 0; animation: fadeUp 0.6s 0.25s ease forwards;
    }
    .hero h1 span { color: var(--red-light); }
    .hero-sub {
      font-size: 1.05rem; color: rgba(255,255,255,0.72);
      line-height: 1.75; max-width: 520px; margin-top: 1.2rem;
      opacity: 0; animation: fadeUp 0.6s 0.4s ease forwards;
    }
    .hero-actions {
      display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap;
      opacity: 0; animation: fadeUp 0.6s 0.55s ease forwards;
    }
    .btn-red {
      background: var(--red-dark); color: white;
      padding: 0.85rem 2rem; border-radius: 4px;
      font-size: 0.9rem; font-weight: 700; text-decoration: none;
      display: inline-flex; align-items: center; gap: 0.5rem;
      transition: background 0.2s, transform 0.15s;
    }
    .btn-red:hover { background: var(--red-dark); transform: translateY(-2px); }
    .btn-outline-white {
      background: transparent; color: white;
      border: 2px solid rgba(255,255,255,0.4);
      padding: 0.85rem 2rem; border-radius: 4px;
      font-size: 0.9rem; font-weight: 600; text-decoration: none;
      display: inline-flex; align-items: center; gap: 0.5rem;
      transition: border-color 0.2s, background 0.2s;
    }
    .btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.08); }

    /* Hero trust bar */
    .hero-trust {
      position: relative; z-index: 2;
      background: var(--navy-mid);
      border-top: 1px solid rgba(255,255,255,0.06);
    }
    .hero-trust-inner {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(4,1fr);
      opacity: 0; animation: fadeUp 0.7s 0.8s ease forwards;
    }
    .trust-item {
      padding: 1.8rem 1.5rem;
      border-right: 1px solid rgba(255,255,255,0.07);
      display: flex; gap: 1rem; align-items: flex-start;
    }
    .trust-item:last-child { border-right: none; }
    .trust-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 0.1rem; }
    .trust-item h4 { font-size: 0.88rem; font-weight: 700; color: white; margin-bottom: 0.3rem; }
    .trust-item p { font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.55; }

    @keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

    /* ── SHARED LAYOUT ── */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
    .section-eyebrow {
      font-size: 0.72rem; font-weight: 700; color: whitesmoke;
      text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 0.6rem;
    }
    .section-heading {
      font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800;
      color: var(--navy); letter-spacing: -0.02em; line-height: 1.2;
    }
    .section-heading.light { color: white; }
    .section-sub { font-size: 0.95rem; color: var(--text-light); line-height: 1.75; margin-top: 0.8rem; }

    /* ── SERVICES ── */
    .services { padding: 6rem 0; background: var(--white); }
    .services-header { text-align: center; margin-bottom: 1.5rem; }

    /* Core services block */
    .core-services {
      display: grid; grid-template-columns: 1fr 1.4fr 1fr;
      gap: 1.5rem; align-items: start; margin-bottom: 1.5rem;
    }
    .core-text { padding: 1rem 0; }
    .core-text h3 { font-size: 1.6rem; font-weight: 800; color: var(--navy); margin-bottom: 1rem; letter-spacing: -0.02em; }
    .core-text p { font-size: 0.88rem; color: var(--text-light); line-height: 1.8; margin-bottom: 1rem; }
    .core-text p strong { color: var(--text); font-weight: 600; }

    .photo-card {
      position: relative; border-radius: 10px; overflow: hidden;
      cursor: pointer;
    }
    .photo-card img {
      width: 100%; object-fit: cover; display: block;
      transition: transform 0.5s ease;
    }
    .photo-card:hover img { transform: scale(1.05); }
    .photo-card-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(26,31,54,0.9) 0%, rgba(26,31,54,0.2) 60%, transparent 100%);
      display: flex; flex-direction: column; justify-content: flex-end; padding: 1.3rem;
    }
    .photo-card-title { font-size: 1.1rem; font-weight: 700; color: white; line-height: 1.3; margin-bottom: 0.6rem; }
    .photo-card-link {
      display: inline-flex; align-items: center; gap: 0.4rem;
      font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.8);
      text-decoration: none; transition: color 0.2s;
    }
    .photo-card-link:hover { color: var(--red-light); }
    .photo-card-link .arrow { transition: transform 0.2s; }
    .photo-card-link:hover .arrow { transform: translateX(3px); }
    .photo-card-link .circle {
      width: 22px; height: 22px; border-radius: 50%;
      border: 1.5px solid rgba(255,255,255,0.5);
      display: flex; align-items: center; justify-content: center; font-size: 0.7rem;
    }

    .photo-card.tall img { height: 460px; }
    .photo-card.medium img { height: 215px; }
    .photo-card.medium + .photo-card.medium { margin-top: 1.5rem; }

    .right-stack { display: flex; flex-direction: column; gap: 1.5rem; }

    /* ── SPECIALISMS (red section) ── */
    .specialisms {
      background: var(--light-blue-gradient);
      padding: 5rem 0;
    }
    .specialisms-inner {
      display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
    }
    .spec-cards {
      display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
    }
    .spec-card {
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 8px; padding: 1.3rem;
      transition: background 0.25s;
      cursor: pointer;
    }
    .spec-card:hover { background: rgba(255,255,255,0.2); }
    .spec-card-icon { font-size: 1.4rem; margin-bottom: 0.6rem; display: block; }
    .spec-card-name { font-size: 0.9rem; font-weight: 700; color: white; margin-bottom: 0.3rem; }
    .spec-card-desc { font-size: 0.77rem; color: rgba(255,255,255,0.75); line-height: 1.55; }
    .spec-card-link {
      display: inline-flex; align-items: center; gap: 0.3rem;
      font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.8);
      text-decoration: none; margin-top: 0.6rem; transition: color 0.2s;
    }
    .spec-card-link:hover { color: white; }

    .spec-text .section-sub { color: rgba(255,255,255,0.75); }
    .spec-text .section-heading { color: white; }
    .spec-text p {
      font-size: 0.88rem; color: rgba(255,255,255,0.75);
      line-height: 1.8; margin-top: 1rem;
    }
    .spec-text p strong { color: white; }

    /* ── WORKPLACE / DOMESTIC ── */
    .domestic { padding: 6rem 0; background: var(--off-white); }
    .domestic-inner {
      display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: start;
    }
    .domestic-cards { display: flex; flex-direction: column; gap: 1rem; }
    .dom-card {
      background: white; border: 1px solid var(--border); border-radius: 8px;
      overflow: hidden; display: flex; gap: 0; cursor: pointer;
      transition: box-shadow 0.25s, transform 0.25s;
    }
    .dom-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); transform: translateY(-2px); }
    .dom-card-img { width: 140px; flex-shrink: 0; }
    .dom-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .dom-card-body { padding: 1.1rem 1.3rem; }
    .dom-card-body h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.3rem; }
    .dom-card-body p { font-size: 0.8rem; color: var(--text-light); line-height: 1.6; }
    .dom-card-link {
      display: inline-flex; align-items: center; gap: 0.3rem;
      font-size: 0.72rem; font-weight: 600; color: var(--red);
      text-decoration: none; margin-top: 0.5rem;
    }

    .domestic-text h3 { font-size: 1.6rem; font-weight: 800; color: var(--navy); margin-bottom: 1rem; letter-spacing: -0.02em; }
    .domestic-text p { font-size: 0.88rem; color: var(--text-light); line-height: 1.8; margin-bottom: 1rem; }
    .domestic-text p strong { color: var(--text); font-weight: 600; }

    /* ── TRUST LOGOS ── */
    .trust-logos {
      background: white; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
      padding: 2rem 0;
    }
    .trust-logos-inner {
      display: flex; align-items: center; justify-content: center;
      gap: 3rem; flex-wrap: wrap;
    }
    .trust-logos p {
      font-size: 0.78rem; font-weight: 700; color: var(--text-light);
      text-transform: uppercase; letter-spacing: 0.1em; white-space: nowrap;
    }
    .cert-pill {
      font-size: 0.82rem; font-weight: 700; color: var(--navy);
      background: var(--light-grey); border: 1px solid var(--border);
      padding: 0.4rem 1rem; border-radius: 100px;
      display: flex; align-items: center; gap: 0.4rem;
    }
    .cert-pill .dot { width: 7px; height: 7px; background: var(--red); border-radius: 50%; }

    /* ── WHY US ── */
    .whyus { background: var(--navy); padding: 6rem 0; }
    .whyus-inner {
      display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
    }
    .whyus-text .section-sub { color: rgba(255,255,255,0.6); }
    .whyus-text > p {
      font-size: 0.88rem; color: rgba(255,255,255,0.6);
      line-height: 1.85; margin-top: 1rem;
    }
    .whyus-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 0; }
    .whyus-item {
      display: flex; gap: 1.2rem; align-items: flex-start;
      padding: 1.4rem 0; border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .whyus-item:last-child { border-bottom: none; }
    .whyus-check {
      width: 34px; height: 34px; min-width: 34px;
      background: #157eb8; border: 1px solid rgba(232,72,74,0.3);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: white; font-size: 1.25rem; font-weight: bolder; margin-top: 0.1rem;
    }
    .whyus-item h4 { font-size: 0.93rem; font-weight: 700; color: white; margin-bottom: 0.3rem; }
    .whyus-item p { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

    /* Why us image side */
    .whyus-visual { position: relative; }
    .whyus-photo {
      width: 100%; height: 460px; object-fit: cover; display: block;
      border-radius: 10px; filter: brightness(0.8);
    }
    .whyus-stat-card {
      position: absolute; bottom: -20px; left: -20px;
      background: var(--red); color: white;
      border-radius: 8px; padding: 1.3rem 1.6rem;
      box-shadow: 0 8px 30px #157eb8;
    }
    .whyus-stat-num { font-size: 2.4rem; font-weight: 800; line-height: 1; }
    .whyus-stat-label { font-size: 0.72rem; opacity: 0.85; margin-top: 0.2rem; }
    .whyus-rating {
      position: absolute; top: 20px; right: -10px;
      background: white; border-radius: 8px; padding: 0.9rem 1.2rem;
      box-shadow: 0 4px 20px rgba(0,0,0,0.15); text-align: center;
    }
    .whyus-rating .stars { color: #f5c518; font-size: 0.85rem; letter-spacing: 2px; }
    .whyus-rating .num { font-size: 1.6rem; font-weight: 800; color: var(--navy); line-height: 1.1; margin-top: 0.15rem; }
    .whyus-rating .lbl { font-size: 0.65rem; color: var(--mid-grey); }

    /* ── TESTIMONIALS ── */
    .testimonials { padding: 6rem 0; background: #fffaf4; }
    .testimonials-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem; }
    .slider-controls { display: flex; gap: 0.6rem; }
    .slider-btn {
      width: 42px; height: 42px; border: 1.5px solid var(--border);
      background: white; color: var(--text-light); font-size: 1rem; border-radius: 4px;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      transition: border-color 0.2s, color 0.2s, background 0.2s;
    }
    .slider-btn:hover { border-color: var(--red); color: var(--red); background: rgba(232,72,74,0.05); }
    .testimonial-track-wrap { overflow: hidden; }
    .testimonial-track { display: flex; gap: 1.5rem; transition: transform 0.6s cubic-bezier(0.77,0,0.175,1); }
    .tcard {
      min-width: calc(33.33% - 1rem); flex-shrink: 0;
      background: var(--off-white); border: 1px solid var(--border);
      border-top: 3px solid var(--red);
      border-radius: 8px; padding: 1.5rem; position: relative;
    }
    .tcard-stars { color: #f5c518; font-size: 0.85rem; margin-bottom: 1rem; }
    .tcard-text { font-size: 0.9rem; color: var(--text); line-height: 1.75; margin-bottom: 1.5rem; }
    .tcard-author { display: flex; align-items: center; gap: 0.8rem; }
    .tcard-avatar {
      width: 40px; height: 40px; border-radius: 50%;
      background: var(--light-grey); display: flex; align-items: center; justify-content: center;
      font-weight: 700; font-size: 0.9rem; color: var(--red);
    }
    .tcard a {text-decoration: none; }
    .tcard-name { font-size: 0.82rem; font-weight: 700; color: var(--navy); }
    .tcard-loc { font-size: 0.75rem; color: var(--mid-grey); margin-top: 0.1rem; }
    .slider-dots { display: flex; gap: 0.5rem; margin-top: 1.8rem; }
    .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: background 0.3s, transform 0.3s; }
    .dot.active { background: var(--red); transform: scale(1.3); }

    /* ── CTA BAND ── */
    .cta-band {
      background: linear-gradient(135deg, #2c3a7a 0%, #1a1f36 100%);
      padding: 4rem 0; text-align: center;
    }
    .cta-band h2 { font-size: 1.7rem; font-weight: 800; color: white; margin-bottom: 0.8rem; letter-spacing: -0.02em; }
    .cta-band p { font-size: 0.92rem; color: rgba(255,255,255,0.65); margin-bottom: 2rem; }

    /* ── FAQ ── */
    .faq { background: var(--light-blue-gradient); padding: 5rem 0; }
    .faq-header { text-align: center; margin-bottom: 2.5rem; }
    .faq-header .section-heading { color: white; }
    .faq-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.6rem; }
    .faq-item {
      background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
      border-radius: 6px; overflow: hidden;
    }
    .faq-q {
      width: 100%; padding: 1rem 1.4rem;
      display: flex; justify-content: space-between; align-items: center;
      font-size: 0.9rem; font-weight: 600; color: white;
      background: none; border: none; cursor: pointer; text-align: left;
      transition: background 0.2s;
    }
    .faq-q:hover { background: rgba(255,255,255,0.08); }
    .faq-q .faq-icon { font-size: 1.1rem; transition: transform 0.3s; flex-shrink: 0; margin-left: 1rem; }
    .faq-item.open .faq-q .faq-icon { transform: rotate(45deg); }
    .faq-a {
      max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease;
    }
    .faq-item.open .faq-a { max-height: 200px; }
    .faq-a-inner {
      padding: 0 1.4rem 1.2rem;
      font-size: 0.85rem; color: rgba(255,255,255,0.8); line-height: 1.75;
    }

    /* ── FOOTER ── */
    footer { background: var(--navy); padding: 4rem 0 0; }
    .footer-grid {
      display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1.3fr;
      gap: 3rem; padding-bottom: 3rem;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .footer-brand .logo-main { font-size: 1.4rem; font-weight: 800; color: white; }
    .footer-brand .logo-main span { color: var(--red); }
    .footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-top: 0.8rem; }
    .footer-contact { margin-top: 1.2rem; display: flex; flex-direction: column; gap: 0.5rem; }
    .footer-contact a {
      display: flex; align-items: center; gap: 0.5rem;
      font-size: 0.8rem; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s;
    }
    .footer-contact a:hover { color: white; }
    .footer-col h4 {
      font-size: 0.78rem; font-weight: 700; color: indianred;
      text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.1rem;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
    .footer-col ul li {
      font-size: 0.82rem; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: white; }
    .footer-hours { display: flex; flex-direction: column; gap: 0.4rem; }
    .footer-hours .row { display: flex; justify-content: space-between; font-size: 0.8rem; color: rgba(255,255,255,0.55); }
    .footer-hours .row span:last-child { color: rgba(255,255,255,0.85); }
    .footer-hours .emergency { font-size: 0.78rem; color: var(--red-light); margin-top: 0.6rem; }
    .footer-newsletter { margin-top: 0.5rem; display: flex; gap: 0; }
    .footer-newsletter input {
      flex: 1; padding: 0.7rem 0.9rem; background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15); color: white; font-size: 0.8rem;
      border-radius: 4px 0 0 4px; outline: none;
    }
    .footer-newsletter input::placeholder { color: rgba(255,255,255,0.35); }
    .footer-newsletter button {
      background: var(--red); color: white; border: none; padding: 0.7rem 1.1rem;
      font-size: 0.8rem; font-weight: 600; cursor: pointer; border-radius: 0 4px 4px 0;
      transition: background 0.2s;
    }
    .footer-newsletter button:hover { background: var(--red-dark); }
    .footer-socials { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
    .footer-socials a {
      width: 32px; height: 32px; border-radius: 50%;
      background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.75rem;
      transition: background 0.2s, color 0.2s;
    }
    .footer-socials a:hover { background: var(--red); color: white; border-color: var(--red); }
    .footer-bottom {
      padding: 1.3rem 0; text-align: center;
      font-size: 0.75rem; color: rgba(255,255,255,0.3);
    }
    .footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
    .footer-bottom a:hover { color: rgba(255,255,255,0.7); }

    #footer-socials {margin-bottom: 2.75rem}

    /* ── REVEAL ── */
    .reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.65s ease, transform 0.65s ease; }
    .reveal.visible { opacity: 1; transform: none; }
    .reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity 0.65s ease, transform 0.65s ease; }
    .reveal-left.visible { opacity: 1; transform: none; }
    .reveal-right { opacity: 0; transform: translateX(32px); transition: opacity 0.65s ease, transform 0.65s ease; }
    .reveal-right.visible { opacity: 1; transform: none; }

    /* ── MOBILE ── */
    @media (max-width: 960px) {
      .topbar-contact { display: none; }
      .nav-links { display: none; }
      .hero-trust-inner { grid-template-columns: 1fr 1fr; }
      .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
      .core-services { grid-template-columns: 1fr; }
      .specialisms-inner { grid-template-columns: 1fr; }
      .spec-cards { grid-template-columns: 1fr 1fr; }
      .domestic-inner { grid-template-columns: 1fr; }
      .whyus-inner { grid-template-columns: 1fr; }
      .whyus-stat-card { left: 0; bottom: -16px; }
      .whyus-rating { right: 0; }
      .tcard { min-width: calc(100% - 0px); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      #services, #whyus, #testimonials {padding: 3.85rem 0rem}
    }
    @media (max-width: 600px) {
      .hero-trust-inner { grid-template-columns: 1fr; }
      .spec-cards { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
    }
