/* ==========================================================================
   MARIBA — Site-wide design refresh (2026)
   Palette: Black #0C0C0C · White #F5F5F5 · Yellow #F5C500
   Rule: all TEXT is black or white only. No colour change on hover.
   ========================================================================== */

:root {
    --black: #0C0C0C;
    --white: #F5F5F5;
    --yellow: #F5C500;
    --ink: #0C0C0C;        /* body text on light backgrounds */
    --paper: #ffffff;
    /* Override legacy grey text token so no text renders grey */
    --accent-color: #0C0C0C;
}

html { scroll-behavior: smooth; }

body {
    background: var(--white);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* All body copy resolves to black or white — kill legacy greys */
p, li, span, a, h1, h2, h3, h4, h5, h6 { color: inherit; }

/* Shared section container */
.section-inner { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }

/* Centered section heading with yellow accent bar (text stays black/white) */
.usp-section h2, .services-section h2, .property-types h2, .gallery-section h2,
.areas-section h2, .testimonials h2, .we-do h2, .why-choose h2, .guarantee h2,
.team h2, .cta-band h2, .about h2 {
    position: relative;
    padding-bottom: 0.9rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.usp-section h2::after, .services-section h2::after, .property-types h2::after,
.gallery-section h2::after, .areas-section h2::after, .testimonials h2::after,
.we-do h2::after, .why-choose h2::after, .team h2::after, .cta-band h2::after {
    content: "";
    display: block;
    width: 56px;
    height: 4px;
    background: var(--yellow);
    margin: 0.9rem auto 0;
    border-radius: 2px;
}

/* ============================ BUTTONS ============================ */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.95rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.btn-primary { background: var(--yellow); color: var(--black); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(245,197,0,0.35); }
.btn-secondary { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.45); }
.btn-secondary:hover { transform: translateY(-2px); border-color: #fff; }

/* ============================ HERO (homepage) ============================ */
.hero {
    background: var(--black);
    color: #fff;
    padding: 7rem 1.5rem 4.5rem;
    text-align: center;
    position: relative;
    border-bottom: 5px solid var(--yellow);
}
.hero-inner { max-width: 860px; margin: 0 auto; }
.hero-eyebrow {
    display: inline-block;
    background: var(--yellow);
    color: var(--black);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
    border-radius: 3px;
    margin-bottom: 1.75rem;
}
.hero-logo { margin-bottom: 1.5rem; }
.hero-logo img { max-height: 64px; width: auto; }
.hero h1 {
    font-size: clamp(2.1rem, 5.5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: #fff;
}
.hero-sub {
    font-size: 1.08rem;
    line-height: 1.75;
    color: #fff;
    opacity: 0.85;
    max-width: 700px;
    margin: 0 auto 2.25rem;
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-motto {
    font-size: 0.85rem;
    letter-spacing: 0.22em;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
}
.hero-motto::before, .hero-motto::after {
    content: "";
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--yellow);
    vertical-align: middle;
    margin: 0 0.75rem;
}

/* ============================ TRUST STRIP ============================ */
.trust-strip { background: var(--yellow); padding: 0.85rem 1.5rem; }
.trust-strip-inner {
    display: flex; flex-wrap: wrap; gap: 0.4rem 0.9rem;
    justify-content: center; align-items: center;
    font-size: 0.82rem; font-weight: 700; color: var(--black);
    text-transform: uppercase; letter-spacing: 0.06em;
}
.trust-divider { opacity: 0.45; }

/* ============================ VIDEO (full-bleed) ============================ */
.video-section {
    background: var(--black);
    padding: 0;
    width: 100%;
}
.video-wrap { max-width: none; margin: 0; }
.video-wrap video {
    width: 100vw;
    max-width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #000;
}

/* ============================ USP SECTION ============================ */
.usp-section { padding: 5.5rem 0; background: var(--white); text-align: center; }
.usp-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem; text-align: left;
}
.usp-card {
    background: var(--paper);
    border: 1px solid #e6e6e6;
    border-top: 4px solid var(--yellow);
    border-radius: 6px;
    padding: 2.25rem 2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.usp-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0,0,0,0.10); }
.usp-num { font-size: 2.4rem; font-weight: 800; color: var(--ink); line-height: 1; margin-bottom: 0.75rem; }
.usp-card h3 { font-size: 1.08rem; margin-bottom: 0.5rem; color: var(--ink); }
.usp-card p { color: var(--ink); font-size: 0.95rem; line-height: 1.65; }

/* ============================ SERVICES (12 trades) ============================ */
.services-section { background: var(--black); padding: 5.5rem 0; text-align: center; }
.services-section h2 { color: #fff; }
.services-tiles-12 {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(165px, 1fr)); gap: 1rem;
}
.services-tiles-12 .tile {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 0.65rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    padding: 1.75rem 1rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem; font-weight: 600; text-align: center;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.services-tiles-12 .tile:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.10);
    border-color: var(--yellow);
}
.services-tiles-12 .tile .material-icons { font-size: 2.1rem; color: var(--yellow); }

