/* A-Strip Away Wallpaper - Federal Monumental Design System */
/* Color Palette: Slate Blue (#334155), Marble White (#f8fafc), Brick Red (#9b2c2c) */

/* ===== CSS VARIABLES ===== */
:root {
    --slate-blue: #334155;
    --slate-blue-dark: #1e293b;
    --slate-blue-light: #475569;
    --marble-white: #f8fafc;
    --marble-cream: #f1f5f9;
    --brick-red: #9b2c2c;
    --brick-red-dark: #7f1d1d;
    --brick-red-light: #b91c1c;
    --gold-accent: #b8860b;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

/* ===== BASE RESET ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--marble-white);
    padding-top: 80px; /* Fixed header offset */
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--slate-blue-dark);
}

h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.375rem;
    margin-bottom: 0.875rem;
}

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

a {
    color: var(--brick-red);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* ===== HEADER & NAVIGATION ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--slate-blue);
    box-shadow: var(--shadow-lg);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

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

.logo-text {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--marble-white);
    letter-spacing: -0.02em;
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-list a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--marble-cream);
    font-weight: 500;
    font-size: 0.9375rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-list a:hover {
    background: rgba(255,255,255,0.1);
    color: var(--marble-white);
}

.nav-list .dropdown {
    position: relative;
}

.nav-list .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--marble-white);
    border-radius: 8px;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    z-index: 100;
}

.nav-list .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.625rem 1.25rem;
    color: var(--text-dark);
    font-size: 0.875rem;
}

.dropdown-menu a:hover {
    background: var(--marble-cream);
    color: var(--brick-red);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--brick-red);
    color: var(--marble-white) !important;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.header-cta:hover {
    background: var(--brick-red-dark);
    transform: translateY(-2px);
}

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

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--marble-white);
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--slate-blue) 0%, var(--slate-blue-dark) 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(51,65,85,0.95) 0%, rgba(30,41,59,0.9) 100%);
}

.hero-container {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    color: var(--marble-white);
    font-size: 3.25rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-content h1 span {
    color: var(--gold-accent);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--marble-cream);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--marble-cream);
    font-size: 0.9375rem;
}

.hero-feature svg {
    color: var(--gold-accent);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--brick-red);
    color: var(--marble-white);
    font-weight: 600;
    font-size: 1.0625rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: var(--brick-red-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(155,44,44,0.3);
    color: var(--marble-white);
}

/* ===== LEAD FORM ===== */
.feedback-form-container {
    background: var(--marble-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-xl);
}

.feedback-form-container h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    color: var(--slate-blue-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--marble-white);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--slate-blue);
    box-shadow: 0 0 0 3px rgba(51,65,85,0.1);
}

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

.contact-form .form-submit {
    margin-top: 1rem;
}

.contact-form .submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--brick-red);
    color: var(--marble-white);
    border: none;
    border-radius: 8px;
    font-size: 1.0625rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form .submit-btn:hover {
    background: var(--brick-red-dark);
    transform: translateY(-2px);
}

#form-success {
    text-align: center;
    padding: 1.5rem;
    background: #ecfdf5;
    border-radius: 8px;
    margin-top: 1rem;
}

#form-success p {
    color: #065f46;
    margin: 0;
}

/* ===== SECTIONS ===== */
.section {
    padding: 5rem 0;
}

.section-alt {
    background: var(--marble-cream);
}

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

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--brick-red);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-top: 1rem;
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--marble-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.service-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--slate-blue) 0%, var(--slate-blue-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-card-icon svg {
    width: 32px;
    height: 32px;
    color: var(--marble-white);
}

.service-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brick-red);
    font-weight: 600;
}

.service-card-link:hover {
    gap: 0.75rem;
}

/* ===== AREAS GRID ===== */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.area-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-md);
}

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

.area-card:hover img {
    transform: scale(1.1);
}

.area-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30,41,59,0.9) 0%, rgba(30,41,59,0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.area-card h3 {
    color: var(--marble-white);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.area-card p {
    color: var(--marble-cream);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* ===== WHY CHOOSE US ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.why-item {
    display: flex;
    gap: 1.25rem;
}

.why-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--marble-cream);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brick-red);
}

.why-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.why-content p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--marble-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--brick-red);
}

