/* ==========================================================================
   Hilton & Green Landscaping - app.css
   Single stylesheet. No framework, no build step.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Custom properties (brand tokens)
   -------------------------------------------------------------------------- */
:root {
    --primary: #263e0f;
    --primary-light: #3a5a1a;
    --nav-bg: #ffffff;
    --nav-link: #585858;
    --nav-link-active: #263e0f;
    --text: #252525;
    --text-secondary: #404040;
    --surface: #ffffff;
    --surface-alt: #f4f4f4;
    --radius: 10px;
    --shadow: 0 2px 12px rgba(0,0,0,0.08);
    --transition: 0.2s ease;
}

/* --------------------------------------------------------------------------
   2. Reset
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* --------------------------------------------------------------------------
   3. Base
   -------------------------------------------------------------------------- */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1rem;
    color: var(--text);
    background: var(--surface);
    line-height: 1.6;
    /* Mobile: leave room for sticky call button */
    padding-bottom: 60px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
}

ul {
    list-style: none;
}

/* --------------------------------------------------------------------------
   4. Top bar
   -------------------------------------------------------------------------- */
.top-bar {
    height: 4px;
    background: var(--primary);
    width: 100%;
}

/* --------------------------------------------------------------------------
   5. Site header
   -------------------------------------------------------------------------- */
.site-header {
    background: var(--nav-bg);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.09);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Row 1: logo centred, hamburger absolutely right on mobile */
.header-logo-row {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0.875rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.nav-logo {
    display: inline-flex;
    text-decoration: none;
}
.nav-logo img {
    height: 88px;
    width: auto;
}

/* Hamburger sits absolutely right inside logo row on mobile */
.nav-toggle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 5px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-shrink: 0;
}

/* Row 2: 3-col grid so nav is truly centred regardless of CTA width */
.header-nav-row {
    display: none;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0.5rem 0;
}

/* Nav explicitly placed in the centre column */
.header-nav {
    grid-column: 2;
    display: flex;
}

.nav-links {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0;
}

