/* --- CSS VARIABLES & RESET --- */
:root {
    --primary-red: #e62323;
    --primary-black: #000000;
    --secondary-black: #121212;
    --dark-gray: #1f1f1f;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --bg-white: #ffffff;
    --bg-warm: #fdfbf7;
    --primary-gold: #D4AF37;
    --primary-navy: #1a252f;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--secondary-black);
    color: var(--text-white);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* --- HEADER & NAVIGATION --- */
.hamburger {
    display: none;
}

.site-header {
    background-color: var(--primary-black);
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    /* Keeps logo left, others potentially spread, but we will group them */
    align-items: center;
    border-bottom: 2px solid var(--dark-gray);
    /* Image 2 Layout Adjustment */
    gap: 2rem;
}

/* Ensure Logo pushes everything else to the right, or we group nav+btn */
/* Actually, simply setting margin-left: auto on the first right-side element works,
   or just letting space-between handle it if we have Logo vs (Nav + Btn).
   But Nav and Btn are siblings. 
   Plan: Set .logo-placeholder { margin-right: auto; } to push everything else to the right.
*/
.logo-placeholder {
    margin-right: auto;
}

.header-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-placeholder img {
    max-height: 75px;
    width: auto;
}

.main-nav ul {
    display: flex;
    gap: 3rem;
    /* Increased spacing per "premium" feel */
    align-items: center;
}

.main-nav a {
    color: #e0e0e0;
    /* Softer light-gray */
    font-family: 'Open Sans', 'Helvetica Neue', sans-serif;
    /* Modern Sans-Serif */
    font-weight: 500;
    font-size: 1rem;
    /* ~16px */
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #ffffff;
    /* Brighten to white */
}

.btn-dealer {
    background-color: var(--primary-red);
    color: white !important;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
}

.btn-dealer:hover {
    background-color: white !important;
    color: var(--primary-red) !important;
}

/* --- DROPDOWN MENU (Adapted for Dark Theme) --- */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--dark-gray);
    min-width: 200px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.5);
    z-index: 1;
    border-radius: 4px;
    padding: 10px 0;
    border: 1px solid #333;
}

.dropdown-content a {
    color: var(--text-white);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-weight: 400;
}

.dropdown-content a:hover {
    background-color: var(--primary-black);
    color: var(--primary-red);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* --- HERO SECTION --- */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/Background/home-banner.webp');
    background-size: cover;
    background-position: center;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content h1 span {
    color: var(--primary-red);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ddd;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    background-color: #ffffff;
    /* White background */
    color: #000000;
    /* Dark text */
    padding: 0.7rem 1.8rem;
    /* Slightly more padding for pill shape */
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Open Sans', 'Helvetica Neue', sans-serif;
    display: inline-block;
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s;
    margin-left: 1.5rem;
    /* Separation from nav */
}

.cta-btn:hover {
    background-color: #f0f0f0;
    /* Slight dim on hover */
    color: #000000;
    transform: translateY(-1px);
}

/* --- SERVICES / EXPERTISE SECTION --- */
.services-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    /* Dark Blue/Charcoal Gradient */
    padding: 50px 0 100px 0;
    /* Top increased to 50px, Bottom 100px */
    position: relative;
    overflow: hidden;
}

/* Diagonal Overlay Effect */
.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.03) 50%, rgba(255, 255, 255, 0.03) 75%, transparent 75%, transparent);
    background-size: 40px 40px;
    pointer-events: none;
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    padding: 0 20px;
}

