@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --color-primary: #0f172a;       /* Slate 900 */
    --color-secondary: #1e293b;     /* Slate 800 */
    --color-accent: #c59739;        /* Gold/Bronze */
    --color-accent-hover: #a37a28;
    --color-accent-light: #fdfaf3;
    --color-text-main: #334155;     /* Slate 700 */
    --color-text-dark: #0f172a;
    --color-text-light: #64748b;    /* Slate 500 */
    --color-text-white: #ffffff;
    --color-bg-light: #f8fafc;      /* Slate 50 */
    --color-bg-white: #ffffff;
    --color-border: #e2e8f0;        /* Slate 200 */
    --color-success: #10b981;       /* Emerald 500 */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
}

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

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--color-text-main);
    background-color: var(--color-bg-white);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--color-text-dark);
    font-weight: 700;
    line-height: 1.25;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    transition: var(--transition-smooth);
}

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

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

.section {
    padding: 5rem 0;
}

.section-bg {
    background-color: var(--color-bg-light);
}

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

/* Showroom Notification Top Bar */
.top-bar {
    background-color: var(--color-primary);
    color: var(--color-text-white);
    font-size: 0.875rem;
    padding: 0.65rem 1rem;
    text-align: center;
    border-bottom: 2px solid var(--color-accent);
    position: relative;
    z-index: 100;
}

.top-bar strong {
    color: var(--color-accent);
    font-weight: 600;
}

.top-bar a {
    color: var(--color-text-white);
    text-decoration: underline;
    font-weight: 600;
    margin-left: 0.5rem;
}

.top-bar a:hover {
    color: var(--color-accent);
}

/* Header & Navigation */
.site-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 90;
    transition: var(--transition-smooth);
}

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

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
}

.logo-icon {
    color: var(--color-accent);
    display: flex;
    align-items: center;
}

.logo-sub {
    font-weight: 400;
    font-size: 0.9rem;
    display: block;
    color: var(--color-text-light);
    margin-top: -0.25rem;
}

/* Main Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.75rem;
    height: 100%;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 5rem; /* Matches header container height */
}

.nav-link {
    font-weight: 500;
    color: var(--color-text-main);
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 0.15rem;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

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

/* Category chevrons */
.has-mega-menu > .nav-link::after {
    content: '';
    display: inline-block;
    width: 0.35rem;
    height: 0.35rem;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-left: 0.4rem;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: -0.1rem;
}

.has-mega-menu:hover > .nav-link::after {
    transform: rotate(-135deg);
}

/* Dropdown Menu styling */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    border-radius: 0.5rem;
    padding: 0.75rem 0;
    width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 95;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-main);
}

.dropdown-link:hover {
    background-color: var(--color-bg-light);
    color: var(--color-accent);
}

.header-ctas {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.phone-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-text-white);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
}

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

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-text-white);
}

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

.btn-white:hover {
    background-color: var(--color-bg-light);
    color: var(--color-accent);
}

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

/* Mobile Menu Toggle button */
.mobile-toggle {
    display: none;
    color: var(--color-primary);
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 7rem 0 6rem;
    background-color: var(--color-primary);
    color: var(--color-text-white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(197, 151, 57, 0.15) 0%, rgba(15, 23, 42, 0) 60%);
    opacity: 0.9;
    z-index: 1;
}

.hero-content-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
    color: var(--color-text-white);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--color-text-light);
    margin-bottom: 2.25rem;
    max-width: 90%;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.feature-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: #cbd5e1; /* slate 300 */
}

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

.hero-image-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-image-wrapper img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

/* Niche-Specific Section: Showroom Alert & Details */
.showroom-feature {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    border-radius: 1rem;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 0;
    margin-top: -3.5rem;
    position: relative;
    z-index: 10;
}

.showroom-details {
    padding: 3rem;
}

.kicker {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.showroom-details h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.showroom-details p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.showroom-address {
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    background-color: var(--color-bg-light);
    padding: 0.75rem 1.25rem;
    border-left: 4px solid var(--color-accent);
    border-radius: 0 0.25rem 0.25rem 0;
}

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

.showroom-point {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--color-text-dark);
    font-size: 0.95rem;
}

.showroom-point svg {
    color: var(--color-accent);
}

.showroom-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.2fr 0.8fr;
    gap: 0.5rem;
    background-color: var(--color-primary);
    padding: 0.5rem;
}

.showroom-photo {
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 0.25rem;
    min-height: 180px;
}