/* CTAs explicitly placed in the right column, flush right */
.header-ctas {
    grid-column: 3;
    justify-self: end;
}
.nav-links a {
    display: block;
    padding: 0.5rem 1.1rem;
    color: var(--nav-link);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color var(--transition);
    white-space: nowrap;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a.active { color: var(--primary); font-weight: 700; }

/* Subtle inline CTAs — same visual weight as nav links */
.header-ctas {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
    border-left: 1px solid #e8e8e8;
    margin-left: 0.25rem;
    padding-left: 0.25rem;
}
.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.75rem;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--transition);
    line-height: 1;
    color: var(--nav-link);
}
.header-cta svg { opacity: 0.7; }
.header-cta:hover { color: var(--primary); }
.header-cta:hover svg { opacity: 1; }
.header-cta--quote { font-weight: 500; }
.header-cta--quote:hover { color: var(--primary); }
.header-cta--phone:hover { color: var(--primary); }
.header-cta--wa:hover    { color: #1a9e4f; }

/* Mobile nav dropdown */
.mobile-nav {
    background: var(--nav-bg);
    padding: 0.5rem 1.5rem 1rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-nav li { border-bottom: 1px solid #eee; }
.mobile-nav li:last-child { border-bottom: none; }
.mobile-nav a {
    display: block;
    padding: 0.75rem 0;
    color: var(--nav-link);
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--primary); }

/* Hamburger - visible on mobile, hidden on desktop */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-shrink: 0;
    margin-left: auto;
}

/* Keep legacy selectors harmless */
.nav-phone-panel { display: none; }
.nav-whatsapp    { display: none; }

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* --------------------------------------------------------------------------
   6. Mobile sticky CTA bar
   -------------------------------------------------------------------------- */
.mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    z-index: 200;
}
.mobile-cta-bar__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    color: white;
    transition: opacity var(--transition);
}
.mobile-cta-bar__btn:hover { opacity: 0.9; color: white; }
.mobile-cta-bar__btn--phone { background: var(--primary); }
.mobile-cta-bar__btn--wa { background: #25D366; }
/* Legacy class kept for any remaining references */
.nav-phone-panel-mobile {
    display: none;
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Full-height variant pushes content lower so it reads well */
.hero--fullheight .hero-content {
    padding-bottom: 7rem;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: calc(1280px + 3rem);
    width: 100%;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.hero-accent-bar {
    width: 4px;
    min-height: 80px;
    background: var(--primary);
    flex-shrink: 0;
    border-radius: 2px;
    margin-top: 0.25rem;
}

/* Legacy class name used in existing home template */
.hero-accent {
    width: 4px;
    min-height: 80px;
    background: var(--primary);
    flex-shrink: 0;
    border-radius: 2px;
    margin-top: 0.25rem;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    color: white;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.hero-text p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.hero-heading {
    color: white;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.hero-subheading {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Hero wrapper - wraps hero + contact strip */
.hero-wrapper {
    position: relative;
}

/* --------------------------------------------------------------------------
   8. Contact bar (below hero on home page)
   -------------------------------------------------------------------------- */
.contact-bar {
    background: white;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    position: relative;
    z-index: 10;
    margin: -2rem 1rem 0;
    border-radius: 12px;
    overflow: hidden;
}

.contact-bar__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1280px;
    margin: 0 auto;
}

.contact-bar__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1.5rem;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #f0f0f0;
    transition: background var(--transition);
}

.contact-bar__item:nth-child(odd) {
    border-right: 1px solid #f0f0f0;
}

.contact-bar__item:hover {
    background: #f9fafb;
}

.contact-bar__item--area {
    cursor: default;
}

.contact-bar__item--wa .contact-bar__icon {
    background: #25D366;
}

.contact-bar__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.contact-bar__icon svg {
    color: white;
    fill: white;
    stroke: white;
}

.contact-bar__item--wa .contact-bar__icon svg,
.contact-bar__icon svg[fill="currentColor"] {
    fill: white;
    stroke: none;
}

.contact-bar__text {
    min-width: 0;
}

.contact-bar__label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    display: block;
    margin-bottom: 0.2rem;
}

.contact-bar__value {
    font-weight: 700;
    color: var(--text);
    font-size: 0.95rem;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Legacy contact-strip selectors kept for any other pages */
.contact-strip { display: none; }

/* --------------------------------------------------------------------------
   9. Sections
   -------------------------------------------------------------------------- */
.section {
    padding: 4rem 1.5rem;
}

.section--alt,
.section-alt {
    background: var(--surface-alt);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Override padding when container is inside section which already has padding */
.section .container {
    padding: 0;
}

.section-title,
.section-heading {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.section-subtitle,
.section-subheading {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.text-center {
    text-align: center;
}

/* --------------------------------------------------------------------------
   10. Cards
   -------------------------------------------------------------------------- */
.card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.13);
    transform: translateY(-2px);
}

.card__img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.card__body {
    padding: 1.25rem;
}

.card__title {
    font-weight: 700;
    color: var(--text);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.card__text {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   11. Services grid
   -------------------------------------------------------------------------- */
.services-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}

.service-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.13);
    transform: translateY(-2px);
}

.service-card__icon {
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    width: 100%;
}

/* Legacy service card structure used in existing home template */
.service-card-img img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.service-card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-title {
    font-weight: 700;
    color: var(--text);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.service-card-desc {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    flex: 1;
}

.service-card-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    margin-top: auto;
}

.service-card-link:hover {
    text-decoration: underline;
}

/* --------------------------------------------------------------------------
   12. Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
    text-decoration: none;
    font-family: inherit;
    line-height: 1.2;
}

.btn--primary,
.btn-primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn--primary:hover,
.btn-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    color: white;
}

.btn--outline,
.btn-secondary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn--outline:hover,
.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.btn--sm {
    padding: 0.45rem 1.1rem;
    font-size: 0.875rem;
}

/* --------------------------------------------------------------------------
   13. Forms
   -------------------------------------------------------------------------- */
.form-group {
    margin-bottom: 1.25rem;
}

label {
    display: block;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.375rem;
    font-size: 0.9rem;
}

input,
textarea,
select {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1.5px solid #d0d0d0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text);
    background: white;
    transition: border-color 0.15s;
    appearance: none;
    -webkit-appearance: none;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(38,62,15,0.12);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.form-error {
    color: #c0392b;
    font-size: 0.82rem;
    margin-top: 0.25rem;
}

/* --------------------------------------------------------------------------
   14. Accordion (FAQ)
   -------------------------------------------------------------------------- */
.accordion {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.accordion__item {
    border-bottom: 1px solid #eee;
}

.accordion__item:last-child {
    border-bottom: none;
}

.accordion__trigger {
    width: 100%;
    text-align: left;
    background: white;
    border: none;
    padding: 1.1rem 1.25rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    font-family: inherit;
    transition: background var(--transition);
}

.accordion__trigger:hover {
    background: #f9f9f9;
}

.accordion__trigger::after {
    content: '+';
    font-size: 1.25rem;
    color: var(--primary);
    flex-shrink: 0;
    line-height: 1;
    transition: transform var(--transition);
}

.accordion__item.is-open .accordion__trigger::after {
    content: '-';
}

.accordion__body {
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding-bottom 0.3s ease;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.accordion__item.is-open .accordion__body {
    max-height: 500px;
    padding-bottom: 1.1rem;
}

/* --------------------------------------------------------------------------
   15. Reviews
   -------------------------------------------------------------------------- */
.reviews-strip,
.reviews-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}

.review-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.5rem;
}

.review-card__stars,
.review-stars {
    color: #f5a623;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.review-card__text,
.review-text {
    color: var(--text);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    quotes: none;
}

.review-card__author,
.review-author {
    font-weight: 700;
    color: var(--text);
    font-size: 0.9rem;
}

.review-card__reply,
.review-reply {
    margin-top: 1rem;
    padding: 0.875rem;
    background: var(--surface-alt);
    border-left: 3px solid var(--primary);
    border-radius: 0 6px 6px 0;
}

.review-card__reply-label,
.review-reply-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.review-card__reply-text,
.review-reply-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   16. Gallery
   -------------------------------------------------------------------------- */
.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.filter-chip {
    padding: 0.375rem 1rem;
    border-radius: 20px;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    background: white;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.875rem;
    transition: background var(--transition), color var(--transition);
    font-family: inherit;
}

.filter-chip:hover,
.filter-chip.active {
    background: var(--primary);
    color: white;
}

.gallery-grid {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(2, 1fr);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1 / 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

/* Lightbox */
.gallery-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox.is-open {
    display: flex;
}

.gallery-lightbox__img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 8px;
}

.gallery-lightbox__close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
    font-family: inherit;
    transition: opacity var(--transition);
}

.gallery-lightbox__close:hover {
    opacity: 0.75;
}

/* --------------------------------------------------------------------------
   17. Facebook feed
   -------------------------------------------------------------------------- */
.fb-feed,
.fb-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}

.fb-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.fb-card__img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    min-height: 200px;
    background: var(--surface-alt);
    display: block;
}

.fb-card-img {
    min-height: 200px;
    background: var(--surface-alt);
    overflow: hidden;
}

.fb-card-img img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.fb-card__body,
.fb-card-body {
    padding: 1.1rem;
}

.fb-card__date,
.fb-card-meta {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.fb-card__text,
.fb-card-message {
    color: var(--text);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.fb-card__link,
.fb-card-link {
    margin-top: 0.75rem;
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
}

.fb-card__link:hover,
.fb-card-link:hover {
    text-decoration: underline;
}

.fb-fallback-card,
.fb-fallback {
    background: var(--surface-alt);
    border-radius: var(--radius);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow);
}

/* Reserved section height to prevent layout shift */
.fb-section-reserved {
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --------------------------------------------------------------------------
   18. Footer
   -------------------------------------------------------------------------- */
.site-footer {
    background: var(--primary);
    color: white;
    padding: 3.5rem 1.5rem 0;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1fr;
}

.footer-logo-img {
    max-width: 180px;
    height: auto;
    margin-bottom: 1rem;
    opacity: 0.9;
    background: white;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
}

.footer-blurb {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 0.75rem;
}

.footer-col-title {
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li + li {
    margin-top: 0.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1280px;
    margin: 2rem auto 0;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: space-between;
}

.footer-disclosure {
    font-size: 0.78rem;
}

/* --------------------------------------------------------------------------
   19. About grid
   -------------------------------------------------------------------------- */
.about-grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1fr;
}

.about-text p + p {
    margin-top: 1rem;
}

/* --------------------------------------------------------------------------
   20. Consent banner
   -------------------------------------------------------------------------- */
.consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    z-index: 300;
    font-size: 0.875rem;
}

/* On mobile, push above sticky call button */
@media (max-width: 1023px) {
    .consent-banner {
        bottom: 60px;
    }
}

.consent-accept {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0.5rem 1.25rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.875rem;
    transition: background var(--transition);
}

.consent-accept:hover {
    background: var(--primary-light);
}

.consent-decline {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.875rem;
    transition: color var(--transition);
}

.consent-decline:hover {
    color: white;
}

/* --------------------------------------------------------------------------
   21. Map facade (areas we cover)
   -------------------------------------------------------------------------- */
.map-facade {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--surface-alt);
}

.map-facade__preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-facade__labels {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.map-pin-label {
    position: absolute;
    background: white;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.18);
    white-space: nowrap;
    transform: translate(-50%, -100%);
}

.map-pin-label::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: white;
    border-bottom: 0;
}

.map-facade__btn-wrap {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
}

.map-facade iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* --------------------------------------------------------------------------
   22. Admin panel
   -------------------------------------------------------------------------- */
.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 240px;
    flex-shrink: 0;
    background: #1a2a0a;
    color: white;
    padding: 1.5rem;
}

.admin-main {
    flex: 1;
    padding: 2rem;
    background: var(--surface-alt);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.admin-table th {
    background: var(--primary);
    color: white;
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.875rem;
}

.admin-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table tr:hover td {
    background: #f9fafb;
}

/* --------------------------------------------------------------------------
   23. Utilities
   -------------------------------------------------------------------------- */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ==========================================================================
   Breakpoint: 640px
   ========================================================================== */
@media (min-width: 640px) {

    .contact-bar {
        margin-left: 2rem;
        margin-right: 2rem;
    }

    .contact-bar__inner {
        grid-template-columns: repeat(4, 1fr);
    }

    .contact-bar__item {
        border-bottom: none;
        border-right: 1px solid #f0f0f0;
    }

    .contact-bar__item:nth-child(odd) {
        border-right: 1px solid #f0f0f0;
    }

    .contact-bar__item:last-child {
        border-right: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-strip,
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .consent-banner {
        justify-content: space-between;
    }

}

/* ==========================================================================
   Breakpoint: 1024px (desktop)
   ========================================================================== */
@media (min-width: 1024px) {

    body {
        padding-bottom: 0;
    }

    .header-logo-row {
        border-bottom: none;
        padding: 1rem 0;
    }

    .header-nav-row {
        display: grid;
    }

    .nav-toggle {
        display: none;
    }

    .mobile-cta-bar {
        display: none;
    }

    .contact-bar {
        margin-left: auto;
        margin-right: auto;
        max-width: 1280px;
        border-radius: 16px;
        margin-top: -2.5rem;
    }

    .contact-bar__item {
        padding: 2rem 2rem;
    }

    .hero {
        min-height: 600px;
    }

    .hero--fullheight {
        min-height: calc(100vh - 80px);
    }

    .hero-arrow--prev { left: 2rem; }
    .hero-arrow--next { right: 2rem; }

    .hero-heading,
    .hero-text h1 {
        font-size: 2.75rem;
    }

    .section {
        padding: 5rem 1.5rem;
    }

    .section-title,
    .section-heading {
        font-size: 2.25rem;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .reviews-strip,
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .fb-feed,
    .fb-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-inner {
        grid-template-columns: repeat(4, 1fr);
    }

}

/* ==========================================================================
   Supplementary: service page components
   ========================================================================== */

/* Intro split */
.svc-intro {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}
@media (min-width: 900px) {
    .svc-intro { grid-template-columns: 1fr 1fr; align-items: center; }
}
.svc-intro__img img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    display: block;
}
.svc-intro__lead {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
}
.svc-intro__subheading {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary);
    margin-bottom: 1rem;
}
.svc-intro__actions {
    display: flex;
    gap: 0.875rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Gallery band — horizontal scroll of images */
.svc-gallery-band {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
}
@media (min-width: 640px) {
    .svc-gallery-band { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
    .svc-gallery-band { grid-template-columns: repeat(5, 1fr); }
}
.svc-gallery-band__item {
    aspect-ratio: 4/3;
    overflow: hidden;
}
.svc-gallery-band__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.svc-gallery-band__item:hover img { transform: scale(1.05); }

/* Process steps */
.process-steps {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}
@media (min-width: 640px) {
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 0; }
}
@media (min-width: 1024px) {
    .process-steps { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
}
.process-steps__item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.75rem;
    border-left: 1px solid var(--border);
    position: relative;
}
.process-steps__item:first-child { border-left: none; }
@media (max-width: 639px) {
    .process-steps__item { border-left: none; border-top: 1px solid var(--border); }
    .process-steps__item:first-child { border-top: none; }
}
.process-steps__num {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-weight: 900;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.process-steps__title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}
.process-steps__desc {
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.65;
    margin: 0;
}

/* Materials split */
.svc-materials {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}
@media (min-width: 900px) {
    .svc-materials { grid-template-columns: 1fr 420px; }
}
.svc-materials__text p {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-top: 1rem;
}
.svc-materials__img img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    display: block;
}

/* Hero inner (service/inner pages) */
.hero--inner {
    min-height: 260px;
}
@media (min-width: 1024px) {
    .hero--inner { min-height: 320px; }
}

/* Hero slider */
.hero--slider {
    overflow: hidden;
    position: relative;
}

.hero--fullheight {
    min-height: 75vh;
}

/* Ken Burns keyframe */
@keyframes kenburns {
    0%   { transform: scale(1)    translateX(0)      translateY(0); }
    33%  { transform: scale(1.06) translateX(-1%)    translateY(-0.5%); }
    66%  { transform: scale(1.04) translateX(1%)     translateY(0.5%); }
    100% { transform: scale(1)    translateX(0)      translateY(0); }
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    will-change: transform, opacity;
}

.hero-slide--active {
    opacity: 1;
    animation: kenburns 12s ease-in-out infinite;
}

/* Dedicated overlay so slides animate without fighting the gradient */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.65) 0%,
        rgba(0,0,0,0.2)  60%,
        rgba(0,0,0,0.1)  100%
    );
    z-index: 1;
}