.service-label {
    display: block;
    color: #e74c3c;
    /* Red accent */
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.service-title {
    font-size: 3rem;
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-subtitle {
    color: #bdc3c7;
    /* Light grey */
    font-size: 1.1rem;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 columns on desktop */
    gap: 30px;
}

.service-card {
    background-color: #1e2a36;
    /* Darker card background */
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.icon-badge {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
}

/* Badge specific colors (subtle tints) */
.badge-kitchen {
    background-color: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
}

.badge-bath {
    background-color: rgba(52, 152, 219, 0.2);
    color: #3498db;
}

.badge-floor {
    background-color: rgba(241, 196, 15, 0.2);
    color: #f1c40f;
}

.badge-design {
    background-color: rgba(155, 89, 182, 0.2);
    color: #9b59b6;
}

.service-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: #95a5a6;
    /* Muted grey text */
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on tablet */
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        /* 1 column on mobile */
    }

    .service-title {
        font-size: 2.5rem;
    }
}

/* --- STATS STRIP --- */
.stats-strip {
    background-color: #1a252f;
    /* Dark Navy */
    padding: 3rem 0;
    width: 100%;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 20px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 2rem;
    }
}

/* --- ABOUT / INFO SECTION --- */
.about-section {
    background-color: #ffffff;
    /* Pure White */
    padding: 80px 0;
    /* Generous padding */
    width: 100%;
}

.about-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    /* .container class handles max-width: 1200px and centering */
}

.about-image-wrapper {
    position: relative;
    height: 500px;
    /* Optional: creates a constraint for the overlap images */
}

