/* ========================================= */
/* LUXURY ANIMATIONS & OBSERVERS             */
/* ========================================= */

/* Scroll Reveal Classes (Hooked up via JS) */
.reveal-section {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-section.active {
    opacity: 1;
    transform: translateY(0);
}

/* 5-LAKH UPGRADE: Cinematic Blur Reveals */
.reveal-item {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    filter: blur(10px);
    transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1),
                transform 1s cubic-bezier(0.19, 1, 0.22, 1),
                filter 1s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Base active state so nothing ever stays invisible */
.reveal-section.active .reveal-item {
    opacity: 1; 
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* Staggered delays for a beautiful cascading effect */
.reveal-section.active .reveal-item:nth-child(1) { transition-delay: 0.1s; }
.reveal-section.active .reveal-item:nth-child(2) { transition-delay: 0.2s; }
.reveal-section.active .reveal-item:nth-child(3) { transition-delay: 0.3s; }
.reveal-section.active .reveal-item:nth-child(4) { transition-delay: 0.4s; }
.reveal-section.active .reveal-item:nth-child(5) { transition-delay: 0.5s; } 
.reveal-section.active .reveal-item:nth-child(6) { transition-delay: 0.6s; }
.reveal-section.active .reveal-item:nth-child(7) { transition-delay: 0.7s; }
.reveal-section.active .reveal-item:nth-child(8) { transition-delay: 0.8s; }

/* Continuous Ken Burns Zoom for Hero */
@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

@keyframes slideUpFadeIn {
    from { opacity: 0; transform: translateY(20px); filter: blur(5px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* ========================================= */
/* CINEMATIC HERO SECTION                    */
/* ========================================= */
.hero-carousel {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px); /* Fill screen minus header */
    min-height: 600px;
    overflow: hidden;
    background-color: #111;
    transform-origin: top center;
}

/* 5-LAKH UPGRADE: Scroll-Driven 3D Parallax (Modern Browsers) */
@supports (animation-timeline: scroll()) {
    .hero-carousel {
        animation: heroFadeScale linear both;
        animation-timeline: scroll(root block);
        animation-range: 0 80vh;
    }
    @keyframes heroFadeScale {
        0% { opacity: 1; transform: scale(1) translateY(0); filter: blur(0); }
        100% { opacity: 0.2; transform: scale(0.95) translateY(100px); filter: blur(8px); }
    }
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.carousel-slide.active { opacity: 1; z-index: 2; }

/* The Image Layer (Animates on Active) */
.slide-bg {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover; background-position: center;
    z-index: 1;
}
.carousel-slide.active .slide-bg {
    animation: kenBurns 10s ease-out forwards;
}

/* Dark Gradient Overlay for text readability */
.hero-overlay {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 2;
}

/* Frosted Glass Content Box */
.hero-content {
    position: relative;
    z-index: 3;
    padding: 3rem;
    max-width: 700px;
    margin-right: auto; /* Aligns to left mostly */
    margin-left: 10%;
    text-align: left;
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-left: 4px solid var(--accent-color, #e67e22);
    border-radius: 0 16px 16px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.4s;
}
.carousel-slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-subtitle {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-content h1 {
    font-family: var(--font-family-headings);
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.15rem;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* Luxury CTA Button */
.lux-cta-btn {
    display: inline-block;
    padding: 16px 36px;
    background: #fff;
    color: #111;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}
.lux-cta-btn::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(0,0,0,0.1), transparent);
    transition: all 0.6s ease;
}
.lux-cta-btn:hover { background: var(--accent-color); color: #fff; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.lux-cta-btn:hover::before { left: 100%; }

/* Navigation & Progress Bars */
.hero-nav-wrapper {
    position: absolute;
    bottom: 40px; right: 5%;
    display: flex; align-items: center; gap: 20px;
    z-index: 10;
}

.carousel-btn {
    background: rgba(255,255,255,0.1); 
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: white; border: 1px solid rgba(255,255,255,0.2);
    width: 50px; height: 50px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.3s ease;
}
.carousel-btn:hover { background: #fff; color: #111; transform: scale(1.1); }

.carousel-indicators { display: flex; gap: 10px; align-items: center; }
.progress-dot {
    width: 40px; height: 3px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px; cursor: pointer; position: relative; overflow: hidden;
}
.progress-bar {
    position: absolute; top: 0; left: 0; height: 100%; width: 0%;
    background: var(--accent-color); transition: width 0.3s;
}
.progress-dot.active .progress-bar { animation: fillProgress 6s linear forwards; }
@keyframes fillProgress { from { width: 0%; } to { width: 100%; } }

/* Scroll Arrow */
.scroll-indicator {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    z-index: 10; color: #fff; display: flex; flex-direction: column; align-items: center;
    opacity: 0.7; animation: bounce 2s infinite; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase;
}
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); } 40% { transform: translateY(-10px) translateX(-50%); } 60% { transform: translateY(-5px) translateX(-50%); } }


/* ========================================= */
/* LUXURY INFINITE MARQUEE TICKER            */
/* ========================================= */
.lux-marquee-section {
    background: #111;
    color: #fff;
    padding: 15px 0;
    overflow: hidden;
    display: flex;
    white-space: nowrap;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}

.marquee-content {
    display: flex;
    animation: scrollMarquee 25s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.marquee-text {
    font-family: var(--font-family-headings);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 40px;
    padding-right: 40px;
}

/* 5-LAKH UPGRADE: Metallic Shimmer on Marquee Text */
.marquee-text span {
    background: linear-gradient(to right, #ffffff 20%, var(--accent-color) 50%, #ffffff 80%);
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 4s linear infinite;
}

@keyframes textShimmer {
    to { background-position: 200% center; }
}

.marquee-text i {
    color: var(--accent-color, #e67e22);
    font-size: 1.2rem;
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}


/* ========================================= */
/* GLOBAL SECTION HEADERS                    */
/* ========================================= */
.lux-container { max-width: 1300px; margin: 0 auto; }
.section-header-center { text-align: center; margin-bottom: 4rem; }
.lux-section-title { font-family: var(--font-family-headings); font-size: 2.8rem; font-weight: 800; color: #111; letter-spacing: -1px; margin-bottom: 0.5rem; }
.title-underline { width: 60px; height: 4px; background: var(--accent-color); margin: 0 auto; border-radius: 2px; }
.section-subtitle { font-size: 1.1rem; color: #666; margin-top: 1rem; font-weight: 300; }

.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; }
.title-underline-left { width: 60px; height: 4px; background: var(--accent-color); border-radius: 2px; margin-top: 5px; }
.view-all-link { font-size: 1rem; font-weight: 600; color: #111; text-decoration: none; display: flex; align-items: center; gap: 8px; transition: color 0.3s; }
.view-all-link:hover { color: var(--accent-color); }
.view-all-link i { font-size: 1.2rem; transition: transform 0.3s; }
.view-all-link:hover i { transform: translateX(5px); }


/* ========================================= */
/* CATEGORIES: ROOM SHOWCASE STACKS          */
/* ========================================= */
.category-section { padding: 6rem 2rem; background: #fafafa; }

.room-showcase {
    margin-bottom: 5rem;
}
.room-showcase:last-child {
    margin-bottom: 0;
}

.room-showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1.5rem;
    padding-bottom: 10px;
    border-bottom: 1px solid #eaeaea;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.room-showcase-header h3 {
    font-family: var(--font-family-headings);
    font-size: 1.8rem;
    color: #111;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.5px;
}

.swipe-indicator {
    display: none;
    color: #888;
    font-size: 0.8rem;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.swipe-indicator i {
    font-size: 1.1rem;
    color: var(--accent-color);
    animation: swipeAnim 2s infinite;
}

@keyframes swipeAnim {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-5px); }
}

/* ========================================= */
/* CATEGORIES: EDITORIAL BENTO BOX GRID      */
/* ========================================= */
.category-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 1.5rem; 
    max-width: 1300px; 
    margin: 0 auto;
    grid-auto-flow: dense;
}

.bento-card {
    position: relative; 
    height: 100%; 
    border-radius: 24px; 
    overflow: hidden;
    display: block; 
    text-decoration: none; 
    background: #fff;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), 
                box-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    z-index: 1;
}

/* Removed cat-full strictly to preserve image aspect ratio */
.cat-large { grid-column: span 2; grid-row: span 2; }
.cat-wide { grid-column: span 2; grid-row: span 1; }
.cat-tall { grid-column: span 1; grid-row: span 2; }
.cat-standard { grid-column: span 1; grid-row: span 1; }

.bento-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cat-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
    opacity: 0.6; transition: opacity 0.4s ease;
}

.cat-glass-pill {
    position: absolute;
    bottom: 25px; left: 25px; right: 25px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 24px;
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(10px);
    opacity: 0.9;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.cat-glass-pill h3 { 
    font-family: var(--font-family-headings); 
    color: #111; 
    margin: 0; 
    font-size: 1.15rem; 
    font-weight: 700; 
    letter-spacing: 0.5px; 
}

/* Specific scaling for the 1x1 Standard cards to prevent text overflow */
.cat-standard .cat-glass-pill { padding: 12px 18px; }
.cat-standard .cat-glass-pill h3 { font-size: 0.95rem; }

.pill-icon {
    width: 38px; height: 38px; 
    background: #111; color: #fff;
    border-radius: 50%; 
    display: flex; align-items: center; justify-content: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); 
    transform: scale(0.8) translateX(-10px); 
    opacity: 0;
}

.cat-standard .pill-icon { width: 30px; height: 30px; }
.cat-standard .pill-icon i { font-size: 1rem; }

.bento-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12), 0 0 35px rgba(230, 126, 34, 0.18);
    z-index: 10;
}
.bento-card:hover img { transform: scale(1.08); }
.bento-card:hover .cat-overlay { opacity: 0.8; }
.bento-card:hover .cat-glass-pill {
    transform: translateY(0); 
    opacity: 1; 
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.bento-card:hover .pill-icon {
    transform: scale(1) translateX(0); 
    opacity: 1;
}

/* ========================================= */
/* PREMIUM SCROLL GRIDS (Bestsellers/Latest) */
/* ========================================= */
.bestsellers-section { padding: 6rem 2rem; background-color: #fcfcfc; border-top: 1px solid #f0f0f0; }
.latest-products-section { padding: 6rem 2rem; background-color: #fff; border-top: 1px solid #f0f0f0; }

.slider-wrapper { position: relative; }
.horizontal-scroll-grid {
    display: flex; gap: 2rem; overflow-x: auto;
    padding: 10px 5px 40px 5px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; 
}
.horizontal-scroll-grid::-webkit-scrollbar { display: none; } 

.slide-item {
    flex: 0 0 auto;
    width: 320px;
    scroll-snap-align: start;
}

.nav-arrow {
    position: absolute; top: 40%; transform: translateY(-50%);
    width: 50px; height: 50px; background: #fff; border: 1px solid #eee;
    border-radius: 50%; box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 10; color: #111; transition: all 0.3s ease;
}
.nav-arrow:hover { background: var(--accent-color); color: #fff; transform: translateY(-50%) scale(1.1); border-color: var(--accent-color); }
.prev-btn { left: -25px; }
.next-btn { right: -25px; }

/* --- IMPORT LUXURY PRODUCT CARD CSS --- */
.modern-product-card { background: #fff; border: 1px solid rgba(0,0,0,0.04); border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1); position: relative; height: 100%; }
.modern-product-card:hover { transform: translateY(-12px); box-shadow: 0 25px 50px rgba(0,0,0,0.08); border-color: rgba(0,0,0,0.08); }
.modern-product-card::before { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%); transform: skewX(-25deg); z-index: 10; transition: all 0.7s ease; pointer-events: none; }
.modern-product-card:hover::before { left: 200%; }
.card-badge { position: absolute; top: 18px; left: 18px; padding: 6px 16px; border-radius: 30px; font-size: 0.7rem; font-weight: 800; z-index: 11; text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.badge-sale { background: linear-gradient(135deg, #CC0C39 0%, #ff4d4d 100%); color: white; }
.badge-bestseller { background: linear-gradient(135deg, #f5b041 0%, #f39c12 100%); color: #fff; }
.badge-new { background: linear-gradient(135deg, #111 0%, #333 100%); color: white; }
.modern-card-image { position: relative; width: 100%; aspect-ratio: 1 / 1; background: linear-gradient(180deg, #fbfbfb 0%, #f4f4f4 100%); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.modern-card-image img { position: absolute; width: 100%; height: 100%; object-fit: contain; padding: 2.5rem; transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.modern-product-card:hover .modern-card-image img { transform: scale(1.1) translateY(-5px); }
.modern-card-body { padding: 2rem 1.8rem; display: flex; flex-direction: column; flex-grow: 1; background: #fff; position: relative; z-index: 2; }
.card-meta-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.8rem; }

/* Enhanced truncation for long category labels */
.product-category-label { 
    font-size: 0.7rem; color: #999; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; 
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 65%;
}

.product-sku-label { font-size: 0.75rem; font-family: 'Courier New', Courier, monospace; font-weight: 700; color: #666; background: #f5f5f5; padding: 4px 10px; border-radius: 6px; letter-spacing: 1px; border: 1px solid #eaeaea; }
.product-title { font-size: 1.25rem; font-weight: 700; color: #111; margin: 0 0 12px 0; line-height: 1.3; letter-spacing: -0.5px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; height: 3.25rem; }
.modern-price-row { margin-top: auto; display: flex; align-items: baseline; gap: 12px; margin-bottom: 0; }
.price-current { font-weight: 800; font-size: 1.4rem; color: #111; letter-spacing: -0.5px; }
.price-old { font-size: 0.95rem; color: #aaa; text-decoration: line-through; font-weight: 500; }


/* ========================================= */
/* LUXURY PROMO BANNER                       */
/* ========================================= */
.home-promo-section { padding: 0 2rem; max-width: 1300px; margin: 0 auto; }
.lux-promo-banner {
    background: linear-gradient(135deg, #111 0%, #222 100%);
    border-radius: 24px; padding: 5rem 3rem; text-align: center;
    color: #fff; position: relative; overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

/* Light Variant Promo Banner (For "About Us") */
.lux-promo-banner.light-variant {
    background: linear-gradient(135deg, #fcfcfc 0%, #f0f0f0 100%);
    color: #111;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
}
.lux-promo-banner.light-variant .promo-bg-glow {
    background: radial-gradient(circle, rgba(230,126,34,0.08) 0%, transparent 60%);
}
.lux-promo-banner.light-variant .promo-badge {
    background: rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.08);
    color: #666;
}
.lux-promo-banner.light-variant h2 {
    color: #111;
}
.lux-promo-banner.light-variant p {
    color: #555;
}
.lux-cta-btn.dark-btn {
    background: #111;
    color: #fff;
}
.lux-cta-btn.dark-btn:hover {
    background: var(--accent-color);
    color: #fff;
}

.promo-bg-glow {
    position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(230,126,34,0.15) 0%, transparent 60%);
    pointer-events: none;
}
.promo-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.promo-badge { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); padding: 6px 16px; border-radius: 30px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1.5rem; display: inline-block; }
.promo-content h2 { font-family: var(--font-family-headings); font-size: 3rem; margin-bottom: 1rem; letter-spacing: -1px; }
.promo-content p { font-size: 1.1rem; color: #ccc; margin-bottom: 2.5rem; line-height: 1.6; font-weight: 300; }
.lux-cta-btn.light { background: var(--accent-color); color: #fff; }
.lux-cta-btn.light:hover { background: #fff; color: #111; }


/* ========================================= */
/* WHY US SECTION                            */
/* ========================================= */
.why-us-section { padding: 6rem 2rem; background: #fff; }
.why-us-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; max-width: 1200px; margin: 0 auto; }
.why-card { text-align: center; padding: 2rem; }
.why-card .icon-circle { width: 80px; height: 80px; background: #fdfbfb; border: 1px solid #eee; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem auto; transition: all 0.4s ease; box-shadow: 0 10px 20px rgba(0,0,0,0.03); }
.why-card .icon-circle i { font-size: 2rem; color: #111; }
.why-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1rem; color: #111; }
.why-card p { color: #666; line-height: 1.6; font-weight: 300; }
.why-card:hover .icon-circle { transform: translateY(-10px); background: #111; border-color: #111; box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.why-card:hover .icon-circle i { color: #fff; }


/* ========================================= */
/* SPLASH SCREEN & MODAL                     */
/* ========================================= */
#welcome-splash { position: fixed; inset: 0; background-color: #111; color: #fff; z-index: 9999; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out; }
.splash-content { text-align: center; }
.splash-logo { font-family: var(--font-family-headings); font-size: 3rem; font-weight: 800; letter-spacing: -1px; margin-bottom: 10px; animation: slideUpFadeIn 1s ease-out forwards; opacity: 0; }
.splash-line { width: 40px; height: 2px; background: var(--accent-color); margin: 0 auto 1rem auto; animation: slideUpFadeIn 1s ease-out 0.2s forwards; opacity: 0; }
.splash-tagline { font-size: 1.1rem; color: #aaa; font-weight: 300; animation: slideUpFadeIn 1s ease-out 0.4s forwards; opacity: 0; }
.fade-out { opacity: 0; visibility: hidden; }

.welcome-modal-overlay { position: fixed; inset: 0; z-index: 10000; background-color: rgba(0, 0, 0, 0.7); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.5s ease; }
.welcome-modal-overlay.hidden { display: none; }
.welcome-modal-overlay.active { opacity: 1; }
.welcome-modal-card { background: #fff; border-radius: 24px; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3); padding: 40px; width: 92%; max-width: 450px; transform: scale(0.95); opacity: 0; transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1); }
.welcome-modal-card.active { transform: scale(1); opacity: 1; }
.modal-icon { font-size: 3.5rem; text-align: center; margin-bottom: 15px; }
.modal-header { text-align: center; margin-bottom: 30px; }
.modal-header h2 { font-family: var(--font-family-headings); font-size: 2.2rem; font-weight: 800; color: #111; letter-spacing: -1px; margin-bottom: 5px; }
.modal-header p { color: #666; font-size: 1rem; }
.modal-features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 35px; }
.feature-item { display: flex; align-items: center; gap: 15px; color: #333; }
.feature-emoji { font-size: 1.5rem; background: #f9f9f9; width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.feature-text { font-size: 0.95rem; font-weight: 500; }
.start-btn { width: 100%; background-color: #111; color: white; font-weight: 700; font-size: 1.1rem; padding: 16px; border: none; border-radius: 12px; cursor: pointer; transition: all 0.3s ease; }
.start-btn:hover { background: var(--accent-color); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }


/* ========================================= */
/* RESPONSIVE DESIGN                         */
/* ========================================= */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 3.2rem; }
    .lux-section-title { font-size: 2.4rem; }
    
    .category-bento-grid { 
        grid-template-columns: repeat(2, 1fr); 
        grid-auto-rows: 250px; 
    }
    .cat-large { grid-column: span 2; grid-row: span 2; }
    .cat-wide { grid-column: span 2; grid-row: span 1; }
    .cat-tall { grid-column: span 1; grid-row: span 2; }
    .cat-standard { grid-column: span 1; grid-row: span 1; }
}

@media (max-width: 768px) {
    .hero-carousel { height: 85vh; min-height: 500px; }
    .hero-content { margin-left: 0; padding: 2rem; border-left: none; border-radius: 0; background: transparent; backdrop-filter: none; text-align: center; margin-top: 10%; }
    .hero-overlay { background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 100%); }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content p { font-size: 1rem; margin-bottom: 2rem; }
    .hero-nav-wrapper { right: 50%; transform: translateX(50%); bottom: 20px; }
    
    .section-header { flex-direction: column; align-items: center; gap: 15px; text-align: center; }
    .title-underline-left { margin: 5px auto 0 auto; }
    
    .lux-section-title { font-size: 2rem; }
    
    .slide-item { width: 260px; }
    .nav-arrow { display: none; }
    .horizontal-scroll-grid { padding-bottom: 20px; }
    
    .lux-promo-banner { padding: 3rem 1.5rem; }
    .promo-content h2 { font-size: 2rem; }
    
    .why-us-grid { gap: 2rem; }
    .why-card { padding: 1rem; }

    .marquee-text { font-size: 0.9rem; gap: 30px; padding-right: 30px;}
    
    /* Room Stack Adjustments */
    .room-showcase { margin-bottom: 3.5rem; }
    
    /* 5-Lakh Feature: Keep header inline and hide text */
    .room-showcase-header { align-items: center; }
    .room-showcase-header h3 { font-size: 1.5rem; white-space: nowrap; margin-right: 10px; }
    
    .swipe-indicator { display: flex; }
    .swipe-text { display: none; } /* Text disappears completely */
    .swipe-indicator i { font-size: 1.5rem; animation: swipeAnim 2s infinite; }
    
    .category-bento-grid { 
        display: flex; flex-wrap: nowrap; overflow-x: auto; scroll-snap-type: x mandatory; 
        gap: 1rem; padding-bottom: 20px; margin-left: -2rem; margin-right: -2rem; 
        padding-left: 2rem; padding-right: 2rem; scrollbar-width: none; 
    }
    .category-bento-grid::-webkit-scrollbar { display: none; }
    .bento-card { flex: 0 0 82vw; height: 320px; scroll-snap-align: center; }
    .cat-large, .cat-wide, .cat-tall, .cat-standard { grid-column: unset; grid-row: unset; }
    .cat-glass-pill { bottom: 15px; left: 15px; right: 15px; padding: 14px 20px; transform: translateY(0); opacity: 1; }
    .pill-icon { transform: scale(1) translateX(0); opacity: 1; }
}