/* Remove the ::before overlay on slider variant so overlay div takes over */
.hero--slider::before {
    display: none;
}

/* Arrow buttons */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.5);
    color: white;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition);
    backdrop-filter: blur(4px);
}
.hero-arrow:hover {
    background: rgba(255,255,255,0.3);
    border-color: white;
}
.hero-arrow--prev { left: 1.25rem; }
.hero-arrow--next { right: 1.25rem; }

.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.625rem;
    z-index: 3;
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.7);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.hero-dot:hover {
    border-color: white;
}
.hero-dot--active {
    background: white;
    border-color: white;
    transform: scale(1.3);
}

/* Hero actions row */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.btn--wa {
    background: #25D366;
    color: white;
    border-color: #25D366;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.btn--wa:hover {
    background: #1ebe5a;
    border-color: #1ebe5a;
    color: white;
}

/* Process list */
.process-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0;
    margin: 0;
}
.process-list__item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}
.process-list__number {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-weight: 900;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.process-list__body { flex: 1; }
.process-list__title {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}
.process-list__desc {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* FAQ accordion */
.faq-list {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    max-width: 780px;
}
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-item__question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.1rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-family: inherit;
    transition: background var(--transition);
}
.faq-item__question:hover { background: var(--bg-alt); }
.faq-item__icon {
    font-size: 1.25rem;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 0.2s;
    font-weight: 400;
    line-height: 1;
}
.faq-item__icon--open { transform: rotate(45deg); }
.faq-item__answer {
    padding: 0 1.25rem 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Checklist */
.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .checklist { grid-template-columns: repeat(2, 1fr); }
}
.checklist__item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.5;
}
.checklist__item::before {
    content: '';
    display: inline-block;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23263e0f'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: 2px;
}

