/* ==========================================================================
   Addison Window Cleaning — Main Stylesheet
   Mobile-first responsive design
   ========================================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Brand Colors — Red */
    --color-primary: #C5282F;
    --color-primary-dark: #A31F25;
    --color-primary-light: #D95459;
    --color-primary-subtle: rgba(197, 40, 47, 0.08);

    /* Navy — brand secondary/hero color */
    --color-navy: #1e3a5f;
    --color-navy-light: #2a5f9e;
    --color-navy-dark: #142c4a;

    /* Neutrals */
    --color-dark: #1a1a1a;
    --color-text: #2d3436;
    --color-text-light: #636e72;
    --color-text-muted: #999999;
    --color-bg: #ffffff;
    --color-bg-alt: #f8f7f5;
    --color-bg-dark: #2d2d2d;
    --color-bg-darker: #1a1a1a;
    --color-border: #e5e5e5;
    --color-border-light: #f0f0f0;
    --color-success: #00b894;
    --color-error: #e74c3c;
    --color-star: #f5a623;

    /* Typography */
    --font-heading: 'Lora', Georgia, 'Times New Roman', serif;
    --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing Scale (8px base) */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;
    --space-5xl: 128px;

    /* Layout */
    --container-max: 1200px;
    --container-narrow: 800px;
    --header-height: 80px;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;

    /* Shadows — double-layer for natural depth */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.04), 0 10px 15px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.06), 0 20px 48px rgba(0,0,0,0.06);
    --shadow-xl: 0 25px 50px rgba(0,0,0,0.1);

    /* Transitions */
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

::selection {
    background: var(--color-primary);
    color: #fff;
}

::-moz-selection {
    background: var(--color-primary);
    color: #fff;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-alt);
}

::-webkit-scrollbar-thumb {
    background: #c0c0c0;
    border-radius: 5px;
    border: 2px solid var(--color-bg-alt);
}

::-webkit-scrollbar-thumb:hover {
    background: #a0a0a0;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.75;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.01em;
}

ul, ol {
    list-style: none;
}

/* ---------- Focus-Visible (Accessibility) ---------- */
:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
}

:focus:not(:focus-visible) {
    outline: none;
}

.form-group input:focus-visible,
.form-group textarea:focus-visible,
.form-group select:focus-visible {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(197, 40, 47, 0.12);
}

.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-md);
    z-index: 10000;
    padding: 12px 24px;
    background: var(--color-dark);
    color: #fff;
    font-weight: 600;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 0;
    color: #fff;
}

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

.text-center { text-align: center; }
.text-muted { color: var(--color-text-muted); }

.content-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.section {
    padding: var(--space-4xl) 0;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    padding: 4px 12px;
    background: var(--color-primary-subtle);
    border-radius: 100px;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.section-footer {
    text-align: center;
    margin-top: var(--space-3xl);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition), transform 0.15s ease;
    text-align: center;
    line-height: 1.4;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(1px);
    transition: transform 0.08s ease;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
    box-shadow: 0 4px 14px rgba(197, 40, 47, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: #fff;
    box-shadow: 0 6px 20px rgba(197, 40, 47, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--color-dark);
    border-color: var(--color-border);
}

.btn-outline:hover {
    background-color: var(--color-dark);
    border-color: var(--color-dark);
    color: #fff;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 0.88rem;
}

.btn-sm {
    padding: 6px 14px;
    font-size: 0.75rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-danger {
    background-color: var(--color-error);
    color: #fff;
    border-color: var(--color-error);
}

.btn-danger:hover {
    background-color: #c0392b;
    border-color: #c0392b;
    color: #fff;
}

.btn-white-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-white-outline:hover {
    background: #fff;
    color: var(--color-navy);
    border-color: #fff;
}

.btn-loading {
    pointer-events: none;
    opacity: 0.8;
}

.btn-loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-right-color: currentColor;
    border-radius: 50%;
    animation: btn-spin 0.6s linear infinite;
    margin-left: 8px;
}

@keyframes btn-spin {
    to { transform: rotate(360deg); }
}

.btn:disabled,
.btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border-light);
    height: var(--header-height);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--color-dark);
}

