/* ============================================
   Master Wallpaper Installers — San Diego
   Color Palette: Deep Muted Teal
   Fonts: Libre Baskerville + Nunito Sans
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Nunito+Sans:ital,opsz,wght@0,6..12,300;0,6..12,400;0,6..12,500;0,6..12,600;0,6..12,700;1,6..12,400&display=swap');

:root {
    --primary: #1e3a3a;
    --primary-deep: #142c2c;
    --primary-light: #2a4f4f;
    --secondary: #1a3333;
    --accent: #b8965a;
    --accent-hover: #c9a76b;
    --accent-clay: #b07d56;
    --sand: #f2ece3;
    --sand-dark: #e8dfd3;
    --ivory: #faf7f2;
    --text-dark: #1a2e2e;
    --text-body: #2d4545;
    --text-light: #f0ece6;
    --text-muted: rgba(240, 236, 230, 0.7);
    --border-light: rgba(30, 58, 58, 0.1);
    --shadow: rgba(20, 44, 44, 0.15);
    --radius: 8px;
    --radius-lg: 14px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-body);
    background: var(--ivory);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-weight: 700;
    line-height: 1.25;
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ============ HEADER ============ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--primary-deep);
    border-bottom: 1px solid rgba(184, 150, 90, 0.15);
    transition: background var(--transition);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo a {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.3px;
}

.logo a span {
    color: var(--accent);
    font-style: italic;
}

/* Main Navigation */
.main-nav {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}

.main-nav > li {
    position: relative;
}

.main-nav > li > a {
    display: block;
    padding: 24px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color var(--transition);
}

.main-nav > li > a:hover,
.main-nav > li > a.active {
    color: var(--accent);
}

.main-nav > li > a .arrow {
    font-size: 0.65rem;
    margin-left: 3px;
    transition: transform var(--transition);
}

.main-nav > li:hover > a .arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu — Wallpaper Unroll Animation */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: var(--primary);
    border: 1px solid rgba(184, 150, 90, 0.12);
    border-radius: 0 0 var(--radius) var(--radius);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: scaleY(0);
    transform-origin: top center;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    z-index: 100;
    overflow: hidden;
}

.main-nav > li:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
}

.dropdown-menu li {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.main-nav > li:hover > .dropdown-menu li {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered appearance */
.dropdown-menu li:nth-child(1) { transition-delay: 0.05s; }
.dropdown-menu li:nth-child(2) { transition-delay: 0.1s; }
.dropdown-menu li:nth-child(3) { transition-delay: 0.15s; }
.dropdown-menu li:nth-child(4) { transition-delay: 0.2s; }
.dropdown-menu li:nth-child(5) { transition-delay: 0.25s; }
.dropdown-menu li:nth-child(6) { transition-delay: 0.3s; }
.dropdown-menu li:nth-child(7) { transition-delay: 0.35s; }
.dropdown-menu li:nth-child(8) { transition-delay: 0.4s; }
.dropdown-menu li:nth-child(9) { transition-delay: 0.45s; }
.dropdown-menu li:nth-child(10) { transition-delay: 0.5s; }
.dropdown-menu li:nth-child(11) { transition-delay: 0.55s; }
.dropdown-menu li:nth-child(12) { transition-delay: 0.6s; }

.dropdown-menu li a {
    display: block;
    padding: 12px 22px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.dropdown-menu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--accent);
    transform: scaleY(0);
    transition: transform 0.25s ease;
}

.dropdown-menu li a:hover {
    color: var(--text-light);
    background: rgba(184, 150, 90, 0.08);
    padding-left: 28px;
}

.dropdown-menu li a:hover::before {
    transform: scaleY(1);
}

.dropdown-menu li:last-child a { border-bottom: none; }

/* Header Contact */
.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-contact a {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.header-contact a:hover { color: var(--text-light); }
.header-contact .icon { font-size: 0.9rem; }

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.mobile-toggle span {
    width: 26px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition);
    border-radius: 2px;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20,44,44,0.92) 0%, rgba(30,58,58,0.75) 50%, rgba(20,44,44,0.88) 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 24px;
}

.hero-badge {
    display: inline-block;
    background: rgba(184, 150, 90, 0.15);
    border: 1px solid rgba(184, 150, 90, 0.3);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3.2rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero h1 em {
    color: var(--accent);
    font-style: italic;
}

.hero-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 520px;
    line-height: 1.8;
}