/* Prose text content */
.prose { max-width: 720px; }
.prose--wide { max-width: 860px; }
.prose p + p { margin-top: 1rem; }
.prose h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}
.prose h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}
.prose ul, .prose ol {
    padding-left: 1.5rem;
    margin-top: 0.75rem;
}
.prose li {
    margin-bottom: 0.4rem;
    line-height: 1.6;
}
.prose a { color: var(--primary); text-decoration: underline; }

/* Intro text, pull quote, gallery strip, coverage */
.intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
}
.pull-quote {
    border-left: 4px solid var(--primary);
    padding: 1rem 1.5rem;
    background: var(--bg-alt);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 0;
}
.pull-quote__text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}
.pull-quote__footer {
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.gallery-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
@media (min-width: 640px) {
    .gallery-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
    .gallery-strip { grid-template-columns: repeat(4, 1fr); }
}
.gallery-strip__item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius);
    display: block;
}
.coverage-line {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
}
.coverage-line a { color: var(--primary); text-decoration: underline; }

/* Areas page */
.areas-place-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.25rem 0 1.75rem;
}
.areas-place-list span {
    background: var(--primary);
    color: #fff;
    padding: 0.35rem 0.85rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
}
.areas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}
@media (min-width: 640px) {
    .areas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .areas-grid { grid-template-columns: repeat(3, 1fr); }
}
.area-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.area-card__header {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}
.area-card__icon {
    color: var(--primary);
    flex-shrink: 0;
}
.area-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
}
.area-card__text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
    flex: 1;
}
.area-card__services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: auto;
    padding-top: 0.5rem;
    border-top: 1px solid #f0f0f0;
}
.area-tag {
    background: #f0f4eb;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 2rem;
    text-decoration: none;
    white-space: nowrap;
}
.area-tag:hover { background: var(--primary); color: #fff; }

.areas-intro-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}
@media (min-width: 900px) {
    .areas-intro-split { grid-template-columns: 1fr 1fr; }
}
.areas-intro-split__text p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}
.areas-intro-split__map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.areas-simple-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}
@media (min-width: 640px) {
    .areas-simple-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .areas-simple-grid { grid-template-columns: repeat(3, 1fr); }
}
.areas-simple-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 1.5rem;
    border-top: 3px solid var(--primary);
}
.areas-simple-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 0.5rem;
}
.areas-simple-card p {
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.6;
    margin: 0;
}