.logo:hover { color: var(--color-dark); }

.logo-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 6px;
    object-fit: cover;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-primary);
}

.logo-tagline {
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-primary);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-dark);
    transition: all var(--transition);
}

.mobile-nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Nav */
.main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-bg);
    padding: 100px 30px 30px;
    box-shadow: var(--shadow-xl);
    transition: right var(--transition);
    z-index: 999;
}

.main-nav.open {
    right: 0;
}

.nav-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nav-link {
    display: block;
    padding: 14px 0;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text);
    text-decoration: none;
    border-bottom: 1px solid var(--color-border-light);
    transition: color var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

.nav-cta {
    margin-top: 10px;
    background-color: var(--color-primary);
    color: #fff !important;
    text-align: center;
    border-radius: var(--radius-md);
    padding: 14px 20px;
    border-bottom: none;
}

.nav-cta:hover {
    background-color: var(--color-primary-dark);
    color: #fff !important;
}

/* Mobile Nav Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity var(--transition);
}

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

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-navy);
    background-image:
        linear-gradient(
            160deg,
            rgba(20, 44, 74, 0.92) 0%,
            rgba(30, 58, 95, 0.85) 40%,
            rgba(42, 95, 158, 0.78) 100%
        ),
        url('/assets/images/hero-house.jpg');
    background-size: cover;
    background-position: center;
    margin-top: var(--header-height);
    overflow: hidden;
}

/* Warm coral radial glow for depth */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 30% 50%,
        rgba(197, 40, 47, 0.08) 0%,
        transparent 60%
    );
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20, 60, 120, 0.4) 0%, rgba(10, 40, 80, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 60px 20px;
    max-width: 700px;
}

.hero-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 1.5rem;
    padding: 6px 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 12vw, 7rem);
    font-weight: 700;
    color: #fff;
    line-height: 0.9;
    margin-bottom: 1.75rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.15rem;
    font-weight: bold;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ---------- Intro Section ---------- */
.section-intro {
    padding: var(--space-4xl) 0;
}

.intro-grid {
    display: grid;
    gap: 40px;
}

.intro-content .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.intro-content p {
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

.check-list {
    margin-top: 1.5rem;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.check-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

/* Quote Box */
.quote-box {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl) var(--space-xl);
    text-align: center;
    color: #fff;
    box-shadow: var(--shadow-lg);
}

.quote-box-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.quote-box-title {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    color: #fff;
}

.quote-box .btn {
    margin-bottom: 1.25rem;
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.quote-box-phone {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.quote-box-number {
    display: block;
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    transition: color var(--transition);
}

.quote-box-number:hover {
    color: var(--color-primary-light);
}

/* ---------- Veteran Section ---------- */
.section-veteran {
    background-color: var(--color-bg-alt);
    padding: var(--space-3xl) 0;
    position: relative;
}

.veteran-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    align-items: center;
    text-align: center;
}

.veteran-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
    .veteran-grid {
        flex-direction: row;
        text-align: left;
        gap: var(--space-3xl);
    }

    .veteran-content {
        flex: 1;
    }

    .veteran-image {
        flex: 1;
    }
}

.section-veteran::before,
.section-veteran::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--color-border);
}

.section-veteran::before { top: 0; }
.section-veteran::after { bottom: 0; }

.veteran-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-style: italic;
    color: var(--color-navy);
}

.veteran-content p {
    max-width: 680px;
    margin: 0 auto;
    color: var(--color-text-light);
    font-size: 1.02rem;
    line-height: 1.75;
}

/* ---------- CTA Banner ---------- */
.section-cta-banner {
    background: linear-gradient(135deg, var(--color-navy-dark) 0%, var(--color-navy) 50%, var(--color-navy-light) 100%);
    color: #fff;
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.section-cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(255, 255, 255, 0.02) 40px,
        rgba(255, 255, 255, 0.02) 41px
    );
    pointer-events: none;
}

