/* ============================================================
   Miami Wallpapering Service — style.css
   Palette: Midnight Green / Deep Gray-Green / Mineral Stone / Muted Copper
   Fonts: Playfair Display (headings) + Raleway (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&family=Raleway:wght@300;400;500;600;700&display=swap');

/* ---------- RESET & VARIABLES ---------- */
:root {
    --midnight: #0d2b2a;
    --deep-green: #163332;
    --forest: #1e4745;
    --mineral: #d5cec0;
    --mineral-light: #e8e3d9;
    --mineral-pale: #f2efe8;
    --copper: #b87333;
    --copper-light: #d4955a;
    --copper-dark: #8a5524;
    --text-light: #ddd8cc;
    --text-dark: #1a2e2d;
    --white: #faf8f4;
    --black: #0a1a19;
    --shadow: rgba(10, 26, 25, .25);
    --transition: .35s cubic-bezier(.4, 0, .2, 1);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Raleway', 'Segoe UI', sans-serif;
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--mineral-pale);
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }

.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(--midnight);
    border-bottom: 1px solid rgba(184, 115, 51, .2);
    transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 20px var(--shadow); }

.header-topbar {
    border-bottom: 1px solid rgba(184, 115, 51, .18);
    background: rgba(10, 26, 25, .6);
}

.header-topbar .header-contact {
    display: flex; align-items: center; justify-content: flex-end; gap: 16px;
    max-width: 1320px; margin: 0 auto; padding: 8px 24px;
}

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

.logo a {
    font-family: var(--font-heading); font-size: 1.35rem; font-weight: 700;
    color: var(--text-light); letter-spacing: .5px;
}
.logo a span { color: var(--copper); }

/* --- Main Nav --- */
.main-nav {
    display: flex; align-items: center; gap: 4px;
}
.main-nav > li { position: relative; }
.main-nav > li > a {
    display: block; padding: 24px 14px;
    font-family: var(--font-body); font-size: .82rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1.2px;
    color: var(--text-light); position: relative;
}
.main-nav > li > a::after {
    content: ''; position: absolute; bottom: 18px; left: 14px;
    width: 0; height: 2px; background: var(--copper);
    transition: width var(--transition);
}
.main-nav > li:hover > a::after,
.main-nav > li > a.active::after { width: calc(100% - 28px); }
.main-nav > li > a:hover { color: var(--copper-light); }

/* --- Dropdown (wallpaper-unroll animation) --- */
.dropdown-menu {
    position: absolute; top: 100%; left: 0; min-width: 260px;
    background: var(--deep-green);
    border: 1px solid rgba(184, 115, 51, .15);
    border-top: 3px solid var(--copper);
    box-shadow: 0 12px 36px var(--shadow);
    opacity: 0; visibility: hidden;
    transform: scaleY(0); transform-origin: top center;
    transition: opacity .3s ease, transform .35s cubic-bezier(.23, 1, .32, 1), visibility .3s;
    z-index: 100;
}
.main-nav > li:hover > .dropdown-menu {
    opacity: 1; visibility: visible; transform: scaleY(1);
}

.dropdown-menu li {
    opacity: 0; transform: translateY(-8px);
    transition: opacity .25s ease, transform .25s ease;
}
.main-nav > li:hover > .dropdown-menu li {
    opacity: 1; transform: translateY(0);
}
/* Staggered appearance for each item */
.main-nav > li:hover > .dropdown-menu li:nth-child(1)  { transition-delay: .06s; }
.main-nav > li:hover > .dropdown-menu li:nth-child(2)  { transition-delay: .10s; }
.main-nav > li:hover > .dropdown-menu li:nth-child(3)  { transition-delay: .14s; }
.main-nav > li:hover > .dropdown-menu li:nth-child(4)  { transition-delay: .18s; }
.main-nav > li:hover > .dropdown-menu li:nth-child(5)  { transition-delay: .22s; }
.main-nav > li:hover > .dropdown-menu li:nth-child(6)  { transition-delay: .26s; }
.main-nav > li:hover > .dropdown-menu li:nth-child(7)  { transition-delay: .30s; }
.main-nav > li:hover > .dropdown-menu li:nth-child(8)  { transition-delay: .34s; }
.main-nav > li:hover > .dropdown-menu li:nth-child(9)  { transition-delay: .38s; }
.main-nav > li:hover > .dropdown-menu li:nth-child(10) { transition-delay: .42s; }
.main-nav > li:hover > .dropdown-menu li:nth-child(11) { transition-delay: .46s; }