.showroom-photo.main {
    grid-column: span 2;
    min-height: 250px;
}

/* Service Cards / Product Grid */
.section-title-wrap {
    margin-bottom: 3.5rem;
}

.section-title-wrap h2 {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}

.section-title-wrap p {
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

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

.service-card {
    background-color: var(--color-bg-white);
    border-radius: 0.75rem;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
}

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

.service-card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.service-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

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

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

.service-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

.card-link {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-accent);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.card-link:hover {
    color: var(--color-primary);
}

/* Why Choose Us & Trust badges */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

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

.why-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--color-accent-light);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 1.5rem;
    flex-shrink: 0;
    border: 1px solid rgba(197, 151, 57, 0.2);
}

.why-text h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.why-text p {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

/* Trust Strips & Badges */
.trust-strip {
    background-color: var(--color-secondary);
    color: var(--color-text-white);
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.badge-icon {
    font-size: 2.25rem;
    color: var(--color-accent);
}

.badge-text h4 {
    color: var(--color-text-white);
    font-size: 1rem;
    margin-bottom: 0.15rem;
}

.badge-text p {
    font-size: 0.85rem;
    color: #94a3b8; /* slate 400 */
}

/* Brochures */
.brochure-card {
    background-color: var(--color-bg-white);
    border-radius: 0.75rem;
    border: 1px solid var(--color-border);
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

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

.brochure-icon {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 1.25rem;
}

.brochure-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.brochure-card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

/* FAQ Accordion Styling */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    overflow: hidden;
    background-color: var(--color-bg-white);
    transition: var(--transition-smooth);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-primary);
}

.faq-question:hover {
    background-color: var(--color-bg-light);
    color: var(--color-accent);
}

.faq-icon-indicator {
    transition: var(--transition-smooth);
    color: var(--color-accent);
}

.faq-item.active .faq-icon-indicator {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.25rem;
    max-height: 250px;
    border-top: 1px solid var(--color-border);
}

/* Portfolio Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    height: 220px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0) 70%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    transition: var(--transition-smooth);
}

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

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

.gallery-title {
    color: var(--color-text-white);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
}

/* CTA Banner (Bottom of pages) */
.cta-banner {
    background-color: var(--color-primary);
    color: var(--color-text-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-banner h2 {
    color: var(--color-text-white);
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Footer styling */
.site-footer {
    background-color: var(--color-primary);
    color: #94a3b8; /* slate 400 */
    border-top: 2px solid var(--color-accent);
    padding: 4rem 0 2rem;
    margin-top: auto;
}

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

.footer-info h3 {
    color: var(--color-text-white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-info p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-title {
    color: var(--color-text-white);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 0.25rem;
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
}

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

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

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

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

/* Modals & Popups (Quote Form) */
.modal {
    position: fixed;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 1000;
    padding: 1.5rem;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--color-bg-white);
    border-radius: 1rem;
    max-width: 550px;
    width: 100%;
    padding: 2.5rem;
    position: relative;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--color-border);
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: var(--color-text-light);
}

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

.modal-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--color-text-light);
    margin-bottom: 1.75rem;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 0.375rem;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--color-text-main);
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(197, 151, 57, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* Page Headers (Subpages layout) */
.page-header {
    background-color: var(--color-primary);
    color: var(--color-text-white);
    padding: 4rem 0;
    text-align: center;
    position: relative;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-header h1 {
    color: var(--color-text-white);
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 0.75rem;
}

.page-header p {
    color: #94a3b8; /* slate 400 */
    font-size: 1.05rem;
    max-width: 90%;
    margin: 0 auto;
}

/* Breadcrumbs navigation */
.breadcrumbs {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #94a3b8;
}

.breadcrumbs li:not(:last-child)::after {
    content: "/";
    margin-left: 0.5rem;
}

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

.breadcrumbs li.active {
    color: var(--color-accent);
    font-weight: 500;
}

/* Subpage Grid Layouts (Content + Sidebar) */
.subpage-grid {
    display: grid;
    grid-template-columns: 2.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
}

.main-content h2 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem;
}

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

.main-content h3 {
    font-size: 1.35rem;
    margin: 1.75rem 0 0.75rem;
}

.main-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--color-text-main);
}

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

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

/* Sidebar Styling */
.sidebar {
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    padding: 2rem;
    position: sticky;
    top: 6.5rem;
}

.sidebar-widget {
    margin-bottom: 2rem;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 0.5rem;
}

.sidebar-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-contact-list li {
    display: flex;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.sidebar-contact-list svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

.sidebar-pages {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-pages a {
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.sidebar-pages a:hover, .sidebar-pages li.active a {
    background-color: var(--color-accent-light);
    color: var(--color-accent);
}

/* Mobile Sticky Action Bar */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(8px);
    border-top: 2px solid var(--color-accent);
    padding: 0.75rem 1rem;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.15);
    z-index: 99;
}

.mobile-bar-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.mobile-bar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem;
    border-radius: 0.25rem;
    font-weight: 700;
    font-size: 0.85rem;
    text-align: center;
    gap: 0.35rem;
}

.mobile-bar-call {
    background-color: var(--color-accent);
    color: var(--color-text-white);
}

.mobile-bar-quote {
    background-color: var(--color-text-white);
    color: var(--color-primary);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-image-wrapper img {
        height: 380px;
    }

    .showroom-feature {
        grid-template-columns: 1fr;
        margin-top: 2rem;
    }

    .showroom-gallery {
        grid-template-rows: auto;
    }
}

@media (max-width: 900px) {
    .subpage-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .sidebar {
        position: static;
        margin-top: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        display: none; /* JS will toggle active class */
        height: auto !important; /* Overrides desktop height: 100% */
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-bg-white);
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-lg);
        padding: 1.5rem;
        gap: 0.5rem;
        height: auto !important; /* Overrides desktop height: 100% */
        max-height: calc(100vh - 5rem);
        overflow-y: auto;
        z-index: 1001;
    }

    .nav-item {
        width: 100%;
        height: auto !important;
        display: block !important;
    }

    .nav-link {
        width: 100%;
        height: auto !important;
        padding: 0.85rem 0 !important;
        border-bottom: 1px solid var(--color-border);
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        opacity: 1;
        visibility: visible;
        width: 100%;
        padding-left: 1rem;
        display: none;
    }

    .nav-item.active .dropdown-menu {
        display: block;
    }

    .mobile-toggle {
        display: block;
    }

    .header-ctas .phone-cta {
        display: none;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 4rem; /* buffer for mobile sticky bar */
    }

    .section {
        padding: 3.5rem 0;
    }

    .mobile-sticky-bar {
        display: block;
    }

    .showroom-points {
        grid-template-columns: 1fr;
    }

    .showroom-details {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
}

