/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 3.5rem;
    width: auto;
    /* Ultra-legible 1px brand-colored contour outline to make white text perfectly readable on white background */
    filter: drop-shadow(1px 1px 0px #0a2540) 
            drop-shadow(-1px -1px 0px #0a2540) 
            drop-shadow(1px -1px 0px #0a2540) 
            drop-shadow(-1px 1px 0px #0a2540) 
            drop-shadow(0px 3px 6px rgba(10, 37, 64, 0.3));
    transition: var(--transition-spring);
}

.logo:hover img {
    transform: scale(1.03);
    filter: drop-shadow(1px 1px 0px #0a2540) 
            drop-shadow(-1px -1px 0px #0a2540) 
            drop-shadow(1px -1px 0px #0a2540) 
            drop-shadow(-1px 1px 0px #0a2540) 
            drop-shadow(0px 5px 12px rgba(10, 37, 64, 0.45));
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

/* Dropdown System */
.nav-item {
    position: relative;
    padding: 1rem 0;
}

.nav-links a:not(.btn) {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-text-primary);
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links a:not(.btn) i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-item:hover a:not(.btn) i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 240px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

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

.dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--clr-text-primary);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    text-transform: none;
    letter-spacing: 0;
}

.dropdown-item:hover {
    background: rgba(0, 86, 179, 0.05);
    color: var(--clr-primary);
    padding-left: 1.5rem;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clr-primary);
    transition: var(--transition-smooth);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

/* ==========================================================================
   1. Hero Section
   ========================================================================== */
.hero {
    min-height: 100vh;
    padding-top: 120px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;
    background: transparent;
}

section:not(.hero) {
    position: relative;
    z-index: 10;
}

.glass {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-dark {
    background: rgba(10, 37, 64, 0.8) !important;
    backdrop-filter: blur(20px);
    z-index: 11;
}

.hero-video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    pointer-events: none;
}

.hero-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
    z-index: -1;
    pointer-events: none;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(10, 37, 64, 0.08) 1.5px, transparent 1.5px),
        linear-gradient(90deg, rgba(10, 37, 64, 0.08) 1.5px, transparent 1.5px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
    z-index: -1;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-xl);
    align-items: center;
}

.hero-content {
    max-width: 800px;
    z-index: 10;
}

.hero h1 {
    color: var(--clr-primary);
    margin-bottom: 1.5rem;
}

.hero p {
    color: var(--clr-text-primary);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    align-items: center;
}

.hero-illustration {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-illustration svg {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(0, 86, 179, 0.1));
}

.hero-stats-bar {
    display: flex;
    gap: 2.5rem;
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-stat-item span {
    display: block;
}

.hero-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--clr-primary);
}

.hero-stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   2. The Numbers Speak
   ========================================================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.stat-card {
    padding: var(--space-xl) var(--space-lg);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: var(--transition-spring);
}

.stat-green {
    background: rgba(34, 197, 94, 0.08) !important;
    border: 1px solid rgba(34, 197, 94, 0.2) !important;
}

.stat-green i, .stat-green .stat-number {
    color: #16a34a !important;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--clr-accent-gold);
    margin-bottom: 1.5rem;
    display: block;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--clr-text-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

/* ==========================================================================
   3. The Problem Section
   ========================================================================== */
.problem-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-xxl);
    align-items: start;
}

.failure-list {
    list-style: none;
    margin-top: var(--space-lg);
}

.failure-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-size: 1.1rem;
}

.failure-item i {
    color: var(--clr-accent-red);
    margin-top: 0.25rem;
}

.problem-quote {
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
}

.quote-text {
    font-size: 1.25rem;
    font-style: italic;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.quote-author {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

/* ==========================================================================
   4. Why 100 Doors
   ========================================================================== */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.pillar-card {
    padding: var(--space-xl) var(--space-lg);
    border-radius: var(--radius-xl);
    transition: var(--transition-spring);
}

.pillar-card:hover {
    transform: translateY(-10px);
}

.pillar-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 86, 179, 0.1);
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* ==========================================================================
   5. Our Promise
   ========================================================================== */
.promise-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    padding-top: var(--space-xl);
}

.timeline-line {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.timeline-progress {
    position: absolute;
    top: 40px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--clr-accent-gold), var(--clr-accent-brass));
    z-index: 2;
    transition: width 1.5s ease-out;
}

.timeline-step {
    position: relative;
    z-index: 3;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #0a2540;
    border: 3px solid var(--clr-accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-accent-gold);
    font-size: 1.75rem;
    margin-bottom: 2rem;
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.4);
}

.step-details h4 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.step-details ul {
    list-style: none;
}

.step-details li {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.step-details li::before {
    content: '•';
    color: var(--clr-accent-gold);
}

/* ==========================================================================
   6. Simple Process
   ========================================================================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    position: relative;
}

.process-card {
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.process-number {
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 8rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.03);
    z-index: -1;
}

/* ==========================================================================
   7. Collection Preview
   ========================================================================== */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.collection-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-spring);
}

