* { margin: 0; padding: 0; box-sizing: border-box; }
  :root {
    --deep-blue: #0a1628; --mid-blue: #1a3a6b; --blue: #1e5fac;
    --light-blue: #4da6ff; --white: #ffffff; --off-white: #f0f6ff;
    --black: #0a0a0a; --gray: #6b7280; --light-gray: #e8f0fb;
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'Segoe UI', system-ui, sans-serif; background: var(--white); color: var(--black); overflow-x: hidden; }

  /* Scoped to the site header by id. A bare `nav` selector here would also
     catch in-content navigation, turning it into a second fixed, full-width
     overlay on top of the page. */
  #mainNav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(10,22,40,0.97); backdrop-filter: blur(10px);
    padding: 10px 24px; display: flex; align-items: center; justify-content: space-between;
    border-bottom: 2px solid var(--blue); box-shadow: 0 2px 30px rgba(30,95,172,0.3); transition: padding 0.3s;
  }
  .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .nav-logo img { height: 58px; width: 58px; object-fit: contain; }
  .nav-brand .brand-big { font-size: 1.05rem; font-weight: 900; color: white; }
  .nav-brand .brand-sub { font-size: 0.62rem; color: var(--light-blue); letter-spacing: 2px; text-transform: uppercase; }
  .nav-links { display: flex; align-items: center; gap: 22px; }
  .nav-links a { color: #ccd6f0; text-decoration: none; font-size: 0.85rem; font-weight: 600; transition: color 0.2s; }
  .nav-links a:hover { color: var(--light-blue); }
  .nav-cta { background: var(--blue) !important; color: white !important; padding: 9px 18px; border-radius: 6px; font-weight: 700 !important; }
  .nav-cta:hover { background: var(--light-blue) !important; color: var(--deep-blue) !important; }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; }

  .hero { min-height: 100vh; background: radial-gradient(circle at 78% 28%, rgba(77,166,255,0.16), transparent 24%), radial-gradient(circle at 18% 80%, rgba(30,95,172,0.2), transparent 28%), linear-gradient(135deg, var(--deep-blue) 0%, var(--mid-blue) 60%, #0d2444 100%); display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 80px; }
  .hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 60px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(30,95,172,0.3); border: 1px solid rgba(77,166,255,0.4); color: var(--light-blue); font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; margin-bottom: 18px; }
  .hero h1 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 900; color: white; line-height: 1.1; margin-bottom: 18px; }
  .hero h1 span { color: var(--light-blue); }
  .hero-tagline { font-size: clamp(1.15rem, 2vw, 1.45rem); font-weight: 900; color: var(--white); line-height: 1.25; margin-bottom: 14px; }
  .hero-tagline span { color: var(--light-blue); }
  .hero-sub { color: #a8c4e8; font-size: 1.05rem; line-height: 1.7; margin-bottom: 32px; }
  .hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
  .btn-primary { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg, var(--blue), var(--light-blue)); color: white; padding: 15px 28px; border-radius: 8px; font-weight: 800; font-size: 1rem; text-decoration: none; transition: all 0.25s; box-shadow: 0 4px 20px rgba(30,95,172,0.5); }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(77,166,255,0.5); }
  .btn-secondary { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: white; padding: 15px 24px; border-radius: 8px; font-weight: 700; font-size: 1rem; text-decoration: none; border: 2px solid rgba(255,255,255,0.4); transition: all 0.25s; }
  .btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: white; }
  .btn-quote { display: inline-flex; align-items: center; gap: 8px; background: rgba(77,166,255,0.08); color: var(--light-blue); padding: 15px 24px; border-radius: 8px; font-weight: 700; font-size: 1rem; text-decoration: none; border: 2px solid var(--light-blue); transition: all 0.25s; }
  .btn-quote:hover { background: var(--light-blue); color: var(--deep-blue); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(77,166,255,0.25); }
  .btn-secondary:focus-visible, .btn-quote:focus-visible { outline: 3px solid white; outline-offset: 3px; }
  .hero-contacts { display: flex; gap: 10px 16px; flex-wrap: wrap; align-items: center; }
  .hero-contacts a { color: var(--light-blue); text-decoration: none; font-size: 0.88rem; font-weight: 600; }
  .hero-contacts a:hover { color: white; }
  .hero-contacts span { color: #4a6a90; }
  .hero-social-link { display: inline-flex; align-items: center; gap: 5px; }
  .hero-social-link svg { width: 14px; height: 14px; flex-shrink: 0; }
  .hero-logo-wrap { display: flex; align-items: center; justify-content: center; }
  .logo-glow-ring { position: relative; display: flex; align-items: center; justify-content: center; width: 400px; height: 400px; }
  .logo-glow-ring::before { content: ""; position: absolute; inset: -20px; border-radius: 50%; background: radial-gradient(circle, rgba(30,95,172,0.35) 0%, transparent 70%); animation: pulse 3s ease-in-out infinite; }
  .logo-glow-ring::after { content: ""; position: absolute; inset: 20px; border-radius: 50%; border: 1px solid rgba(77,166,255,0.2); animation: spin 20s linear infinite; }
  @keyframes pulse { 0%,100% { transform: scale(1); opacity: 0.7; } 50% { transform: scale(1.06); opacity: 1; } }
  @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
  .logo-glow-ring img { width: 360px; height: 360px; object-fit: contain; position: relative; z-index: 1; filter: drop-shadow(0 0 40px rgba(77,166,255,0.45)); }

  .trust-bar { background: var(--blue); padding: 16px 24px; }
  .trust-bar-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
  .trust-item + .trust-item::before { content: "|"; color: rgba(255,255,255,0.35); font-size: 1.1rem; margin: 0 22px; font-weight: 300; }
  .trust-item { display: flex; align-items: center; color: white; font-size: 1rem; font-weight: 800; white-space: nowrap; letter-spacing: 0.3px; }

  section { padding: 80px 24px; }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-label { display: inline-block; color: var(--blue); font-size: 0.72rem; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 10px; }
  h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 900; color: var(--deep-blue); line-height: 1.15; margin-bottom: 14px; }
  .section-sub { color: var(--gray); font-size: 1rem; line-height: 1.7; max-width: 520px; margin-bottom: 44px; }

  /* ===== SERVICES — real photos ===== */
  .services-bg { background: var(--off-white); }
  .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; }
  .service-card { background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(10,22,40,0.08); transition: all 0.3s; border: 1px solid rgba(30,95,172,0.1); }
  .service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(30,95,172,0.2); border-color: var(--blue); }

  /* Photo-based header */
  .service-photo { height: 180px; overflow: hidden; position: relative; }
  .service-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
  .service-card:hover .service-photo img { transform: scale(1.05); }
  .service-photo-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(10,22,40,0.55) 100%);
  }
  /* House washing card still uses gradient + icon since no photo provided */
  .service-visual { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 4rem; position: relative; overflow: hidden; background: linear-gradient(135deg, #0d2040, #1e5090); }
  .service-visual::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 65% 25%, rgba(255,255,255,0.12), transparent 55%); }
  .sv-icon { position: relative; z-index: 1; filter: drop-shadow(0 0 16px rgba(77,166,255,0.7)); }

  .service-body { padding: 22px; }
  .service-body h3 { font-size: 1.1rem; font-weight: 800; color: var(--deep-blue); margin-bottom: 8px; }
  .service-body p { color: var(--gray); font-size: 0.88rem; line-height: 1.65; }
  .service-tag { display: inline-block; background: var(--light-gray); color: var(--blue); font-size: 0.68rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; margin-top: 12px; }

  /* ===== BEFORE / AFTER ===== */
  .gallery-bg { background: var(--off-white); }
  .gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 28px; }
  .ba-card { border-radius: 16px; overflow: hidden; box-shadow: 0 6px 28px rgba(10,22,40,0.15); border: 1px solid rgba(30,95,172,0.15); transition: transform 0.3s, box-shadow 0.3s; background: var(--deep-blue); }
  .ba-card:hover { transform: translateY(-4px); box-shadow: 0 14px 44px rgba(30,95,172,0.28); }
  .ba-title { background: var(--deep-blue); color: white; font-size: 0.78rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; padding: 11px 16px; text-align: center; border-bottom: 2px solid var(--blue); }
  .ba-slider { position: relative; height: 260px; overflow: hidden; cursor: col-resize; user-select: none; touch-action: none; }
  .ba-img-after { position: absolute; inset: 0; width: 100%; height: 100%; }
  .ba-img-after img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .ba-img-before { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; clip-path: inset(0 50% 0 0); }
  .ba-img-before img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .ba-divider-line { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: white; z-index: 3; pointer-events: none; box-shadow: 0 0 14px rgba(0,0,0,0.6); }
  .ba-handle { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 44px; height: 44px; border-radius: 50%; background: white; z-index: 4; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 16px rgba(0,0,0,0.5); color: var(--blue); font-size: 1rem; font-weight: 900; pointer-events: none; border: 2px solid rgba(30,95,172,0.3); }
  .ba-label-before, .ba-label-after { position: absolute; bottom: 12px; z-index: 5; font-size: 0.65rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; pointer-events: none; }
  .ba-label-before { left: 12px; background: rgba(0,0,0,0.72); color: #ddd; }
  .ba-label-after { right: 12px; background: rgba(30,95,172,0.85); color: #b8d8ff; }
  .ba-hint { background: #0d1e36; color: #6a90b8; font-size: 0.7rem; text-align: center; padding: 8px; font-style: italic; }

  /* ===== WHY — NO emoji icons ===== */
  .why-bg { background: var(--deep-blue); }
  .why-bg h2 { color: white; }
  .why-bg .section-label { color: var(--light-blue); }
  .why-bg .section-sub { color: #8aa8d0; }
  .why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
  .why-card {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(77,166,255,0.18);
    border-radius: 16px; padding: 28px 24px; transition: all 0.3s;
  }
  .why-card:hover { background: rgba(30,95,172,0.2); border-color: var(--light-blue); transform: translateY(-4px); }
  /* No .why-icon styles needed — removed */
  .why-card h3 { color: white; font-size: 1rem; font-weight: 800; margin-bottom: 10px; }
  .why-card p { color: #8aa8d0; font-size: 0.86rem; line-height: 1.65; }

  /* ===== REVIEWS ===== */
  .reviews-bg { background: white; }
  .reviews-slider { position: relative; }
  .reviews-viewport { overflow-x: auto; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 4px 2px 22px; }
  .reviews-viewport::-webkit-scrollbar { display: none; }
  .reviews-track { display: flex; gap: 22px; }
  .review-card { background: var(--off-white); border-radius: 16px; padding: 26px; box-shadow: 0 4px 20px rgba(10,22,40,0.07); border: 1px solid rgba(30,95,172,0.1); position: relative; flex: 0 0 calc((100% - 44px) / 3); scroll-snap-align: start; display: flex; flex-direction: column; }
  .review-card::before { content: "\201C"; position: absolute; top: 14px; right: 18px; font-size: 5rem; color: rgba(30,95,172,0.07); font-family: Georgia,serif; line-height: 1; }
  .stars { color: #f5a623; font-size: 1rem; letter-spacing: 2px; margin-bottom: 12px; }
  .reviewer-name { font-weight: 800; color: var(--deep-blue); font-size: 1rem; margin-bottom: 12px; }
  .review-text { color: #374151; font-size: 0.93rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; flex-grow: 1; }
  .review-verified { color: var(--blue); font-size: 0.73rem; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase; }
  .reviews-controls { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 6px; }
  .review-arrow { width: 44px; height: 44px; border: 1px solid rgba(30,95,172,0.18); border-radius: 50%; background: white; color: var(--blue); box-shadow: 0 4px 16px rgba(10,22,40,0.08); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.25s; }
  .review-arrow:hover { background: var(--blue); color: white; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(30,95,172,0.25); }
  .review-arrow:focus-visible { outline: 3px solid var(--light-blue); outline-offset: 3px; }
  .review-arrow:disabled { opacity: 0.35; cursor: default; transform: none; box-shadow: none; }
  .review-arrow svg { width: 18px; height: 18px; }
  .reviews-cta { text-align: center; margin-top: 28px; }
  .reviews-cta .btn-primary { justify-content: center; }

  /* ===== QUOTE ===== */
  .quote-bg { background: linear-gradient(135deg, var(--mid-blue), var(--blue)); scroll-margin-top: 76px; }
  .quote-bg h2 { color: white; }
  .quote-bg .section-label { color: var(--light-blue); }
  .quote-bg .section-sub { color: rgba(255,255,255,0.8); }
  .quote-trust { display: flex; align-items: center; flex-wrap: wrap; gap: 4px 8px; color: white; font-size: 0.88rem; font-weight: 700; letter-spacing: 0.3px; margin-bottom: 14px; }
  .quote-trust-stars { color: #f5a623; letter-spacing: 2px; }
  .quote-form { background: white; border-radius: 20px; padding: 36px; max-width: 680px; box-shadow: 0 20px 60px rgba(10,22,40,0.3); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
  .form-group label { font-size: 0.8rem; font-weight: 700; color: var(--deep-blue); }
  .form-group input, .form-group select, .form-group textarea { padding: 11px 14px; border: 2px solid #e5e7eb; border-radius: 8px; font-size: 0.93rem; color: var(--black); font-family: inherit; transition: border-color 0.2s; outline: none; }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); }
  .form-group textarea { resize: vertical; min-height: 90px; }
  .form-submit { width: 100%; padding: 15px; background: linear-gradient(135deg, var(--blue), var(--light-blue)); color: white; border: none; border-radius: 8px; font-size: 1rem; font-weight: 800; cursor: pointer; transition: all 0.25s; margin-top: 4px; }
  .form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,95,172,0.4); }
  .form-submit:disabled { opacity: 0.65; cursor: default; transform: none; box-shadow: none; }
  .form-group .radio-row { display: flex; flex-wrap: wrap; gap: 10px 24px; padding-top: 3px; }
  .form-group .radio-opt, .form-group .consent-opt { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; font-weight: 600; color: var(--black); cursor: pointer; }
  .form-group .radio-opt input[type="radio"], .form-group .consent-opt input[type="checkbox"] { width: 17px; height: 17px; padding: 0; border: none; border-radius: 0; flex-shrink: 0; accent-color: var(--blue); cursor: pointer; }
  .form-group.consent-group { margin-bottom: 18px; }
  .form-group .consent-opt { align-items: flex-start; line-height: 1.55; }
  .form-group .consent-opt input[type="checkbox"] { margin-top: 2px; }

  /* ===== CONTACT ===== */
  .contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 22px; margin-top: 38px; }
  .contact-card { background: var(--off-white); border: 2px solid rgba(30,95,172,0.12); border-radius: 16px; padding: 30px 22px; text-align: center; transition: all 0.3s; }
  .contact-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: 0 8px 30px rgba(30,95,172,0.15); }
  .c-icon { font-size: 2.4rem; display: block; margin-bottom: 14px; }
  .contact-card h3 { font-size: 0.75rem; font-weight: 800; color: var(--blue); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
  .c-val { display: block; color: var(--deep-blue); font-weight: 700; font-size: 0.95rem; text-decoration: none; margin-bottom: 6px; word-break: break-all; }
  .c-val:hover { color: var(--blue); }
  .cbtn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 18px; border-radius: 8px; font-size: 0.82rem; font-weight: 700; text-decoration: none; transition: all 0.2s; margin-top: 8px; }
  .cbtn-blue { background: var(--blue); color: white; }
  .cbtn-blue:hover { background: var(--deep-blue); color: white; }
  .cbtn-insta { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); color: white; }
  .cbtn-insta:hover { opacity: 0.88; }

  /* ===== FOOTER ===== */
  footer { background: var(--deep-blue); color: #8aa8d0; padding: 50px 24px 28px; border-top: 3px solid var(--blue); }
  .footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.35fr repeat(4, 1fr); gap: 32px; margin-bottom: 38px; }
  .footer-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
  .footer-logo-wrap img { height: 56px; width: 56px; object-fit: contain; }
  .f-brand-name { color: white; font-weight: 900; font-size: 1rem; }
  .f-brand-tag { color: var(--light-blue); font-size: 0.66rem; letter-spacing: 1.5px; text-transform: uppercase; }
  .footer-desc { font-size: 0.86rem; line-height: 1.7; margin-bottom: 18px; }
  .footer-socials { display: flex; gap: 8px; }
  .footer-socials a { width: 34px; height: 34px; border-radius: 7px; border: 1px solid rgba(77,166,255,0.22); display: flex; align-items: center; justify-content: center; font-size: 0.95rem; text-decoration: none; color: #8aa8d0; transition: all 0.2s; }
  .footer-socials a:hover { background: var(--blue); border-color: var(--blue); color: white; }
  .footer-col h4 { color: white; font-size: 0.8rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 9px; }
  .footer-col ul li a { color: #8aa8d0; text-decoration: none; font-size: 0.86rem; transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--light-blue); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 22px; text-align: center; font-size: 0.78rem; max-width: 1200px; margin: 0 auto; }

  .reveal { opacity: 0; transform: translateY(28px); transition: all 0.6s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 80px; left: 0; right: 0; background: rgba(10,22,40,0.98); padding: 18px 24px; gap: 14px; border-bottom: 2px solid var(--blue); z-index: 999; }
    .hamburger { display: flex; }

    /* Hero */
    .hero-content { grid-template-columns: 1fr; gap: 20px; padding: 36px 20px 50px; text-align: center; }
    .hero-logo-wrap { order: -1; }
    .logo-glow-ring { width: 220px; height: 220px; }
    .logo-glow-ring img { width: 200px; height: 200px; }

    /* Buttons: full width, stacked */
    .hero-buttons { flex-direction: column; align-items: center; gap: 10px; }
    .btn-primary, .btn-secondary, .btn-quote { width: 100%; max-width: 300px; justify-content: center; }

    /* Contact strip: clean 2-col grid, no pipe separators */
    .hero-contacts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 8px; justify-items: center; width: 100%; max-width: 320px; margin: 0 auto; }
    .hero-contacts span { display: none; }

    /* Trust bar: clean 2-column grid */
    .trust-bar { padding: 14px 16px; }
    .trust-bar-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 0; justify-items: center; }
    .trust-item + .trust-item::before { display: none; }
    .trust-item { font-size: 0.88rem; }

    .form-row { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 28px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .ba-slider { height: 220px; }
    .review-card { flex-basis: 100%; }
    .reviews-cta .btn-primary { width: auto; }
  }
  @media (min-width: 769px) and (max-width: 1050px) {
    .footer-inner { grid-template-columns: repeat(3, 1fr); }
    .footer-inner > div:first-child { grid-column: 1 / -1; }
  }


  main > section:not(.hero), main > div, body > section:not(.hero), body > footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
  }
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    .reveal { opacity: 1; transform: none; }
  }
