/* ============================================
   Wallpaper Installer Anaheim
   Refined Rustic Modern — Main Stylesheet
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    /* Core palette */
    --color-primary:       #2A2016;  /* deep olive-brown */
    --color-primary-light: #3D3020;  /* lifted olive-brown */
    --color-accent:        #B87333;  /* burnished copper */
    --color-accent-light:  #CF9050;  /* warm copper highlight */
    --color-accent-dark:   #9A6028;  /* deep copper */

    /* Surface backgrounds */
    --color-bg:            #F6F1E8;  /* warm linen beige */
    --color-bg-alt:        #EDE6D6;  /* parchment linen */
    --color-bg-sage:       #D8DDD0;  /* weathered sage stone */
    --color-bg-dark:       #2A2016;  /* olive-brown dark sections */

    /* Typography */
    --color-text:          #1D2018;  /* deep forest-charcoal */
    --color-text-light:    #6B6355;  /* warm muted mid-tone */
    --color-text-on-dark:  #EDE2CC;  /* soft almond cream */
    --color-white:         #FDFAF4;  /* warm off-white */

    /* UI */
    --color-border:        #D4CBB8;  /* warm tan border */
    --color-error:         #B91C1C;
    --color-star:          #B87333;

    /* Fonts */
    --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Fraunces', Georgia, 'Times New Roman', serif;

    /* Shadows — warm-tinted */
    --shadow-sm:  0 1px 4px rgba(42, 32, 22, 0.07);
    --shadow-md:  0 4px 16px rgba(42, 32, 22, 0.10);
    --shadow-lg:  0 10px 36px rgba(42, 32, 22, 0.13);
    --shadow-xl:  0 24px 64px rgba(42, 32, 22, 0.16);
    --shadow-copper: 0 8px 24px rgba(184, 115, 51, 0.28);

    /* Shape */
    --radius-sm:  8px;
    --radius-md:  14px;
    --radius-lg:  22px;

    --transition: 0.3s ease;
    --max-width:  1200px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.75;
    overflow-x: hidden;
}

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

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover { color: var(--color-accent-dark); }

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.2;
    font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 5.5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.9rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; color: var(--color-text); }

/* --- Utility --- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding { padding: 5.5rem 0; }

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    background: var(--color-accent);
    margin: 0.85rem auto 0;
    border-radius: 2px;
    opacity: 0.8;
}

.section-subtitle {
    color: var(--color-text-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 1rem auto 0;
}

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

.is-hidden-block { display: none !important; }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.95rem 2.25rem;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1.4;
    letter-spacing: 0.2px;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-white);
    box-shadow: var(--shadow-copper);
}

.btn-primary:hover {
    background: var(--color-accent-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(184, 115, 51, 0.36);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 1.5px solid rgba(255,255,255,0.6);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--color-white);
    color: var(--color-white);
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition);
    padding: 1.1rem 0;
}

.site-header.scrolled {
    background: rgba(42, 32, 22, 0.96);
    backdrop-filter: blur(12px);
    padding: 0.7rem 0;
    box-shadow: 0 2px 20px rgba(42, 32, 22, 0.25);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    min-height: 56px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.2;
}

.logo-text span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    opacity: 0.7;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0.15rem;
}

.nav-menu a {
    display: block;
    padding: 0.5rem 0.9rem;
    color: rgba(237, 226, 204, 0.85);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-menu a:hover {
    color: var(--color-text-on-dark);
    background: rgba(255,255,255,0.08);
}

.nav-call-item {
    list-style: none;
    margin-left: 0.5rem;
}

.nav-call-link {
    display: block;
    padding: 0.5rem 1.1rem;
    border: 1.5px solid var(--color-accent);
    border-radius: var(--radius-sm);
    background: var(--color-accent);
    color: var(--color-white) !important;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.2;
    box-shadow: var(--shadow-copper);
    transition: all var(--transition);
}

.nav-call-link:hover {
    background: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
    transform: translateY(-1px);
    color: var(--color-white) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    appearance: none;
    -webkit-appearance: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text-on-dark);
    border-radius: 2px;
    transition: all var(--transition);
    transform-origin: center;
}

/* Mobile nav */
@media (max-width: 768px) {
    .site-header { padding: 0.85rem 0; }

    .header-inner {
        padding: 0 1rem;
        min-height: 48px;
    }

    .logo {
        gap: 0.6rem;
        min-width: 0;
        max-width: calc(100% - 56px);
    }

    .logo-icon { width: 34px; height: 34px; }
    .logo-text { font-size: 1rem; line-height: 1.15; }

    .hamburger { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 290px;
        height: 100vh;
        background: var(--color-primary);
        flex-direction: column;
        align-items: stretch;
        padding: 5rem 2rem 2rem;
        gap: 0;
        transition: right var(--transition);
        box-shadow: var(--shadow-xl);
        overflow-y: auto;
    }

    .nav-menu.active { right: 0; }

    .nav-menu a {
        padding: 0.85rem 1rem;
        font-size: 1rem;
        border-bottom: 1px solid rgba(237,226,204,0.08);
    }

    .nav-call-link {
        width: 100%;
        padding: 0.85rem 1rem;
        margin-top: 1rem;
        text-align: center;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: rgba(0,0,0,0.45);
        z-index: 999;
    }

    .nav-overlay.active { display: block; }

    .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 420px) {
    .logo-text { font-size: 0.9rem; }
    .nav-menu { width: min(290px, 85vw); padding-left: 1.25rem; padding-right: 1.25rem; }
}