.testimonial-stars {
    color: var(--gold-accent);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.testimonial-author-info p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--slate-blue) 0%, var(--slate-blue-dark) 100%);
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--marble-white);
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--marble-cream);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--brick-red);
    color: var(--marble-white);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--brick-red-dark);
    transform: translateY(-2px);
    color: var(--marble-white);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--marble-white);
    border: 2px solid var(--marble-white);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--marble-white);
    color: var(--slate-blue);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--slate-blue-dark);
    color: var(--marble-cream);
    padding: 4rem 0 0;
}

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

.footer-brand p {
    color: var(--marble-cream);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--marble-cream);
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
    color: var(--gold-accent);
}

.footer-heading {
    font-family: 'Merriweather', serif;
    font-size: 1.125rem;
    color: var(--marble-white);
    margin-bottom: 1.5rem;
}

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

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

.footer-links a {
    color: var(--marble-cream);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-accent);
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.875rem;
    opacity: 0.8;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--marble-cream);
    font-size: 0.875rem;
    opacity: 0.8;
}

.footer-legal a:hover {
    opacity: 1;
    color: var(--gold-accent);
}

/* ===== PAGE HEADERS ===== */
.page-header {
    background: linear-gradient(135deg, var(--slate-blue) 0%, var(--slate-blue-dark) 100%);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    color: var(--marble-white);
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--marble-cream);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.breadcrumb a {
    color: var(--marble-cream);
    opacity: 0.8;
}

.breadcrumb a:hover {
    opacity: 1;
    color: var(--gold-accent);
}

.breadcrumb span {
    color: var(--marble-cream);
    opacity: 0.6;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
    padding: 4rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.content-main h2 {
    margin-top: 2rem;
}

.content-main h2:first-child {
    margin-top: 0;
}

.content-main ul,
.content-main ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content-main li {
    margin-bottom: 0.5rem;
}

.content-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--marble-cream);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-widget h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

/* ===== FAQ ACCORDION ===== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--marble-white);
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-family: 'Merriweather', serif;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--slate-blue-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--marble-cream);
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--marble-cream);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--slate-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--marble-white);
}

.contact-info-content h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-info-content p {
    margin-bottom: 0;
    color: var(--text-muted);
}

.contact-info-content a {
    color: var(--brick-red);
    font-weight: 500;
}

/* Map Facade */
.map-facade {
    position: relative;
    background: var(--marble-cream);
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
}

.map-facade-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--slate-blue-light) 0%, var(--slate-blue) 100%);
    color: var(--marble-white);
    transition: opacity 0.3s ease;
}

.map-facade-placeholder svg {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.map-facade-placeholder p {
    color: var(--marble-cream);
    margin: 0;
}

.map-facade.loaded .map-facade-placeholder {
    opacity: 0;
    pointer-events: none;
}

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

/* ===== SERVICE AREA PAGE ===== */
.area-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.area-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(51,65,85,0.9) 0%, rgba(30,41,59,0.85) 100%);
}

.area-hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.area-hero h1 {
    color: var(--marble-white);
    margin-bottom: 1rem;
}

.area-hero p {
    color: var(--marble-cream);
    font-size: 1.25rem;
    max-width: 700px;
}

/* Location-specific accent colors */
.area-hollywood { --area-accent: #ff6b6b; }
.area-van-nuys { --area-accent: #4ecdc4; }
.area-koreatown { --area-accent: #ff8c42; }
.area-westlake { --area-accent: #6c5ce7; }
.area-sun-valley { --area-accent: #feca57; }
.area-mid-city { --area-accent: #48dbfb; }
.area-san-pedro { --area-accent: #1dd1a1; }
.area-sylmar { --area-accent: #ff9ff3; }
.area-boyle-heights { --area-accent: #f368e0; }
.area-northridge { --area-accent: #54a0ff; }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .header-container {
        height: 70px;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--slate-blue);
        padding: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-list .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255,255,255,0.05);
        border-radius: 0;
        padding-left: 1rem;
    }
    
    .nav-list .dropdown-menu a {
        color: var(--marble-cream);
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .header-cta {
        display: none;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-content h1 {
        font-size: 2.25rem;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.875rem;
    }
    
    .feedback-form-container {
        padding: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

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

:focus-visible {
    outline: 3px solid var(--brick-red);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --slate-blue: #1a1a2e;
        --brick-red: #8b0000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