.coverage-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

/* Why Choose Us grid */
.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}
@media (min-width: 640px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .why-grid { grid-template-columns: repeat(4, 1fr); }
}
.why-card {
    background: white;
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
}
.why-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #edf3e8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--primary);
}
.why-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.625rem;
}
.why-card__desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* WhatsApp CTA button */
.btn--whatsapp {
    background: #25D366;
    color: white;
    border-color: #25D366;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn--whatsapp:hover {
    background: #1ebe5a;
    border-color: #1ebe5a;
    color: white;
}
.nav-whatsapp {
    display: none;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    flex-shrink: 0;
    transition: background var(--transition);
}
.nav-whatsapp:hover {
    background: #1ebe5a;
    color: white;
}
@media (min-width: 1024px) {
    .nav-whatsapp { display: flex; }
}
.whatsapp-strip {
    background: #25D366;
    text-align: center;
    padding: 0.75rem 1rem;
}
.whatsapp-strip a {
    color: white;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}
.whatsapp-strip a:hover { text-decoration: underline; }

/* ==========================================================================
   Homepage redesign components
   ========================================================================== */

/* Stats bar */
.stats-bar {
    background: var(--primary);
    padding: 0;
}
.stats-bar__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.stats-bar__item {
    padding: 1.75rem 1.5rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.15);
}
.stats-bar__item:nth-child(even) { border-right: none; }
.stats-bar__item:nth-child(3),
.stats-bar__item:nth-child(4) { border-bottom: none; }
.stats-bar__number {
    display: block;
    font-size: 2.25rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}