@media (min-width: 769px) {
    .nav-cta-desktop { display: inline-flex; }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--color-primary);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.38;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(
        160deg,
        rgba(42, 32, 22, 0.90) 0%,
        rgba(42, 32, 22, 0.72) 55%,
        rgba(42, 32, 22, 0.82) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 8rem 1.5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
}

.hero-text h1 {
    color: var(--color-white);
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 16px rgba(42,32,22,0.4);
}

.hero-text .subtitle {
    color: rgba(237,226,204,0.88);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2.25rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-form-card {
    max-width: 780px;
    margin: 0 auto 1.5rem;
    padding: 1.75rem 2rem;
    border-radius: var(--radius-md);
    background: var(--color-white);
    box-shadow: 0 20px 60px rgba(42, 32, 22, 0.28);
    text-align: left;
    border: 1px solid var(--color-border);
}

.hero-form-card h3 {
    margin-bottom: 1.1rem;
    text-align: left;
    font-size: 1.3rem;
}

@media (max-width: 900px) {
    .hero-content { padding-top: 7rem; }
}

@media (max-width: 768px) {
    .hero { min-height: auto; }

    .hero-content {
        min-height: auto;
        padding: 7rem 1rem 3.5rem;
    }

    .hero-text .subtitle {
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
    }

    .hero-form-card {
        padding: 1.25rem 1rem;
        margin-bottom: 1.25rem;
    }

    .hero-form-card h3 { text-align: center; }
}

@media (max-width: 480px) {
    h1 { font-size: clamp(1.9rem, 9.5vw, 2.6rem); }

    .container { padding: 0 1rem; }

    .section-padding, .map-section { padding: 3.75rem 0; }

    .section-header { margin-bottom: 2.5rem; }

    .btn { width: 100%; justify-content: center; padding: 0.95rem 1.25rem; }
}

/* ============================================
   CONTACT FORM STYLES
   ============================================ */
.feedback-form-container h3 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 1.45rem;
    margin-bottom: 1.25rem;
    text-align: center;
    font-weight: 600;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.contact-form .form-group { position: relative; }

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
    background: var(--color-white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(184, 115, 51, 0.14);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #9E9488; }

.contact-form textarea {
    min-height: 100px;
    resize: vertical;
    margin-bottom: 0.75rem;
}

.contact-form .form-submit { text-align: center; }

.contact-form .submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--color-accent);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: var(--shadow-copper);
}

.contact-form .submit-btn:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(184, 115, 51, 0.36);
}

#form-success { text-align: center; padding: 2rem 1rem; }

#form-success p {
    color: var(--color-primary);
    font-size: 1.05rem;
    font-weight: 500;
}

.error-message {
    color: var(--color-error) !important;
    margin-top: 5px;
    font-size: 14px;
}

@media (max-width: 500px) {
    .contact-form .form-row { grid-template-columns: 1fr; }
}

/* ============================================
   BY THE NUMBERS
   ============================================ */
.numbers { background: var(--color-bg-alt); }

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.number-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-md);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.number-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent);
}

.number-card .card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 115, 51, 0.10);
    border-radius: 50%;
    color: var(--color-accent);
}

.number-card .card-icon svg { width: 28px; height: 28px; }