.dropdown-menu a {
    display: block; padding: 11px 22px;
    font-size: .85rem; font-weight: 500; color: var(--text-light);
    border-bottom: 1px solid rgba(255,255,255,.05);
    transition: background var(--transition), padding-left var(--transition), color var(--transition);
}
.dropdown-menu a:hover {
    background: rgba(184, 115, 51, .12);
    padding-left: 30px; color: var(--copper-light);
}
.submenu-toggle { display: none; }

/* --- Header Contact --- */
.header-contact {
    display: flex; align-items: center; gap: 16px;
}
.header-contact a {
    font-size: .82rem; font-weight: 500; color: var(--text-light);
    display: flex; align-items: center; gap: 6px;
}
.header-contact a:hover { color: var(--copper-light); }
.header-contact svg {
    width: 16px; height: 16px; fill: var(--copper);
}

/* --- Mobile Toggle --- */
.mobile-toggle {
    display: none; background: none; border: none; cursor: pointer;
    width: 30px; height: 24px; position: relative; z-index: 1001;
}
.mobile-toggle span {
    display: block; width: 100%; height: 2px; background: var(--text-light);
    position: absolute; left: 0; transition: var(--transition);
}
.mobile-toggle span:nth-child(1) { top: 0; }
.mobile-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.mobile-toggle span:nth-child(3) { bottom: 0; }
.mobile-toggle.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    background-size: cover; background-position: center;
    background-attachment: fixed;
    padding: 120px 0 80px;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(13,43,42,.92) 0%, rgba(22,51,50,.8) 50%, rgba(13,43,42,.7) 100%);
}
.hero-inner {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    align-items: center;
}
.hero-text h1 {
    font-family: var(--font-heading); font-size: 3.2rem; font-weight: 800;
    color: var(--white); line-height: 1.15; margin-bottom: 20px;
}
.hero-text h1 em {
    font-style: italic; color: var(--copper-light); display: block;
}
.hero-text p {
    font-size: 1.1rem; color: var(--text-light); line-height: 1.8;
    margin-bottom: 28px; max-width: 520px;
}
.hero-badges {
    display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(184,115,51,.15); border: 1px solid rgba(184,115,51,.3);
    padding: 6px 16px; border-radius: 2px;
    font-size: .82rem; font-weight: 600; color: var(--copper-light);
}
.hero-badge svg { width: 14px; height: 14px; fill: var(--copper); }

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
    position: relative; padding: 160px 0 80px;
    background-size: cover; background-position: center;
    text-align: center;
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(13,43,42,.9), rgba(13,43,42,.75));
}
.page-hero-content {
    position: relative; z-index: 2; max-width: 700px; margin: 0 auto; padding: 0 24px;
}
.page-hero-content h1 {
    font-family: var(--font-heading); font-size: 2.8rem; font-weight: 700;
    color: var(--white); margin-bottom: 16px;
}
.page-hero-content p {
    font-size: 1.1rem; color: var(--text-light); line-height: 1.7;
}

/* ---------- SECTIONS ---------- */
.section { padding: 90px 0; }
.section-midnight { background: var(--midnight); color: var(--text-light); }
.section-deep { background: var(--deep-green); color: var(--text-light); }
.section-mineral { background: var(--mineral-pale); color: var(--text-dark); }
.section-stone { background: var(--mineral); color: var(--text-dark); }

.section-title {
    font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700;
    text-align: center; margin-bottom: 12px;
}
.section-subtitle {
    text-align: center; font-size: 1.05rem; max-width: 640px;
    margin: 0 auto 50px; line-height: 1.7; opacity: .85;
}
.section-divider {
    width: 60px; height: 3px; background: var(--copper);
    margin: 16px auto 0;
}

