

    :root {
      --pink:   #ff2d8f;
      --pink2:  #e0197a;
      --dark:   #1a1a1a;
      --dark2:  #111111;
      --grey:   #6b7280;
      --shadow: 0 4px 24px rgba(255,45,143,0.13);
      --radius: 12px;
      --navy:   #1a1a1a;
      --navy2:  #222222;
      --orange: #ff2d8f;
      --orange2:#e0197a;
      --white:  #ffffff;
      --light:  #fff1f7;
      --grey:   #6b7280;
      --text:   #1a1a1a;
      --shadow: 0 4px 24px rgba(255,45,143,0.13);
      --radius: 12px;
    }

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

    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: 'Manrope', sans-serif;
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
    }

    h1,h2,h3,h4 {
      font-family: 'Manrope', sans-serif;
      line-height: 1.1;
      letter-spacing: -0.03em;
    }

    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }

    .container { max-width: 1100px; margin: 0 auto; padding: 0 40px; }

    /* =========================================================
       TOP BAR
    ========================================================= */
    .topbar {
      background: var(--navy);
      padding: 10px 0;
      font-size: 0.85rem;
      color: rgba(255,255,255,0.8);
    }
    .topbar .inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 8px;
    }
    .topbar a {
      color: rgba(255,255,255,0.85);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: color 0.2s;
    }
    .topbar a:hover { color: var(--orange); }
    .topbar .tb-right { display: flex; gap: 20px; flex-wrap: wrap; }

    /* =========================================================
       HEADER / NAV
    ========================================================= */
    header {
      background: var(--white);
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 20px rgba(0,0,0,0.07);
      border-bottom: 1px solid #f0e0ea;
    }
    .nav-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
      gap: 24px;
    }
    /* LOGO */
    .logo {
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-decoration: none;
      flex-shrink: 0;
    }
    .logo-img { height: 52px; width: auto; display: block; }
    .logo-name span { color: var(--orange); }
    /* NAV */
    nav { flex: 1; display: flex; justify-content: center; }
    nav ul {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 2px;
    }
    nav ul li a {
      padding: 7px 12px;
      border-radius: 6px;
      font-weight: 600;
      font-size: 0.88rem;
      color: var(--navy);
      transition: all 0.2s;
      white-space: nowrap;
    }
    nav ul li a:hover { background: var(--light); color: var(--orange); }
    /* NAV CTA */
    .nav-cta {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-shrink: 0;
    }
    .btn { display: inline-flex; align-items: center; gap: 7px; padding: 10px 18px; border-radius: var(--radius); font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 0.9rem; letter-spacing: 0.3px; cursor: pointer; border: 2px solid transparent; transition: all 0.22s; white-space: nowrap; }
    .btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
    .btn-primary:hover { background: var(--orange2); border-color: var(--orange2); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,45,143,0.35); }
    .btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
    .btn-outline:hover { background: var(--navy); color: var(--white); }
    .btn-white { background: var(--white); color: var(--navy); border-color: var(--white); }
    .btn-white:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }
    .btn-whatsapp { background: #25D366; color: var(--white); border-color: #25D366; }
    .btn-whatsapp:hover { background: #1ebe57; border-color: #1ebe57; }
    .btn-dark { background: var(--navy); color: var(--white); border-color: var(--navy); }
    .btn-dark:hover { background: #333; }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; flex-shrink: 0; }
    .hamburger span { width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }

    /* =========================================================
       MOBILE NAV
    ========================================================= */
    .mobile-nav {
      display: none;
      background: var(--white);
      border-top: 1px solid #e5e7eb;
      padding: 20px;
    }
    .mobile-nav.open { display: block; }
    .mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
    .mobile-nav ul li a { display: block; padding: 12px 16px; border-radius: 8px; font-weight: 600; color: var(--navy); transition: all 0.2s; }
    .mobile-nav ul li a:hover { background: var(--light); color: var(--orange); }
    .mobile-nav .mob-cta { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }

    /* =========================================================
       HERO
    ========================================================= */
    .hero {
      background: var(--orange);
      position: relative;
      overflow: hidden;
      padding: 40px 0 40px;
      display: flex;
      align-items: center;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 70% at 100% 0%, rgba(255,255,255,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 0% 100%, rgba(0,0,0,0.18) 0%, transparent 55%);
      z-index: 1;
    }
    .hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 400px;
      gap: 40px;
      align-items: center;
    }
    #quote {
      display: flex;
      justify-content: center;
    }
    .hero-badge {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0;
      background: rgba(255,255,255,0.2);
      border: 1px solid rgba(255,255,255,0.5);
      color: var(--white);
      padding: 8px 22px;
      border-radius: 50px;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      margin-bottom: 20px;
      width: 100%;
    }
    .hero h1 {
      font-size: clamp(2rem, 3.8vw, 3.1rem);
      font-weight: 900;
      color: var(--white);
      margin-bottom: 18px;
      text-transform: uppercase;
      line-height: 1.1;
    }
    .hero h1 span { color: var(--white); text-decoration: underline; text-decoration-color: rgba(255,255,255,0.4); text-underline-offset: 6px; }
    .hero-sub {
      font-size: 1.1rem;
      color: rgba(255,255,255,0.9);
      line-height: 1.7;
      margin-bottom: 32px;
      max-width: 520px;
    }
    .hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }

    /* Hero CTA buttons — colour coded */
    .hero-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 13px 22px;
      border-radius: 14px;
      font-family: 'Manrope', sans-serif;
      text-decoration: none;
      transition: all 0.22s;
      border: 2px solid transparent;
      cursor: pointer;
      flex-shrink: 0;
    }
    .hero-btn svg { flex-shrink: 0; }
    .hero-btn span { display: flex; flex-direction: column; line-height: 1.2; }
    .hero-btn strong { font-size: 1rem; font-weight: 900; letter-spacing: -0.2px; }
    .hero-btn small { font-size: 0.72rem; font-weight: 500; opacity: 0.85; }

    /* Book Online — dark charcoal */
    .hero-btn-book {
      background: #1a1a1a;
      color: white;
      border-color: rgba(255,255,255,0.15);
    }
    .hero-btn-book:hover {
      background: #2d2d2d;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.35);
    }

    /* Call Now — solid white with dark text */
    .hero-btn-call {
      background: white;
      color: #1a1a1a;
      border-color: white;
    }
    .hero-btn-call:hover {
      background: #f0f0f0;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    }
    .hero-btn-call svg { color: var(--orange); }

    /* WhatsApp — branded green */
    .hero-btn-wa {
      background: #25D366;
      color: white;
      border-color: #1ebe57;
    }
    .hero-btn-wa:hover {
      background: #1ebe57;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(37,211,102,0.4);
    }
    .hero-trust {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      align-items: center;
    }
    .ht-item {
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,0.95);
      font-size: 0.9rem;
      font-weight: 700;
    }
    .ht-item svg { color: white; flex-shrink: 0; }

    /* Quote Card */
    .quote-card {
      background: var(--white);
      border-radius: 20px;
      padding: 18px 16px;
      box-shadow: 0 24px 64px rgba(180,0,80,0.22), 0 4px 16px rgba(0,0,0,0.06);
      width: 100%;
    }
    .qc-header { margin-bottom: 10px; }
    .qc-header h3 { font-size: 1rem; font-weight: 900; color: var(--navy); text-transform: uppercase; margin-bottom: 1px; }
    .qc-header p { color: var(--grey); font-size: 0.75rem; }
    .qc-step { margin-bottom: 10px; }
    .qc-step-label { font-size: 0.68rem; font-weight: 800; color: var(--navy); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }

    /* Service picker */
    /* Service Picker — flex-wrap so last row fills, no orphan gaps */
    .service-picker { display: flex; flex-wrap: wrap; gap: 4px; }
    .sp-option { cursor: pointer; flex: 1 1 calc(25% - 4px); min-width: 68px; }
    .sp-option input { position: absolute; opacity: 0; width: 0; height: 0; }
    .sp-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2px;
      padding: 6px 4px 5px;
      border: 2px solid #e5e7eb;
      border-radius: 8px;
      background: #fafafa;
      text-align: center;
      transition: all 0.2s;
      cursor: pointer;
      height: 100%;
    }
    .sp-card:hover { border-color: var(--orange); background: var(--light); }
    .sp-option input:checked + .sp-card {
      border-color: var(--orange);
      background: var(--light);
      box-shadow: 0 0 0 3px rgba(255,45,143,0.15);
    }
    .sp-icon { display: none; }
    .sp-cat { font-size: 0.52rem; font-weight: 700; color: var(--grey); text-transform: uppercase; letter-spacing: 0.8px; line-height: 1; margin-bottom: 1px; opacity: 0.65; }
    .sp-name { font-size: 0.68rem; font-weight: 800; color: var(--navy); letter-spacing: 0.2px; line-height: 1.2; }
    .sp-price { font-size: 0.66rem; font-weight: 700; color: var(--orange); }

    /* Extras */
    .extras-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
    .extra-option { cursor: pointer; }
    .extra-option input { position: absolute; opacity: 0; width: 0; height: 0; }
    .extra-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2px;
      padding: 7px 4px 6px;
      border: 2px solid #e5e7eb;
      border-radius: 8px;
      background: #fafafa;
      text-align: center;
      transition: all 0.2s;
      cursor: pointer;
      position: relative;
      min-height: 52px;
    }
    .extra-card:hover { border-color: var(--orange); background: var(--light); }
    .extra-option input:checked + .extra-card {
      border-color: var(--orange);
      background: var(--light);
      box-shadow: 0 0 0 3px rgba(255,45,143,0.15);
    }
    .extra-check {
      position: absolute;
      top: 4px; right: 4px;
      width: 13px; height: 13px;
      border: 2px solid #d1d5db;
      border-radius: 3px;
      display: flex; align-items: center; justify-content: center;
      color: transparent;
      transition: all 0.2s;
      background: white;
      font-size: 0.55rem;
    }
    .extra-option input:checked + .extra-card .extra-check {
      background: var(--orange);
      border-color: var(--orange);
      color: white;
    }
    .extra-icon { display: none; }
    .extra-name { font-size: 0.62rem; font-weight: 800; color: var(--navy); line-height: 1.2; text-transform: uppercase; letter-spacing: 0.2px; }
    .extra-price { font-size: 0.62rem; font-weight: 700; color: var(--orange); }
    @media (max-width: 480px) {
      .extras-grid { grid-template-columns: repeat(2, 1fr); }
      .service-picker { gap: 4px; }
      .sp-option { flex: 1 1 calc(50% - 4px); }
      .hero h1 { font-size: 1.9rem; }
      .section-title { font-size: 1.6rem; }
      .page-hero h1 { font-size: 1.7rem; }
      .hf-services { grid-template-columns: 1fr 1fr; }
      .price-grid { grid-template-columns: 1fr !important; }
      .guarantee-strip { flex-direction: column; gap: 14px; }
    }

    /* Price total */
    .price-total {
      background: linear-gradient(135deg, var(--navy) 0%, #2a1a22 100%);
      border-radius: 12px;
      padding: 14px 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 14px;
      gap: 12px;
    }
    .pt-label { font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; }
    .pt-amount { font-size: 1.6rem; font-weight: 900; color: var(--orange); line-height: 1; }
    .pt-note { font-size: 0.7rem; color: rgba(255,255,255,0.5); text-align: right; }

    .qc-submit { width: 100%; justify-content: center; font-size: 0.92rem; padding: 11px; margin-bottom: 0; }

    /* Form fields */
    .form-group { position: relative; margin-bottom: 7px; }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 8px 11px;
      border: 2px solid #e5e7eb;
      border-radius: 8px;
      font-family: 'Manrope', sans-serif;
      font-size: 0.82rem;
      color: var(--text);
      transition: border-color 0.2s;
      background: #fafafa;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--orange);
      background: var(--white);
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
    .form-note { text-align: center; font-size: 0.7rem; color: var(--grey); margin-top: 7px; }

    /* =========================================================
       MARQUEE
    ========================================================= */
    .marquee-wrap {
      background: #1a1a1a;
      overflow: hidden;
      padding: 13px 0;
      border-top: 3px solid var(--orange);
    }
    .marquee-track {
      display: flex;
      gap: 0;
      animation: marquee 25s linear infinite;
      white-space: nowrap;
    }
    .marquee-item {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      padding: 0 30px;
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--white);
    }
    .marquee-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
    @keyframes spin { to { transform: rotate(360deg); } }
    @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

    /* ── Autocomplete address search ── */
    .ac-wrap {
      position: relative;
      display: flex;
      align-items: center;
    }
    .ac-wrap .ac-icon {
      position: absolute;
      left: 12px;
      color: #9ca3af;
      pointer-events: none;
      flex-shrink: 0;
    }
    .ac-wrap input {
      width: 100%;
      padding: 8px 36px 8px 36px !important;
      border: 2px solid #e5e7eb;
      border-radius: 8px;
      font-family: 'Manrope', sans-serif;
      font-size: 0.82rem;
      color: var(--text);
      background: #fafafa;
      transition: border-color 0.2s;
    }
    .ac-wrap input:focus {
      outline: none;
      border-color: var(--orange);
      background: var(--white);
    }
    .ac-wrap #ac-spinner {
      position: absolute;
      right: 12px;
    }
    .ac-dropdown {
      position: static;
      margin-top: 4px;
      background: white;
      border: 2px solid var(--orange);
      border-radius: 10px;
      box-shadow: 0 8px 32px rgba(255,45,143,0.15);
      max-height: 220px;
      overflow-y: auto;
      font-size: 0.88rem;
    }
    .ac-dropdown::-webkit-scrollbar { width: 4px; }
    .ac-dropdown::-webkit-scrollbar-thumb { background: #e5e7eb; border-radius: 4px; }
    .ac-item {
      padding: 10px 14px;
      cursor: pointer;
      border-bottom: 1px solid #f3f4f6;
      color: var(--text);
      font-weight: 500;
      transition: background 0.15s;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .ac-item:last-child { border-bottom: none; }
    .ac-item:hover, .ac-item.ac-active { background: var(--light); color: var(--orange); }
    .ac-item svg { flex-shrink: 0; color: #9ca3af; }
    .ac-item:hover svg, .ac-item.ac-active svg { color: var(--orange); }
    .ac-no-results {
      padding: 12px 14px;
      color: var(--grey);
      font-size: 0.85rem;
      text-align: center;
    }
    .ac-change-btn {
      background: none;
      border: 1px dashed #d1d5db;
      border-radius: 6px;
      padding: 5px 12px;
      font-size: 0.8rem;
      font-family: 'Manrope', sans-serif;
      color: var(--grey);
      cursor: pointer;
      margin-bottom: 12px;
      transition: all 0.2s;
    }
    .ac-change-btn:hover { border-color: var(--orange); color: var(--orange); }
    /* position parent for dropdown */
    .form-group { position: relative; margin-bottom: 14px; }

    /* =========================================================
       STATS BAR
    ========================================================= */
    .stats-bar {
      background: var(--white);
      padding: 36px 0;
      border-bottom: 1px solid #f0e0ea;
      border-top: 1px solid #f0e0ea;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      text-align: center;
    }
    .stat-item {
      padding: 10px 20px;
      border-right: 1px solid #f0e0ea;
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-family: 'Manrope', sans-serif;
      font-size: 2.4rem;
      font-weight: 900;
      color: var(--orange);
      line-height: 1;
    }
    .stat-label { font-size: 0.9rem; color: var(--grey); font-weight: 600; margin-top: 4px; }

    /* =========================================================
       SECTION SHARED
    ========================================================= */
    section { padding: 80px 0; }
    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255,45,143,0.1);
      color: var(--orange);
      padding: 5px 12px;
      border-radius: 50px;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .section-title {
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 900;
      color: var(--navy);
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .section-title span { color: var(--orange); }
    .section-sub { color: var(--grey); font-size: 1.05rem; line-height: 1.7; max-width: 600px; }
    .section-header { margin-bottom: 50px; }
    .section-header.center { text-align: center; }
    .section-header.center .section-sub { margin: 0 auto; }

    /* =========================================================
       SERVICES
    ========================================================= */
    .services-section { background: var(--white); }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .service-card {
      border: 2px solid #e5e7eb;
      border-radius: 16px;
      overflow: hidden;
      transition: all 0.3s;
      position: relative;
    }
    .service-card:hover {
      border-color: var(--orange);
      transform: translateY(-4px);
      box-shadow: var(--shadow);
    }
    .service-img {
      height: 180px;
      background: linear-gradient(145deg, #1a1a1a 0%, #200f1a 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-size: 3.5rem;
      position: relative;
      overflow: hidden;
      padding: 10px 8px 0;
    }
    .service-img img {
      width: 88%;
      max-width: 160px;
      height: 140px;
      display: block;
      object-fit: contain;
      filter: drop-shadow(0 2px 8px rgba(255,45,143,0.2));
      transition: transform 0.3s ease;
    }
    .service-card:hover .service-img img {
      transform: scale(1.05);
    }
    .service-img::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 40%;
      background: linear-gradient(transparent, rgba(0,0,0,0.5));
    }
    .service-price {
      position: absolute;
      top: 12px;
      right: 12px;
      background: var(--orange);
      color: var(--white);
      padding: 4px 12px;
      border-radius: 50px;
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      z-index: 2;
    }
    .service-body { padding: 20px; }
    .service-body h3 { font-size: 1.25rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; text-transform: uppercase; }
    .service-body p { font-size: 0.9rem; color: var(--grey); line-height: 1.6; margin-bottom: 16px; }
    .service-actions { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
    .service-actions a { text-align: center; padding: 8px 6px; border-radius: 8px; font-weight: 700; font-size: 0.78rem; font-family: 'Manrope', sans-serif; letter-spacing: 0.3px; transition: all 0.2s; display: flex; align-items: center; justify-content: center; gap: 4px; }
    .sa-primary { background: var(--orange); color: var(--white); }
    .sa-primary:hover { background: var(--orange2); }
    .sa-wa { background: #25D366; color: var(--white); }
    .sa-wa:hover { background: #1ebe57; }
    .sa-call { background: var(--navy); color: var(--white); }
    .sa-call:hover { background: #333; }

    /* =========================================================
       WHY CHOOSE US
    ========================================================= */
    .why-section { background: var(--light); }
    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .why-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .why-card {
      background: var(--white);
      border-radius: 14px;
      padding: 24px 20px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.05);
      transition: all 0.3s;
    }
    .why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
    .why-icon {
      width: 48px;
      height: 48px;
      background: rgba(255,45,143,0.12);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px;
      font-size: 1.4rem;
    }
    .why-card h4 { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; text-transform: uppercase; }
    .why-card p { font-size: 0.88rem; color: var(--grey); line-height: 1.6; }
    .why-img-wrap {
      border-radius: 20px;
      overflow: hidden;
      background: linear-gradient(145deg, #1a1a1a 0%, #3a0a22 60%, #1a1a1a 100%);
      height: 480px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 8rem;
      position: relative;
    }
    .why-img-badge {
      position: absolute;
      bottom: 24px;
      left: 24px;
      right: 24px;
      background: var(--white);
      border-radius: 14px;
      padding: 16px 20px;
      display: flex;
      align-items: center;
      gap: 14px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }
    .wib-stars { color: #fbbf24; font-size: 1.2rem; letter-spacing: 2px; flex-shrink: 0; line-height: 1; }
    .wib-text { flex: 1; }
    .wib-text strong { display: block; font-size: 0.95rem; font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 2px; }
    .wib-text span { font-size: 0.78rem; color: var(--grey); }

    /* =========================================================
       PROCESS
    ========================================================= */
    .process-section { background: linear-gradient(160deg, #1a1a1a 0%, #2a1a22 50%, #1a1a1a 100%); }
    .process-section .section-title { color: var(--white); }
    .process-section .section-sub { color: rgba(255,255,255,0.65); }
    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      position: relative;
    }
    .process-grid::before {
      content: '';
      position: absolute;
      top: 40px;
      left: calc(12.5% + 20px);
      right: calc(12.5% + 20px);
      height: 2px;
      background: linear-gradient(90deg, var(--orange), rgba(255,45,143,0.3));
      z-index: 1;
    }
    .step-card { text-align: center; position: relative; z-index: 2; }
    .step-num {
      width: 80px;
      height: 80px;
      background: var(--orange);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-family: 'Manrope', sans-serif;
      font-size: 2rem;
      font-weight: 900;
      color: var(--white);
      border: 4px solid #1a1a1a;
      box-shadow: 0 0 0 3px var(--orange);
    }
    .step-card h4 { font-size: 1.1rem; font-weight: 800; color: var(--white); margin-bottom: 8px; text-transform: uppercase; }
    .step-card p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

    /* =========================================================
       BEFORE / AFTER GALLERY
    ========================================================= */
    .gallery-section { background: var(--white); }
    .ba-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .ba-card {
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 8px 32px rgba(0,0,0,0.12);
      border: 1px solid #e5e7eb;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .ba-card:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(255,45,143,0.15); }

    /* Split comparison panel */
    .ba-panels {
      display: grid;
      grid-template-columns: 1fr 1fr;
      position: relative;
    }
    /* Divider line in middle */
    .ba-panels::after {
      content: 'VS';
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 32px; height: 32px;
      background: white;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.6rem; font-weight: 900; color: var(--orange);
      letter-spacing: 0.5px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
      z-index: 10;
    }
    .ba-panel {
      height: 220px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    /* BEFORE: grimy dark gradient with grime texture */
    .ba-panel.before {
      background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(80,40,0,0.6) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 30% 70%, rgba(60,20,0,0.5) 0%, transparent 60%),
        linear-gradient(160deg, #1a0f00 0%, #2d1a00 30%, #1a1000 60%, #0d0800 100%);
    }
    /* Grime spots on before */
    .ba-panel.before::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle 30px at 40% 35%, rgba(120,60,0,0.4) 0%, transparent 100%),
        radial-gradient(circle 20px at 65% 55%, rgba(100,50,0,0.35) 0%, transparent 100%),
        radial-gradient(circle 25px at 25% 65%, rgba(140,70,0,0.3) 0%, transparent 100%),
        radial-gradient(circle 15px at 75% 30%, rgba(90,45,0,0.4) 0%, transparent 100%);
    }
    /* AFTER: clean bright gradient */
    .ba-panel.after {
      background: linear-gradient(160deg, #2a2a2a 0%, #3a3a3a 40%, #1f1f1f 100%);
    }
    .ba-panel.after::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 50% at 50% 40%, rgba(255,255,255,0.06) 0%, transparent 70%),
        radial-gradient(circle 40px at 35% 45%, rgba(255,255,255,0.04) 0%, transparent 100%);
    }
    /* Oven rack illustration */
    .ba-rack {
      position: absolute;
      bottom: 20%;
      left: 10%; right: 10%;
      height: 4px;
      border-radius: 2px;
      display: flex; gap: 8px; align-items: center;
    }
    .ba-panel.before .ba-rack { background: rgba(180,100,0,0.7); }
    .ba-panel.after .ba-rack { background: rgba(200,200,200,0.4); box-shadow: 0 0 6px rgba(200,200,200,0.2); }
    .ba-rack::before, .ba-rack::after {
      content: '';
      position: absolute;
      width: 2px; height: 30px;
      bottom: 0;
      border-radius: 1px;
    }
    .ba-rack::before { left: 15%; }
    .ba-rack::after { right: 15%; }
    .ba-panel.before .ba-rack::before,
    .ba-panel.before .ba-rack::after { background: rgba(160,80,0,0.6); }
    .ba-panel.after .ba-rack::before,
    .ba-panel.after .ba-rack::after { background: rgba(180,180,180,0.3); }

    /* Door glass reflection on after */
    .ba-glass {
      width: 60%; height: 45%;
      border-radius: 6px;
      border: 2px solid;
      position: relative;
      display: flex; align-items: center; justify-content: center;
    }
    .ba-panel.before .ba-glass {
      border-color: rgba(100,60,0,0.5);
      background: radial-gradient(ellipse at 40% 35%, rgba(140,80,0,0.25) 0%, rgba(40,20,0,0.5) 100%);
    }
    .ba-panel.after .ba-glass {
      border-color: rgba(255,255,255,0.15);
      background: radial-gradient(ellipse at 35% 30%, rgba(255,255,255,0.12) 0%, rgba(0,0,0,0.3) 100%);
      box-shadow: inset 0 0 20px rgba(255,255,255,0.05);
    }
    /* Shine on clean glass */
    .ba-panel.after .ba-glass::after {
      content: '';
      position: absolute;
      top: 10%; left: 10%; width: 30%; height: 40%;
      background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 100%);
      border-radius: 3px;
    }

    /* Labels */
    .ba-label {
      position: absolute;
      top: 10px; left: 10px;
      padding: 4px 10px;
      border-radius: 50px;
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }
    .ba-panel.before .ba-label { background: rgba(0,0,0,0.6); color: #f97316; border: 1px solid rgba(249,115,22,0.4); }
    .ba-panel.after .ba-label { background: rgba(0,0,0,0.6); color: #22c55e; border: 1px solid rgba(34,197,94,0.4); }

    /* Card footer */
    .ba-footer {
      background: #1a1a1a;
      padding: 14px 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }
    .ba-footer-info { }
    .ba-footer-info strong { display: block; color: white; font-size: 0.88rem; font-weight: 700; }
    .ba-footer-info span { color: rgba(255,255,255,0.5); font-size: 0.75rem; }
    .ba-footer .stars { color: #fbbf24; font-size: 0.82rem; letter-spacing: 1px; flex-shrink: 0; }

    /* CTA inside card */
    .ba-cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--orange);
      color: white;
      border-radius: 8px;
      padding: 7px 13px;
      font-size: 0.75rem;
      font-weight: 800;
      font-family: 'Manrope', sans-serif;
      text-decoration: none;
      transition: background 0.2s;
      flex-shrink: 0;
    }
    .ba-cta:hover { background: var(--orange2); }

    /* =========================================================
       AREAS COVERED
    ========================================================= */
    .areas-section { background: var(--light); }
    .areas-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .area-card {
      background: var(--white);
      border-radius: 14px;
      padding: 24px 20px;
      border: 2px solid #e5e7eb;
      transition: all 0.3s;
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }
    .area-card:hover { border-color: var(--orange); transform: translateY(-3px); box-shadow: var(--shadow); }
    .area-icon {
      width: 44px;
      height: 44px;
      background: var(--orange);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      flex-shrink: 0;
    }
    .area-body h4 { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; text-transform: uppercase; }
    .area-body p { font-size: 0.82rem; color: var(--grey); line-height: 1.5; }
    .area-link { display: inline-flex; align-items: center; gap: 4px; color: var(--orange); font-weight: 700; font-size: 0.85rem; margin-top: 8px; }
    .area-link:hover { text-decoration: underline; }

    /* =========================================================
       REVIEWS
    ========================================================= */
    .reviews-section { background: linear-gradient(160deg, #1a1a1a 0%, #2a1020 50%, #1a1a1a 100%); }
    .reviews-section .section-title { color: var(--white); }
    .reviews-section .section-sub { color: rgba(255,255,255,0.65); }
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .review-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 16px;
      padding: 28px 24px;
      transition: all 0.3s;
    }
    .review-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,45,143,0.4); }
    .review-stars { color: #fbbf24; font-size: 1.1rem; margin-bottom: 16px; }
    .review-text { color: rgba(255,255,255,0.8); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
    .review-author { display: flex; align-items: center; gap: 12px; }
    .review-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--orange);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Manrope', sans-serif;
      font-weight: 900;
      font-size: 1.1rem;
      color: var(--white);
      flex-shrink: 0;
    }
    .review-info strong { display: block; color: var(--white); font-size: 0.95rem; }
    .review-info span { color: rgba(255,255,255,0.5); font-size: 0.8rem; }
    .google-badge {
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 10px;
      padding: 14px 20px;
      width: fit-content;
      margin: 40px auto 0;
    }
    .google-g { font-family: 'Manrope', sans-serif; font-size: 1.8rem; font-weight: 900; background: linear-gradient(135deg, #4285F4, #EA4335, #FBBC05, #34A853); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
    .google-badge-text strong { display: block; color: var(--white); font-size: 1rem; font-weight: 700; }
    .google-badge-text span { color: rgba(255,255,255,0.6); font-size: 0.82rem; }

    /* =========================================================
       CTA BAND
    ========================================================= */
    .cta-band {
      background: linear-gradient(135deg, #c0166e 0%, var(--orange) 50%, #c0166e 100%);
      padding: 70px 0;
      position: relative;
      overflow: hidden;
    }
    .cta-band::after {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 320px; height: 320px;
      border-radius: 50%;
      background: rgba(255,255,255,0.07);
    }
    .cta-band::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .cta-inner {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 30px;
    }
    .cta-text h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 900; color: var(--white); text-transform: uppercase; margin-bottom: 8px; }
    .cta-text p { color: rgba(255,255,255,0.85); font-size: 1rem; }
    .cta-btns { display: flex; flex-wrap: wrap; gap: 12px; }

    /* =========================================================
       BLOG PREVIEW
    ========================================================= */
    .blog-section { background: var(--white); }
    .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .blog-card {
      border: 2px solid #e5e7eb;
      border-radius: 14px;
      overflow: hidden;
      transition: all 0.3s;
    }
    .blog-card:hover { border-color: var(--orange); transform: translateY(-3px); box-shadow: var(--shadow); }
    .blog-img {
      height: 160px;
      background: linear-gradient(145deg, #1a1a1a 0%, #2a0f1a 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3rem;
    }
    .blog-body { padding: 20px; }
    .blog-tag { display: inline-block; background: rgba(255,45,143,0.1); color: var(--orange); padding: 3px 10px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
    .blog-body h3 { font-size: 1.15rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; text-transform: uppercase; line-height: 1.3; }
    .blog-body p { font-size: 0.88rem; color: var(--grey); line-height: 1.6; margin-bottom: 14px; }
    .blog-read { color: var(--orange); font-weight: 700; font-size: 0.88rem; display: inline-flex; align-items: center; gap: 4px; }

    /* =========================================================
       FAQ
    ========================================================= */
    .faq-section { background: var(--light); }
    .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
    .faq-list { display: flex; flex-direction: column; gap: 12px; }
    .faq-item {
      background: var(--white);
      border: 2px solid #e5e7eb;
      border-radius: 12px;
      overflow: hidden;
      transition: border-color 0.2s;
    }
    .faq-item.open { border-color: var(--orange); }
    .faq-question {
      padding: 18px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      font-weight: 700;
      color: var(--navy);
      font-size: 0.95rem;
      user-select: none;
    }
    .faq-chevron {
      width: 24px;
      height: 24px;
      background: var(--light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: transform 0.3s, background 0.2s;
    }
    .faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--orange); color: white; }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.35s ease;
    }
    .faq-item.open .faq-answer { max-height: 300px; }
    .faq-answer p { padding: 0 20px 18px; color: var(--grey); font-size: 0.9rem; line-height: 1.7; }

    /* =========================================================
       FOOTER
    ========================================================= */
    footer {
      background: #111111;
      color: rgba(255,255,255,0.75);
      padding: 60px 0 0;
      border-top: 4px solid var(--orange);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      padding-bottom: 50px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .footer-logo-img { height: 48px; width: auto; display: block; margin-bottom: 14px; filter: brightness(0) invert(1); }
    .footer-logo span { color: var(--orange); }
    .footer-desc { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
    .footer-contact-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; margin-bottom: 10px; }
    .footer-contact-item a { color: rgba(255,255,255,0.75); }
    .footer-contact-item a:hover { color: var(--orange); }
    .footer-col h4 { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1.05rem; color: var(--white); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .footer-links a { color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: color 0.2s; }
    .footer-links a:hover { color: var(--orange); }
    .footer-bottom {
      padding: 20px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 0.82rem;
    }
    .footer-bottom a { color: rgba(255,255,255,0.5); }
    .footer-bottom a:hover { color: var(--orange); }


/* ── Quote Modal ─────────────────────────────────────────────── */
#quote-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overscroll-behavior: contain;
}
#quote-modal-overlay.open {
  display: flex;
}
#quote-modal-box {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 650px;
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
  overscroll-behavior: contain;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
  animation: modalSlideIn 0.28s cubic-bezier(0.34,1.4,0.64,1) both;
}
@keyframes modalSlideIn {
  from { opacity:0; transform: scale(0.92) translateY(20px); }
  to   { opacity:1; transform: scale(1) translateY(0); }
}
#quote-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.08);
  color: #1a1a1a;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  line-height: 1;
}
#quote-modal-close:hover { background: rgba(255,45,143,0.15); color: #ff2d8f; }
/* Inside modal, quote-card loses the standalone shadow/radius since box provides it */
#quote-modal-box .quote-card {
  box-shadow: none;
  border-radius: 20px;
  margin: 0;
  padding: 32px 28px 28px;
}
@media (max-width: 480px) {
  #quote-modal-box .quote-card { padding: 24px 16px 20px; }
  #quote-modal-box { border-radius: 16px; }
}



/* ── Hero Form Card (right column) ──────────────────────────── */
.hero-form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 18px 16px 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.14);
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: 80vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #f0d0e8 transparent;
}
.hero-form-card::-webkit-scrollbar { width: 4px; }
.hero-form-card::-webkit-scrollbar-thumb { background: #f0d0e8; border-radius: 4px; }
.hf-header { margin-bottom: 14px; }
.hf-title {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--dark, #1a1a1a);
  margin-bottom: 3px;
}
.hf-sub {
  font-size: 0.82rem;
  color: #888;
}
.hf-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #aaa;
  margin-bottom: 8px;
}
.hf-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 12px;
}
.hf-opt {
  display: block;
  cursor: pointer;
}
.hf-opt input[type="radio"] {
  display: none;
}
.hf-opt span {
  display: flex;
  flex-direction: column;
  padding: 8px 10px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--dark, #1a1a1a);
  cursor: pointer;
  transition: all 0.15s;
  line-height: 1.3;
  background: #fafafa;
}
.hf-opt span em {
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 900;
  color: #ff2d8f;
  margin-top: 2px;
}
.hf-opt input:checked + span {
  border-color: #ff2d8f;
  background: #fff0f7;
  color: #1a1a1a;
}
.hf-opt span:hover {
  border-color: #ff2d8f;
  background: #fff5fb;
}
.hf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
.hf-row input {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: 'Manrope', sans-serif;
  outline: none;
  background: #fafafa;
  transition: border-color 0.15s, background 0.15s;
  color: #1a1a1a;
}
.hf-row input:focus {
  border-color: #ff2d8f;
  background: #fff;
}
.hf-row input::placeholder {
  color: #bbb;
}
.hf-trust {
  display: flex;
  justify-content: center;
  gap: 14px;
  font-size: 0.72rem;
  color: #aaa;
  margin-top: 10px;
  flex-wrap: wrap;
}
.hf-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #ff2d8f, #c2006b);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(255,45,143,0.35);
  transition: transform 0.15s;
  margin-top: 4px;
}
.hf-btn:hover { transform: translateY(-1px); }
.hf-btn:active { transform: scale(0.98); }


/* =========================================================
       RESPONSIVE
    ========================================================= */
    @media (max-width: 1024px) {
      .hero-grid { grid-template-columns: 1fr; }
      .quote-card { max-width: 520px; }
      #quote { justify-content: center; width: 100%; }
      .hero { text-align: center; }
      .hero-sub { margin: 0 auto 32px; }
      .hero-trust { justify-content: center; }
      .hero-btns { justify-content: center; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .areas-grid { grid-template-columns: repeat(2, 1fr); }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .why-grid { grid-template-columns: 1fr; }
      .why-img-wrap { height: 300px; }
      .faq-grid { grid-template-columns: 1fr; }
      .process-grid { grid-template-columns: repeat(2, 1fr); }
      .process-grid::before { display: none; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .reviews-grid { grid-template-columns: 1fr 1fr; }
      .blog-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      nav ul, .nav-cta { display: none; }
      .hamburger { display: flex; }
      .hero { padding: 50px 0 40px; min-height: auto; }
      .hero-grid { grid-template-columns: 1fr !important; gap: 32px; }
      .hero-form-card { display: none; }
      .services-grid, .ba-grid { grid-template-columns: 1fr; }
      .areas-grid { grid-template-columns: 1fr; }
      .reviews-grid { grid-template-columns: 1fr; }
      .blog-grid { grid-template-columns: 1fr; }
      .process-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .cta-inner { text-align: center; justify-content: center; }
      .cta-btns { justify-content: center; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .price-grid { grid-template-columns: 1fr !important; }
      .addons-grid { grid-template-columns: repeat(2, 1fr) !important; }
      .why-grid { grid-template-columns: 1fr !important; }
      .story-grid { grid-template-columns: 1fr !important; gap: 32px; }
      section { padding: 50px 0; }
      .form-row { grid-template-columns: 1fr; }
    
      .faq-grid { grid-template-columns: 1fr !important; gap: 24px; }
      .why-features { grid-template-columns: 1fr 1fr !important; }
    }

    /* ── Mini Quote Strip (mid-page) ── */
    .mini-quote-strip {
      background: linear-gradient(135deg, var(--navy) 0%, #2a1a22 100%);
      padding: 28px 0;
    }
    .mqs-inner {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }
    .mqs-label {
      color: white;
      font-weight: 800;
      font-size: 1.05rem;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .mqs-label span { color: var(--orange); }
    .mqs-fields {
      display: flex;
      gap: 8px;
      flex: 1;
      flex-wrap: wrap;
      min-width: 0;
    }
    .mqs-select, .mqs-input {
      flex: 1;
      min-width: 130px;
      padding: 11px 14px;
      border: 2px solid rgba(255,255,255,0.2);
      border-radius: 8px;
      background: rgba(255,255,255,0.1);
      color: white;
      font-family: 'Manrope', sans-serif;
      font-size: 0.88rem;
      font-weight: 600;
      outline: none;
    }
    .mqs-select option { background: #1a1a1a; color: white; }
    .mqs-select:focus, .mqs-input:focus { border-color: var(--orange); background: rgba(255,255,255,0.15); }
    .mqs-input::placeholder { color: rgba(255,255,255,0.5); }
    .mqs-btn {
      padding: 11px 22px;
      background: var(--orange);
      color: white;
      border: none;
      border-radius: 8px;
      font-family: 'Manrope', sans-serif;
      font-weight: 800;
      font-size: 0.9rem;
      cursor: pointer;
      white-space: nowrap;
      transition: background 0.2s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .mqs-btn:hover { background: var(--orange2); }
    @media (max-width: 640px) {
      .mqs-inner { flex-direction: column; align-items: stretch; }
      .mqs-label { text-align: center; }
      .mqs-fields { flex-direction: column; }
      .mqs-btn { text-align: center; justify-content: center; }
    }

    /* ── Inline nudge banners (between sections) ── */
    .quote-nudge {
      background: var(--light);
      border-top: 3px solid var(--orange);
      border-bottom: 3px solid var(--orange);
      padding: 18px 0;
      text-align: center;
    }
    .qn-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      flex-wrap: wrap;
    }
    .qn-text {
      font-weight: 700;
      font-size: 0.95rem;
      color: var(--navy);
    }
    .qn-text strong { color: var(--orange); }
    .qn-btn {
      padding: 10px 22px;
      background: var(--orange);
      color: white;
      border-radius: 8px;
      font-weight: 800;
      font-size: 0.88rem;
      text-decoration: none;
      white-space: nowrap;
      transition: background 0.2s;
    }
    .qn-btn:hover { background: var(--orange2); }

    /* ── Sub-page components ── */
    .btn-pink {background:var(--pink);color:#fff;border-color:var(--pink)}
    .btn-pink:hover {background:var(--pink2);transform:translateY(-1px);box-shadow:0 6px 20px rgba(255,45,143,0.35)}
    .btn-wa {background:#25D366;color:#fff;border-color:#25D366}
    .btn-wa:hover {background:#1ebe57}
    .breadcrumb {background:var(--light);padding:12px 0;border-bottom:1px solid #f0d0e8}
    .breadcrumb-inner {display:flex;align-items:center;gap:8px;font-size:0.82rem;color:var(--grey);flex-wrap:wrap}
    .page-hero {background:var(--pink);padding:64px 0 54px;position:relative;overflow:hidden}
    .page-hero .inner {grid-template-columns:1fr}
    .page-hero-badge {display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,0.2);border:1px solid rgba(255,255,255,0.4);color:#fff;padding:5px 14px;border-radius:50px;font-size:0.78rem;font-weight:700;letter-spacing:1px;text-transform:uppercase;margin-bottom:16px}
    .page-hero-btns {display:flex;flex-wrap:wrap;gap:12px}
    .page-hero-trust {display:flex;flex-wrap:wrap;gap:18px;margin-top:28px}
    .pht-item {display:flex;align-items:center;gap:7px;color:rgba(255,255,255,0.95);font-size:0.85rem;font-weight:700}
    .page-hero-card {display:none}
    .page-hero-card .price {font-size:2.6rem;font-weight:900;color:var(--pink);line-height:1;margin-bottom:4px}
    .page-hero-card .price-label {font-size:0.85rem;color:var(--grey);margin-bottom:20px}
    .page-hero-card .btn {width:100%;justify-content:center;margin-bottom:10px}
    .included-grid {display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:36px}
    .included-card {background:var(--light);border-radius:14px;padding:22px 18px;border:2px solid #f0d0e8;transition:all 0.3s}
    .included-card:hover {border-color:var(--pink);transform:translateY(-3px)}
    .inc-icon {font-size:2rem;margin-bottom:12px}
    .features-grid {grid-template-columns:1fr}
    .feature-card {background:var(--light);border-radius:14px;padding:24px 20px;border:2px solid #f0d0e8;text-align:center;transition:all 0.3s}
    .feature-card:hover {border-color:var(--pink);transform:translateY(-3px)}
    .feature-icon {font-size:2.2rem;margin-bottom:12px}
    .area-tag {display:inline-block;background:rgba(255,45,143,0.1);color:var(--pink);padding:2px 8px;border-radius:50px;font-size:0.7rem;font-weight:700;letter-spacing:0.5px;margin-bottom:8px}
    .compare-wrap {overflow-x:auto;margin-top:32px}
    .compare-table {width:100%;border-collapse:collapse;font-size:0.9rem}
    .compare-table .tick {color:var(--pink);font-weight:900}
    .compare-table .cross {color:#9ca3af}
    .step-card:hover {background:rgba(255,45,143,0.1);border-color:rgba(255,45,143,0.3)}
    .faq-question:hover {color:var(--pink)}
    .footer-brand .logo {margin-bottom:14px;font-size:1.5rem}
    .included-grid,.areas-grid,.reviews-grid {grid-template-columns:1fr}
    .hide-mob {display:none}

    /* ═══════════════════════════════════════════════════════════════
       MOBILE-FIRST OVERRIDES — covers all phone sizes 320px–768px
    ═══════════════════════════════════════════════════════════════ */

    /* Global overflow guards */
    * { box-sizing: border-box; }
    html, body { overflow-x: hidden; max-width: 100vw; }
    h1,h2,h3,h4,h5,p,span,div,li,td,th,a,button,label,input,select,textarea {
      word-break: break-word;
      overflow-wrap: break-word;
    }
    img, video, iframe, table { max-width: 100%; }
    .container { padding: 0 16px; }
    .btn { white-space: normal; text-align: center; }

    

/* ============================================================
   MOBILE UPGRADE — bottom bar, drawer, compact chips, creds
   ============================================================ */

/* Hide old sticky CTA on mobile */
@media (max-width: 768px) {
  #sticky-cta { display: none !important; }
  .hero-form-card { display: none !important; }
}

/* Credentials scroll strip */
.creds-scroll {
  display: flex; gap: 8px; overflow-x: auto;
  padding: 0 0 4px; scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.creds-scroll::-webkit-scrollbar { display: none; }
.cred-chip {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 14px; padding: 9px 13px;
  flex-shrink: 0; display: flex; align-items: center; gap: 7px;
  min-width: 128px;
}
.cred-chip-icon { font-size: 20px; }
.cred-chip-title { font-size: 10px; font-weight: 900; color: #fff; white-space: nowrap; }
.cred-chip-sub { font-size: 9px; color: rgba(255,255,255,0.62); white-space: nowrap; margin-top: 1px; }

/* 3-Button sticky bottom bar */
.mob-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 99999;
  background: #fff; border-top: 2px solid #f0e0ea;
  padding: 10px 12px 16px;
  grid-template-columns: 1fr 1fr 1.7fr; gap: 8px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
}
@media (max-width: 768px) { .mob-bar { display: grid; } }
.mob-bar-call {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: #1a1a1a; color: #fff; border-radius: 14px;
  padding: 9px 4px; gap: 3px; text-decoration: none;
}
.mob-bar-wa {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: #25d366; color: #fff; border-radius: 14px;
  padding: 9px 4px; gap: 3px; text-decoration: none;
}
.mob-bar-icon { font-size: 18px; line-height: 1; }
.mob-bar-lbl { font-size: 8px; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase; }
.mob-bar-quote {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  background: linear-gradient(135deg, #ff2d8f, #c2006b); color: #fff;
  border: none; border-radius: 14px; padding: 12px 8px;
  font-size: 13px; font-weight: 900; cursor: pointer;
  font-family: 'Manrope', sans-serif;
  box-shadow: 0 4px 18px rgba(255,45,143,0.45);
}

/* Mobile drawer */
.mob-overlay {
  display: none; position: fixed; inset: 0; z-index: 99997;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  opacity: 0; transition: opacity 0.3s;
}
.mob-overlay.open { opacity: 1; pointer-events: all; }
@media (max-width: 768px) { .mob-overlay { display: block; pointer-events: none; } }
.mob-drawer {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 99998;
  background: #fff; border-radius: 24px 24px 0 0;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.34,1.1,0.64,1);
  max-height: 92vh; flex-direction: column;
  box-shadow: 0 -8px 48px rgba(0,0,0,0.2);
}
.mob-drawer.open { transform: translateY(0); }
@media (max-width: 768px) { .mob-drawer { display: flex; } }
.mob-drawer-handle { display: flex; justify-content: center; padding: 11px 0 0; flex-shrink: 0; }
.mob-handle-bar { width: 40px; height: 4px; background: #ddd; border-radius: 4px; }
.mob-drawer-head {
  padding: 10px 18px 13px; border-bottom: 1px solid #f5f5f5;
  display: flex; justify-content: space-between; align-items: center; flex-shrink: 0;
}
.mob-drawer-title { font-size: 17px; font-weight: 900; color: #1a1a1a; }
.mob-drawer-sub { font-size: 10px; color: #bbb; margin-top: 2px; }
.mob-drawer-close {
  background: #f0f0f0; border: none; border-radius: 50%;
  width: 32px; height: 32px; font-size: 15px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.mob-drawer-body { padding: 14px 18px 28px; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.mob-sel-svc {
  background: #fff0f7; border: 2px solid #ff2d8f; border-radius: 13px;
  padding: 11px 14px; display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 14px;
}
.mob-sel-svc-l { display: flex; align-items: center; gap: 10px; }
.mob-sel-name { font-size: 13px; font-weight: 800; color: #1a1a1a; }
.mob-sel-price { font-size: 12px; font-weight: 900; color: #ff2d8f; margin-top: 2px; }
.mob-sel-change { font-size: 11px; font-weight: 700; color: #ff2d8f; cursor: pointer; }
.mob-d-row { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-bottom: 9px; }
.mob-d-input {
  width: 100%; padding: 12px 13px; border: 2px solid #e5e7eb;
  border-radius: 12px; font-size: 13px; font-family: 'Manrope', sans-serif;
  outline: none; background: #fafafa; color: #1a1a1a; transition: border-color 0.15s;
}
.mob-d-input:focus { border-color: #ff2d8f; background: #fff; }
.mob-d-input::placeholder { color: #ccc; }
.mob-d-pc-wrap { position: relative; margin-bottom: 9px; }
.mob-d-pc-icon { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); font-size: 14px; }
.mob-d-pc-in { padding-left: 36px !important; }
.mob-d-dd {
  display: none; position: absolute; bottom: calc(100% + 6px); left: 0; right: 0;
  background: #fff; border: 2px solid #ff2d8f; border-radius: 14px;
  z-index: 99999; overflow: hidden; box-shadow: 0 -8px 30px rgba(0,0,0,0.12);
}
.mob-d-dd.show { display: block; }
.mob-d-dd-item { padding: 11px 14px; cursor: pointer; border-bottom: 1px solid #f5f5f5; }
.mob-d-dd-item:active { background: #fff0f7; }
.mob-d-dd-item:last-child { border-bottom: none; }
.mob-d-dd-main { font-size: 12px; font-weight: 700; color: #1a1a1a; }
.mob-d-dd-sub { font-size: 10px; color: #aaa; margin-top: 1px; }
.mob-d-addr { display: none; margin-bottom: 9px; }
.mob-d-addr .mob-d-input { margin-bottom: 9px; }
.mob-d-addr-row { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.mob-d-error {
  display: none; background: #fef2f2; border: 1px solid #fca5a5;
  border-radius: 10px; padding: 10px 13px; font-size: 12px;
  color: #dc2626; font-weight: 700; margin-bottom: 12px;
}
.mob-d-submit {
  width: 100%; padding: 15px; border: none; border-radius: 14px;
  background: linear-gradient(135deg, #ff2d8f, #c2006b); color: #fff;
  font-size: 15px; font-weight: 900; cursor: pointer;
  font-family: 'Manrope', sans-serif;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 6px 24px rgba(255,45,143,0.45);
}
.mob-d-avail {
  background: linear-gradient(135deg, #0f0f0f, #2a0d18);
  border-radius: 12px; padding: 12px; margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.mob-d-avail-dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; flex-shrink: 0; animation: mglow 2s infinite; }
@keyframes mglow { 0%,100%{box-shadow:0 0 0 3px rgba(34,197,94,0.2);} 50%{box-shadow:0 0 0 7px rgba(34,197,94,0);} }
.mob-d-avail-txt { font-size: 11px; font-weight: 800; color: #fff; }
.mob-d-avail-sub { font-size: 10px; color: rgba(255,255,255,0.5); margin-top: 1px; }
.mob-d-trust { display: flex; justify-content: center; gap: 16px; margin-top: 12px; font-size: 10px; color: #ccc; }

/* Compact service chips on mobile — scoped strictly to 768px */
@media (max-width: 768px) {
  .service-card { padding: 12px 10px !important; }
  .service-card h3 { font-size: 12px !important; }
  .service-card p { display: none !important; }
  .service-img { font-size: 24px !important; min-height: 60px !important; }
  .service-img img { width: 85% !important; max-width: 70px !important; }
  .services-grid { grid-template-columns: 1fr 1fr 1fr !important; gap: 7px !important; }
  .service-actions { grid-template-columns: 1fr !important; }
  .service-actions a:not(:first-child) { display: none !important; }
  body { padding-bottom: 80px; }
}

/* Mobile areas section */
.mob-areas-section { display: none; padding: 20px 16px; background: #fff; }
@media (max-width: 768px) { .mob-areas-section { display: block; } }
.mob-areas-title { font-size: 20px; font-weight: 900; color: #1a1a1a; margin-bottom: 4px; }
.mob-areas-title span { color: #ff2d8f; }
.mob-areas-sub { font-size: 12px; color: #888; margin-bottom: 16px; line-height: 1.5; }
.mob-cities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.mob-city-card {
  background: linear-gradient(135deg, #ff2d8f, #c2006b);
  border-radius: 14px; padding: 14px; text-decoration: none;
  display: flex; align-items: center; justify-content: space-between;
  -webkit-tap-highlight-color: transparent;
}
.mob-city-card:nth-child(2n) { background: linear-gradient(135deg, #c2006b, #8b0042); }
.mob-city-card:nth-child(5), .mob-city-card:nth-child(6) { background: linear-gradient(135deg, #8b0042, #600030); }
.mob-city-name { font-size: 13px; font-weight: 900; color: #fff; }
.mob-city-sub { font-size: 10px; color: rgba(255,255,255,0.7); margin-top: 2px; }
.mob-city-arrow { font-size: 18px; color: rgba(255,255,255,0.6); }
.mob-towns-label { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: #aaa; margin-bottom: 10px; }
.mob-towns-grid { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 14px; }
.mob-town-chip {
  background: #fafafa; border: 2px solid #ece8f0; border-radius: 20px;
  padding: 7px 13px; font-size: 11px; font-weight: 700; color: #1a1a1a;
  text-decoration: none; -webkit-tap-highlight-color: transparent;
}
.mob-town-chip:active { background: #fff0f7; border-color: #ff2d8f; color: #ff2d8f; }
.mob-areas-all {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #f5f5f5; border-radius: 12px; padding: 13px;
  text-decoration: none; font-size: 12px; font-weight: 800; color: #1a1a1a;
}

/* Trust bar (mobile only) */
.trust-bar { display: none; background: #1a1a1a; padding: 14px 16px; justify-content: space-around; }
@media (max-width: 768px) { .trust-bar { display: flex; } }
.tb-item { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.tb-num { font-size: 18px; font-weight: 900; color: #ff2d8f; line-height: 1; }
.tb-label { font-size: 9px; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.5px; text-align: center; }
.tb-div { width: 1px; background: rgba(255,255,255,0.1); align-self: stretch; }

/* Hero top badge */
.hero-top-badge { display: inline-flex; align-items: center; flex-wrap: wrap; gap: 6px; background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.3); border-radius: 20px; padding: 5px 13px; margin-bottom: 13px; }
.hero-top-badge span { font-size: 10px; font-weight: 800; color: #fff; letter-spacing: 0.3px; }
.htb-dot { width: 3px; height: 3px; background: rgba(255,255,255,0.5); border-radius: 50%; flex-shrink: 0; }

/* Standalone availability nudge (mobile only) */
.mobile-only { display: none; }
@media (max-width: 768px) { .mobile-only { display: block; } }
.avail { margin: 0 0 20px; background: linear-gradient(140deg, #0f0f0f, #2a0d18); border-radius: 18px; padding: 16px; }
.avail-top { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.avail-dot { width: 9px; height: 9px; background: #22c55e; border-radius: 50%; flex-shrink: 0; animation: pglow 2s infinite; }
@keyframes pglow { 0%,100%{ box-shadow: 0 0 0 3px rgba(34,197,94,0.2); } 50%{ box-shadow: 0 0 0 8px rgba(34,197,94,0); } }
.avail-title { font-size: 13px; font-weight: 900; color: #fff; }
.avail-sub { font-size: 10px; color: rgba(255,255,255,0.45); margin-bottom: 13px; padding-left: 19px; }
.avail-slots { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; margin-bottom: 13px; }
.avail-slot { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: 11px; padding: 9px 5px; text-align: center; }
.slot-day { font-size: 10px; font-weight: 800; color: #fff; }
.slot-time { font-size: 8px; color: rgba(255,255,255,0.45); margin-top: 2px; }
.slot-badge { font-size: 7px; font-weight: 800; padding: 2px 6px; border-radius: 10px; margin-top: 5px; display: inline-block; }
.b-open { background: rgba(34,197,94,0.2); color: #4ade80; }
.b-limited { background: rgba(251,191,36,0.2); color: #fbbf24; }
.b-last { background: rgba(248,113,113,0.2); color: #f87171; }
.avail-btn { width: 100%; background: #ff2d8f; border: none; border-radius: 12px; padding: 13px; color: #fff; font-size: 13px; font-weight: 900; cursor: pointer; font-family: 'Manrope', sans-serif; box-shadow: 0 4px 16px rgba(255,45,143,0.4); }

/* Why us section */
.why-bg { background: #fff8fc; }
.why-item { display: flex; align-items: flex-start; gap: 13px; padding: 13px 0; border-bottom: 1px solid #f0e8f4; }
.why-item:last-child { border-bottom: none; }
.why-icon-wrap { width: 40px; height: 40px; background: #fff0f7; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.why-title { font-size: 13px; font-weight: 800; color: #1a1a1a; margin-bottom: 2px; }
.why-sub { font-size: 11px; color: #888; line-height: 1.5; }



/* Hide creds-scroll on desktop - mobile only element */
.creds-scroll { display: none !important; }
@media (max-width: 768px) { .creds-scroll { display: flex !important; } }


/* ============================================================
   MOBILE ONLY — max-width: 768px — DESKTOP UNTOUCHED ABOVE
   ============================================================ */
@media (max-width: 768px) {

  /* Base */
  html, body { overflow-x: hidden !important; max-width: 100vw !important; }
  body { -webkit-text-size-adjust: 100%; padding-bottom: 84px; }
  .hero { overflow: hidden !important; }
  .hero-content { padding: 0 !important; }
  *, *::before, *::after { max-width: 100%; word-break: break-word; overflow-wrap: break-word; box-sizing: border-box; }
  .container { padding: 0 16px !important; }
  img, video, iframe { max-width: 100% !important; height: auto; }

  /* Header */
  .logo-img { height: 38px !important; }
  header { padding: 10px 0 !important; }

  /* ── HERO ── */
  .hero { padding: 24px 0 20px !important; }
  .hero-grid { grid-template-columns: 1fr !important; gap: 0 !important; }
  .hero-form-card { display: none !important; }
  .hero-content { text-align: center !important; }
  .hero-badge {
    display: inline-flex !important;
    justify-content: center;
    font-size: 0.68rem !important;
    padding: 5px 10px !important;
    margin-bottom: 10px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  /* Prevent any element from causing horizontal scroll */
  section, div, header, footer, nav { max-width: 100% !important; }

  /* H1 fix — was going off screen */
  .hero h1, .hero-content h1 {
    font-size: 1.55rem !important;
    line-height: 1.18 !important;
    margin-bottom: 10px !important;
    text-transform: none !important;
  }

  .hero-sub {
    font-size: 0.88rem !important;
    line-height: 1.62 !important;
    max-width: 100% !important;
    margin-bottom: 18px !important;
  }

  /* Hero CTA buttons — stacked, full width */
  .hero-btns {
    flex-direction: column !important;
    gap: 8px !important;
    align-items: stretch !important;
    margin-bottom: 16px !important;
  }
  .hero-btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 12px 16px !important;
    border-radius: 12px !important;
    font-size: 0.9rem !important;
  }
  .hero-btn strong { font-size: 0.9rem !important; }
  .hero-btn small  { font-size: 0.7rem !important; }

  /* Trust chips */
  .hero-trust {
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 5px !important;
    margin-top: 4px !important;
  }
  .hero-trust span, .trust-chip {
    font-size: 0.7rem !important;
    padding: 4px 9px !important;
  }

  /* ── STATS — horizontal scroll ── */
  .stats-bar { padding: 0 !important; overflow: hidden; }
  .stats-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    gap: 0 !important;
    padding: 0 4px !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
  }
  .stats-grid::-webkit-scrollbar { display: none !important; }
  .stat-item {
    flex: 0 0 auto !important;
    padding: 14px 18px !important;
    min-width: 100px;
    border-right: 1px solid #f0e0ea !important;
    text-align: center;
  }
  .stat-item:last-child { border-right: none !important; }
  .stat-num   { font-size: 1.45rem !important; }
  .stat-label { font-size: 0.64rem !important; }

  /* ── MOBILE BOOKING FORM ── */
  .mob-booking-section { display: block !important; }

  /* ── Trust bar ── */
  .trust-bar { display: flex !important; }

  /* ── SERVICES ── */
  .services-section { padding: 28px 0 !important; }
  .section-title { font-size: clamp(1.2rem, 5.5vw, 1.65rem) !important; line-height: 1.2 !important; }
  .section-sub   { font-size: 0.85rem !important; }
  .services-grid { grid-template-columns: repeat(2,1fr) !important; gap: 10px !important; }
  .service-card  { border-radius: 14px !important; }
  .service-img   { height: 108px !important; padding: 7px 5px 0 !important; }
  .service-img img { max-width: 82px !important; height: 66px !important; }
  .service-card h3 { font-size: 0.77rem !important; padding: 7px 7px 3px !important; }
  .service-card .cta-btns {
    flex-direction: column !important;
    gap: 5px !important;
  }
  .service-card .cta-btns a {
    width: 100% !important;
    justify-content: center !important;
    font-size: 0.73rem !important;
    padding: 7px !important;
  }

  /* ── BEFORE/AFTER — single card on mobile ── */
  .ba-section { padding: 28px 0 !important; }
  .ba-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    max-width: 340px;
    margin: 0 auto !important;
  }
  /* Only show first card on mobile */
  .ba-card:not(:first-child) { display: none !important; }
  .ba-panel { height: 170px !important; }
  .ba-footer { padding: 12px 14px !important; }
  .ba-footer-info strong { font-size: 0.88rem !important; }
  .ba-footer-info span   { font-size: 0.76rem !important; }
  .ba-cta {
    padding: 8px 14px !important;
    font-size: 0.8rem !important;
    white-space: nowrap !important;
    border-radius: 8px !important;
  }
  .stars { font-size: 0.75rem !important; }

  /* ── WHY US ── */
  .why-section  { padding: 28px 0 !important; }
  .why-features { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
  .why-card     { padding: 12px !important; }
  .why-card h3  { font-size: 0.8rem !important; }
  .why-card p   { font-size: 0.73rem !important; }
  .why-icon     { font-size: 1.3rem !important; }

  /* ── PROCESS ── */
  .process-section { padding: 28px 0 !important; }
  .process-grid    { grid-template-columns: 1fr !important; }
  .process-step    { padding: 14px !important; }

  /* ── GUARANTEE ── */
  .guarantee-strip { flex-direction: column !important; gap: 10px !important; }

  /* ── REVIEWS ── */
  .reviews-section { padding: 28px 0 !important; }
  .reviews-grid    { grid-template-columns: 1fr !important; }

  /* ── AREAS — single column, compact cards ── */
  .areas-section { padding: 28px 0 !important; }
  .areas-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  .area-card {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 14px 16px !important;
    border-radius: 12px !important;
  }
  .area-icon {
    width: 38px !important;
    height: 38px !important;
    flex-shrink: 0 !important;
    font-size: 1rem !important;
  }
  .area-body { flex: 1; min-width: 0; }
  .area-body h4 {
    font-size: 0.88rem !important;
    margin-bottom: 2px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .area-body p {
    font-size: 0.75rem !important;
    line-height: 1.4 !important;
    margin-bottom: 4px !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .area-link {
    font-size: 0.75rem !important;
  }

  /* ── CTA section ── */
  .cta-inner { text-align: center !important; flex-direction: column !important; }
  .cta-btns  { flex-direction: column !important; align-items: stretch !important; gap: 8px !important; width: 100%; }
  .cta-btns a, .cta-btns button { width: 100% !important; justify-content: center !important; }

  /* ── PAGE HERO (inner pages) ── */
  .page-hero { padding: 24px 0 20px !important; }
  .page-hero h1 { font-size: clamp(1.25rem, 5.5vw, 1.8rem) !important; line-height: 1.2 !important; }
  .page-hero p  { font-size: 0.86rem !important; }
  .page-hero-btns { flex-direction: column !important; gap: 8px !important; align-items: stretch !important; }
  .page-hero-btns a { width: 100% !important; justify-content: center !important; }

  /* ── Service page feature cards ── */
  .fc-g  { grid-template-columns: 1fr 1fr !important; gap: 9px !important; }
  .pp-g  { grid-template-columns: 1fr !important; }
  .main-g, .main-grid, .content-grid, .hero-img-col { grid-template-columns: 1fr !important; }
  .hero-img-col { display: none !important; }
  .form-card, .quote-card-sticky { position: relative !important; top: auto !important; }

  /* ── Two-col stacks ── */
  .story-grid, .contact-grid, .two-col { grid-template-columns: 1fr !important; }

  /* ── Footer ── */
  footer { padding: 24px 0 14px !important; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 20px !important; }
  .footer-brand, .footer-col-brand { grid-column: 1 / -1 !important; }
  .footer-grid h4 { font-size: 0.76rem !important; margin-bottom: 10px !important; }
  .fl a { font-size: 0.76rem !important; }
  .footer-bottom { flex-direction: column !important; gap: 6px !important; text-align: center; }

  /* ── Mob bar always on ── */
  .mob-bar { display: grid !important; }

  /* ── Horizontal scroll strips ── */
  .creds-scroll {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    gap: 8px !important;
  }
  .creds-scroll::-webkit-scrollbar { display: none !important; }
  .creds-scroll > * { flex-shrink: 0 !important; }

  /* Mobile areas section */
  .mob-areas-section { display: block !important; }
  .mob-cities-grid { grid-template-columns: 1fr 1fr !important; gap: 8px !important; }

  /* Misc */
  pre, code { overflow-x: auto !important; white-space: pre-wrap !important; }
  table { display: block !important; overflow-x: auto !important; }
  #quote-modal-overlay { padding: 10px !important; }
  #quote-modal-box { border-radius: 14px !important; max-height: 92dvh !important; }

}


  /* ── Topbar: hide on mobile, replaced by compact strip ── */
  .topbar { display: none !important; }
  .mob-info-strip { display: flex !important; }

  /* ── Hero badge: scrolling marquee on mobile ── */
  .hero-badge {
    display: block !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    max-width: 100% !important;
    padding: 6px 0 !important;
    margin-bottom: 12px !important;
    background: rgba(255,255,255,0.15) !important;
    border: 1px solid rgba(255,255,255,0.28) !important;
    border-radius: 50px !important;
    font-size: 0.72rem !important;
    font-weight: 800 !important;
    color: #fff !important;
    text-align: left !important;
  }
  .hero-badge-inner {
    display: inline-block;
    animation: marquee-scroll 14s linear infinite;
    padding-left: 100%;
    white-space: nowrap;
  }
  @keyframes marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
  }
  .hero-badge svg { display: none !important; }


/* ── Under 390px ── */
@media (max-width: 390px) {
  .hero h1, .hero-content h1 { font-size: 1.35rem !important; }
  .services-grid { grid-template-columns: 1fr !important; }
  .why-features  { grid-template-columns: 1fr !important; }
  .footer-grid   { grid-template-columns: 1fr !important; }
  .fc-g          { grid-template-columns: 1fr !important; }
  .stat-item     { min-width: 85px !important; padding: 12px 12px !important; }
}