.collection-card:hover {
    transform: translateY(-10px);
}

.collection-img {
    height: 300px;
    background: var(--clr-bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.collection-img svg {
    width: 120px;
    opacity: 0.2;
}

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

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

.collection-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0.5rem 1rem;
    background: var(--clr-accent-red);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
}

.collection-info {
    padding: var(--space-lg);
}

/* ==========================================================================
   8. Installation Gallery (Bento Grid)
   ========================================================================== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 1.5rem;
}

.bento-item {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
}

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

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

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
}

.bento-item.large { grid-column: span 2; grid-row: span 2; }
.bento-item.wide { grid-column: span 2; }

/* ==========================================================================
   9. Video Reviews
   ========================================================================== */
.video-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    align-items: start; /* Allows cards to have different heights */
}

.video-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.video-frame {
    width: 100%;
    height: auto;
    background: #000;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 250px; /* Prevents collapse before load */
}

.video-frame video {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.85;
    transition: var(--transition-smooth);
}

.video-card:hover .video-frame video {
    opacity: 1;
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 37, 64, 0.3);
    transition: var(--transition-smooth);
    pointer-events: none;
}

.video-overlay i {
    font-size: 4rem;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: var(--transition-spring);
}

.video-card:hover .video-overlay i {
    transform: scale(1.15);
}

.video-card.playing .video-overlay {
    opacity: 0;
    pointer-events: none;
}

.video-info-box {
    padding: var(--space-lg);
    background: #fff;
}

.star-rating {
    color: var(--clr-accent-gold);
    margin-bottom: 0.5rem;
}

/* ==========================================================================
   12. The Transformation
   ========================================================================== */
.transformation-inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: var(--space-xxl);
    align-items: center;
}

.comparison-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.comp-before {
    background: #f8fafc;
    padding: var(--space-xl);
}

.comp-after {
    background: #0a2540;
    padding: var(--space-xl);
    color: #fff;
}

.comp-list {
    list-style: none;
    margin-top: 1.5rem;
}

.comp-list li {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 0.75rem;
}

.comp-after .comp-list li i {
    color: var(--clr-accent-gold);
}

/* ==========================================================================
   13. FAQ Section
   ========================================================================== */
.faq-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: var(--space-xl);
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: 600;
    transition: var(--transition-smooth);
}

.filter-btn.active {
    background: var(--clr-accent-red);
    color: #fff;
    border-color: var(--clr-accent-red);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: left;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: var(--clr-text-secondary);
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 200px;
}

/* ==========================================================================
   14. Final CTA
   ========================================================================== */
.final-cta {
    background: #fff;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, rgba(10, 37, 64, 0.02) 0, rgba(10, 37, 64, 0.02) 2px, transparent 0, transparent 50%);
    background-size: 20px 20px;
}

.cta-inner {
    position: relative;
    z-index: 2;
    color: var(--clr-text-primary);
}

.cta-inner h2 { margin-bottom: 1.5rem; }
.cta-inner p { color: var(--clr-text-secondary); }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    padding-top: var(--space-xxl);
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-xl);
}

.footer-col h4 {
    margin-bottom: 2rem;
    color: #fff;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

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

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */
/* ==========================================================================
   Modals & Forms
   ========================================================================== */
#brochureForm {
    margin-top: 1.5rem;
}

#brochureForm input {
    width: 100%;
    padding: 1.25rem 1.75rem;
    font-size: 1.15rem;
    font-weight: 500;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(10, 37, 64, 0.1);
    background: #f8fafc;
    color: var(--clr-text-primary);
    transition: var(--transition-smooth);
    margin-bottom: 2rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

#brochureForm input:focus {
    outline: none;
    border-color: var(--clr-primary);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.1), inset 0 2px 4px rgba(0, 0, 0, 0.02);
    transform: translateY(-2px);
}

#brochureForm input::placeholder {
    color: rgba(10, 37, 64, 0.4);
    font-weight: 400;
}

#brochureForm .btn {
    padding: 1.25rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.modal {
    display: none;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.9);
    backdrop-filter: blur(10px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background: #fff;
    width: 90%;
    max-width: 900px;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    transform: translateY(30px);
    transition: var(--transition-spring);
}

.modal.show .modal-content {
    transform: translateY(0);
}

.modal-body {
    display: flex;
}