.hero-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-badges span::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
}

/* Hero Form */
.hero-form-wrapper {
    background: var(--sand);
    border-radius: var(--radius-lg);
    padding: 40px 35px 50px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    position: relative;
    z-index: 10;
}

.hero-form-wrapper h3 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-size: 1.5rem;
}

/* ============ FORMS ============ */
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-form .form-group { margin-bottom: 0; }

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.95rem;
    background: #fff;
    color: var(--text-dark);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(184, 150, 90, 0.12);
}

.contact-form textarea {
    min-height: 110px;
    resize: vertical;
    margin-top: 15px;
}

.contact-form .form-submit { margin-top: 20px; }

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition);
}

.submit-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 150, 90, 0.3);
}

/* ============ SECTIONS ============ */
.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--primary);
    color: var(--text-light);
}

.section-deep {
    background: var(--primary-deep);
    color: var(--text-light);
}

.section-sand {
    background: var(--sand);
}

.section-ivory {
    background: var(--ivory);
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.section h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.section-dark h2,
.section-deep h2 {
    color: var(--text-light);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-body);
    max-width: 650px;
    margin: 0 auto 50px;
    text-align: center;
    line-height: 1.8;
}

.section-dark .section-subtitle,
.section-deep .section-subtitle {
    color: var(--text-muted);
}

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

/* ============ SERVICES GRID ============ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.service-card-overlay {
    position: relative;
    z-index: 2;
    padding: 30px 24px;
    background: linear-gradient(to top, rgba(20,44,44,0.92) 0%, rgba(20,44,44,0.4) 70%, transparent 100%);
}

.service-card h3 {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 6px;
}

.service-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.service-card .card-link {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
}

.service-card:hover .card-link { gap: 12px; }

/* ============ GALLERY GRID ============ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

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

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

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20,44,44,0.85) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-item-overlay h4 {
    color: var(--text-light);
    font-size: 0.95rem;
}

.gallery-item-overlay span {
    display: block;
    color: var(--accent);
    font-size: 0.8rem;
    margin-top: 4px;
}

/* ============ LOCATIONS TEXT GRID ============ */
.locations-list-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.location-text-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(184, 150, 90, 0.1);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    transition: all var(--transition);
    display: block;
}

.location-text-card:hover {
    background: rgba(184, 150, 90, 0.08);
    border-color: rgba(184, 150, 90, 0.25);
    transform: translateY(-4px);
}

.location-text-card h3 {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 6px;
    transition: color var(--transition);
}

.location-text-card:hover h3 {
    color: var(--accent);
}

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

/* ============ SEO CONTENT ============ */
.seo-content {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 50px;
    align-items: start;
}

.seo-content h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.seo-content h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin: 30px 0 12px;
}

.seo-content p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.seo-sidebar {
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 35px 28px;
    position: sticky;
    top: 100px;
}

.seo-sidebar h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(184, 150, 90, 0.2);
}

.seo-sidebar ul {
    list-style: none;
}

.seo-sidebar ul li {
    margin-bottom: 10px;
}

.seo-sidebar ul li a {
    color: var(--text-muted);
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    transition: all var(--transition);
}

.seo-sidebar ul li a::before {
    content: '→';
    color: var(--accent);
    font-weight: 700;
}

.seo-sidebar ul li a:hover {
    color: var(--accent);
    padding-left: 6px;
}

/* ============ MAP SECTION ============ */
.map-section {
    padding: 80px 0;
    background: var(--primary-deep);
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ============ CTA SECTION ============ */
.cta-section {
    padding: 80px 0;
    background: var(--accent);
    text-align: center;
}

.cta-section h2 {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: var(--radius);
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
}

.btn-light {
    background: #fff;
    color: var(--primary);
}

.btn-light:hover {
    background: var(--sand);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-accent {
    background: var(--accent);
    color: #fff;
}

.btn-accent:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 150, 90, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

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

/* ============ PAGE HEADER ============ */
.page-header {
    padding: 140px 0 60px;
    background: var(--primary-deep);
    color: var(--text-light);
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
}

.breadcrumb {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: var(--accent);
}

.breadcrumb span {
    margin: 0 8px;
    opacity: 0.5;
}

/* ============ CONTACT PAGE ============ */
.contact-hero {
    position: relative;
    padding: 140px 0 80px;
    background: var(--primary-deep);
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
}

.contact-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.contact-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(20,44,44,0.85), rgba(20,44,44,0.95));
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: -40px;
    position: relative;
    z-index: 3;
}