.stats-bar__label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-top: 0.35rem;
}
@media (min-width: 640px) {
    .stats-bar__inner { grid-template-columns: repeat(4, 1fr); }
    .stats-bar__item { border-bottom: none; }
    .stats-bar__item:nth-child(even) { border-right: 1px solid rgba(255,255,255,0.15); }
    .stats-bar__item:last-child { border-right: none; }
}

/* About split */
.about-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .about-split { grid-template-columns: 1fr 1fr; }
}
.about-split__img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}
.about-split__eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    display: block;
    margin-bottom: 0.75rem;
}
.about-split__text p + p { margin-top: 1rem; }
.about-split__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Why strip — dark green */
.why-strip {
    background: var(--primary);
    padding: 4rem 1.5rem;
}
.why-strip__heading {
    color: white;
    font-size: 1.75rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.5rem;
}
.why-strip__grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 640px) {
    .why-strip__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .why-strip__grid { grid-template-columns: repeat(4, 1fr); }
    .why-strip__heading { font-size: 2rem; }
}
.why-strip__item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.why-strip__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
.why-strip__title {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.4rem;
}
.why-strip__desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
}

/* Services overlay grid */
.services-overlay-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 2.5rem;
}
@media (min-width: 640px) {
    .services-overlay-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
    .services-overlay-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}