/* Main Image styling */
.about-img-main {
    width: 80%;
    height: 90%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Overlapping Image styling */
.about-img-overlap {
    width: 55%;
    height: 60%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 5px solid white;
    /* Creates separation */
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
}


/* Text Container */
.about-text {
    /* Styles the container for the text content */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Typography Overrides */
.section-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.about-text .section-title {
    text-align: left;
    /* Override centered title */
    color: #1a1a1a;
    /* Dark text for light background */
    margin-bottom: 1.5rem;
}

.about-text .section-title::after {
    margin: 10px 0 0 0;
    /* Left align underline */
}

.about-text p {
    color: #555;
    /* Darker gray for readability on white */
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Features Grid */
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    background-color: var(--bg-warm);
    padding: 1.5rem;
    text-align: center;
    border-radius: 4px;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 0.8rem;
    display: block;
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    display: block;
}

/* Responsive */

@media (max-width: 900px) {
    .about-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-section {
        padding: 4rem 0;
    }

    .about-image-wrapper {
        height: 400px;
        /* Reduce height on mobile */
        order: -1;
        /* Keep image on top */
    }

    .about-text .section-title {
        text-align: center;
    }

    .about-text .section-title::after {
        margin: 10px auto;
    }

    .about-features {
        grid-template-columns: 1fr;
        /* Stack features on small screens */
    }
}

/* --- CONTACT SECTION --- */
.contact-section {
    background-color: var(--bg-warm);
    /* Light background for the section */
    padding: 70px 20px 90px 20px;
    /* Top reduced by 30px (was 100px), Bottom reduced by 10px (was 100px) */
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-card {
    display: flex;
    max-width: 1200px;
    width: 100%;
    background-color: white;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

/* Left Panel */
.contact-info-panel {
    flex: 1;
    background-color: #1a252f;
    /* Dark Navy */
    color: white;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.panel-title {
    font-size: 2.5rem;
    font-family: 'Times New Roman', serif;
    /* Serif for headline */
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.panel-subtitle {
    font-size: 1.1rem;
    color: #cbd5e0;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.detail-icon {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-top: 5px;
}

.detail-text strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: white;
}

.detail-text p {
    color: #cbd5e0;
    font-size: 1rem;
    line-height: 1.5;
}

.contact-map-container {
    margin-top: 3rem;
    width: 100%;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Right Panel */
.contact-form-panel {
    flex: 1;
    padding: 4rem;
    background-color: white;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    background-color: #ffffff;
    color: #333;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a252f;
}

.submit-btn {
    background-color: #1a252f;
    color: white;
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 1rem;
}

.submit-btn:hover {
    background-color: #2c3e50;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-card {
        flex-direction: column;
    }

    .contact-info-panel,
    .contact-form-panel {
        padding: 3rem 2rem;
    }

    .panel-title {
        font-size: 2rem;
    }
}

/* --- FOOTER --- */
/* --- FOOTER --- */
.site-footer {
    background-color: black;
    padding: 30px 5% 44px;
    /* Top increased to 30px, Bottom reduced by 20px (to 44px) */
    /* Generous padding for luxury feel */
    text-align: center;
    border-top: 1px solid #222;
    /* Subtle border */
    color: var(--text-white);
}

.footer-content {
    margin-bottom: 0;
    /* Reduced to 0 to minimize gap */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    font-family: 'Didot', 'Bodoni MT', 'Times New Roman', serif;
    /* Elegant serif stack */
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 12px;
    /* Reduced by 20px (was 2rem/32px) */
    display: block;
    color: var(--text-white);
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 20px;
    /* Increased by 20px */
}

.social-icon {
    font-size: 1.4rem;
    color: white;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.social-icon:hover {
    color: #ccc;
    transform: translateY(-3px);
    opacity: 1;
}

.copyright {
    color: #666;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-top: 0;
    /* Reduced by 48px/3rem */
}

/* --- OTHER PAGE COMPATIBILITY (Design, Generic) --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-header {
    background-color: var(--dark-gray);
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--text-white);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .site-header {
        justify-content: center;
    }
}

/* --- ABOUT PAGE STYLES (From Test.html) --- */
.page-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1556910103-1c02745a30bf?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-hero span {
    color: var(--primary-red);
}

.split-section {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 5rem;
    padding: 5rem 0;
    /* Adding padding here since container might not have it */
}

.split-text {
    flex: 1;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.split-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    color: var(--text-white);
}

.split-text h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--primary-red);
    margin-top: 10px;
}

.values-section {
    background-color: var(--primary-black);
    padding: 5rem 20px;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.value-card {
    background: var(--dark-gray);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #333;
    transition: 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.value-card h3 {
    margin-bottom: 1rem;
    color: white;
}

.cta-strip {
    background-color: var(--primary-red);
    padding: 4rem 20px;
    text-align: center;
}

.cta-strip h2 {
    color: white;
    margin-bottom: 1rem;
    border: none;
}

.cta-strip p {
    color: white;
    margin-bottom: 2rem;
}

.btn-white {
    background-color: white;
    color: var(--primary-red);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    display: inline-block;
}

.btn-white:hover {
    background-color: var(--primary-black);
    color: white;
}

@media (max-width: 768px) {
    .split-section {
        flex-direction: column;
    }
}

/* --- CAREER PAGE STYLES (From Test.html) --- */
.career-hero {
    /* Office/Team background image */
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.career-hero h1 {
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.career-hero h1 span {
    color: var(--primary-red);
}

.career-hero p {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

.intro-section {
    padding: 5rem 10%;
    text-align: center;
    background-color: var(--secondary-black);
}

.intro-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.intro-section p {
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.perk-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--dark-gray);
    border-radius: 8px;
    border: 1px solid #333;
}

.perk-item i {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.perk-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.perk-item p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.jobs-section {
    padding: 5rem 10%;
    background-color: var(--primary-black);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-white);
}

.section-header span {
    color: var(--primary-red);
}

.job-card {
    background-color: var(--dark-gray);
    border: 1px solid #333;
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    transition: 0.3s;
}

.job-card:hover {
    border-color: var(--primary-red);
    transform: translateX(10px);
}

.job-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.job-info p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.tags {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.tag {
    background-color: #333;
    color: #ddd;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.cta-box {
    background-color: var(--dark-gray);
    padding: 4rem 20px;
    text-align: center;
    border-top: 2px solid var(--primary-red);
}

.cta-box h2 {
    color: var(--text-white);
    margin-bottom: 1rem;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary-red);
    color: var(--text-white);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-outline:hover {
    background-color: var(--primary-red);
    color: white;
}

.btn-solid {
    background-color: var(--primary-red);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    border: none;
}

.btn-solid:hover {
    background-color: white;
    color: var(--primary-red);
}

@media (max-width: 768px) {
    .job-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
}

/* --- CONTACT PAGE STYLES (From Test.html) --- */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1595846519845-68e298c2edd8?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-hero h1 span {
    color: var(--primary-red);
}

.contact-wrapper {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.info-col h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.info-col p.intro {
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.icon-box {
    width: 50px;
    height: 50px;
    background-color: var(--dark-gray);
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.icon-box i {
    color: var(--primary-red);
    font-size: 1.2rem;
}

.info-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--text-white);
}

.info-text p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.map-frame {
    width: 100%;
    height: 250px;
    background-color: var(--dark-gray);
    margin-top: 2rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #333;
}

.form-col {
    background-color: var(--dark-gray);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid #333;
}

.form-col h3 {
    color: var(--text-white);
}

.form-col .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: bold;
    color: #ddd;
}

.form-control {
    width: 100%;
    background-color: var(--secondary-black);
    border: 1px solid #444;
    padding: 1rem;
    color: white;
    border-radius: 6px;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-red);
}

@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-col {
        padding: 2rem;
    }
}

/* --- FLOORING PAGE STYLES (From Test.html) --- */
.product-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1581858726768-758a033ed286?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.product-hero h1 {
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-hero h1 span {
    color: var(--primary-red);
}

.intro-bar {
    background-color: var(--dark-gray);
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
}

.intro-bar p {
    color: var(--text-gray);
}

.filter-select {
    padding: 0.5rem 1rem;
    background-color: var(--secondary-black);
    color: white;
    border: 1px solid #444;
    border-radius: 4px;
}

.products-container {
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

/* --- Products Page Specifics --- */
body.product-page {
    background-color: rgb(253, 251, 247);
}

body.gallery-page {
    background-color: rgb(253, 251, 247);
}

body.cases-page {
    background-color: rgb(253, 251, 247);
}

.products-container.white-theme {
    background-color: transparent;
    /* Let body background show through */
    color: var(--primary-black);
    width: 100%;
    max-width: 100%;
    padding: 4rem 5%;
}

.products-container.white-theme .products-grid {
    max-width: 1400px;
    margin: 0 auto;
}

.products-container.white-theme .section-title {
    max-width: 1400px;
    margin: 0 auto 3rem;
    padding: 2.5rem;
    background-color: #e0e0e0;
    /* Darker grey background */
    border-radius: 8px;
    border-left: 5px solid var(--primary-red);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.products-container.white-theme .section-title h2 {
    color: var(--primary-black);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-transform: none;
    /* Optional: cleaner look */
}

/* Remove the old small red line separator since we have a big border now */
.products-container.white-theme .section-title div[style*="background: var(--primary-red)"] {
    display: none;
}

.products-container.white-theme .section-title p {
    color: #222;
    /* Force black/dark grey */
    font-size: 1.1rem;
    margin-top: 1rem;
    max-width: 800px;
}

/* Ensure Product Card Text is readable */
.products-container.white-theme .product-details .product-title {
    color: white;
    /* Reset to white for the dark card */
}

.products-container.white-theme .product-details .product-category {
    color: var(--primary-red);
}

.products-container.white-theme .product-details .product-desc {
    color: #b0b0b0;
    /* Keep description light within the dark card */
}

.products-container.white-theme .product-details .price {
    color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background-color: var(--primary-navy);
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
}

.product-image {
    height: 350px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Specific fix for Cabinet images to show full size without cropping */
#cabinets .product-image img {
    object-fit: contain;
    background-color: #000;
    /* Dark background for letterboxing effect */
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-details {
    padding: 1.5rem;
}

.product-category {
    color: var(--primary-red);
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.product-desc {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.specs-list {
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: #ccc;
}

.specs-list li {
    margin-bottom: 4px;
}

.card-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
}

.price {
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
}

.view-btn {
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: bold;
}

.view-btn:hover {
    color: var(--primary-red);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .intro-bar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* --- CABINETS PAGE STYLES (From Test.html) --- */
.cabinet-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1556912173-3db996e161a4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* --- COUNTERTOPS PAGE STYLES (From Test.html) --- */
.countertop-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1596496924446-27ef7df03823?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* --- DOORS PAGE STYLES (From Test.html) --- */
.door-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1600607686527-6fb886090705?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    height: 40vh;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* --- ACCESSORIES PAGE STYLES (From Test.html) --- */
.accessories-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1610214616252-87063c259838?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Specific modifier for smaller hardware images */
.product-image.accessories-image {
    height: 250px;
    background-color: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image.accessories-image img {
    object-fit: contain;
}

/* --- REVIEWS PAGE STYLES (From Test.html) --- */
.reviews-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1556910103-1c02745a30bf?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.reviews-hero h1 {
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.reviews-hero h1 span {
    color: var(--primary-red);
}

.stats-section {
    background-color: var(--dark-gray);
    padding: 3rem 10%;
    display: flex;
    justify-content: space-around;
    text-align: center;
    border-bottom: 1px solid #333;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.stat-item p {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.reviews-container {
    padding: 5rem 10%;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.review-card {
    background-color: var(--dark-gray);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-red);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 20px;
}

.review-text {
    font-style: italic;
    color: #ddd;
    margin: 1.5rem 0 2rem;
    font-size: 1.05rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.reviewer-info {
    display: flex;
    align-items: center;
    border-top: 1px solid #444;
    padding-top: 1.5rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--text-gray);
    font-size: 1.2rem;
}

.reviewer-details h4 {
    font-size: 1rem;
    margin-bottom: 2px;
    color: var(--text-white);
}

.stars {
    color: #FFD700;
    /* Gold for stars */
    font-size: 0.8rem;
}

.cta-section {
    padding: 4rem 10%;
    text-align: center;
    background-color: var(--dark-gray);
    margin-top: 3rem;
}

.cta-btn-large {
    display: inline-block;
    background-color: var(--primary-red);
    color: white;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 1.5rem;
}

.cta-btn-large:hover {
    background-color: white;
    color: var(--primary-red);
}

/* --- LOCATIONS PAGE STYLES (From Test.html) --- */
.locations-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.locations-hero h1 {
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.locations-hero h1 span {
    color: var(--primary-red);
}

.locations-section {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.location-card {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--dark-gray);
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.location-info {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-map {
    flex: 1;
    min-height: 400px;
    position: relative;
    background-color: var(--secondary-black);
    /* Fallback */
}

.location-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    opacity: 0.8;
    filter: grayscale(100%) invert(92%) contrast(83%);
}

.location-title {
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    border-left: 5px solid var(--primary-red);
    padding-left: 1rem;
}

.location-badge {
    display: inline-block;
    background-color: #333;
    color: #ddd;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-bottom: 2rem;
    margin-left: 1.3rem;
}

.info-group {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
}

.info-icon {
    font-size: 1.2rem;
    color: var(--primary-red);
    margin-right: 15px;
    margin-top: 5px;
    width: 25px;
    text-align: center;
}

.info-text h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: #ccc;
}

.info-text p {
    font-size: 1.1rem;
    color: white;
}

.directions-btn {
    display: inline-block;
    background-color: var(--primary-red);
    color: white;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-align: center;
    font-weight: bold;
    margin-top: 1rem;
    align-self: flex-start;
}

.directions-btn:hover {
    background-color: white;
    color: var(--primary-red);
}

@media (max-width: 900px) {
    .location-card {
        flex-direction: column;
    }

    .location-map {
        height: 300px;
        min-height: 300px;
    }
}

/* --- FAQS PAGE STYLES (From Test.html) --- */
.faq-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1556912172-45b7abe8b7e1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.faq-hero h1 {
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.faq-hero h1 span {
    color: var(--primary-red);
}

.faq-container {
    padding: 5rem 10%;
    max-width: 1000px;
    margin: 0 auto;
}

/* Reusing .section-header from generalized styles but overriding some specific if needed */
.faq-container .section-header {
    border-bottom: 1px solid #333;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    text-align: left;
    /* FAQs look better left-aligned usually, checking test.html context */
}

/* --- ACCORDION STYLES --- */
.accordion-item {
    background-color: var(--dark-gray);
    border: 1px solid #333;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: 0.3s;
}

.accordion-item.active {
    border-color: var(--primary-red);
}

.accordion-header {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--dark-gray);
    transition: background-color 0.3s;
}

.accordion-header:hover {
    background-color: #252525;
}

.accordion-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: white;
}

.icon {
    font-size: 1.2rem;
    color: var(--primary-red);
    transition: transform 0.3s;
}

.accordion-item.active .icon {
    transform: rotate(45deg);
    /* Rotates plus to x */
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #1a1a1a;
}

.accordion-content p {
    padding: 1.5rem;
    color: var(--text-gray);
    font-size: 0.95rem;
    border-top: 1px solid #333;
}

.cta-strip {
    text-align: center;
    margin-top: 4rem;
    background-color: var(--dark-gray);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid #333;
}

/* --- DEALER PAGE STYLES (From Test.html) --- */
.dealer-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.dealer-hero h1 {
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.dealer-hero h1 span {
    color: var(--primary-red);
}

.benefits-section {
    padding: 5rem 10%;
    background-color: var(--dark-gray);
    text-align: center;
    /* Reusing dark-gray background for visual separation if needed or just letting common styles handle it */
}

.benefits-section .section-header {
    margin-bottom: 4rem;
}

.benefits-section .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefits-section .section-header p {
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.benefit-card i {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* --- APPLICATION FORM SECTION --- */
.form-section {
    padding: 5rem 5%;
    display: flex;
    justify-content: center;
}

.form-container {
    width: 100%;
    max-width: 900px;
    background-color: var(--dark-gray);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid #333;
}

.form-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #ccc;
    font-weight: bold;
}

.form-control {
    padding: 1rem;
    background-color: var(--secondary-black);
    border: 1px solid #444;
    color: white;
    border-radius: 6px;
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-red);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23e62323%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right .7em top 50%;
    background-size: .65em auto;
}

.required-star {
    color: var(--primary-red);
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* --- GLOBAL MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {

    /* Typography Overrides */
    h1 {
        font-size: 2.2rem !important;
    }

    h2 {
        font-size: 1.8rem !important;
    }

    h3 {
        font-size: 1.4rem !important;
    }

    p {
        font-size: 0.95rem !important;
    }

    /* Layout Overrides */
    .section-padding,
    .faq-container,
    .benefits-section,
    .form-section,
    .intro-section,
    .jobs-section,
    .cta-strip,
    .career-hero,
    .page-hero,
    .contact-hero,
    .dealer-hero {
        padding: 3rem 5% !important;
    }

    .hero-content h1 {
        font-size: 2rem !important;
    }

    .hero {
        height: 60vh !important;
    }

    /* Grids to Single Column */
    .services-grid,
    .values-grid,
    .benefits-grid,
    .form-row,
    .contact-wrapper {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .contact-wrapper {
        display: flex !important;
        flex-direction: column !important;
        padding: 0 !important;
    }

    .map-frame {
        height: 250px !important;
    }

    /* Form Adjustments */
    .form-container {
        padding: 1.5rem !important;
    }

    .form-row {
        flex-direction: column !important;
    }

    /* Mobile Menu Styles */
    .site-header {
        flex-wrap: wrap;
        padding: 1rem 1rem !important;
        justify-content: space-between !important;
    }

    .main-nav {
        display: none;
        /* Hidden by default on mobile, toggled via JS */
        width: 100%;
        order: 3;
        margin-top: 1rem;
        background-color: var(--dark-gray);
        padding: 1rem;
        border-radius: 8px;
        border: 1px solid #333;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .main-nav ul li {
        width: 100%;
        margin-bottom: 0.5rem;
        border-bottom: 1px solid #333;
        padding-bottom: 0.5rem;
    }

    .main-nav ul li:last-child {
        border-bottom: none;
    }

    .header-actions {
        display: none;
        /* Hide desktop specific actions or move them */
    }

    .logo-placeholder img {
        height: 40px !important;
        /* Smaller logo */
    }

    /* Hamburger Icon */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 21px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .hamburger span {
        width: 30px;
        height: 3px;
        background: white;
        border-radius: 10px;
        transition: all 0.3s linear;
        position: relative;
        transform-origin: 1px;
    }

    .cta-btn {
        display: none;
        /* Hide quote button on very small screens or move it into menu? Keeping generic behavior for now */
    }
}

/* --- PRODUCT TABS --- */
.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 5%;
    background-color: var(--secondary-black);
    flex-wrap: wrap;
    border-bottom: 1px solid #333;
}

.tab-btn {
    background: none;
    border: 1px solid #444;
    color: var(--text-gray);
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    font-weight: 600;
}

.tab-btn:hover {
    border-color: var(--primary-red);
    color: white;
}

.tab-btn.active {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: white;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- ASYMMETRICAL ABOUT SECTION (Added for Index) --- */
.about-section {
    background-color: var(--bg-white);
    padding: 60px 0 80px 0;
    /* Top reduced by 20px (was 80px) */
}

.about-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.about-image-wrapper {
    position: relative;
    height: 500px;
}

.about-img-main {
    width: 80%;
    height: 90%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.about-img-overlap {
    width: 55%;
    height: 60%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 5px solid white;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .about-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image-wrapper {
        height: 400px;
        margin-bottom: 2rem;
    }
}

/* --- STATS STRIP (Added for Index) --- */
.stats-strip {
    background-color: #0b1a2a;
    /* Dark Navy */
    padding: 20px 0;
    /* Reduced by another 8px (was 28px) */
    color: white;
    width: 100%;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 20px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #D4AF37;
    /* Gold */
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 2rem;
    }
}

/* --- NEW 4-COLUMN FOOTER --- */
.site-footer {
    background-color: #000000;
    color: #e0e0e0;
    padding: 80px 0 30px;
    font-size: 0.95rem;
    font-family: 'Open Sans', sans-serif;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
}

/* Footer Columns */
.footer-col h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

/* Brand Column */
.footer-brand {
    margin-left: -40px;
    text-align: left;
}

.footer-brand p {
    color: #a0aec0;
    line-height: 1.6;
    margin-top: -5px;
    max-width: 300px;
}

.footer-logo-img {
    height: 50px;
    /* Adjust based on logo aspect ratio */
    width: auto;
    object-fit: contain;
}

/* Contact Column */
.footer-contact {
    text-align: left;
    /* Ensure the column content groups near the center but aligns left relative to itself */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* BUT user wants the TEXT left aligned. 
   If I align-items: center, the block is centered.
   Then inside I need a container that is left aligned.
   Or clearer: Keep the column centered in grid (done by grid layout), 
   but text left aligned.
   Since the column spans the middle 1/3, text-align: left will put it at the left edge of that 1/3.
   To center the BLOCK of text but keep alignment left:
*/
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* This centers the content block horizontally in the column */
}

.footer-contact h3 {
    width: 100%;
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact-list {
    width: fit-content;
    margin: 0 auto;
    /* Center the list block */
    text-align: left;
    /* Ensure text internal to list is left */
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #a0aec0;
    justify-content: flex-start;
    /* Left align items */
}

.contact-list i {
    color: var(--primary-red);
    margin-top: 5px;
}

.contact-list a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-list a:hover {
    color: white;
}

/* Social Column */
.footer-social {
    text-align: center;
    margin-left: 40px;
    /* Move entire column right */
}

.footer-social p {
    margin-left: auto;
    margin-right: auto;
    max-width: 250px;
    /* constraining width for better centering appearance */
}

.footer-col .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
    /* Center icons */
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #1a1a1a;
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid #333;
    text-decoration: none;
    /* Add this explicitly */
}

.social-link:hover {
    background-color: var(--primary-gold);
    color: black;
    transform: translateY(-3px);
    border-color: var(--primary-gold);
}

/* Bottom Bar */
.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #222;
    text-align: center;
}

.copyright {
    color: #666;
    font-size: 0.85rem;
}

/* Responsive Footer */
@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-brand p {
        margin: 1rem auto;
    }

    .footer-col {
        text-align: center;
    }

    /* Center social icons on mobile */
    .footer-col .social-links {
        justify-content: center;
    }

    /* Center contacts on mobile */
    .contact-list li {
        justify-content: center;
    }
}