.contact-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 35px var(--shadow);
    transition: transform var(--transition);
}

.contact-card:hover {
    transform: translateY(-6px);
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-card-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: var(--accent);
    stroke-width: 2;
}

.contact-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-card p,
.contact-card a {
    font-size: 0.95rem;
    color: var(--text-body);
}

.contact-card a:hover {
    color: var(--accent);
}

.contact-card .hours {
    font-size: 0.85rem;
    color: var(--text-body);
    opacity: 0.7;
    margin-top: 6px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form-box {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 8px 30px var(--shadow);
}

.contact-form-box h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.contact-map-box {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 30px var(--shadow);
}

.contact-map-box iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
    border: none;
}

/* ============ FOOTER ============ */
.site-footer {
    background: var(--primary-deep);
    color: var(--text-muted);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-col h4 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: all var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.88rem;
}

.footer-contact-item .icon {
    color: var(--accent);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.82rem;
}

.footer-bottom a {
    color: var(--accent);
}

/* ============ STICKY QUOTE BUTTON ============ */
.sticky-quote-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 16px 28px;
    border-radius: var(--radius);
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(184, 150, 90, 0.35);
    transition: all var(--transition);
    white-space: nowrap;
    max-width: 200px;
}

.sticky-quote-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(184, 150, 90, 0.45);
}

/* ============ MODAL ============ */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(20, 44, 44, 0.7);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.modal-content {
    background: var(--sand);
    border-radius: var(--radius-lg);
    padding: 45px 40px;
    max-width: 560px;
    width: 100%;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.35s ease;
}

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

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-body);
    cursor: pointer;
    transition: color var(--transition);
    line-height: 1;
}

.modal-close:hover { color: var(--accent); }

/* ============ REVEAL ANIMATION ============ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ ABOUT PAGE ============ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
}

.stat-number {
    font-family: 'Libre Baskerville', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.about-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.about-image-grid img {
    border-radius: var(--radius);
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* ============ FAQ PAGE ============ */
.faq-item {
    background: #fff;
    border-radius: var(--radius-lg);
    margin-bottom: 14px;
    box-shadow: 0 4px 15px var(--shadow);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(30, 58, 58, 0.12);
}

.faq-question {
    padding: 24px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Libre Baskerville', serif;
    font-size: 1.1rem;
    color: var(--text-dark);
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(30, 58, 58, 0.02);
}

.faq-toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-left: 20px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 28px 24px;
}

.faq-answer p {
    color: var(--text-body);
    line-height: 1.7;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-text { margin: 0 auto 30px; }
    .hero-badges { justify-content: center; }
    .hero-form-wrapper { max-width: 520px; margin: 40px auto 0; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .locations-list-grid { grid-template-columns: repeat(3, 1fr); }
    .seo-content { grid-template-columns: 1fr; }
    .seo-sidebar { position: static; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-cards { grid-template-columns: repeat(3, 1fr); }
    
    .header-contact { display: none; }
    .mobile-toggle { display: flex; }
    
    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        background: var(--primary-deep);
        flex-direction: column;
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        max-height: calc(100vh - 72px);
        overflow-y: auto;
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .main-nav > li > a { padding: 14px 16px; }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        background: rgba(0,0,0,0.1);
        border-radius: var(--radius);
        margin: 4px 0;
        transform: scaleY(1);
        opacity: 1;
        visibility: visible;
        display: none;
    }
    
    .dropdown-menu.mobile-open {
        display: block;
    }
    
    .dropdown-menu li {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 768px) {
    :root { font-size: 15px; }
    .hero h1 { font-size: 2.2rem; }
    .section { padding: 70px 0; }
    .section h2 { font-size: 1.8rem; }
    .page-header h1 { font-size: 2rem; }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .locations-list-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-cards { grid-template-columns: 1fr; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .sticky-quote-btn { bottom: 16px; right: 50%; transform: translateX(50%); }
    .sticky-quote-btn:hover { transform: translateX(50%) translateY(-3px); }
    .about-stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .hero-form-wrapper { padding: 28px 20px 40px; }
    .modal-content { padding: 30px 24px; }
    .about-image-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr; }
}