.section-cta-banner .container {
    position: relative;
    z-index: 1;
}

.section-cta-banner h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.section-cta-banner p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
}

/* ---------- Google Reviews Badge ---------- */
.section-google-reviews {
    padding: var(--space-3xl) 0;
    background: var(--color-bg);
}

.google-reviews-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    text-align: center;
    padding: var(--space-2xl) var(--space-xl);
    background: var(--color-bg-alt);
    border: 2px solid var(--color-border-light);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.google-reviews-badge-img img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.google-reviews-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.google-reviews-stars {
    display: flex;
    gap: 4px;
}

.google-reviews-count {
    font-size: 1.5rem;
    color: var(--color-navy);
    font-weight: 600;
}

.google-reviews-count strong {
    font-size: 1.8rem;
    color: var(--color-primary);
}

.google-reviews-info .btn {
    margin-top: var(--space-sm);
}

@media (min-width: 768px) {
    .google-reviews-card {
        flex-direction: row;
        gap: var(--space-2xl);
        padding: var(--space-2xl) var(--space-3xl);
    }

    .google-reviews-badge-img img {
        width: 160px;
        height: 160px;
    }

    .google-reviews-info {
        align-items: flex-start;
        text-align: left;
    }

    .google-reviews-count {
        font-size: 1.7rem;
    }

    .google-reviews-count strong {
        font-size: 2rem;
    }
}

/* ---------- Services Grid ---------- */
.services-grid {
    display: grid;
    gap: var(--space-lg);
}

.service-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card-image {
    aspect-ratio: 3/2;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover .service-card-image img {
    transform: scale(1.08);
}

.service-card-body {
    padding: var(--space-lg) var(--space-lg) var(--space-xl);
}

.service-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
}

.service-card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card-text {
    color: var(--color-text-light);
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
    line-height: 1.65;
}

/* ---------- Why Section ---------- */
.section-why {
    background: var(--color-bg-alt);
}

.why-grid {
    display: grid;
    gap: var(--space-lg);
}

.why-card {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    background: var(--color-bg);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border-light);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.4s ease;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.why-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: var(--color-primary-subtle);
    border-radius: 50%;
    color: var(--color-primary);
    margin-bottom: 1.25rem;
}

.why-icon svg {
    width: 32px;
    height: 32px;
}

.why-card h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.why-card p {
    color: var(--color-text-light);
    font-size: 0.92rem;
    line-height: 1.65;
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
    display: grid;
    gap: var(--space-lg);
}

.testimonial-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    position: relative;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1;
    color: var(--color-primary);
    opacity: 0.12;
    pointer-events: none;
}

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

.star-filled { color: var(--color-star); }
.star-empty { color: var(--color-border); }

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--color-text);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    border: none;
    padding: 0;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border-light);
}

.testimonial-name {
    font-weight: 700;
    color: var(--color-dark);
    font-size: 0.95rem;
}

.testimonial-location {
    font-size: 0.82rem;
    color: var(--color-text-muted);
}

/* ---------- Gallery ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.1) 40%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: var(--space-md);
    color: #fff;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-caption {
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    margin-top: var(--space-sm);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: lightboxFadeIn 0.25s ease;
}

@keyframes lightboxFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox[hidden] { display: none; }

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    transition: background var(--transition);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
}

.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    width: 56px;
    height: 56px;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    text-align: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.lightbox-caption {
    color: #fff;
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ---------- Page Header ---------- */
.page-header {
    background: var(--color-bg-alt);
    padding: var(--space-3xl) 0 var(--space-2xl);
    margin-top: var(--header-height);
    border-bottom: 1px solid var(--color-border-light);
}

.page-title {
    font-size: 2.25rem;
    letter-spacing: -0.02em;
}

.page-subtitle {
    color: var(--color-text-light);
    margin-top: 0.75rem;
    max-width: 600px;
    font-size: 1.05rem;
}