/* ============================ PROPERTY TYPES ============================ */
.property-types { padding: 5.5rem 0; background: var(--white); text-align: center; }
.property-types h2 { padding-bottom: 0.9rem; margin-bottom: 2.5rem; position: relative; font-weight: 700; }
.property-types h2::after { content:""; display:block; width:56px; height:4px; background:var(--yellow); margin:0.9rem auto 0; border-radius:2px; }
.property-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; text-align: left; }
.property-card {
    background: var(--paper); border-radius: 6px; padding: 2.25rem 2rem;
    border-top: 4px solid var(--yellow); border-left: 1px solid #eee; border-right: 1px solid #eee; border-bottom: 1px solid #eee;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.property-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0,0,0,0.10); }
.property-card .material-icons { font-size: 2.6rem; color: var(--black); margin-bottom: 0.75rem; }
.property-card h3 { margin-bottom: 0.5rem; color: var(--ink); }
.property-card p { color: var(--ink); font-size: 0.95rem; }

/* ============================ COMPLIANCE STRIP ============================ */
.compliance-strip { background: var(--black); padding: 1.4rem 1.5rem; text-align: center; border-top: 1px solid rgba(255,255,255,0.08); }
.compliance-strip p { color: #fff; opacity: 0.8; font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase; }

/* ============================ GALLERY ============================ */
.gallery-section { padding: 5.5rem 0; background: var(--paper); text-align: center; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 0.75rem; }
.gallery-grid img {
    width: 100%; height: 240px; object-fit: cover; border-radius: 4px; display: block;
    transition: transform 0.3s ease;
}
.gallery-grid img:hover { transform: scale(1.02); }

/* ============================ AREAS ============================ */
.areas-section { background: var(--white); padding: 4.5rem 0; text-align: center; }
.areas-list { color: var(--ink); font-size: 0.98rem; line-height: 2.1; max-width: 920px; margin: 0 auto; }

/* ============================ CTA BAND ============================ */
.cta-band { background: var(--yellow); padding: 5.5rem 0; text-align: center; }
.cta-band h2 { color: var(--black); }
.cta-band h2::after { background: var(--black); }
.cta-band p { color: var(--black); margin-bottom: 2.25rem; font-size: 1.08rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-primary { background: var(--black); color: #fff; }
.cta-band .btn-primary:hover { box-shadow: 0 8px 20px rgba(0,0,0,0.3); }
.cta-band .btn-secondary { color: var(--black); border-color: var(--black); }

/* ============================ FOOTER ============================ */
.site-footer { background: var(--black); color: #fff; padding: 2.5rem 1.5rem; text-align: center; font-size: 0.85rem; border-top: 4px solid var(--yellow); }
.site-footer p { opacity: 0.8; margin: 0.25rem 0; }
.site-footer a { color: #fff; text-decoration: underline; }

/* ============================ STICKY WHATSAPP ============================ */
.sticky-whatsapp {
    position: fixed; bottom: 1.5rem; right: 1.5rem; width: 56px; height: 56px;
    background: #25D366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 16px rgba(0,0,0,0.28); z-index: 999;
    transition: transform 0.2s ease;
}
.sticky-whatsapp:hover { transform: scale(1.08); }

/* Global floating contact buttons (injected by main.js on every page) */
.floating-contact { gap: 0.65rem; z-index: 999; }
.floating-btn {
    width: 54px; height: 54px; border-radius: 50%;
    background: var(--black); color: #fff;
    font-size: 1.4rem; line-height: 1;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
    transition: transform 0.2s ease;
}
.floating-btn:hover { transform: scale(1.1); }
.floating-btn.whatsapp { background: #25D366; }

/* ==========================================================================
   LEGACY COMPONENT OVERRIDES — applies the refreshed look to all service pages
   ========================================================================== */

/* Header / hero on inner pages */
.header {
    background: var(--black);
    color: #fff;
    padding: 6rem 1.5rem 4rem;
    text-align: center;
    border-bottom: 5px solid var(--yellow);
}
.header .logo img { max-width: 170px; margin-bottom: 1.25rem; }
.header h1 { font-size: clamp(2.2rem, 5vw, 3.25rem); font-weight: 800; letter-spacing: -0.01em; color: #fff; margin-bottom: 0.75rem; }
.header .tagline { font-size: 1.1rem; color: #fff; opacity: 0.85; max-width: 640px; margin: 0 auto; }

/* About */
.about { width: auto; max-width: 880px; margin: 0 auto; padding: 5rem 1.5rem; text-align: center; background: var(--white); }
.about h2 { margin-bottom: 1.5rem; font-weight: 700; }
.about p { color: var(--ink); font-size: 1.02rem; line-height: 1.8; }

/* We-do tiles */
.we-do { padding: 4.5rem 1.5rem; background: var(--paper); text-align: center; }
.we-do h2 { margin-bottom: 2.5rem; }
.service-tile {
    background: var(--white);
    border: 1px solid #e6e6e6;
    border-top: 4px solid var(--yellow);
    border-radius: 6px;
    padding: 2rem 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-tile:hover { transform: translateY(-4px); box-shadow: 0 12px 26px rgba(0,0,0,0.10); }
.service-tile .material-icons, .service-tile .material-symbols-outlined { color: var(--black); }
.service-tile h3 { color: var(--ink); }

/* Why-choose */
.why-choose { background: var(--black); color: #fff; padding: 5rem 1.5rem; text-align: center; }
.why-choose h2 { color: #fff; }
.reason { padding: 1.5rem; }
.reason h3 { color: var(--yellow) /* heading accent */; }
.reason h3 { color: #fff; }
.reason h3 { position: relative; display: inline-block; padding-bottom: 0.5rem; margin-bottom: 0.5rem; }
.reason h3::after { content:""; position:absolute; left:50%; bottom:0; transform:translateX(-50%); width:32px; height:3px; background:var(--yellow); border-radius:2px; }
.reason p { color: #fff; opacity: 0.85; }

/* Guarantee */
.guarantee { padding: 5rem 1.5rem; background: var(--white); text-align: center; max-width: 900px; margin: 0 auto; }
.guarantee h2 { margin-bottom: 1.25rem; }
.guarantee > p { color: var(--ink); font-size: 1.05rem; }
.list-wrapper { display: flex; justify-content: center; margin: 2rem 0; }
.guarantee ul { list-style: none; text-align: left; max-width: 560px; }
.guarantee li {
    color: var(--ink);
    background: var(--paper);
    border-left: 4px solid var(--yellow);
    padding: 0.9rem 1.1rem;
    margin-bottom: 0.75rem;
    border-radius: 0 4px 4px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.guarantee li strong { color: var(--ink); }

/* Team */
.team { padding: 5rem 1.5rem; background: var(--paper); text-align: center; }

/* Testimonials */
.testimonials { padding: 5.5rem 1.5rem; background: var(--white); text-align: center; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; max-width: 1140px; margin: 0 auto; text-align: left; }
.testimonial-card { background: var(--paper); border: 1px solid #e9e9e9; border-radius: 8px; }
.testimonial-content p { color: var(--ink); }
.testimonial-author h4 { color: var(--ink); }
.testimonial-author span { color: var(--ink); opacity: 0.7; }
.document-preview { background: var(--black); color: #fff; }
.document-preview .material-icons { color: var(--yellow); }
.document-preview h4, .document-preview p { color: #fff; }

/* Contact */
.contact { padding: 5.5rem 1.5rem; background: var(--black); color: #fff; text-align: center; }
.contact h1, .contact h2 { color: #fff; margin-bottom: 1.5rem; }
.contact-info { max-width: 640px; margin: 2rem auto 0; }
.contact-item { color: #fff; border: 1px solid rgba(255,255,255,0.4); border-radius: 4px; transition: background-color 0.2s ease, border-color 0.2s ease; }
.contact-item:hover { background: rgba(255,255,255,0.08); border-color: #fff; color: #fff; }  /* no text colour change */
.email-form form { display: flex; flex-direction: column; gap: 0.75rem; }
.email-form input, .email-form textarea {
    width: 100%; padding: 0.85rem 1rem; border-radius: 4px; border: 1px solid #ccc;
    font-family: inherit; font-size: 0.95rem; color: var(--ink); background: #fff;
}
.email-form textarea { min-height: 120px; resize: vertical; }
.email-form button {
    background: var(--yellow); color: var(--black); border: none; padding: 0.95rem 1.5rem;
    border-radius: 4px; font-weight: 700; font-size: 0.95rem; cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.email-form button:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(245,197,0,0.35); }

/* Sidebar accents */
.sidebar-panel { background: var(--black); }
.sidebar-panel nav a { color: #fff; }
.sidebar-panel nav a:hover { background: rgba(255,255,255,0.1); }   /* bg only, text stays white */
.sidebar-burger { background: var(--black); }
.sidebar-burger:hover { background: var(--black); }                 /* no colour change */

/* Loader */
#preloader { background: var(--black); }
.loader { border-color: rgba(255,255,255,0.25); border-top-color: var(--yellow); }

/* Kill any lingering fixed quote button if a stray remains */
.fixed-quote-button { display: none !important; }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 768px) {
    .hero { padding: 5.5rem 1rem 3.5rem; }
    .usp-grid { grid-template-columns: 1fr; }
    .services-tiles-12 { grid-template-columns: repeat(3, 1fr); }
    .property-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid img { height: 160px; }
    .hero-ctas, .cta-buttons { flex-direction: column; align-items: center; }
    .video-wrap video { aspect-ratio: 16 / 10; }
    .header { padding: 4.5rem 1rem 3rem; }
}
@media (max-width: 480px) {
    .services-tiles-12 { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   SERVICE-PAGE PARITY — header hero + previously-unstyled sections
   (image carousel, video gallery, process, FAQ, locations, blockquotes)
   Applies the index.php look across all inner pages.
   ========================================================================== */

/* ---- Inner-page header turned into an index-style hero ---- */
.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}
.header::before {
    content: "YOUR PROPERTY SOLUTIONS PARTNER IN CAPE TOWN";
    display: inline-block;
    background: var(--yellow);
    color: var(--black);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
    border-radius: 3px;
    margin-bottom: 1.25rem;
}
.header h1 { margin-bottom: 0.5rem; }
.header .tagline { margin-bottom: 1.5rem; }
.header::after {
    content: "DONE RIGHT. DONE ONCE.";
    color: #fff;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 2px solid var(--yellow);
}
.header .hero-ctas { margin-bottom: 0; }

/* Extend the yellow heading-accent bar to the remaining sections */
.services h2, .video-gallery h2, .process h2, .faq h2, .locations h2, .gallery-carousel h2 {
    position: relative;
    padding-bottom: 0.9rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
}
.services h2::after, .video-gallery h2::after, .process h2::after,
.faq h2::after, .locations h2::after, .gallery-carousel h2::after {
    content: ""; display: block; width: 56px; height: 4px;
    background: var(--yellow); margin: 0.9rem auto 0; border-radius: 2px;
}

/* ---- Variant-A services grid (single/few image cards) ---- */
.services { padding: 5.5rem 1.5rem; background: var(--paper); text-align: center; }
.services .services-grid { max-width: 1140px; margin: 0 auto; }
.service-card { text-align: left; background: #fff; border: 1px solid #e6e6e6; border-radius: 8px; overflow: hidden; }
.service-card .service-image, .service-card > img { display: block; }
.service-card img { width: 100%; height: 220px; object-fit: cover; display: block; }
.service-card h3 { color: var(--ink); padding: 1rem 1.25rem 0.25rem; }
.service-card p { color: var(--ink); padding: 0 1.25rem 1.25rem; }

/* ---- Team image (minimal, centered card) ---- */
.team-image { max-width: 860px; margin: 0 auto; }
.team-image img { width: 100%; height: auto; border-radius: 8px; display: block; }

/* ---- Image gallery: convert the unstyled carousel into an even card grid ---- */
.gallery-carousel { padding: 5.5rem 1.5rem; background: var(--paper); }
.carousel-container { max-width: 1140px; margin: 0 auto; position: static; }
.carousel-btn, .carousel-indicators { display: none !important; }   /* drop carousel chrome */
.carousel-wrapper { overflow: visible; }
.carousel-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0.75rem;
    transform: none !important;     /* neutralise any JS slide transform */
    width: auto !important;
}
.carousel-slide { width: auto !important; flex: none !important; }
.carousel-slide img {
    width: 100%; height: 240px; object-fit: cover;
    border-radius: 6px; display: block; border: 1px solid #e6e6e6;
}

/* ---- Video gallery: thumbnail cards, evenly spaced ---- */
.video-gallery { padding: 5.5rem 1.5rem; background: var(--white); text-align: center; }
.video-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem; max-width: 1140px; margin: 0 auto;
}
.video-card {
    background: #fff; border: 1px solid #e6e6e6; border-radius: 8px;
    overflow: hidden; cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.video-card:hover { transform: translateY(-4px); box-shadow: 0 12px 26px rgba(0,0,0,0.10); }
.video-thumbnail { position: relative; }
.video-thumbnail img { width: 100%; height: 200px; object-fit: cover; display: block; }
.play-overlay {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.35); transition: background-color 0.2s ease;
}
.video-card:hover .play-overlay { background: rgba(0,0,0,0.45); }
.play-overlay .material-icons { font-size: 4rem; color: #fff; }
.video-card h3 { padding: 1rem; color: var(--ink); font-size: 1.05rem; }

/* ---- Video modal (JS toggles .active on modal, .visible on the player) ---- */
.video-modal {
    display: none; position: fixed; inset: 0; z-index: 10000;
    background: rgba(0,0,0,0.9); align-items: center; justify-content: center; padding: 1.5rem;
}
.video-modal.active { display: flex; }
.video-modal-content { position: relative; width: 100%; max-width: 960px; }
.video-modal-player { position: relative; width: 100%; }
.video-modal-player video, .video-modal-player iframe {
    display: none; width: 100%; aspect-ratio: 16 / 9; border: 0; background: #000; border-radius: 6px;
}
.video-modal-player video.visible, .video-modal-player iframe.visible { display: block; }
.video-modal-close {
    position: absolute; top: -3rem; right: 0; background: none; border: none;
    color: #fff; cursor: pointer; padding: 0.25rem;
}
.video-modal-close .material-icons { font-size: 2.25rem; color: #fff; }

/* ---- Process: numbered step cards ---- */
.process { padding: 5.5rem 1.5rem; background: var(--paper); text-align: center; }
.process .list-wrapper { display: flex; justify-content: center; }
.process ol {
    counter-reset: step; list-style: none; max-width: 680px;
    text-align: left; width: 100%;
}
.process ol li {
    counter-increment: step; position: relative;
    padding: 1rem 1.25rem 1rem 3.75rem; margin-bottom: 0.75rem;
    background: var(--white); border-radius: 6px; border-left: 4px solid var(--yellow);
    color: var(--ink); box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.process ol li::before {
    content: counter(step); position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
    width: 1.9rem; height: 1.9rem; background: var(--black); color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.9rem;
}

/* ---- FAQ: cards ---- */
.faq { padding: 5.5rem 1.5rem; background: var(--white); }
.faq h2 { text-align: center; }
.faq-container { max-width: 840px; margin: 0 auto; display: grid; gap: 0.75rem; }
.faq-item {
    background: #fff; border: 1px solid #e6e6e6; border-radius: 6px; padding: 1.25rem 1.5rem;
}
.faq-item h3 { color: var(--ink); margin-bottom: 0.4rem; font-size: 1.05rem; }
.faq-item p { color: var(--ink); }

/* ---- Locations: chip grid ---- */
.locations { padding: 5.5rem 1.5rem; background: var(--paper); text-align: center; }
.locations > p { color: var(--ink); margin-bottom: 1.5rem; }
.locations .list-wrapper { display: flex; justify-content: center; }
.locations ul {
    list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 0.6rem; max-width: 800px; width: 100%;
}
.locations li {
    background: var(--white); border-left: 3px solid var(--yellow); color: var(--ink);
    padding: 0.65rem 0.95rem; border-radius: 4px; text-align: left;
}

/* ---- Blockquote testimonials (variant-B pages) ---- */
.testimonials blockquote {
    background: #fff; border: 1px solid #e6e6e6; border-left: 4px solid var(--yellow);
    border-radius: 6px; padding: 1.5rem 1.75rem; max-width: 840px;
    margin: 0 auto 1rem; text-align: left; font-style: italic; color: var(--ink);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.testimonials blockquote cite {
    display: block; margin-top: 0.85rem; font-style: normal; font-weight: 600; color: var(--ink);
}

/* ---- Robustness: style any reasons-grid child even if it lacks .reason ---- */
.reasons-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; max-width: 1140px; margin: 2.5rem auto 0; }
.reasons-grid > div { padding: 1.5rem; text-align: center; }
.reasons-grid > div h3 { color: #fff; position: relative; display: inline-block; padding-bottom: 0.5rem; margin-bottom: 0.5rem; }
.reasons-grid > div h3::after { content:""; position:absolute; left:50%; bottom:0; transform:translateX(-50%); width:32px; height:3px; background:var(--yellow); border-radius:2px; }
.reasons-grid > div p { color: #fff; opacity: 0.85; }

/* ---- Responsive for service-page sections ---- */
@media (max-width: 768px) {
    .video-grid { grid-template-columns: 1fr; }
    .carousel-track { grid-template-columns: repeat(2, 1fr); }
    .carousel-slide img { height: 160px; }
    .reasons-grid { grid-template-columns: 1fr; }
}