.svc-tile {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 12px;
    text-decoration: none;
    aspect-ratio: 4/3;
    background: #1a1a1a;
}
.svc-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.svc-tile:hover img {
    transform: scale(1.06);
}
.svc-tile__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 1rem 1.1rem;
}
.svc-tile__name {
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.3;
}
.svc-tile__arrow {
    color: white;
    font-size: 1.1rem;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.25s, transform 0.25s;
    flex-shrink: 0;
}
.svc-tile:hover .svc-tile__arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Dark reviews section */
.reviews-dark {
    background: #1a2a0e;
    padding: 5rem 1.5rem;
}
.reviews-dark__header {
    text-align: center;
    margin-bottom: 3rem;
}
.reviews-dark__heading {
    color: white;
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}
.reviews-dark__sub {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
}
.reviews-dark__grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 640px) {
    .reviews-dark__grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-dark__heading { font-size: 2rem; }
}
@media (min-width: 1024px) {
    .reviews-dark__grid { grid-template-columns: repeat(3, 1fr); }
}
.review-dark-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1.75rem;
}
.review-dark-card__stars {
    color: #f0b429;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}
.review-dark-card__text {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
    font-style: italic;
}
.review-dark-card__author {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* FB fallback */
.fb-fallback {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-alt, #f5f5f5);
    border-radius: 16px;
}
.fb-fallback img { margin: 0 auto 1.5rem; }
.fb-fallback h3 { font-weight: 700; color: var(--primary); margin-bottom: 0.75rem; }
.fb-fallback p { color: var(--text-secondary); margin-bottom: 1.5rem; }

/* Full-bleed CTA with image background */
.home-cta {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 7rem 1.5rem;
}
.home-cta__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}
.home-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}
.home-cta__heading {
    color: white;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.875rem;
}
.home-cta__sub {
    color: rgba(255,255,255,0.82);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}