.number-card .stat {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.number-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.numbers-tagline {
    text-align: center;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--color-text-light);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

@media (max-width: 768px) {
    .numbers-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* ============================================
   QUOTE / PAIN-SOLUTION BLOCK
   ============================================ */
.quote-section { background: var(--color-bg-alt); }

.quote-inner {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3.5rem;
    align-items: center;
}

.quote-portrait {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.quote-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/4;
}

.quote-text {
    position: relative;
    padding-left: 2rem;
}

.quote-text .quote-mark {
    position: absolute;
    top: -10px;
    left: 0;
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1;
    color: var(--color-accent);
    opacity: 0.25;
}

.quote-text blockquote {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: var(--color-primary);
    line-height: 1.55;
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.quote-text .attribution {
    font-size: 1rem;
    color: var(--color-accent);
    font-weight: 600;
    font-style: normal;
}

@media (max-width: 768px) {
    .quote-inner { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .quote-portrait { max-width: 300px; margin: 0 auto; }
    .quote-text { padding-left: 0; }
    .quote-text .quote-mark { position: static; font-size: 3rem; }
}

/* ============================================
   SERVICES
   ============================================ */
.services { background: var(--color-bg); }

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

.service-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}

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

.service-card .card-body { padding: 1.5rem; }

.service-card h3 { color: var(--color-primary); margin-bottom: 0.5rem; }

.service-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 550px) {
    .services-grid { grid-template-columns: 1fr; }
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works { background: var(--color-bg-alt); }

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    margin-bottom: 3rem;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 44px;
    left: calc(16.66% + 1rem);
    right: calc(16.66% + 1rem);
    height: 1.5px;
    background: var(--color-border);
}

.step { text-align: center; position: relative; z-index: 1; }

.step-number {
    width: 88px;
    height: 88px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    color: var(--color-accent);
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.step-number svg { width: 34px; height: 34px; }

.step:hover .step-number {
    background: var(--color-accent);
    color: var(--color-white);
    box-shadow: var(--shadow-copper);
}

.step h3 { color: var(--color-primary); margin-bottom: 0.5rem; }
.step p { color: var(--color-text-light); font-size: 0.95rem; }

.cta-call-block {
    text-align: center;
    padding: 2.75rem;
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.cta-call-block h3 { font-size: 1.5rem; margin-bottom: 1rem; }

.cta-phone-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.85rem;
    font-weight: 600;
    color: var(--color-primary);
    font-family: var(--font-heading);
    transition: color var(--transition);
}

.cta-phone-large:hover { color: var(--color-accent); }

.cta-phone-large svg {
    width: 28px;
    height: 28px;
    color: var(--color-accent);
}

@media (max-width: 768px) {
    .steps-container { grid-template-columns: 1fr; gap: 2.5rem; }
    .steps-container::before { display: none; }
    .cta-call-block { padding: 1.75rem 1.25rem; }
    .cta-phone-large { font-size: 1.4rem; line-height: 1.3; justify-content: center; flex-wrap: wrap; }
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews { background: var(--color-bg); }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.review-card {
    padding: 2rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent);
    transform: translateY(-3px);
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1rem;
}

.review-stars svg {
    width: 18px;
    height: 18px;
    color: var(--color-star);
}

.review-card .review-text {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.65;
    margin-bottom: 1rem;
    font-style: italic;
}

.review-card .reviewer {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.9rem;
}

/* Mobile scroll-snap carousel */
@media (max-width: 768px) {
    .reviews-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: var(--color-border) transparent;
    }

    .review-card {
        min-width: 280px;
        scroll-snap-align: start;
        flex-shrink: 0;
    }
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section { background: var(--color-bg-alt); }

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

.video-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-primary);
    aspect-ratio: 9/16;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
    border: 1px solid var(--color-border);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    .videos-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 550px) {
    .videos-grid { grid-template-columns: 1fr; }
    .video-card { aspect-ratio: 16/9; }
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us {
    background: var(--color-bg-dark);
    color: var(--color-text-on-dark);
}

.why-us h2 { color: var(--color-white); }

.why-us h2::after { background: var(--color-accent); }

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 820px;
    margin: 0 auto;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.75rem;
    background: rgba(237, 226, 204, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(237, 226, 204, 0.10);
    transition: all var(--transition);
}

.why-item:hover {
    background: rgba(237, 226, 204, 0.09);
    border-color: rgba(184, 115, 51, 0.4);
}

.why-item .check-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 115, 51, 0.15);
    border-radius: 50%;
    color: var(--color-accent-light);
}

.why-item .check-icon svg { width: 16px; height: 16px; }

.why-item-text h3 {
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    font-family: var(--font-heading);
}

.why-item-text p {
    color: rgba(237, 226, 204, 0.72);
    font-size: 0.92rem;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .why-grid { grid-template-columns: 1fr; }
    .why-item { padding: 1.35rem; }
}

/* ============================================
   SERVICE AREAS
   ============================================ */
.service-areas { background: var(--color-bg); }

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.area-card {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.area-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent);
}

.area-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 115, 51, 0.10);
    border-radius: 50%;
    color: var(--color-accent);
}

.area-icon svg { width: 22px; height: 22px; }

.area-card h3 {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0;
}