/* ---------- Services Page ---------- */
.service-row {
    display: grid;
    gap: 40px;
    align-items: center;
    padding: var(--space-3xl) 0;
    border-bottom: 1px solid var(--color-border-light);
}

.service-row:last-child {
    border-bottom: none;
}

.service-row-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-row-title a {
    color: inherit;
    text-decoration: none;
}

.service-row-title a:hover {
    color: var(--color-primary);
}

.service-row-text {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.service-row-text p {
    margin-bottom: 0.75rem;
}

.service-row-img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-row-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
}

/* Service Detail */
.service-detail-grid {
    display: grid;
    gap: 40px;
}

.service-detail-content {
    line-height: 1.8;
}

.service-detail-content p {
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

.service-detail-img {
    width: 100%;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

/* Before/After Grid */
.before-after-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}

.before-after-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.before-after-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.before-after-label {
    position: absolute;
    bottom: var(--space-sm);
    left: var(--space-sm);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
}

.sidebar-services {
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.sidebar-services h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.sidebar-services ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-services li a {
    display: block;
    padding: 10px 14px;
    color: var(--color-text);
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.sidebar-services li a:hover,
.sidebar-services li.active a {
    background: var(--color-bg);
    color: var(--color-primary);
}

/* Payment */
.section-payment {
    padding: 40px 0;
    border-top: 1px solid var(--color-border-light);
}

.payment-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.payment-icons-large {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.payment-badge,
.payment-badge-lg {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.section-payment .payment-badge-lg {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    color: var(--color-text-light);
    padding: 10px 20px;
    font-size: 0.82rem;
    border-radius: var(--radius-md);
}

/* ---------- Contact Page ---------- */
.contact-grid {
    display: grid;
    gap: var(--space-3xl);
}

.contact-form-header,
.contact-info-header {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.contact-form-header h2,
.contact-info-header h2 {
    font-size: 2rem;
}

.form-intro {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.form-errors {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-left: 4px solid var(--color-error);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    margin-bottom: 2rem;
}

.form-errors ul {
    list-style: disc;
    padding-left: 20px;
}

.form-errors li {
    color: var(--color-error);
    font-size: 0.9rem;
}

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

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    background: var(--color-bg);
    transition: border-color var(--transition),
                box-shadow var(--transition),
                background-color var(--transition);
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: #ccc;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(197, 40, 47, 0.12);
    background: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
    font-weight: 400;
}

.form-group small {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

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

.form-row-half {
    display: grid;
    gap: 16px;
}

.required {
    color: var(--color-error);
    font-weight: 700;
}

.sms-consent {
    background: var(--color-bg-alt);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
}

.consent-text {
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-bottom: 0.75rem;
}

.radio-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.radio-label input {
    width: auto;
    margin-top: 3px;
}

.btn-submit {
    margin-top: 1rem;
    width: 100%;
}

/* Contact Info */
.contact-details {
    margin-bottom: 2rem;
}

.contact-owners {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-phone a,
.contact-email a {
    color: var(--color-text);
    font-size: 1rem;
}

.contact-phone a:hover,
.contact-email a:hover {
    color: var(--color-primary);
}

.contact-phone { margin-bottom: 0.25rem; }

.contact-privacy {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

/* ---------- About Page ---------- */
.about-grid {
    display: grid;
    gap: 40px;
}

.about-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.about-values {
    display: grid;
    gap: var(--space-lg);
    margin-top: 2rem;
}

.value-item {
    background: var(--color-bg-alt);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.4s ease;
}

.value-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.value-item h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.value-item p {
    margin-bottom: 0;
}

.about-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 250px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.placeholder-text {
    margin-top: 1rem;
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.stat {
    text-align: center;
    padding: var(--space-lg) var(--space-md);
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.4s ease;
}

.stat:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 0.25rem;
}

.section-about-cta {
    background: var(--color-bg-alt);
    padding: var(--space-4xl) 0;
}

.section-about-cta h2 {
    margin-bottom: 0.75rem;
}

.section-about-cta p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

/* ---------- Service Area ---------- */
.service-area-grid {
    display: grid;
    gap: 40px;
}

.service-area-content h2 {
    margin-bottom: 1rem;
}

.service-area-content p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.area-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 2rem 0;
}

.area-column h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.area-list li {
    padding: 6px 0;
    color: var(--color-text-light);
    border-bottom: 1px solid var(--color-border-light);
}

.area-note {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.map-embed,
.map-placeholder {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 400px;
}

.map-placeholder iframe {
    width: 100%;
    height: 450px;
}

/* ---------- Privacy ---------- */
.section-privacy .content-narrow {
    max-width: 720px;
}

.section-privacy .content-narrow > p:first-child {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: var(--space-xs);
}

.section-privacy .content-narrow > p:nth-child(2) {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--color-border);
}

.section-privacy h2 {
    font-size: 1.3rem;
    margin-top: var(--space-3xl);
    margin-bottom: var(--space-lg);
    color: var(--color-dark);
}

.section-privacy h2:first-of-type {
    margin-top: 0;
}

.section-privacy h3 {
    font-size: 1.05rem;
    font-family: var(--font-body);
    font-weight: 700;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    color: var(--color-text);
}

.section-privacy p {
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.section-privacy ul {
    list-style: disc;
    padding-left: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.section-privacy ul li {
    color: var(--color-text-light);
    padding: var(--space-xs) 0;
    line-height: 1.75;
}

.section-privacy ul li + li {
    border-top: 1px solid var(--color-border-light);
}

.section-privacy ul li strong {
    color: var(--color-text);
}

.section-privacy a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.section-privacy a:hover {
    color: var(--color-primary-dark);
}

/* ---------- 404 ---------- */
.section-404 {
    padding: 120px 0 80px;
    margin-top: var(--header-height);
}

.error-code {
    font-size: 6rem;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 1rem;
}

.section-404 h2 {
    margin-bottom: 0.75rem;
}

.section-404 p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.error-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ---------- Footer ---------- */
.footer-cta {
    background: var(--color-bg-darker);
    color: #fff;
    text-align: center;
    padding: var(--space-3xl) var(--space-lg);
    position: relative;
}

.footer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light), var(--color-primary));
}

.footer-cta-title {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-phone {
    display: block;
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.footer-phone:hover {
    color: var(--color-primary);
}

.footer-main {
    background: var(--color-bg-dark);
    padding: var(--space-4xl) 0;
    color: rgba(255, 255, 255, 0.6);
}

.footer-grid {
    display: grid;
    gap: var(--space-xl);
}

.footer-col h3 {
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.5);
}

.footer-col p a {
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

.footer-col p a:hover {
    color: var(--color-primary-light);
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: color var(--transition), padding-left var(--transition);
}

.footer-links a:hover {
    color: var(--color-primary-light);
    padding-left: 4px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 1.25rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
}

.footer-bottom {
    background: var(--color-bg-darker);
    padding: var(--space-lg) 0;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.8rem;
}

.footer-bottom-links a:hover {
    color: var(--color-primary-light);
}

.payment-icons {
    display: flex;
    gap: 8px;
}

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    z-index: 900;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
    color: var(--color-text);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.2s ease;
    pointer-events: none;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

/* ---------- Flash Messages ---------- */
.flash-message {
    padding: 14px 0;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
}

.flash-success {
    background: #d1fae5;
    color: #065f46;
    border-bottom: 1px solid #a7f3d0;
}

.flash-error {
    background: #fef2f2;
    color: #991b1b;
    border-bottom: 1px solid #fecaca;
}

.flash-message .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flash-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0.7;
    color: inherit;
}

.flash-close:hover { opacity: 1; }

/* ---------- Form Validation ---------- */
.input-error {
    border-color: var(--color-error) !important;
    box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.1) !important;
}

.input-valid {
    border-color: var(--color-success);
    box-shadow: 0 0 0 4px rgba(0, 184, 148, 0.08);
}

.field-error {
    color: var(--color-error);
    font-size: 0.78rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
}

/* ---------- Responsive: Tablet (768px+) ---------- */
@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }

    .section {
        padding: var(--space-5xl) 0;
    }

    .section-title {
        font-size: 2.75rem;
    }

    .page-header {
        padding: var(--space-4xl) 0 var(--space-3xl);
    }

    .page-title {
        font-size: 3rem;
    }

    /* Nav */
    .mobile-nav-toggle {
        display: none;
    }

    .main-nav {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        padding: 0;
        box-shadow: none;
    }

    .nav-list {
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }

    .nav-link {
        padding: 8px 14px;
        border-bottom: none;
        font-size: 0.78rem;
    }

    .nav-cta {
        margin-top: 0;
        padding: 10px 20px;
    }

    /* Hero */
    .hero {
        min-height: 92vh;
    }

    .section-cta-banner h2 {
        font-size: 2.5rem;
    }

    /* Intro */
    .intro-grid {
        grid-template-columns: 1.5fr 1fr;
        gap: 60px;
    }

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

    /* Why Grid */
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    /* Services Page */
    .service-row {
        grid-template-columns: 1fr 1fr;
    }

    .service-row-reverse .service-row-content {
        order: 2;
    }

    .service-row-reverse .service-row-images {
        order: 1;
    }

    /* Service Detail */
    .service-detail-grid {
        grid-template-columns: 2fr 1fr;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1.5fr 1fr;
    }

    .form-row-half {
        grid-template-columns: 1fr 1fr;
    }

    .btn-submit {
        width: auto;
    }

    .contact-info {
        position: sticky;
        top: calc(var(--header-height) + var(--space-xl));
        align-self: start;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1.5fr 1fr;
    }

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

    /* Service Area */
    .service-area-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .footer-bottom-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ---------- Responsive: Desktop (1024px+) ---------- */
@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Why Grid */
    .why-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

/* ---------- Animations ---------- */
@media (prefers-reduced-motion: no-preference) {
    .service-card,
    .testimonial-card,
    .why-card,
    .gallery-item,
    .value-item,
    .stat {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .service-row {
        opacity: 0;
        transform: translateX(-24px);
        transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .service-row-reverse {
        transform: translateX(24px);
    }

    .service-card.visible,
    .testimonial-card.visible,
    .why-card.visible,
    .gallery-item.visible,
    .value-item.visible,
    .stat.visible,
    .service-row.visible {
        opacity: 1;
        transform: translate(0);
    }

    /* Hero content entrance */
    .hero-label,
    .hero-title,
    .hero-subtitle,
    .hero-content .btn {
        opacity: 0;
        transform: translateY(30px);
        animation: heroFadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    }

    .hero-label       { animation-delay: 0.2s; }
    .hero-title        { animation-delay: 0.4s; }
    .hero-subtitle     { animation-delay: 0.6s; }
    .hero-content .btn { animation-delay: 0.8s; }
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- Print ---------- */
@media print {
    .site-header,
    .footer-cta,
    .footer-main,
    .footer-bottom,
    .mobile-nav-toggle,
    .nav-overlay,
    .back-to-top,
    .section-cta-banner,
    .btn,
    .lightbox { display: none !important; }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }

    .hero {
        min-height: auto;
        padding: 24pt 0;
        background: #f0f0f0 !important;
        color: #000;
    }

    .hero-title { color: #000; text-shadow: none; }

    .section { padding: 24pt 0; }

    a { color: #000; text-decoration: underline; }

    a[href]::after {
        content: ' (' attr(href) ')';
        font-size: 9pt;
        color: #666;
    }

    .service-card,
    .testimonial-card {
        break-inside: avoid;
        border: 1px solid #ccc;
        box-shadow: none;
    }

    img { max-width: 100% !important; }
}

/* Obfuscated PII fallback */
.obf-fallback { font-style: italic; color: #999; }
.section-google-reviews {
    padding-top: 1rem;
}