.home-cta__actions {
    display: flex;
    gap: 0.875rem;
    justify-content: center;
    flex-wrap: wrap;
}
@media (min-width: 1024px) {
    .home-cta__heading { font-size: 2.75rem; }
}

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-layout {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr;
}
@media (min-width: 900px) {
    .contact-layout { grid-template-columns: 1fr 380px; align-items: start; }
}
.contact-form-intro {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.65;
}
.contact-info {
    background: var(--surface-alt);
    border-radius: var(--radius);
    padding: 2rem;
}
.contact-details-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.contact-details-list__item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.contact-details-list__label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary);
}
.contact-details-list__value {
    color: var(--text);
    text-decoration: none;
    font-size: 1rem;
}
.contact-details-list__value a { color: var(--primary); }
.contact-details-list__value--wa {
    color: #1a7a44;
    font-weight: 600;
}
.contact-details-list__value--wa:hover { text-decoration: underline; }
.contact-info-note {
    border-top: 1px solid #dde;
    padding-top: 1.25rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* ==========================================================================
   Blog
   ========================================================================== */
.blog-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 780px;
    margin: 0 auto;
}
.blog-card {
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow);
    transition: box-shadow 0.2s;
}
.blog-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.blog-card__body { display: flex; flex-direction: column; gap: 0.6rem; }
.blog-card__date {
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 500;
}
.blog-card__title {
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.3;
    margin: 0;
}
.blog-card__title a { color: var(--text); text-decoration: none; }
.blog-card__title a:hover { color: var(--primary); }
.blog-card__excerpt {
    color: var(--text-secondary);
    line-height: 1.65;
    font-size: 0.97rem;
}
.blog-card__read-more {
    display: inline-block;
    margin-top: 0.25rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
}
.blog-card__read-more:hover { text-decoration: underline; }
.empty-state-wrap {
    text-align: center;
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

/* ==========================================================================
   Reviews page
   ========================================================================== */
.reviews-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.5rem;
}
.reviews-page-header p {
    color: var(--text-secondary);
    margin: 0;
    flex: 1;
}

.reviews-grid-page {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
}
@media (min-width: 700px) {
    .reviews-grid-page { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
    .reviews-grid-page { grid-template-columns: repeat(3, 1fr); }
}
.reviews-grid-page .review-card {
    display: flex;
    flex-direction: column;
}
.review-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid #f0f0f0;
}
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 780px;
    margin: 2rem auto 0;
}
.reviews-count {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 780px;
    margin: 0 auto;
}
.review-card--full {
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow);
}
.review-card__header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1rem;
    margin-bottom: 0.875rem;
}
.review-card__name {
    font-weight: 700;
    color: var(--text);
}
.review-card__date {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-left: auto;
}
.review-card__source {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-left: auto;
}

/* ==========================================================================
   Gallery lightbox
   ========================================================================== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.lightbox--open { display: flex; }
.lightbox__img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 6px;
}
.filter-chip--active,
.filter-chip.filter-chip--active {
    background: var(--primary);
    color: white;
}

/* ==========================================================================
   Misc utility
   ========================================================================== */
.section--tall { min-height: 50vh; display: flex; align-items: center; }
.empty-state {
    color: var(--text-secondary);
    font-style: italic;
    text-align: center;
    padding: 2rem 0;
}
.coverage-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}
@media (min-width: 900px) {
    .coverage-strip { grid-template-columns: 1fr 1fr; }
}
.coverage-strip__img img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    display: block;
}

.service-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}
@media (min-width: 640px) {
    .service-gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
.service-gallery-grid__item {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.service-gallery-grid__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.service-gallery-grid__item:hover img { transform: scale(1.04); }

.section-intro {
    max-width: 780px;
    margin: 0 auto 2.5rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: center;
}