/* ==========================================================================
   MEGA MENU & PREMIUM NAV SYSTEM
   ========================================================================== */

.has-mega-menu {
    position: static !important;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-bg-white);
    border-bottom: 4px solid var(--color-accent);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 99;
    padding: 2.5rem 0;
}

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

.mega-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 3rem;
}

.mega-col {
    display: flex;
    flex-direction: column;
}

.mega-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    margin-bottom: 1.25rem;
    border-bottom: 2px solid var(--color-border);
    padding-bottom: 0.5rem;
}

.mega-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mega-links li a {
    display: block;
    text-decoration: none;
}

.mega-links li a strong {
    display: block;
    font-size: 0.95rem;
    color: var(--color-primary);
    margin-bottom: 0.15rem;
    transition: color 0.2s ease;
}

.mega-links li a span {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-light);
    line-height: 1.3;
}

.mega-links li a:hover strong {
    color: var(--color-accent);
}

.mega-links li a.text-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-main);
    padding: 0.25rem 0;
    transition: all 0.2s ease;
}

.mega-links li a.text-link:hover {
    color: var(--color-accent);
    padding-left: 0.35rem;
}

.mega-info-col {
    background-color: var(--color-bg-light);
    padding: 1.75rem;
    border-radius: 0.5rem;
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mega-cta-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.mega-cta-card p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 1.25rem;
    line-height: 1.45;
}

.btn-sm {
    padding: 0.55rem 1.25rem !important;
    font-size: 0.825rem !important;
}

/* Tablet & Mobile Responsiveness for Mega Menu & Footer Grid */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 1024px) {
    .mega-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        opacity: 1;
        visibility: visible;
        width: 100%;
        padding: 0.5rem 0 0.5rem 1rem;
        display: none;
    }

    .nav-item.active .mega-menu {
        display: block;
    }

    .mega-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .mega-info-col {
        display: none; /* Hide huge blocks in mobile nav drawer */
    }

    .mega-title {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
        padding-bottom: 0.25rem;
    }

    .mega-links {
        gap: 0.75rem;
    }

    .mega-links li a span {
        display: none; /* Save space on mobile */
    }
}

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