/* ---------- SERVICES CARDS ---------- */
.services-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
}
.service-card {
    background: var(--white); border: 1px solid rgba(0,0,0,.06);
    overflow: hidden; transition: transform var(--transition), box-shadow var(--transition);
    display: flex; flex-direction: column;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(10,26,25,.12);
}
.service-card-img {
    height: 220px; overflow: hidden;
}
.service-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-body {
    padding: 24px;
    display: flex; flex-direction: column; flex: 1;
}
.service-card-body h3 {
    font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600;
    margin-bottom: 10px; color: var(--text-dark);
}
.service-card-body p {
    font-size: .92rem; line-height: 1.65; color: #5a6b6a; margin-bottom: 16px;
}
.service-card-body .card-link {
    font-size: .85rem; font-weight: 600; color: var(--copper);
    text-transform: uppercase; letter-spacing: .8px;
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition);
    margin-top: auto;
    align-self: flex-start;
}
.service-card-body .card-link:hover { border-color: var(--copper); }

/* ---------- WHY CHOOSE US ---------- */
.features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.feature-card {
    text-align: center; padding: 40px 28px;
    background: rgba(184,115,51,.06); border: 1px solid rgba(184,115,51,.12);
    transition: background var(--transition);
}
.feature-card:hover { background: rgba(184,115,51,.12); }
.feature-icon {
    width: 56px; height: 56px; margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid var(--copper); border-radius: 50%;
}
.feature-icon svg { width: 24px; height: 24px; fill: var(--copper); }
.feature-card h3 {
    font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600;
    margin-bottom: 10px;
}
.feature-card p { font-size: .9rem; line-height: 1.65; opacity: .85; }

/* ---------- GALLERY ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.gallery-item {
    overflow: hidden; position: relative; aspect-ratio: 3/4;
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 12px 16px;
    background: linear-gradient(transparent, rgba(13,43,42,.85));
    font-size: .82rem; font-weight: 500; color: var(--white);
    transform: translateY(100%); transition: transform var(--transition);
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* ---------- CONTENT GRID (text + image) ---------- */
.content-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 50px;
    align-items: center;
}
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }
.content-text h2 {
    font-family: var(--font-heading); font-size: 2rem; font-weight: 700;
    margin-bottom: 20px; line-height: 1.25;
}
.content-text p { margin-bottom: 16px; line-height: 1.8; }
.content-text ul { margin: 16px 0; padding-left: 0; }
.content-text ul li {
    padding: 8px 0 8px 24px; position: relative;
    font-size: .95rem; line-height: 1.7;
}
.content-text ul li::before {
    content: ''; position: absolute; left: 0; top: 16px;
    width: 8px; height: 8px; background: var(--copper); border-radius: 50%;
}
.content-img img {
    width: 100%; border: 1px solid rgba(0,0,0,.06);
}

/* ---------- LOCATIONS GRID ---------- */
.locations-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.location-card {
    position: relative; overflow: hidden;
    background: var(--forest); text-align: center;
    padding: 32px 16px; border: 1px solid rgba(184,115,51,.15);
    transition: background var(--transition), transform var(--transition);
}
.location-card:hover {
    background: var(--deep-green); transform: translateY(-4px);
}
.location-card h3,
.location-card .location-name {
    font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600;
    color: var(--white); margin-bottom: 6px;
}
.location-card p {
    font-size: .8rem; color: var(--copper-light); font-weight: 500;
}

/* ---------- STATS ---------- */
.stats-section { padding: 70px 0; }
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
    text-align: center;
}
.stat-item h3 {
    font-family: var(--font-heading); font-size: 2.8rem; font-weight: 800;
    color: var(--copper); margin-bottom: 6px;
}
.stat-item p { font-size: .95rem; font-weight: 500; }

/* ---------- CTA SECTION ---------- */
.cta-section {
    background: linear-gradient(135deg, var(--midnight), var(--forest));
    text-align: center; padding: 80px 24px;
}
.cta-section h2,
.cta-section .cta-title {
    font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700;
    color: var(--white); margin-bottom: 16px;
}
.cta-section p {
    font-size: 1.05rem; color: var(--text-light); max-width: 560px;
    margin: 0 auto 32px; line-height: 1.7;
}
.cta-btn {
    display: inline-block; padding: 14px 40px;
    background: transparent; color: var(--copper-light);
    border: 2px solid var(--copper);
    font-family: var(--font-body); font-size: .9rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1.5px;
    cursor: pointer; position: relative; overflow: hidden;
    transition: color var(--transition), background var(--transition);
}
.cta-btn:hover {
    background: var(--copper); color: var(--white);
}

