@charset "utf-8";


@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Barlow+Condensed:wght@500;600;700&display=swap');
/* font-family: "Plus Jakarta Sans", sans-serif; */

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

:root {
    --navy:    #0F1923;
    --navy-mid:#1A2736;
    --red:     #BB3220;
    --red-dark:#9A2819;
    --cream:   #F2EDD7;
    --parchment:#E8E0C5;
    --gold:    #D4A832;
    --stone:   #8C8070;
    --fog:     #C8BFA8;
    --white:   #FDFAF2;
  }

  html { scroll-behavior: smooth; }
  body {
    font-family: 'Barlow', sans-serif;
    background: var(--cream);
    color: var(--navy);
    overflow-x: hidden;
  }

  button:focus{outline: none;}
  a:hover{text-decoration: none; color: inherit;}

  /* ── SCROLL REVEAL ── */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-stagger { transition-delay: calc(var(--i, 0) * 0.1s); }

  /* ── PREFERS REDUCED MOTION ── */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
    .hero-left, .hero-right { animation: none; opacity: 1; transform: none; }
  }

  /* ── TOPBAR ── */
  .topbar {
    background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-dark));
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 3.5rem;
  }
  .topbar a { color: var(--white); text-decoration: none; transition: opacity 0.3s ease; }
  .topbar a:hover { opacity: 0.8; }
  .topbar-divider { opacity: 0.4; margin: 0 1rem; }

  /* ── NAV ── */
  nav {
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3.5rem;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--red);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  }
  .nav-logo-img {
    height: 80px;
    width: auto;
    display: block;
    mix-blend-mode: lighten;
  }
  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin-bottom: 0;
  }
  .nav-links a:not([href]):not([tabindex]){color: var(--fog);}
  .nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fog);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 1.6rem 0;
    border-bottom: 3px solid transparent;
    margin-bottom: -3px;
  }
  .nav-links a:hover { color: var(--white); border-bottom-color: var(--red); }
  .nav-links a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
  /* .nav-cta {
    background: var(--red);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.7rem 1.8rem;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(200,40,42,0.3);
  }
  .nav-cta:hover { background: var(--red-dark); transform: scale(1.03); }
  .nav-cta:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; } */

  /* ── HAMBURGER ── */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
  }
  .hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  /* Mega Menu */

  .main-menu-more{display: none;}

  /* ── REVIEW BAR ── */
  .review-bar {
    background: var(--navy-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 0.6rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .review-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--fog);
  }
  .review-bar-stars { display: flex; gap: 2px; }
  .review-bar-stars svg { width: 14px; height: 14px; fill: var(--gold); }
  .review-bar-item strong { color: var(--white); font-weight: 700; }
  .review-bar-divider { width: 1px; height: 16px; background: rgba(255,255,255,0.12); }

  
  /* ── TESTIMONIAL STRIP ── */
  .testimonial-strip {
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    padding: 1rem 3.5rem;
    border-top: 3px solid var(--gold);
  }
  .testimonial-strip-stars { display: flex; gap: 2px; flex-shrink: 0; }
  .testimonial-strip-stars svg { width: 20px; height: 20px; fill: var(--gold); }
  .testimonial-strip-text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--fog);
    line-height: 1.5;
  }
  .testimonial-strip-text p{margin: 5px 0;}
  .testimonial-strip-text strong {
    font-style: normal;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-left: 1rem;
  }

  @media (max-width: 768px) {
    .review-bar { flex-wrap: wrap; gap: 1rem 1.5rem; padding: 0.5rem 1rem; }
    .review-bar-divider { display: none; }
    .testimonial-strip { padding: 0.8rem 1.5rem; gap: 0.8rem; }
    .testimonial-strip-text { font-size: 0.82rem; }
  }
  @media (max-width: 480px) {
    .review-bar { gap: 0.6rem 1rem; }
    .review-bar-item { font-size: 0.7rem; }
    .testimonial-strip { flex-direction: column; text-align: center; gap: 0.4rem; }
    .testimonial-strip-text span { display: block; margin-left: 0; margin-top: 0.3rem; }
  }

  /* ── HERO ── */
  .hero {
    background: var(--navy);
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    min-height: auto;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
      -45deg, transparent 0px, transparent 18px,
      rgba(255,255,255,0.018) 18px, rgba(255,255,255,0.018) 19px
    );
    pointer-events: none;
    z-index: 0;
  }
  /* Animated gradient shimmer */
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      120deg,
      transparent 30%,
      rgba(200,40,42,0.06) 50%,
      transparent 70%
    );
    background-size: 200% 100%;
    animation: heroShimmer 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
  }
  @keyframes heroShimmer {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: -200% 0; }
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 3.5rem 2.5rem;
    position: relative;
    z-index: 2;
    animation: slideIn 0.7s 0.1s ease both;
  }
  @keyframes slideIn { from { opacity:0; transform: translateX(-24px); } to { opacity:1; transform: translateX(0); } }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--red);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    margin-bottom: 1.2rem;
    width: fit-content;
    animation: badgePulse 3s ease-in-out infinite;
    box-shadow: 0 2px 12px rgba(200,40,42,0.4);
  }
  .hero-badge::before { content: ''; display: inline-block; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; }
  @keyframes badgePulse {
    0%, 100% { transform: translateY(0); box-shadow: 0 2px 12px rgba(200,40,42,0.4); }
    50% { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(200,40,42,0.5); }
  }

  .hero-content {
    position: relative;
    z-index: 2;
    animation: slideIn 0.7s 0.1s ease both;
    max-width: 800px;
  }
  .pad54{
    padding: 5rem 3.5rem 4rem;
  }
  .hero-left h1, .hero-left h2, .hero-content h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 6.5vw, 7rem);
    line-height: 0.95;
    color: var(--white);
    letter-spacing: 0.02em;
  }
  .smbanner .hero-content h1{
    font-size: clamp(4rem, 5vw, 6rem);
  }
  .smbanner .hero-content h3{
    font-size: 3.4em;
  }
 .hero-left h1 strong,  .hero-left h2 strong, .hero-content h1 strong { color: var(--red);}
 .hero-left h3, .hero-content h3 {
  color: var(--gold);
  display: block;
  font-size: 4.2em;
  font-family: 'Bebas Neue', sans-serif;
  }

  .hero-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--red), transparent);
    margin: 1.2rem 0;
  }

  .hero-left p, .hero-content p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--fog);
    max-width: 400px;
    margin-bottom: 1.8rem;
  }
  .hero-content p{max-width:none;}
  .hero-left p strong, .hero-content p strong { color: var(--gold); font-weight: 600; }

  .hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; margin-bottom: 1.8rem; }

  .btn-primary {
    background: var(--red);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.9rem 2.2rem;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    box-shadow: 0 3px 12px rgba(200,40,42,0.3);
    border: 0;
  }
  .btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,40,42,0.4); }
  .btn-primary:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

  .btn-secondary {
    background: transparent;
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.25);
    transition: border-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
  }
  .btn-secondary:hover { border-color: var(--white); transform: translateY(-2px); }
  .btn-secondary:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

  .hero-trust { display: flex; gap: 2.2rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,0.1); }
  .trust-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--fog);
  }
  .trust-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

  .hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    animation: logoIn 0.9s 0.3s ease both;
    overflow: hidden;
  }
  @keyframes logoIn { from { opacity:0; transform: scale(0.92) translateX(20px); } to { opacity:1; transform: scale(1) translateX(0); } }
  /* Ambient glow behind the van */
  .hero-right::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(187,50,32,0.18) 0%, rgba(212,168,50,0.06) 40%, transparent 70%);
    pointer-events: none;
  }
  .hero-logo-wrap {
    position: relative;
    width: 85%;
    max-width: none;
  }
  .hero-logo-wrap img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 12px 40px rgba(0,0,0,0.5));
    position: relative;
    z-index: 2;
  }
  /* Ground shadow / reflection under the van */
  .hero-logo-wrap::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 10%;
    right: 10%;
    height: 30px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.35) 0%, transparent 70%);
    filter: blur(8px);
    z-index: 1;
  }
  /* ── VALUE STRIP ── */
  .strip {
    background: var(--cream);
    border-top: 4px solid var(--navy);
    border-bottom: 4px solid var(--navy);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .strip-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.4rem 2rem;
    border-right: 2px solid var(--parchment);
    transition: background 0.3s ease, transform 0.3s ease;
  }
  .strip-item:last-child { border-right: none; }
  .strip-item:hover { background: var(--parchment); }
  .strip-icon-box {
    width: 46px; height: 46px;
    background: var(--red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(200,40,42,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .strip-item:hover .strip-icon-box { transform: scale(1.08); box-shadow: 0 5px 16px rgba(200,40,42,0.35); }
  .strip-icon-box svg { width: 22px; height: 22px; fill: white; }
  .strip-text strong {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
  }
  .strip-text span { font-size: 0.78rem; color: var(--stone); }

  /* ── ABOUT ── */
  .about { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
  .about-img {
    background: var(--navy-mid);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .about-img img.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .about-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,25,35,0.3) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
  }
  /* Decorative border accent */
  .about-img-border-accent {
    position: absolute;
    top: 2rem; left: 2rem; bottom: 2rem; right: 2rem;
    border: 1px solid rgba(212,168,50,0.15);
    pointer-events: none;
    z-index: 2;
  }
  .about-img-logo {
    width: 70%; max-width: 320px;
    mix-blend-mode: lighten;
    position: relative; z-index: 1;
    opacity: 0.2;
    animation: logoPulse 5s ease-in-out infinite;
  }
  @keyframes logoPulse {
    0%, 100% { opacity: 0.15; transform: scale(1); }
    50% { opacity: 0.25; transform: scale(1.02); }
  }
  .about-img-tag {
    position: absolute;
    bottom: 2rem; right: 0;
    background: var(--red);
    color: white;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.5rem 1.4rem;
    box-shadow: 0 3px 12px rgba(200,40,42,0.3);
    z-index: 3;
  }
  .about-content {
    padding: 5rem 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
  }
  .eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
  }
  .eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--red); }
  .section-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.4rem, 3.5vw, 3.8rem);
    line-height: 1;
    color: var(--navy);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
  }
  .section-heading em { color: var(--red); font-style: normal; }
  .about-content p {
    font-size: 0.95rem; line-height: 1.8;
    color: #3a3a3a;
    max-width: 460px;
    margin-bottom: 2rem;
  }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-bottom: 2.2rem; }
  .about-point {
    display: flex; align-items: flex-start; gap: 0.7rem;
    padding: 0.9rem;
    background: var(--cream);
    border-left: 3px solid var(--gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .about-point:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
  .about-point-icon { color: var(--gold); font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
  .about-point-text strong {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem; font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 0.15rem;
  }
  .about-point-text span { font-size: 0.78rem; color: var(--stone); }

.bg-navy{
  background: var(--navy);
}

  /* ── SERVICES ── */
  .services {    
    padding: 5.5rem 3.5rem;
    position: relative;
    overflow: hidden;
  }
  .services::before {
    content: '';
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(
      -45deg, transparent, transparent 30px,
      rgba(255,255,255,0.012) 30px, rgba(255,255,255,0.012) 31px
    );
    pointer-events: none;
  }
  .services-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3rem; }
  .eyebrow { color: var(--gold); }
  .eyebrow::before { background: var(--gold); }
  /* .section-heading { color: var(--white); margin-bottom: 0; } */

  .services-header-center {
    text-align: center;
    margin-bottom: 3rem;
  }

  .services-all {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.82rem; font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fog);
    text-decoration: none;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    padding-bottom: 2px;
    flex-shrink: 0;
    margin-left: 2rem;
    margin-bottom: 3px;
    transition: color 0.3s ease, border-color 0.3s ease;
  }
  .services-all:hover { color: var(--white); border-color: var(--white); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    /* background: rgba(255,255,255,0.05); */
    background: var(--navy);
  }
  .service-card {
    background: var(--navy);
    padding: 2.2rem 2rem;
    display: block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255,255,255,0.06);
    border-left: 3px solid rgba(255,255,255,0.08);
  }
  .service-card::after {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--red);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .service-card:hover {
    background: linear-gradient(135deg, var(--navy-mid), rgba(200,40,42,0.08));
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.1);
  }
  .service-card:hover::after {
    transform: scaleY(1);
    box-shadow: 3px 0 12px rgba(200,40,42,0.4);
  }
  .service-card:focus-visible { outline: 2px solid var(--gold); outline-offset: -2px; }
  .service-num { display: none; }
  .service-icon-wrap {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(200,40,42,0.15);
    border: 1px solid rgba(200,40,42,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  }
  .service-icon-wrap svg, .service-icon-wrap img{ width: 24px; height: 24px; fill: var(--red); transition: fill 0.3s ease; }
  .service-card:hover .service-icon-wrap { background: rgba(200,40,42,0.25); transform: scale(1.08); border-color: rgba(200,40,42,0.4); }
  .service-card:hover .service-icon-wrap svg { fill: #e53e3e; }
  .service-card h3, .service-card h2{
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.25rem; font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0.6rem;
  }
  .service-card p { font-size: 0.83rem; line-height: 1.7; color: var(--stone); }
  .service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.2rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--red);
    transition: gap 0.3s ease;
  }
  .service-card:hover .service-link { gap: 0.7rem; }

  /* ── OTHER SERVICES STRIP ── */
  /* ── SERVICE TABS ── */
  .service-tabs {
    display: flex;
    gap: 2px;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
  }
  .service-tab {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stone);
    background: var(--navy-mid);
    border: none;
    padding: 1rem 1.8rem;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease, background 0.3s ease;
    border-radius: 8px 8px 0 0;
    border-top: 3px solid transparent;
  }
  .service-tab:hover { color: var(--fog); background: rgba(255,255,255,0.05); }
  .service-tab.active {
    color: var(--white);
    background: var(--navy);
    border-top-color: var(--red);
  }
  .tab-content { display: none; }
  .services .tab-content.active {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    border: 0;
    background: rgba(255, 255, 255, 0.05);
    border-top: 2px solid var(--gold);
    border-radius: 0;
    padding: 0;
  }

  @media (max-width: 768px) {
    .service-tabs { flex-wrap: wrap; gap: 2px; }
    .service-tab { font-size: 0.75rem; padding: 0.8rem 1rem; flex: 1; text-align: center; min-width: 0; }
    .tab-content.active { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 480px) {
    .service-tab { font-size: 0.7rem; padding: 0.7rem 0.6rem; letter-spacing: 0.06em; }
    .tab-content.active { grid-template-columns: 1fr; }
  }

  /* ── TESTIMONIAL ── */
  .testimonial {
    background: var(--red);
    padding: 5rem 3.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .testimonial::before {
    content: '';
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(
      -45deg, transparent, transparent 25px,
      rgba(0,0,0,0.04) 25px, rgba(0,0,0,0.04) 26px
    );
    pointer-events: none;
  }
  /* Subtle animated pattern overlay */
  .testimonial::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.05) 0%, transparent 60%);
    animation: testimonialGlow 8s ease-in-out infinite alternate;
    pointer-events: none;
  }
  @keyframes testimonialGlow {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.1); }
  }
  .testimonial-quote { position: relative; z-index: 1; }
  .star-rating { margin-bottom: 1rem; display: flex; gap: 4px; }
  .star-rating svg { width: 20px; height: 20px; fill: var(--gold); filter: drop-shadow(0 1px 3px rgba(0,0,0,0.2)); }
  .quote-mark {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 8rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.2), rgba(255,255,255,0.03));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 0.7;
    margin-bottom: 1rem;
  }
  .testimonial-quote blockquote {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(1.1rem, 1.8vw, 1.45rem);
    font-style: italic;
    line-height: 1.65;
    color: var(--white);
    margin-bottom: 1.5rem;
  }
  .testimonial-quote cite {
    font-style: normal;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.82rem; font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex; align-items: center; gap: 0.8rem;
  }
  .testimonial-quote cite::before { content: '\2014'; }
  .stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; position: relative; z-index: 1; }
  .stat-box {
    background: rgba(0,0,0,0.2);
    padding: 1.8rem;
    text-align: center;
    transition: background 0.3s ease;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
  }
  .stat-box:hover { background: rgba(0,0,0,0.28); }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.3rem;
    letter-spacing: 0.02em;
  }
  .stat-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
  }

   /* ── PROCESS ── */
  .process { padding: 5.5rem 3.5rem; background: var(--parchment); }
  .process-header { text-align: center; margin-bottom: 4rem; }
  .process-header .eyebrow { justify-content: center; }
  .process-header .eyebrow::before { display: none; }
  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
  }
  /* Connecting line between steps */
  .process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5% + 28px);
    right: calc(12.5% + 28px);
    height: 2px;
    background: var(--fog);
    z-index: 0;
  }
  .process-steps::after {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5% + 28px);
    height: 2px;
    background: var(--red);
    width: 0%;
    z-index: 1;
    transition: width 1.5s ease;
  }
  .process-steps.animate-progress::after { width: calc(100% - 25% - 56px); }
  .process-step {
    padding: 0 1.8rem 2.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  .step-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    border: 2px solid var(--fog);
    background: var(--cream);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.4rem;
    position: relative; z-index: 2;
    transition: border-color 0.5s ease, box-shadow 0.5s ease;
  }
  .step-icon svg, .step-icon img { width: 24px; height: 24px; fill: var(--red); }
  .process-step.step-active .step-icon {
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(200,40,42,0.15);
  }
  .process-step h3{
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem; font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 0.6rem;
  }
  .process-step p { font-size: 0.83rem; line-height: 1.7; color: var(--stone); }

  /* ── WHY CHOOSE US ── */
  .why-us { padding: 5rem 3.5rem; background: var(--white); }
  .why-us-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
  .why-us-card { padding: 2rem; background: var(--cream); border-left: 3px solid var(--gold); transition: transform 0.3s ease, box-shadow 0.3s ease; }
  .why-us-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
  .why-us-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.5rem; }
  .why-us-card p { font-size: 0.85rem; line-height: 1.7; color: var(--stone); }
  .why-us-card .why-icon { width: 40px; height: 40px; border-radius: 8px; background: rgba(187,50,32,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
  .why-us-card .why-icon svg, .why-us-card .why-icon img { width: 20px; height: 20px; fill: var(--red); }
  .why-us-card .why-icon img, .service-icon-wrap img, .step-icon img{
    filter: invert(27%) sepia(96%) saturate(1391%) hue-rotate(352deg) brightness(90%) contrast(84%);
  }

  @media (max-width: 768px) {
    .why-us { padding: 4rem 1.5rem; }
    .why-us-grid { grid-template-columns: 1fr; }
  }

  /* ── FAQ ── */
  .faq { padding: 5rem 3.5rem; background: var(--white); }
  .faq-inner { max-width: 800px; margin: 0 auto; }
  .faq-item { border-bottom: 1px solid var(--parchment); }
  .faq-question { width: 100%; background: none; border: none; font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem; font-weight: 700; letter-spacing: 0.04em; color: var(--navy); padding: 1.3rem 0; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: color 0.3s ease; }
  .faq-question:hover { color: var(--red); }
  .faq-question svg { width: 20px; height: 20px; fill: var(--stone); transition: transform 0.3s ease; flex-shrink: 0; }
  .faq-item.open .faq-question svg { transform: rotate(180deg); }
  .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
  .faq-answer p { font-size: 0.9rem; line-height: 1.8; color: #3a3a3a; padding-bottom: 1.3rem; }
  .faq-item.open .faq-answer { max-height: 300px; }

  @media (max-width: 768px) {
    .faq { padding: 4rem 1.5rem; }
  }

  /* ── CTA BANNER ── */
  .cta {
    background: var(--navy);
    padding: 4.5rem 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    border-top: 4px solid var(--red);
    box-shadow: inset 0 4px 20px rgba(200,40,42,0.1);
  }
  .cta-left { display: flex; align-items: center; gap: 2.5rem; }
  .cta-logo { height: 90px; width: auto; mix-blend-mode: lighten; opacity: 0.85; flex-shrink: 0; }
  .cta-text h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.8rem, 3vw, 3rem);
    color: var(--white); line-height: 1;
    letter-spacing: 0.02em;
    margin-bottom: 0.4rem;
  }
  .cta-text p { font-size: 0.9rem; color: var(--fog); }
  .cta-actions { display: flex; gap: 1rem; flex-shrink: 0; }
  .btn-gold {
    background: var(--gold);
    color: var(--navy);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.88rem; font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.9rem;
    text-transform: uppercase;
    padding: 0.9rem 2.2rem;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    box-shadow: 0 3px 12px rgba(212,168,50,0.3);
  }
  .btn-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,168,50,0.4); }
  .btn-gold:focus-visible { outline: 2px solid var(--white); outline-offset: 2px; }
  .btn-outline {
    border: 2px solid rgba(255,255,255,0.25);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.88rem; font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    text-decoration: none;
    transition: border-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
  }
  .btn-outline:hover { border-color: var(--white); transform: translateY(-2px); }
  .btn-outline:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

  
  /* ── FOOTER ── */
  footer {
    background: #080f16;
    padding: 0 3.5rem 1.8rem;
    position: relative;
  }
  /* Top border gradient accent */
  footer::before {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
  }
  .footer-top {
    display: grid;
    grid-template-columns:1.4fr 1fr 1fr 1fr 1fr;
    gap: 4rem;
    padding: 3.5rem 0 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 1.8rem;
  }
  .footer-brand-logo { height: 70px; width: auto; mix-blend-mode: lighten; margin-bottom: 1rem; }
  .footer-brand p { font-size: 0.83rem; line-height: 1.8; color: var(--stone); max-width: 280px; margin-bottom: 1.2rem; }
  .footer-phone {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 0.04em;
    display: block;
    transition: opacity 0.3s ease;
  }
  .footer-phone:hover { opacity: 0.8; }
  .footer-col h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.2rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 0.55rem; }
  .footer-col ul a {
    font-size: 0.83rem;
    color: var(--stone);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
  }
  .footer-col ul a:hover { color: var(--fog); padding-left: 4px; }
  /* Social icons */
  .footer-social { display: flex; gap: 0.8rem; margin-top: 1.5rem; }
  .footer-social a {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
  }
  .footer-social a:hover { border-color: var(--gold); background: rgba(212,168,50,0.1); transform: translateY(-2px); }
  .footer-social svg { width: 16px; height: 16px; fill: var(--fog); transition: fill 0.3s ease; }
  .footer-social a:hover svg { fill: var(--gold); }
  .footer-bottom {
    display: flex; justify-content: space-between;
    font-size: 0.72rem; color: var(--stone); opacity: 0.5;
    padding-top: 0.5rem;
  }
  
  /* ── TEXT TO SCHEDULE BUBBLE ── */
  .text-bubble {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: var(--gold);
    color: var(--navy);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.8rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    z-index: 99;
    box-shadow: 0 4px 20px rgba(212,168,50,0.4);
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid var(--gold);
  }
  .text-bubble:hover {
    background: #e0bc3a;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(212,168,50,0.5);
    border-color: #e0bc3a;
  }
  .text-bubble svg {
    width: 22px;
    height: 22px;
    fill: var(--navy);
    flex-shrink: 0;
  }
  .text-bubble-label strong { color: var(--navy); }

  @media (max-width: 480px) {
    .text-bubble { padding: 0.7rem 1.1rem; font-size: 0.75rem; gap: 0.5rem; bottom: 1.2rem; left: 1rem; }
    .text-bubble svg { width: 18px; height: 18px; }
  }

  /* ── BACK TO TOP ── */
  .back-to-top {
    position: fixed;
    bottom: 5.5rem;
    right: 2rem;
    width: 44px; height: 44px;
    background: var(--red);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
    z-index: 99;
    box-shadow: 0 4px 16px rgba(200,40,42,0.4);
    pointer-events: none;
  }
  .back-to-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .back-to-top:hover { background: var(--red-dark); transform: translateY(-3px); }
  .back-to-top svg { width: 18px; height: 18px; fill: white; }

  /* Inner Page */

  /* Pricing Strip */
  .pricing-strip { background: var(--gold); padding: 0.8rem 2rem; text-align: center; font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 0.06em; color: var(--navy); }

   /* Offers */
  .offers { padding: 4rem 3.5rem; background: var(--white); text-align: center; }
  .offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
  .offer-card { background: var(--cream); border: 2px dashed var(--gold); border-radius: 8px; padding: 2rem 1.5rem; text-align: left; transition: transform 0.3s, box-shadow 0.3s; }
  .offer-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }


  .offer-amount, .offer-card h3 strong { font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem; color: var(--red); line-height: 1; display: inline; }
  .offer-label, .offer-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; text-transform: uppercase; color: var(--navy); display: inline; margin-left: 0.5rem; }
  .offer-fine, .offer-card p { font-size: 0.75rem; color: var(--stone); margin-top: 0.8rem; }

    /* Reviews Banner */
  .reviews-banner { background: var(--red); padding: 3.5rem 3.5rem; text-align: center; position: relative; overflow: hidden; }
  .reviews-banner::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(-45deg, transparent, transparent 25px, rgba(0,0,0,0.04) 25px, rgba(0,0,0,0.04) 26px); pointer-events: none; }
  .reviews-banner h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 4vw, 3.5rem); color: var(--white); position: relative; z-index: 1; }
  .reviews-banner h2 em { color: var(--gold); font-style: normal; }
  .reviews-banner .stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 1rem; position: relative; z-index: 1; }
  .reviews-banner .stars svg { width: 28px; height: 28px; fill: var(--gold); }
  .reviews-banner p { font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.8); position: relative; z-index: 1; margin-top: 0.5rem; }

  /* Pricing */
  .pricing { padding: 4rem 3.5rem;}
  .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; max-width: 900px; margin-left: auto; margin-right: auto; }
  .pricing-card { background: var(--navy-mid); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 2rem; text-align: center; transition: transform 0.3s, box-shadow 0.3s; }
  .pricing-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }

  .pricing-card .price, .pricing-card h2{ font-family: 'Bebas Neue', sans-serif;  color: var(--gold); line-height: 1; font-size:1.6rem; }
  .pricing-card h2 strong{font-size: 2.8rem;}

  .pricing-card .price-unit, .pricing-card h6 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fog); margin-top: 0.3rem; }

  .pricing-card .price-service, .pricing-card p { font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); margin-top: 0.8rem; padding-top: 0.8rem; border-top: 1px solid rgba(255,255,255,0.08); }

  @media (max-width: 768px) {
    .why-us-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
  }

  /* About */
  .about-section { padding: 5rem 3.5rem; background: var(--white); }
  .about-inner { max-width: 900px; margin: 0 auto; }
  .about-section p { font-size: 0.95rem; line-height: 1.85; color: #3a3a3a; margin-bottom: 1.5rem; }

  /* Neighborhoods */
  .neighborhoods {padding: 4rem 3.5rem; }
  .neighborhoods-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 800px; margin: 2rem auto 0; }
  .neighborhood-card { background: var(--navy-mid); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 2rem; text-align: center; }
  .neighborhood-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
  .neighborhood-card p { font-size: 0.9rem; color: var(--fog); line-height: 1.7; }
  .neighborhood-card svg { width: 32px; height: 32px; fill: var(--red); margin-bottom: 0.8rem; }

    /* Local Trust */
  .local-trust { padding: 4rem 3.5rem; background: var(--parchment); }
  .local-trust-inner { max-width: 800px; margin: 0 auto; }
  .local-trust h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 3vw, 2.8rem); color: var(--navy); margin-bottom: 1.5rem; text-align: center; }
  .local-trust h2 em { color: var(--red); font-style: normal; }
  .local-trust p { font-size: 0.93rem; line-height: 1.85; color: #3a3a3a; margin-bottom: 1.2rem; }
  .local-trust ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin: 1.5rem 0; }
  .local-trust ul li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: var(--navy); font-weight: 500; }
  .local-trust ul li::before { content: ''; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

  /* Quote Container */
  .quote-page { max-width: 900px; margin: 0 auto; padding: 3rem 2rem 5rem; }
  .quote-header { text-align: center; margin-bottom: 1.5rem; }
  .quote-header h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem, 5vw, 3.5rem); color: var(--navy); line-height: 1; margin-bottom: 0.5rem; }
  .quote-header h1 em { color: var(--red); font-style: normal; }
  .quote-header p { font-size: 0.95rem; color: var(--stone); max-width: 500px; margin: 0 auto; }

  /* Progress Bar */
  .quote-page .progress-bar { display:flex; align-items:center; justify-content:center; gap: 0; margin-bottom:2rem; background-color:transparent; flex-direction:inherit;}
  .progress-step { display: flex; align-items: center; gap: 0; }
  .progress-dot { width: 36px; height: 36px; border-radius: 50%; background: var(--parchment); border: 2px solid var(--fog); display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--stone); transition: all 0.3s; }
  .progress-dot.active { background: var(--red); border-color: var(--red); color: var(--white); }
  .progress-dot.done { background: var(--gold); border-color: var(--gold); color: var(--navy); }
  .progress-line { width: 80px; height: 2px; background: var(--fog); transition: background 0.3s; }
  .progress-line.active { background: var(--gold); }
  .progress-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--stone); text-align: center; margin-top: 0.4rem; }
  .progress-label.active { color: var(--navy); }
  .progress-sublabel { font-size: 0.6rem; color: var(--stone); font-weight: 400; text-transform: none; letter-spacing: 0; }
  .progress-group { display: flex; flex-direction: column; align-items: center; }

  /* Trust Strip */
  .trust-strip { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.5rem 1.5rem; margin-bottom: 2.5rem; padding: 0.8rem 1rem; background: var(--white); border: 1px solid var(--parchment); border-radius: 8px; }
  .trust-item { font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy); display: flex; align-items: center; gap: 0.35rem; }
  .trust-item svg { width: 14px; height: 14px; fill: var(--gold); flex-shrink: 0; }

  /* Step Panels */
  .step-panel { display: none; animation: fadeIn 0.3s ease; }
  .step-panel.active { display: block; }
  #step-1 { padding-bottom: 4rem; }
  @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

  /* Tab Bar */
  .tab-bar { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; }
  .tab-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.85rem 0.5rem; border: 2px solid var(--parchment); border-radius: 10px; background: var(--white); font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy); cursor: pointer; transition: all 0.25s; }
  .tab-btn svg { width: 20px; height: 20px; fill: var(--navy); flex-shrink: 0; transition: fill 0.25s; }
  .tab-btn:hover { border-color: var(--red); }
  .tab-btn.active { background: var(--red); border-color: var(--red); color: var(--white); box-shadow: 0 4px 12px rgba(187,50,32,0.25); }
  .tab-btn.active svg { fill: var(--white); }

  /* Tab Content Panels */
  .tab-content { display: none; background: var(--white); border: 2px solid var(--parchment); border-radius: 10px; padding: 1.5rem; animation: fadeIn 0.25s ease; }
  .tab-content.active { display: block; }

  /* Benefit Callout */
  .benefit-callout { background: rgba(212,168,50,0.08); border-left: 3px solid var(--gold); border-radius: 0 6px 6px 0; padding: 0.8rem 1rem; margin-bottom: 1.2rem; font-size: 0.82rem; color: var(--navy); line-height: 1.5; }

  /* Item Rows */
  .item-list { margin-bottom: 0; }
  .item-row { display: flex; align-items: center; gap: 1rem; padding: 0.7rem 0; border-bottom: 1px solid var(--parchment); }
  .item-row:last-child { border-bottom: none; }
  .item-name { flex: 1; }
  .item-name-title { font-family: 'Barlow Condensed', sans-serif; font-size: 0.88rem; font-weight: 700; text-transform: uppercase; color: var(--navy); }
  .item-name-price { font-size: 0.75rem; color: var(--stone); }
  .item-qty { display: flex; align-items: center; gap: 0.5rem; }
  .qty-btn { width: 32px; height: 32px; border-radius: 6px; border: 2px solid var(--parchment); background: var(--white); font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
  .qty-btn:hover { border-color: var(--red); color: var(--red); }
  .qty-val { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; min-width: 24px; text-align: center; }

  /* Rug Form */
  .rug-form { margin-top: 0.5rem; }
  .form-group { margin-bottom: 1rem; }
  .form-label { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.4rem; }
  .form-sublabel { font-size: 0.78rem; color: var(--stone); font-weight: 400; text-transform: none; letter-spacing: 0; }
  select, input[type="number"], input[type="text"] , input[type="date"] {
    width: 100%; padding: 0.7rem 1rem; border: 2px solid var(--parchment); border-radius: 6px; font-family: 'Barlow', sans-serif; font-size: 0.9rem; background: var(--white); color: var(--navy); transition: border-color 0.3s;
  }

.wpcf7-form-control.wpcf7-radio {
    background: #e8e0c5;
    display: block;
    padding: 10px 0;
}

textarea.wpcf7-textarea.form-control {
    height: 100px;
    border: 2px solid var(--parchment);
}
  select:focus, input:focus { outline: none; border-color: var(--gold); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.8rem; }
  .btn-add-rug { background: var(--red); color: var(--white); border: none; font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.7rem 1.5rem; cursor: pointer; border-radius: 6px; transition: background 0.3s; margin-top: 0.5rem; }
  .btn-add-rug:hover { background: var(--red-dark); }

  /* Sticky Quote CTA */
  .quote-cta-sticky { position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; display: none; justify-content: center; padding: 0.8rem 1.5rem; background: var(--navy); box-shadow: 0 -4px 20px rgba(0,0,0,0.25); }
  .quote-cta-sticky.visible { display: flex; }
  .quote-cta-btn { display: inline-flex; align-items: center; gap: 0.6rem; background: var(--gold); color: var(--navy); border: none; font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.9rem 2.5rem; cursor: pointer; border-radius: 6px; transition: transform 0.3s, box-shadow 0.3s; box-shadow: 0 3px 12px rgba(212,168,50,0.3); }
  .quote-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,168,50,0.4); }
  .cart-badge { display: inline-flex; align-items: center; justify-content: center; background: var(--red); color: var(--white); font-size: 0.75rem; min-width: 22px; height: 22px; padding: 0 0.4rem; border-radius: 11px; }

  /* Skip Link */
  .skip-link { text-align: center; margin-top: 1.5rem; padding: 1rem; background: rgba(187,50,32,0.06); border: 1.5px dashed var(--red); border-radius: 8px; }
  .skip-link a { font-family: 'Barlow Condensed', sans-serif; font-size: 0.95rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red); text-decoration: none; transition: color 0.3s; }
  .skip-link a:hover { color: var(--red-dark); }
  .skip-link-sub { font-family: 'Barlow', sans-serif; font-size: 0.78rem; color: var(--stone); margin-top: 0.25rem; font-weight: 400; text-transform: none; letter-spacing: 0; }

  /* Step 2 Booking Box */
  .booking-box { background: var(--white); border: 2px solid var(--parchment); border-radius: 12px; padding: 2rem; margin-top: 2rem; text-align: center; }
  .booking-box h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--navy); margin-bottom: 0; }

  /* Step 2: Quote Summary */
  .quote-summary { background: var(--navy); border-radius: 12px; padding: 2.5rem; color: var(--white); }
  .quote-summary h2 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--white); margin-bottom: 1.5rem; text-align: center; }
  .summary-line { display: flex; align-items: center; gap: 0.5rem; padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 0.88rem; }
  .summary-line .label { color: var(--fog); flex: 1; }
  .summary-line .cat-badge { font-family: 'Barlow Condensed', sans-serif; font-size: 0.55rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); background: rgba(212,168,50,0.15); padding: 0.15rem 0.4rem; border-radius: 3px; flex-shrink: 0; }
  .summary-line .value { color: var(--white); font-weight: 600; white-space: nowrap; }
  .summary-line .remove-line { width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.15); background: none; color: rgba(255,255,255,0.4); font-size: 0.75rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; flex-shrink: 0; }
  .summary-line .remove-line:hover { background: var(--red); border-color: var(--red); color: var(--white); }
  .summary-divider { height: 2px; background: var(--gold); margin: 1rem 0; border-radius: 1px; }
  .summary-total { display: flex; justify-content: space-between; align-items: baseline; padding: 0.5rem 0; }
  .summary-total .label { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); }
  .summary-total .value { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: var(--gold); line-height: 1; transition: color 0.3s; }
  .summary-note { font-size: 0.78rem; color: var(--stone); text-align: center; margin-top: 0.8rem; }
  .summary-actions { display: flex; gap: 1rem; margin-top: 2rem; justify-content: center; flex-wrap: wrap; }
  /* .btn-gold { background: var(--gold); color: var(--navy); font-family: 'Barlow Condensed', sans-serif; font-size: 0.95rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 1rem 2.5rem; text-decoration: none; border: none; cursor: pointer; transition: transform 0.3s, box-shadow 0.3s; box-shadow: 0 3px 12px rgba(212,168,50,0.3); display: inline-block; }
  .btn-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,168,50,0.4); } */
  .btn-outline { border: 2px solid rgba(255,255,255,0.25); background: none; color: var(--white); font-family: 'Barlow Condensed', sans-serif; font-size: 0.95rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 1rem 2.5rem; text-decoration: none; cursor: pointer; transition: border-color 0.3s; display: inline-block; }
  .btn-outline:hover { border-color: var(--white); }

  /* Addon Toggle Section */
  .addon-toggles-section { background: var(--white); border-radius: 12px; padding: 2rem; margin-top: 2rem; border: 2px solid var(--parchment); }
  .addon-toggles-header { margin-bottom: 1.2rem; }
  .addon-toggles-header h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--navy); margin-bottom: 0.3rem; }
  .addon-toggles-header p { font-size: 0.82rem; color: var(--stone); }
  .addon-toggle-row { display: flex; align-items: center; gap: 0.8rem; padding: 0.85rem 0; border-bottom: 1px solid var(--parchment); }
  .addon-toggle-row:last-child { border-bottom: none; }

  /* Toggle Switch */
  .toggle-switch { position: relative; width: 44px; height: 24px; flex-shrink: 0; }
  .toggle-switch input { opacity: 0; width: 0; height: 0; }
  .toggle-slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background: var(--parchment); border-radius: 24px; transition: background 0.25s; }
  .toggle-slider::before { content: ''; position: absolute; width: 18px; height: 18px; left: 3px; bottom: 3px; background: var(--white); border-radius: 50%; transition: transform 0.25s; box-shadow: 0 1px 3px rgba(0,0,0,0.15); }
  .toggle-switch input:checked + .toggle-slider { background: var(--red); }
  .toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); }

  .addon-toggle-name { flex: 1; font-family: 'Barlow Condensed', sans-serif; font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--navy); }
  .addon-toggle-price { font-family: 'Barlow Condensed', sans-serif; font-size: 0.82rem; font-weight: 600; color: var(--stone); white-space: nowrap; }
  .addon-popular-badge { font-family: 'Barlow Condensed', sans-serif; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; background: var(--red); color: var(--white); padding: 0.15rem 0.45rem; border-radius: 3px; flex-shrink: 0; }

  /* Info Tooltip */
  .addon-info-wrap { position: relative; display: inline-flex; align-items: center; flex-shrink: 0; }
  .addon-info-icon { width: 18px; height: 18px; border-radius: 50%; background: var(--parchment); color: var(--stone); font-family: 'Barlow', sans-serif; font-size: 0.7rem; font-weight: 700; font-style: italic; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s, color 0.2s; flex-shrink: 0; }
  .addon-info-wrap:hover .addon-info-icon { background: var(--navy); color: var(--white); }
  .addon-info-tip { display: none; position: absolute; bottom: calc(100% + 8px); right: -8px; width: 240px; background: var(--navy); color: var(--fog); font-family: 'Barlow', sans-serif; font-size: 0.78rem; font-weight: 400; text-transform: none; letter-spacing: 0; line-height: 1.45; padding: 0.75rem 1rem; border-radius: 8px; box-shadow: 0 4px 16px rgba(0,0,0,0.25); z-index: 10; }
  .addon-info-tip::after { content: ''; position: absolute; top: 100%; right: 16px; border: 6px solid transparent; border-top-color: var(--navy); }
  .addon-info-wrap:hover .addon-info-tip { display: block; }
  @media (max-width: 768px) {
    .addon-info-tip { width: 200px; right: -4px; font-size: 0.74rem; }
  }

  /* Total Pulse */
  @keyframes totalPulse {
    0% { color: var(--gold); }
    25% { color: var(--white); text-shadow: 0 0 20px rgba(212,168,50,0.8); }
    100% { color: var(--gold); text-shadow: none; }
  }
  .total-pulse { animation: totalPulse 0.6s ease; }

  /* Back / Add More Link */
  .back-link { text-align: center; margin-top: 1.5rem; }
  .back-link a { font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--stone); text-decoration: none; transition: color 0.3s; cursor: pointer; }
  .back-link a:hover { color: var(--navy); }

  /* Responsive */
  @media (max-width: 768px) {
    nav { padding: 0 1.2rem; }
    .nav-links { display: none; }
    .quote-page { padding: 2rem 1rem 4rem; }
    .trust-strip { gap: 0.3rem 1rem; font-size: 0.72rem; }
    .form-row { grid-template-columns: 1fr 1fr 1fr; }
    .progress-line { width: 50px; }
    .summary-actions { flex-direction: column; }
    .summary-actions a, .summary-actions button { text-align: center; width: 100%; }
    .quote-cta-btn { font-size: 0.9rem; padding: 0.8rem 1.8rem; }
    .tab-bar { gap: 0.3rem; }
    .tab-btn { font-size: 0.7rem; padding: 0.7rem 0.3rem; gap: 0.3rem; letter-spacing: 0.02em; }
    .tab-btn svg { width: 16px; height: 16px; }
    .tab-content { padding: 1.2rem; }
  }

  .questions-cta {
    padding: 4rem 3.5rem;
    background: var(--parchment);
    text-align: center;
  }
  .questions-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .faq-page {
    padding: 5rem 3.5rem;
    background: var(--white);
  }
  .faq-category {
    margin-bottom: 3rem;
  }
  .faq-category-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--gold);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
  .faq-category-title svg {
    width: 20px;
    height: 20px;
    fill: var(--red);
    flex-shrink: 0;
  }

  /* Gallery */
  .gallery-section { padding: 5rem 3.5rem; background: var(--white); }
  .gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1100px; margin: 2.5rem auto 0; }
  .gallery-item { position: relative; overflow: hidden; background: var(--cream); border: 1px solid var(--parchment); transition: transform 0.3s, box-shadow 0.3s; cursor: pointer; }
  .gallery-item:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
  .gallery-item img { width: 100%; height: 250px; object-fit: cover; display: block; transition: transform 0.4s; }
  .gallery-item:hover img { transform: scale(1.05); }
  .gallery-caption { padding: 1rem 1.2rem; }
  .gallery-caption h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.9rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.3rem; }
  .gallery-caption p { font-size: 0.8rem; line-height: 1.6; color: var(--stone); }

  /* CSS-only Lightbox */
  .lightbox-toggle { display: none; }
  .lightbox-overlay { position: fixed; inset: 0; background: rgba(15, 25, 35, 0.95); z-index: 200; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
  .lightbox-toggle:checked ~ .lightbox-overlay { opacity: 1; pointer-events: auto; }
  .lightbox-overlay img { max-width: 90vw; max-height: 85vh; object-fit: contain; border: 3px solid rgba(255,255,255,0.1); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
  .lightbox-close { position: absolute; top: 1.5rem; right: 2rem; font-size: 2.5rem; color: var(--white); cursor: pointer; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; line-height: 1; opacity: 0.7; transition: opacity 0.3s; z-index: 201; }
  .lightbox-close:hover { opacity: 1; }
  .lightbox-caption { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); text-align: center; white-space: nowrap; }


  .contentbanner h1 {
    font-size: clamp(3rem, 4vw, 5rem);
  }

  .article-body { max-width: 800px; margin: 0 auto; padding: 3rem 1.5rem 4rem; }
  .article-body p { font-size: 1rem; line-height: 1.85; color: #3a3a3a; margin-bottom: 1.5rem; }
  .article-body h2 { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: var(--navy); margin: 2.5rem 0 1rem; padding-top: 1.5rem; border-top: 2px solid var(--parchment); letter-spacing: 0.02em; }
  .article-body h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
  .article-body h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--navy); margin: 1.8rem 0 0.8rem; }
  .article-body ul, .article-body ol { margin: 0 0 1.5rem 1.5rem; }
  .article-body ul li, .article-body ol li { font-size: 1rem; line-height: 1.85; color: #3a3a3a; margin-bottom: 0.5rem; }
  .article-body strong { color: var(--navy); }

  .tip-box { background: var(--white); border-left: 4px solid var(--gold); padding: 1.2rem 1.5rem; margin: 1.5rem 0; border-radius: 0 6px 6px 0; }
  .tip-box p { margin-bottom: 0; font-size: 0.95rem; }
  .tip-box .tip-label { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }

  .stat-box { background: var(--navy); color: var(--white); padding: 1.5rem 2rem; margin: 1.5rem 0; border-radius: 6px; text-align: center; }
  .stat-box .stat-number { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: var(--gold); line-height: 1; }
  .stat-box .stat-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fog); margin-top: 0.3rem; }

  .key-takeaway { background: var(--navy); color: var(--white); padding: 1.8rem 2rem; margin: 2rem 0; border-radius: 6px; }
  .key-takeaway .tip-label { color: var(--gold); font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.5rem; }
  .key-takeaway ul { margin: 0.5rem 0 0 1.2rem; }
  .key-takeaway ul li { color: var(--fog); font-size: 0.95rem; margin-bottom: 0.3rem; }

   .article-cta { background: var(--white); border: 2px solid var(--parchment); padding: 2rem; margin: 2.5rem 0 0; border-radius: 8px; text-align: center; }
  .article-cta h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--navy); margin-bottom: 0.5rem; }
  .article-cta p { font-size: 0.95rem; color: #3a3a3a; line-height: 1.7; margin-bottom: 1rem; }
  .article-cta .btn-primary { background: var(--red); color: var(--white); font-family: 'Barlow Condensed', sans-serif; font-size: 0.9rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.9rem 2.2rem; text-decoration: none; display: inline-block; transition: background 0.3s, transform 0.3s; }
  .article-cta .btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
  .article-cta .cta-phone { font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; font-weight: 600; color: var(--stone); margin-top: 0.8rem; }
  .article-cta .cta-phone a { color: var(--red); text-decoration: none; font-weight: 700; }

    .stain-guide { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.5rem 0; }
  .stain-card { background: var(--white); border: 1px solid var(--parchment); padding: 1.2rem; border-radius: 6px; }
  .stain-card h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--red); margin-bottom: 0.5rem; }
  .stain-card p { font-size: 0.9rem; line-height: 1.7; color: #3a3a3a; margin-bottom: 0; }
  @media (max-width: 600px) { .stain-guide { grid-template-columns: 1fr; } }

  .testimonials-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
  .testimonial-card { background: var(--navy-mid); border: 1px solid rgba(255,255,255,0.08); padding: 2.5rem; margin-bottom: 1.5rem; border-left: 3px solid var(--gold); }
  .testimonial-stars { display: flex; gap: 2px; margin-bottom: 1rem; }
  .testimonial-stars svg { width: 18px; height: 18px; fill: var(--gold); }
  .testimonial-card blockquote { font-size: 1rem; font-style: italic; line-height: 1.8; color: var(--fog); margin-bottom: 1rem; }
  .testimonial-card cite { font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); font-style: normal; }

    /* Google Badge */
  .google-badge { display: inline-flex; align-items: center; gap: 1.2rem; background: var(--navy-mid); border: 1px solid rgba(255,255,255,0.1); padding: 1.2rem 2.5rem; margin-top: 1.5rem; }
  .google-badge-stars { display: flex; gap: 3px; }
  .google-badge-stars svg { width: 24px; height: 24px; fill: var(--gold); }
  .google-badge-text { text-align: left; }
  .google-badge-count { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--gold); line-height: 1; }
  .google-badge-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fog); }


.smbanner {
    padding: 3rem 3rem 2.5rem;
}

.mapsec iframe {
    width: 100%;
    height: 450px;
    margin: 0;
    padding: 0;
}