.areas-note {
    text-align: center;
    color: var(--color-text-light);
    font-size: 0.98rem;
    margin-top: 2rem;
    margin-bottom: 0;
}

@media (max-width: 900px) { .areas-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .areas-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .areas-grid { grid-template-columns: 1fr; } }

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
    padding: 5rem 0;
    background: var(--color-bg-alt);
}

.map-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

@media (max-width: 768px) { .map-wrapper iframe { height: 300px; } }

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
    background: linear-gradient(160deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}

.final-cta-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.final-cta h2 { margin-bottom: 1rem; }

.final-cta .cta-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
}

.final-cta .feedback-form-container {
    background: var(--color-white);
    padding: 2.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    text-align: left;
}

@media (max-width: 768px) {
    .final-cta .feedback-form-container { padding: 1.5rem; }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--color-primary);
    color: rgba(237,226,204,0.75);
    padding: 4.5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-grid-2col { grid-template-columns: 1.5fr 1fr; }

.footer-info .footer-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-text-on-dark);
    margin-bottom: 1rem;
}

.footer-info p {
    color: rgba(237,226,204,0.65);
    font-size: 0.92rem;
    margin-bottom: 0.5rem;
}

.footer-info a { color: rgba(237,226,204,0.65); transition: color var(--transition); }
.footer-info a:hover { color: var(--color-accent-light); }

.footer-links h4 {
    color: var(--color-text-on-dark);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: rgba(237,226,204,0.65); font-size: 0.92rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--color-accent-light); }

.footer-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.footer-map iframe { width: 100%; height: 280px; border: 0; display: block; }

.footer-bottom {
    border-top: 1px solid rgba(237,226,204,0.08);
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(237,226,204,0.4);
    font-size: 0.84rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .site-footer { padding-top: 3.5rem; }
}

/* ============================================
   STICKY CTA BUTTON
   ============================================ */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sticky-cta-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.6rem;
    background: var(--color-accent);
    color: var(--color-white);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(184, 115, 51, 0.36);
    transition: all var(--transition);
}

.sticky-cta-btn:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(184, 115, 51, 0.44);
}

.sticky-cta-btn svg { width: 20px; height: 20px; }
.sticky-cta-btn .btn-text-mobile { display: none; }

@media (max-width: 600px) {
    .sticky-cta { right: 1rem; bottom: 1rem; }

    .sticky-cta-btn .btn-text-desktop { display: none; }
    .sticky-cta-btn .btn-text-mobile { display: none; }
    .sticky-cta-btn { padding: 1rem; border-radius: 50%; }
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(29, 32, 24, 0.55);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    backdrop-filter: blur(3px);
}

.modal-overlay.active { display: flex; }

.modal-content {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    max-width: 560px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

.modal-close {
    position: absolute;
    top: 1rem; right: 1rem;
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    cursor: pointer;
    color: var(--color-text);
    transition: all var(--transition);
}

.modal-close:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.modal-close svg { width: 16px; height: 16px; }

@media (max-width: 480px) {
    .modal-overlay { padding: 0.75rem; }
    .modal-content { padding: 1.25rem; max-height: calc(100vh - 1.5rem); }
    .modal-close { top: 0.75rem; right: 0.75rem; }
}

/* ============================================
   POLICY PAGE
   ============================================ */
.policy-section {
    padding: 8rem 0 5rem;
    background: var(--color-bg);
}

.site-header.is-solid {
    background: rgba(42, 32, 22, 0.96);
    backdrop-filter: blur(12px);
    padding: 0.7rem 0;
    box-shadow: 0 2px 20px rgba(42, 32, 22, 0.25);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: clamp(1.5rem, 4vw, 3rem);
    border: 1px solid var(--color-border);
}

.policy-content h1 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.policy-updated {
    color: var(--color-text-light);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.policy-content h2 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

.policy-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    color: var(--color-primary);
    font-family: var(--font-body);
    font-weight: 600;
}

.policy-content p {
    margin-bottom: 0.85rem;
    color: var(--color-text);
    line-height: 1.75;
    font-size: 0.97rem;
}

.policy-content p:last-child { margin-bottom: 0; }

@media (max-width: 768px) {
    .policy-section { padding-top: 7rem; }
    .policy-content h2 { font-size: 1.22rem; }
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thankyou-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--color-bg);
    padding: 2rem;
    text-align: center;
}

.thankyou-icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background-color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-copper);
}

.thankyou-icon svg { width: 36px; height: 36px; stroke: var(--color-white); }

.thankyou-page h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.thankyou-page p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 420px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}

.thankyou-divider {
    width: 48px; height: 2px;
    background-color: var(--color-accent);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .site-header, .sticky-cta, .modal-overlay { display: none !important; }
}