/* ---------- CONTACT FORM ---------- */
.feedback-form-container {
    background: var(--white); padding: 40px; max-width: 560px;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 8px 32px rgba(10,26,25,.08);
}
.feedback-form-container h3,
.feedback-form-container .quote-title {
    font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700;
    color: var(--text-dark); margin-bottom: 24px; text-align: center;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 0; }
.form-group:last-child { margin-bottom: 0; }
.contact-form input,
.contact-form textarea {
    width: 100%; padding: 14px 16px;
    background: var(--mineral-pale); border: 1px solid rgba(0,0,0,.1);
    font-family: var(--font-body); font-size: .92rem; color: var(--text-dark);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--copper); box-shadow: 0 0 0 3px rgba(184,115,51,.1);
}
.contact-form textarea { min-height: 120px; resize: vertical; margin-bottom: 16px; }
.form-submit { text-align: center; }
.submit-btn {
    display: inline-block; padding: 14px 48px;
    background: var(--copper); color: var(--white); border: 2px solid var(--copper);
    font-family: var(--font-body); font-size: .9rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1.2px; cursor: pointer;
    transition: background var(--transition), color var(--transition);
}
.submit-btn:hover { background: var(--copper-dark); border-color: var(--copper-dark); }

#form-success p {
    text-align: center; padding: 24px; font-size: 1rem;
    color: var(--copper); font-weight: 600;
}

/* ---------- CONTACT PAGE ---------- */
.contact-info-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
    margin-bottom: 50px;
}
.contact-info-card {
    text-align: center; padding: 36px 24px;
    background: var(--white); border: 1px solid rgba(0,0,0,.06);
    transition: transform var(--transition), box-shadow var(--transition);
}
.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(10,26,25,.08);
}
.contact-icon {
    width: 52px; height: 52px; margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid var(--copper); border-radius: 50%;
}
.contact-icon svg { width: 22px; height: 22px; fill: var(--copper); }
.contact-info-card h3 {
    font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600;
    margin-bottom: 8px; color: var(--text-dark);
}
.contact-info-card a,
.contact-info-card p {
    font-size: .92rem; color: #5a6b6a; line-height: 1.6;
}
.contact-info-card a:hover { color: var(--copper); }