.modal-img {
    flex: 1;
    background: var(--clr-bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
}

.modal-img svg {
    width: 100%;
    height: auto;
    max-height: 400px;
}

.modal-details {
    flex: 1.2;
    padding: var(--space-xl);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: var(--clr-text-primary);
    cursor: pointer;
    z-index: 10;
}

@media (max-width: 1200px) {
    .stats-grid, .pillars-grid, .promise-timeline, .process-grid, .collection-grid, .video-cards-grid, .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
}

/* Mobile Toggle Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2100;
    padding: 0;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--clr-text-primary);
    border-radius: var(--radius-full);
    transition: var(--transition-smooth);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
    background-color: #fff;
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
    background-color: #fff;
}

/* Showroom Cards Layout */
.showroom-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    padding: 3rem;
    align-items: center;
    border-radius: var(--radius-xl);
    transition: var(--transition-smooth);
}

.showroom-card.reverse {
    grid-template-columns: 1.2fr 1fr;
}

/* Section Header Layout */
.section-header {
    margin-bottom: 3.5rem;
}

/* Section Header Flex Helper */
.section-header.flex-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
}

@media (max-width: 992px) {
    .showroom-card, .showroom-card.reverse {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
        padding: 2rem !important;
    }
    .showroom-card .map-container,
    .showroom-card.reverse .map-container {
        height: 300px !important;
        grid-row: 2;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-container {
        padding: 1rem var(--space-md);
    }
    
    /* Sliding Premium Mobile Drawer */
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 320px;
        height: 100vh;
        background: rgba(10, 37, 64, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        padding: 8rem 2rem 3rem;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
        z-index: 2050;
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
        overflow-y: auto;
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    /* Links styled for dark background */
    .nav-links a:not(.btn) {
        color: rgba(255, 255, 255, 0.85) !important;
        font-size: 1.1rem !important;
        width: 100%;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-links a:not(.btn):hover {
        color: var(--clr-accent-gold) !important;
        padding-left: 0.5rem;
    }
    
    .nav-links a:not(.btn)::after {
        display: none;
    }
    
    .nav-links a:not(.btn) i {
        display: none;
    }
    
    /* Nested Sitemaps for Dropdowns */
    .nav-item {
        width: 100%;
        padding: 0;
    }
    
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0.5rem 0 0 1rem !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
    }
    
    .dropdown-item {
        color: rgba(255, 255, 255, 0.6) !important;
        font-size: 0.95rem !important;
        padding: 0.25rem 0 !important;
        border-radius: 0 !important;
        font-weight: 500 !important;
    }
    
    .dropdown-item:hover {
        background: transparent !important;
        color: var(--clr-accent-gold) !important;
        padding-left: 0.25rem !important;
    }
    
    .nav-links .btn {
        width: 100%;
        margin-top: 1rem;
    }
    
    /* Layout adjustments */
    .hero-inner, .problem-inner, .transformation-inner {
        grid-template-columns: 1fr;
    }
    .stats-grid, .pillars-grid, .promise-timeline, .process-grid, .collection-grid, .video-cards-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-stats-bar {
        flex-direction: column;
        gap: 1.5rem;
    }
    .comparison-box {
        grid-template-columns: 1fr;
    }
    .hero-actions {
        gap: 1rem;
    }
    
    .section-header {
        margin-bottom: 2.25rem !important;
    }
    
    .section-header.flex-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .section-header.flex-header .btn {
        margin-bottom: 0 !important;
    }
    
    /* Modals Scrolling Fixes */
    .modal {
        align-items: flex-start !important;
        padding: 2rem 0 !important;
        overflow-y: auto !important;
    }
    .modal-content {
        margin: auto 5% !important;
        max-height: none !important;
        overflow: visible !important;
    }
    .modal-body {
        flex-direction: column;
    }
    .modal-details {
        padding: var(--space-lg);
    }
}

@media (max-width: 576px) {
    .hero-actions {
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100% !important;
        gap: 0.75rem !important;
    }
    .hero-actions .btn {
        width: 100% !important;
        justify-content: center !important;
    }
}

/* ==========================================================================
   Product Cards Interactive Effects
   ========================================================================== */
.product-card {
    transition: var(--transition-spring);
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: var(--clr-bg-surface-light);
    position: relative;
}

.product-card::after {
    content: 'View Details';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -20%) scale(0.9);
    background: rgba(0, 86, 179, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 5;
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.2);
}

.product-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0, 86, 179, 0.08);
    border-color: rgba(0, 86, 179, 0.2);
}

.product-card:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.product-card .product-img img {
    transition: var(--transition-smooth);
}

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

.product-card:hover .product-info h4 {
    color: var(--clr-primary);
    transition: color 0.3s ease;
}

/* Footer Social & Finder Icons */
.footer-social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.footer-social-icons .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.footer-social-icons .social-icon:hover {
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.footer-social-icons .social-icon.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.footer-social-icons .social-icon.showroom:hover {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.3);
}

.footer-social-icons .social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(220, 39, 67, 0.3);
}

.footer-social-icons .social-icon.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
    box-shadow: 0 10px 20px rgba(24, 119, 242, 0.3);
}