/* ---------- MAP ---------- */
.map-section { width: 100%; }
.map-section iframe {
    width: 100%; height: 420px; border: none; display: block;
    filter: saturate(.85) contrast(1.05);
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid rgba(0,0,0,.08); margin-bottom: 0;
}
.faq-question {
    display: flex; justify-content: space-between; align-items: center;
    padding: 22px 0; cursor: pointer;
    font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600;
    color: var(--text-dark); transition: color var(--transition);
}
.faq-question:hover { color: var(--copper); }
.faq-icon {
    font-size: 1.5rem; font-weight: 300; color: var(--copper);
    transition: transform var(--transition);
    flex-shrink: 0; margin-left: 16px;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height .4s ease, padding .4s ease;
}
.faq-item.active .faq-answer { max-height: 300px; padding-bottom: 20px; }
.faq-answer p { font-size: .95rem; line-height: 1.75; color: #5a6b6a; }

/* ---------- FOOTER ---------- */
.site-footer {
    background: var(--black); color: var(--text-light); padding: 60px 0 0;
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
    max-width: 1200px; margin: 0 auto; padding: 0 24px 40px;
}
.footer-grid .footer-brand {
    font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600;
    color: var(--white); margin-bottom: 16px;
}
.footer-grid h4,
.footer-grid .footer-title {
    font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600;
    color: var(--white); margin-bottom: 16px;
    padding-bottom: 10px; border-bottom: 2px solid var(--copper);
    display: inline-block;
}
.footer-grid p { font-size: .88rem; line-height: 1.7; opacity: .75; }
.footer-grid ul li { margin-bottom: 8px; }
.footer-grid ul a {
    font-size: .88rem; opacity: .75;
    transition: opacity var(--transition), color var(--transition);
}
.footer-grid ul a:hover { opacity: 1; color: var(--copper-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    text-align: center; padding: 20px 24px;
    font-size: .82rem; opacity: .6;
}

/* ---------- STICKY QUOTE BUTTON ---------- */
.sticky-quote-btn {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    padding: 14px 32px;
    background: var(--copper); color: var(--white);
    border: none; cursor: pointer;
    font-family: var(--font-body); font-size: .88rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.2px;
    box-shadow: 0 6px 24px rgba(184,115,51,.35);
    transition: background var(--transition), transform var(--transition);
}
.sticky-quote-btn:hover { background: var(--copper-dark); transform: translateY(-2px); }

/* ---------- MODAL ---------- */
.modal-overlay {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(10,26,25,.7); backdrop-filter: blur(4px);
    display: none; align-items: center; justify-content: center;
    opacity: 0; transition: opacity .3s ease;
}
.modal-overlay.active { display: flex; opacity: 1; }
.modal-content {
    position: relative; width: 90%; max-width: 560px;
    max-height: 90vh; overflow-y: auto;
    animation: modalSlideIn .35s ease;
}
@keyframes modalSlideIn {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.modal-close {
    position: absolute; top: 12px; right: 16px;
    background: none; border: none; cursor: pointer;
    font-size: 1.8rem; color: var(--text-dark); line-height: 1;
    transition: color var(--transition);
}
.modal-close:hover { color: var(--copper); }

/* ---------- LOCATION PAGE SPECIFIC ---------- */
.location-hero-img {
    width: 100%; height: 300px; object-fit: cover;
    border: 1px solid rgba(0,0,0,.06); margin-bottom: 32px;
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .locations-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-text h1 { font-size: 2.6rem; }
}

@media (max-width: 768px) {
    .header-topbar { display: none; }
    .header-top {
        min-height: 64px;
        height: auto;
        padding: 10px 16px;
    }
    .logo { max-width: calc(100% - 56px); }
    .logo a {
        font-size: 1.02rem;
        line-height: 1.2;
        letter-spacing: .2px;
        display: block;
    }
    .mobile-toggle { display: block; }
    .main-nav {
        position: fixed; top: 0; right: -100%; width: min(320px, 88vw); height: 100vh;
        background: var(--midnight); flex-direction: column;
        align-items: flex-start; padding: 80px 24px 24px;
        transition: right var(--transition);
        overflow-y: auto; gap: 0;
    }
    .main-nav.active { right: 0; }
    .main-nav > li { width: 100%; }
    .main-nav > li > a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
    .main-nav > li.has-submenu { position: relative; }
    .main-nav > li.has-submenu > a { padding-right: 34px; }
    .submenu-toggle {
        display: block;
        position: absolute;
        right: 0;
        top: 6px;
        width: 30px;
        height: 30px;
        border: none;
        background: transparent;
        cursor: pointer;
    }
    .submenu-toggle::before,
    .submenu-toggle::after {
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        width: 12px;
        height: 2px;
        background: var(--copper-light);
        transform: translate(-50%, -50%);
        transition: transform var(--transition), opacity var(--transition);
    }
    .submenu-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
    .main-nav > li.mobile-open > .submenu-toggle::after {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(0);
    }
    .main-nav > li > a::after { display: none; }

    .dropdown-menu {
        position: static; transform: none; opacity: 1; visibility: visible;
        background: rgba(255,255,255,.03); border: none; border-top: none;
        box-shadow: none; display: none;
        margin-top: 6px;
    }
    .main-nav > li.mobile-open > .dropdown-menu { display: block; }
    .dropdown-menu li { opacity: 1; transform: none; }
    .dropdown-menu a {
        padding: 10px 0 10px 14px;
        font-size: .82rem;
        border-bottom: 1px solid rgba(255,255,255,.04);
    }

    .hero-inner { grid-template-columns: 1fr; gap: 32px; }
    .hero-text h1 { font-size: 2.2rem; }
    .hero { min-height: auto; padding: 120px 0 60px; }
    .content-grid { grid-template-columns: 1fr; gap: 32px; }
    .content-grid.reverse { direction: ltr; }
    .services-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .locations-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-info-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .section { padding: 60px 0; }
    .page-hero { padding: 120px 0 60px; }
    .page-hero-content h1 { font-size: 2rem; }
    .section-title { font-size: 1.8rem; }
    .feedback-form-container { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; }

    .sticky-quote-btn {
        bottom: 0; right: 0; left: 0; width: 100%;
        text-align: center; border-radius: 0;
    }
}

@media (max-width: 480px) {
    .header-top { min-height: 60px; padding: 10px 14px; }
    .logo a { font-size: .94rem; }
    .hero-text h1 { font-size: 1.8rem; }
    .locations-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .stat-item h3 { font-size: 2rem; }
}
