/* ============================================
   ELEGANT DECOR - COMPLETE PREMIUM STYLESHEET
   Version: 4.0
   Last Updated: 2026-06-12
   
   Brand Colors:
   - Primary: #0A2D8C (Deep Royal Blue)
   - Secondary: #A8D8F0 (Soft Sky Blue)
   - Gold Accent: #D4AF37 (Luxury Gold)
   - Dark: #0F172A (Deep Navy)
   - White: #FFFFFF
   - Gray: #F8FAFC
   
   Features:
   ✓ Premium Top Bar with ISO, Brand Tagline, Contact
   ✓ Phone: +91-98714-36494 | Email: info@elegantndecor.com
   ✓ ISO 9001:2015 Certified | India's Premium Furnishing Brand
   ✓ Logo hover shadow & glow effects
   ✓ Logo positioned near Home button
   ✓ Premium mega menu with gold accents
   ✓ Social media icons in footer
   ✓ Complete product listing in footer
   ✓ Lead generation optimized
   ✓ Fully responsive (mobile-first)
   ✓ PageSpeed optimized
   ✓ Smooth animations
   ✓ Accessibility ready
   ============================================ */

/* ============================================
   CSS VARIABLES & ROOT SETTINGS
   ============================================ */
:root {
    /* Primary Colors */
    --primary: #0A2D8C;
    --primary-dark: #061F5E;
    --primary-light: #1E40AF;
    --primary-rgb: 10, 45, 140;
    
    /* Secondary Colors */
    --secondary: #A8D8F0;
    --secondary-dark: #7EC8E3;
    --secondary-light: #D4EDF9;
    
    /* Accent Colors */
    --gold: #D4AF37;
    --gold-dark: #B8960F;
    --gold-light: #F0D675;
    --gold-rgb: 212, 175, 55;
    
    /* Neutral Colors */
    --dark: #0F172A;
    --dark-light: #1E293B;
    --dark-rgb: 15, 23, 42;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;
    --white: #FFFFFF;
    --black: #000000;
    
    /* Social Media Colors */
    --facebook: #1877F2;
    --instagram: #E4405F;
    --twitter: #000000;
    --linkedin: #0A66C2;
    --youtube: #FF0000;
    --pinterest: #BD081C;
    --whatsapp-color: #25D366;
    
    /* Semantic Colors */
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    --info: #3B82F6;
    
    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Playfair Display', Georgia, serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-gold: 0 10px 30px -5px rgba(212, 175, 55, 0.4);
    --shadow-primary: 0 10px 30px -5px rgba(10, 45, 140, 0.3);
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
    
    /* Layout */
    --header-height: 75px;
    --topbar-height: 42px;
    --header-total-height: 117px;
    --container-max: 1280px;
    --container-padding: 1rem;
}

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark);
    margin-bottom: var(--space-md);
}

h1 { font-size: var(--font-size-5xl); letter-spacing: -0.02em; }
h2 { font-size: var(--font-size-4xl); letter-spacing: -0.01em; }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-base); font-family: var(--font-primary); font-weight: 600; }

p { margin-bottom: var(--space-md); color: var(--gray-600); }

a {
    color: var(--primary);
    text-decoration: none;
    transition: all var(--transition-fast);
}

a:hover { color: var(--primary-dark); }

ul, ol { list-style: none; padding: 0; margin: 0; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

/* ============================================
   PREMIUM TOP BAR (Above Menu Line)
   Multi-color gradient with ISO, Brand, Contact
   ============================================ */
/* ============================================
   PREMIUM TOP BAR (Above Menu Line)
   Light Grey/White Background
   Sequence: Phone | Email | Brand Tagline | WhatsApp | ISO
   ============================================ */
.premium-top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1003;
    height: 42px;
    /* Light grey-white gradient for differentiation */
    background: linear-gradient(
        180deg,
        #FFFFFF 0%,
        #F8FAFC 40%,
        #F1F5F9 100%
    );
    border-bottom: 2px solid #E2E8F0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.top-bar-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 42px;
    gap: 1rem;
}

/* ============================================
   TOP BAR - ALL ITEMS IN SINGLE ROW
   ============================================ */
.top-bar-left {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: nowrap;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: nowrap;
}

/* ============================================
   INDIVIDUAL TOP BAR ITEMS
   ============================================ */

/* Phone Number - First Item (Prominent) */
.top-phone-number {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #0A2D8C;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.top-phone-number:hover {
    color: #D4AF37;
    background: rgba(212, 175, 55, 0.08);
}

.top-phone-number .phone-icon-ring {
    font-size: 0.75rem;
    color: #D4AF37;
    animation: phoneRing 2s ease-in-out infinite;
}

.top-phone-number .phone-text {
    font-size: 0.9rem;
}

/* Email - Second Item */
.top-email-link {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: #475569;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.top-email-link i {
    color: #64748B;
    font-size: 0.75rem;
}

.top-email-link:hover {
    color: #0A2D8C;
    background: rgba(10, 45, 140, 0.05);
}

.top-email-link:hover i {
    color: #0A2D8C;
}

/* Brand Tagline - Third Item */
.brand-tagline-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #334155;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 0.2rem 0.5rem;
    white-space: nowrap;
    border-left: 1px solid #E2E8F0;
    border-right: 1px solid #E2E8F0;
}

.brand-tagline-item i {
    color: #D4AF37;
    font-size: 0.7rem;
}

/* WhatsApp - Fourth Item */
.top-whatsapp-link {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: #475569;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.top-whatsapp-link i {
    color: #25D366;
    font-size: 0.85rem;
}

.top-whatsapp-link:hover {
    color: #25D366;
    background: rgba(37, 211, 102, 0.08);
}

/* ISO Certification - Fifth Item (Badge Style) */
.iso-badge-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, #F8FAFC, #F1F5F9);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    border: 1px solid #CBD5E1;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.iso-badge-item:hover {
    background: linear-gradient(135deg, #F1F5F9, #E2E8F0);
    border-color: #D4AF37;
    box-shadow: 0 1px 4px rgba(212, 175, 55, 0.15);
}

.iso-badge-item i {
    color: #D4AF37;
    font-size: 0.8rem;
    animation: certificateGlow 2s ease-in-out infinite;
}

.iso-badge-item span {
    color: #334155;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ============================================
   TOP BAR DIVIDERS (Vertical Lines)
   ============================================ */
.top-divider {
    color: #CBD5E1;
    font-size: 0.8rem;
    font-weight: 300;
    user-select: none;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes phoneRing {
    0%, 100% { transform: rotate(0deg); }
    5% { transform: rotate(15deg); }
    10% { transform: rotate(-15deg); }
    15% { transform: rotate(10deg); }
    20% { transform: rotate(-10deg); }
    25% { transform: rotate(0deg); }
}

@keyframes certificateGlow {
    0%, 100% { 
        color: #D4AF37; 
        text-shadow: 0 0 3px rgba(212, 175, 55, 0.3); 
    }
    50% { 
        color: #B8960F; 
        text-shadow: 0 0 6px rgba(212, 175, 55, 0.5); 
    }
}

/* ============================================
   MAIN HEADER (Menu Line) - Clear Differentiation
   ============================================ */
.site-header {
    position: fixed;
    top: 42px; /* Below top bar */
    left: 0;
    right: 0;
    z-index: 1000;
    background: #FFFFFF;
    border-bottom: 2px solid #E2E8F0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all var(--transition-base);
    height: var(--header-height);
}

.site-header.sticky {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    height: 65px;
    top: 0;
}

/* ============================================
   HERO SECTION (Adjusted for new header)
   ============================================ */
.hero-slider {
    margin-top: calc(var(--header-height) + 42px);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Large Tablets */
@media (max-width: 1200px) {
    .brand-tagline-item span {
        /* Hide "India's Premium Furnishing Brand" text, keep icon */
        font-size: 0;
    }
    .brand-tagline-item i {
        font-size: 0.9rem;
    }
    .top-email-link .email-text {
        display: none;
    }
    .top-email-link i {
        font-size: 0.9rem;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .premium-top-bar {
        height: 38px;
    }
    
    .top-bar-row {
        height: 38px;
    }
    
    .site-header {
        top: 38px;
    }
    
    .hero-slider {
        margin-top: calc(var(--header-height) + 38px);
    }
    
    .brand-tagline-item {
        display: none;
    }
    
    .iso-badge-item span {
        font-size: 0.65rem;
    }
    
    .top-phone-number {
        font-size: 0.8rem;
    }
}

/* Mobile Phones */
@media (max-width: 768px) {
    .premium-top-bar {
        height: 36px;
    }
    
    .top-bar-row {
        height: 36px;
        justify-content: center;
    }
    
    /* Hide less critical items on mobile */
    .top-email-link,
    .brand-tagline-item,
    .top-whatsapp-link .whatsapp-text {
        display: none;
    }
    
    .top-whatsapp-link {
        padding: 0.2rem 0.4rem;
    }
    
    .top-whatsapp-link i {
        font-size: 1rem;
    }
    
    .iso-badge-item span {
        font-size: 0.6rem;
    }
    
    .iso-badge-item {
        padding: 0.2rem 0.5rem;
    }
    
    .top-phone-number {
        font-size: 0.8rem;
        padding: 0.2rem 0.4rem;
    }
    
    .site-header {
        top: 36px;
        height: 65px;
    }
    
    .hero-slider {
        margin-top: calc(65px + 36px);
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .premium-top-bar {
        height: 34px;
    }
    
    .top-bar-row {
        height: 34px;
        gap: 0.3rem;
    }
    
    .iso-badge-item {
        display: none;
    }
    
    .top-phone-number {
        font-size: 0.75rem;
    }
    
    .site-header {
        top: 34px;
        height: 60px;
    }
    
    .hero-slider {
        margin-top: calc(60px + 34px);
    }
}
/* ============================================
   MAIN HEADER (Menu Line)
   ============================================ */
.site-header {
    position: fixed;
    top: var(--topbar-height);
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.99);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--gray-200);
    transition: all var(--transition-base);
    height: var(--header-height);
}

.site-header.sticky {
    box-shadow: var(--shadow-lg);
    height: 65px;
    top: 0;
    background: rgba(255, 255, 255, 0.99);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    gap: var(--space-md);
}

/* ============================================
   LOGO WITH HOVER SHADOW EFFECTS
   ============================================ */
.logo {
    flex-shrink: 0;
    margin-right: var(--space-sm);
    position: relative;
    z-index: 10;
}

.logo a {
    display: block;
    position: relative;
    transition: all var(--transition-base);
}

.logo img {
    height: 52px;
    width: auto;
    transition: all var(--transition-base);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo:hover img {
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5)) 
            drop-shadow(0 0 25px rgba(10, 45, 140, 0.4))
            drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
    transform: scale(1.05);
    animation: logoGlow 1.5s ease-in-out infinite alternate;
}

.logo::after {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(
        circle,
        rgba(212, 175, 55, 0.2) 0%,
        rgba(10, 45, 140, 0.1) 30%,
        transparent 70%
    );
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: -1;
    pointer-events: none;
}

.logo:hover::after {
    opacity: 1;
    animation: pulseGlow 2s ease-in-out infinite;
}

.sticky .logo img {
    height: 42px;
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3)) 
                drop-shadow(0 0 20px rgba(10, 45, 140, 0.2))
                drop-shadow(0 3px 10px rgba(0, 0, 0, 0.15));
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6)) 
                drop-shadow(0 0 35px rgba(10, 45, 140, 0.4))
                drop-shadow(0 8px 20px rgba(0, 0, 0, 0.25));
    }
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 0.9; }
}

/* ============================================
   MAIN NAVIGATION (Menu Items)
   ============================================ */
.main-nav {
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.nav-list > li {
    position: relative;
}

.nav-list > li > a {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.55rem 0.85rem;
    color: var(--gray-700);
    font-size: var(--font-size-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.nav-list > li > a:hover,
.nav-list > li.active > a {
    color: var(--primary);
    background: linear-gradient(135deg, var(--gray-50), var(--secondary-light));
}

.nav-list > li.active > a {
    position: relative;
    font-weight: 600;
    color: var(--primary);
}

.nav-list > li.active > a::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 2px;
    background: var(--gold);
    border-radius: var(--radius-full);
}

.nav-list > li > a .arrow-down {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform var(--transition-fast);
}

.nav-list > li:hover > a .arrow-down {
    transform: rotate(180deg);
}

/* ============================================
   MEGA MENU
   ============================================ */
.mega-menu-trigger {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    padding: var(--space-2xl);
    width: 900px;
    max-width: 95vw;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-100);
    z-index: 100;
}

.mega-menu-trigger:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-xl);
}

.mega-col h4 {
    font-family: var(--font-primary);
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--gold);
}

.mega-col h4 a {
    color: var(--primary);
    transition: color var(--transition-fast);
}

.mega-col h4 a:hover {
    color: var(--gold);
}

.mega-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mega-col ul li a {
    display: block;
    padding: 0.3rem 0;
    color: var(--gray-600);
    font-size: var(--font-size-sm);
    transition: all var(--transition-fast);
    position: relative;
}

.mega-col ul li a::before {
    content: '▸';
    color: var(--gold);
    margin-right: 0.5rem;
    font-size: 0.7rem;
    transition: all var(--transition-fast);
    opacity: 0;
    transform: translateX(-10px);
    display: inline-block;
}

.mega-col ul li a:hover {
    color: var(--gold);
    padding-left: 0.75rem;
}

.mega-col ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Header Actions (Right Side) */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-shrink: 0;
    margin-left: auto;
}

.header-actions .btn {
    padding: 0.5rem 1rem;
    font-size: var(--font-size-xs);
}
/* ============================================
   HEADER ACTIONS
   ============================================ */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    margin-left: auto;
}

.btn-quote-header {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
    white-space: nowrap;
    font-weight: 700;
}

/* ============================================
   MOBILE MENU TOGGLE
   ============================================ */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
    padding: 0.5rem;
    margin-left: var(--space-sm);
    transition: color var(--transition-fast);
}

.mobile-menu-toggle:hover {
    color: var(--gold);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-primary);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    line-height: 1.4;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform var(--transition-base);
}

.btn:hover::after {
    transform: translateX(0);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-color: var(--primary);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark);
    border-color: var(--gold);
    font-weight: 700;
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline-dark:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    border-color: #25D366;
}
.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-sm { padding: 0.5rem 1rem; font-size: var(--font-size-xs); }
.btn-lg { padding: 1rem 2.5rem; font-size: var(--font-size-base); }
.btn-xl { padding: 1.25rem 3rem; font-size: var(--font-size-lg); }
.btn-block { width: 100%; display: flex; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
    margin-top: var(--header-total-height);
}

.hero-slide {
    position: relative;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(var(--dark-rgb), 0.85) 0%,
        rgba(var(--dark-rgb), 0.6) 50%,
        rgba(var(--primary-rgb), 0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: var(--space-2xl);
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    color: var(--white);
    font-size: var(--font-size-6xl);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content .subheadline {
    color: var(--secondary-light);
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-2xl);
    font-weight: 300;
    letter-spacing: 0.02em;
}

.hero-btns {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.hero-content::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: var(--space-lg) auto;
    border-radius: var(--radius-full);
}

/* ============================================
   SECTION TITLES
   ============================================ */
.section-title {
    text-align: center;
    margin-bottom: var(--space-3xl);
    position: relative;
    padding-bottom: var(--space-lg);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--primary));
    border-radius: var(--radius-full);
}

.section-title h2 {
    font-size: var(--font-size-4xl);
    color: var(--dark);
    margin-bottom: var(--space-sm);
}

.section-title p {
    color: var(--gray-500);
    font-size: var(--font-size-lg);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   TRUST COUNTERS
   ============================================ */
.counters-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    position: relative;
    overflow: hidden;
}

.counters-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.counters-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 50%;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
}

.counter-item {
    text-align: center;
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform var(--transition-base);
}

.counter-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.counter {
    display: block;
    font-size: var(--font-size-5xl);
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-secondary);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.counter-item p {
    color: var(--white);
    font-size: var(--font-size-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
    opacity: 0.9;
}

/* ============================================
   SHOP BY CATEGORY
   ============================================ */
.categories-section {
    padding: var(--space-4xl) 0;
    background: var(--gray-50);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: var(--space-lg);
}

.cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.cat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--primary));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.cat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.cat-card:hover::before {
    transform: scaleX(1);
}

.cat-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    transition: transform var(--transition-base);
}

.cat-card:hover img {
    transform: scale(1.05);
}

.cat-card h3 {
    font-family: var(--font-primary);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.why-item {
    padding: var(--space-2xl) var(--space-xl);
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
    position: relative;
}

.why-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.why-item .why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-lg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
}

.why-item:nth-child(1) .why-icon { background: linear-gradient(135deg, var(--primary-light), var(--primary)); }
.why-item:nth-child(2) .why-icon { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
.why-item:nth-child(3) .why-icon { background: linear-gradient(135deg, var(--secondary-dark), var(--primary-light)); }
.why-item:nth-child(4) .why-icon { background: linear-gradient(135deg, var(--gold-dark), var(--primary)); }
.why-item:nth-child(5) .why-icon { background: linear-gradient(135deg, var(--primary), var(--gold)); }
.why-item:nth-child(6) .why-icon { background: linear-gradient(135deg, var(--secondary-dark), var(--gold)); }

.why-item h3 {
    font-family: var(--font-primary);
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--dark);
}

.why-item p {
    color: var(--gray-500);
    font-size: var(--font-size-sm);
    margin: 0;
}

/* ============================================
   FEATURED PRODUCTS
   ============================================ */
.featured-products {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.product-carousel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-200);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card .product-info {
    padding: var(--space-lg);
}

.product-card h3 {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.product-card h3 a {
    color: var(--dark);
}

.product-card h3 a:hover {
    color: var(--primary);
}

.product-card p {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
    margin-bottom: var(--space-md);
}

.product-card .btn {
    width: 100%;
    justify-content: center;
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
}

.badge-new { background: var(--success); color: var(--white); }
.badge-sale { background: var(--error); color: var(--white); }
.badge-bestseller { background: var(--gold); color: var(--dark); }

/* ============================================
   ROOM INSPIRATION TABS
   ============================================ */
.room-inspo {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.room-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.tab {
    padding: 0.75rem 1.5rem;
    background: var(--gray-100);
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.tab:hover {
    background: var(--gray-200);
    color: var(--dark);
}

.tab.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-primary);
}

.room-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

/* ============================================
   PROJECT GALLERY
   ============================================ */
.project-gallery-section {
    padding: var(--space-4xl) 0;
    background: var(--gray-50);
}

.masonry-grid {
    columns: 3;
    column-gap: var(--space-lg);
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: var(--space-lg);
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-base);
}

.masonry-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
}

.masonry-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-lg);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.masonry-item:hover .overlay {
    opacity: 1;
}

.overlay h4 {
    color: var(--white);
    margin: 0;
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
}

.overlay p {
    color: var(--secondary-light);
    margin: 0.25rem 0 0;
    font-size: var(--font-size-xs);
}

.project-filters {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    display: inline-block;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    align-items: center;
    justify-content: center;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

.lightbox-close:hover {
    color: var(--gold);
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.lightbox-caption {
    text-align: center;
    color: #fff;
    margin-top: 10px;
}

.lightbox-caption h4 {
    color: var(--white);
    margin-bottom: 0.25rem;
}

.lightbox-caption p {
    color: var(--gray-400);
    margin: 0;
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: none;
    font-size: 30px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background: rgba(255,255,255,0.5);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-counter {
    text-align: center;
    color: #fff;
    margin-top: 10px;
    font-size: 14px;
}

/* ============================================
   BEFORE & AFTER SLIDER
   ============================================ */
.before-after {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.ba-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    position: relative;
}

.reviews-section h2 {
    color: var(--white);
}

.review-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.review-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stars {
    color: var(--gold);
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-md);
    letter-spacing: 2px;
}

.review-card p {
    color: var(--white);
    font-style: italic;
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.review-card strong {
    color: var(--gold);
    display: block;
    font-weight: 600;
}

/* ============================================
   BRANDS SECTION
   ============================================ */
.brands {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.brand-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.brand-carousel img {
    height: 50px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all var(--transition-base);
}

.brand-carousel img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ============================================
   SERVICE CITIES
   ============================================ */
.service-cities {
    padding: var(--space-4xl) 0;
    background: var(--gray-50);
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--space-md);
}

.city-grid a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: var(--space-md) var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-md);
    color: var(--dark);
    font-weight: 500;
    font-size: var(--font-size-sm);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border-left: 3px solid transparent;
}

.city-grid a:hover {
    border-left-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
    color: var(--primary);
}

.city-grid a .city-icon {
    color: var(--gold);
    font-size: 1.1rem;
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-section {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-200);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover img { transform: scale(1.05); }

.blog-card .blog-content { padding: var(--space-lg); }

.blog-card .blog-date {
    font-size: var(--font-size-xs);
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
}

.blog-card h3 {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: var(--space-sm);
}

.blog-card h3 a { color: var(--dark); }
.blog-card h3 a:hover { color: var(--primary); }

.blog-card p {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
    margin-bottom: var(--space-md);
}

.read-more {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: gap var(--transition-fast);
}

.read-more:hover { gap: 0.5rem; color: var(--gold); }

/* ============================================
   LEAD FORM SECTION
   ============================================ */
.lead-form-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--dark), var(--primary-dark));
    position: relative;
}

.lead-form-section h2 { color: var(--white); }
.lead-form-section .section-title p { color: var(--secondary-light); }

.ajax-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.form-grid .full-width { grid-column: 1 / -1; }

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.form-group label {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: var(--font-size-sm);
    color: var(--dark);
    background: var(--gray-50);
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-message {
    margin-top: var(--space-md);
    text-align: center;
}

.form-message .success {
    color: var(--success);
    background: rgba(16, 185, 129, 0.1);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    font-weight: 500;
}

.form-message .error {
    color: var(--error);
    background: rgba(239, 68, 68, 0.1);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    font-weight: 500;
}

/* ============================================
   PAGE BANNER (Inner Pages)
   ============================================ */
.page-banner {
    padding: calc(var(--header-total-height) + 3rem) 0 3rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    text-align: center;
    position: relative;
}

.page-banner h1 {
    color: var(--white);
    font-size: var(--font-size-5xl);
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.page-banner .breadcrumb {
    position: relative;
    z-index: 1;
    color: var(--secondary-light);
    font-size: var(--font-size-sm);
}

.page-banner .breadcrumb a { color: var(--gold); }
.page-banner .breadcrumb a:hover { color: var(--gold-light); }

/* ============================================
   PRODUCT GALLERY (Detail Page)
   ============================================ */
.gallery-hero-slider {
    margin-top: var(--header-total-height);
    height: 500px;
    position: relative;
    overflow: hidden;
}
.gallery-hero-slider .hero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.gallery-hero-slider .hero-slide.active { opacity: 1; z-index: 1; }
.gallery-hero-slider .hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}
.slider-caption {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    padding-bottom: 3rem;
}
.gallery-hero-slider .hero-prev,
.gallery-hero-slider .hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    z-index: 5;
    border-radius: 4px;
}
.gallery-hero-slider .hero-prev { left: 1rem; }
.gallery-hero-slider .hero-next { right: 1rem; }
.gallery-hero-slider .hero-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 0.5rem;
}
.gallery-hero-slider .dot {
    width: 12px; height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
}
.gallery-hero-slider .dot.active { background: var(--gold); }
.product-gallery .gallery-main img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    margin-top: 1rem;
}

.gallery-thumbs img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.gallery-thumbs img:hover {
    border-color: var(--gold);
}

.product-title {
    font-size: var(--font-size-3xl);
    margin-bottom: 0.5rem;
}

.product-price-range {
    font-size: var(--font-size-xl);
    color: var(--primary);
    font-weight: 700;
}

.product-cta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Tabs */
.nav-tabs {
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    gap: 0;
}

.nav-tabs .nav-link {
    color: var(--gray-600);
    font-weight: 600;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 0.75rem 1.5rem;
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.nav-tabs .nav-link.active {
    color: var(--primary);
    border-bottom-color: var(--gold);
    background: transparent;
}

.tab-content {
    border: 1px solid var(--gray-200);
    border-top: none;
    padding: var(--space-lg);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* ============================================
   PREMIUM FOOTER
   ============================================ */
.site-footer {
    background: linear-gradient(180deg, #0B1A3B 0%, var(--dark) 100%);
    color: var(--gray-300);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--gold) 20%, 
        var(--primary-light) 50%, 
        var(--gold) 80%, 
        transparent 100%
    );
}

.footer-main {
    padding: var(--space-4xl) 0 var(--space-2xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-2xl);
}

.footer-logo {
    margin-bottom: var(--space-lg);
}

.footer-logo img {
    height: 55px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all var(--transition-base);
}

.footer-logo:hover img {
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5)) brightness(0) invert(1);
    transform: scale(1.05);
}

.footer-about p {
    font-size: var(--font-size-sm);
    line-height: 1.8;
    color: var(--gray-400);
    margin-bottom: var(--space-lg);
}

.footer-col h4 {
    font-family: var(--font-primary);
    color: var(--white);
    font-size: var(--font-size-base);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
    border-radius: var(--radius-full);
    transition: width var(--transition-base);
}

.footer-col:hover h4::after {
    width: 100%;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-400);
    font-size: var(--font-size-sm);
    padding: 0.3rem 0;
    transition: all var(--transition-fast);
    position: relative;
}

.footer-links li a::before {
    content: '›';
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform var(--transition-fast);
}

.footer-links li a:hover {
    color: var(--gold);
    padding-left: 0.5rem;
    transform: translateX(3px);
}

.footer-links li a:hover::before {
    transform: scale(1.3);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    color: var(--gray-400);
    font-size: var(--font-size-sm);
}

.footer-contact-item .icon {
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item a {
    color: var(--gray-400);
    transition: color var(--transition-fast);
}

.footer-contact-item a:hover {
    color: var(--gold);
}

.footer-product-category {
    margin-bottom: var(--space-lg);
}

.footer-product-category h5 {
    font-family: var(--font-primary);
    color: var(--secondary-light);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
}

/* Social Icons in Footer */
.social-links {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--white) !important;
    font-size: 1.1rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.social-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: scale(0);
    transition: transform var(--transition-base);
}

.social-icon:hover::after {
    transform: scale(1);
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: var(--white) !important;
}

.social-icon.facebook { background: var(--facebook); }
.social-icon.instagram { background: linear-gradient(135deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80); }
.social-icon.twitter { background: var(--twitter); }
.social-icon.linkedin { background: var(--linkedin); }
.social-icon.youtube { background: var(--youtube); }
.social-icon.pinterest { background: var(--pinterest); }
.social-icon.whatsapp { background: var(--whatsapp-color); }

.social-icon.facebook:hover { box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4); }
.social-icon.instagram:hover { box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4); }
.social-icon.linkedin:hover { box-shadow: 0 8px 25px rgba(10, 102, 194, 0.4); }
.social-icon.youtube:hover { box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4); }
.social-icon.pinterest:hover { box-shadow: 0 8px 25px rgba(189, 8, 28, 0.4); }

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: var(--space-xl) 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: var(--font-size-sm);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-lg);
}

.footer-bottom-links a {
    color: var(--gray-500);
    font-size: var(--font-size-sm);
    transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* ============================================
   FLOATING ELEMENTS
   ============================================ */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-base);
    animation: pulse 2s infinite;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp svg {
    width: 30px;
    height: 30px;
    fill: white;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Mobile CTA Bar */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 998;
    padding: 0.5rem;
}

.mobile-cta-bar-inner {
    display: flex;
    gap: 0.5rem;
}

.mobile-cta-bar a {
    flex: 1;
    text-align: center;
    padding: 0.75rem 0.5rem;
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.mobile-cta-bar a:nth-child(1) { background: var(--primary); }
.mobile-cta-bar a:nth-child(2) { background: #25D366; }
.mobile-cta-bar a:nth-child(3) { background: var(--gold); color: var(--dark); }

.mobile-cta-bar a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Back to Top */
#back-to-top {
    position: fixed;
    bottom: 5rem;
    left: 2rem;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

#back-to-top:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

#back-to-top.show {
    display: flex;
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    list-style: none;
    padding: 0;
}

.page-item .page-link {
    display: block;
    padding: 0.5rem 1rem;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    color: var(--gray-600);
    font-size: var(--font-size-sm);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.page-item.active .page-link {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.page-item .page-link:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.skeleton {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-300) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-md);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-primary { color: var(--primary); }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-dark { color: var(--dark); }
.text-muted { color: var(--gray-500); }
.bg-primary { background: var(--primary); }
.bg-gold { background: var(--gold); }
.bg-dark { background: var(--dark); }
.bg-gray { background: var(--gray-50); }
.bg-white { background: var(--white); }
.font-primary { font-family: var(--font-primary); }
.font-secondary { font-family: var(--font-secondary); }
.fw-bold { font-weight: 700; }
.fw-semibold { font-weight: 600; }
.fw-medium { font-weight: 500; }
.small { font-size: var(--font-size-sm); }

/* Spacing */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-md); }
.mt-2 { margin-top: var(--space-lg); }
.mt-3 { margin-top: var(--space-xl); }
.mt-4 { margin-top: var(--space-2xl); }
.mt-5 { margin-top: var(--space-3xl); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-md); }
.mb-2 { margin-bottom: var(--space-lg); }
.mb-3 { margin-bottom: var(--space-xl); }
.mb-4 { margin-bottom: var(--space-2xl); }
.mb-5 { margin-bottom: var(--space-3xl); }
.py-1 { padding-top: var(--space-md); padding-bottom: var(--space-md); }
.py-2 { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }
.py-3 { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
.py-4 { padding-top: var(--space-2xl); padding-bottom: var(--space-2xl); }
.py-5 { padding-top: var(--space-3xl); padding-bottom: var(--space-3xl); }
.px-3 { padding-left: var(--space-xl); padding-right: var(--space-xl); }
.p-3 { padding: var(--space-xl); }
.p-4 { padding: var(--space-2xl); }

/* Display */
.d-none { display: none; }
.d-block { display: block; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }
.d-flex { display: flex; }
.d-grid { display: grid; }
.flex-wrap { flex-wrap: wrap; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.gap-1 { gap: var(--space-sm); }
.gap-2 { gap: var(--space-md); }
.gap-3 { gap: var(--space-lg); }
.gap-4 { gap: var(--space-xl); }

/* Width */
.w-100 { width: 100%; }
.h-100 { height: 100%; }

/* Border */
.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

/* Image */
.img-fluid { max-width: 100%; height: auto; }

/* Row / Col (Simple Grid) */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8 {
    padding: 0 15px;
    flex: 0 0 auto;
}
.col-lg-4 { width: 33.333333%; }
.col-lg-5 { width: 41.666667%; }
.col-lg-6 { width: 50%; }
.col-lg-7 { width: 58.333333%; }
.col-lg-8 { width: 66.666667%; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    :root {
        --container-max: 960px;
        --font-size-5xl: 2.5rem;
        --font-size-4xl: 2rem;
    }
    
    .brand-tagline { display: none; }
    .brand-divider { display: none; }
    .contact-text { display: none; }
    
    .mega-grid { grid-template-columns: repeat(4, 1fr); }
    .product-carousel { grid-template-columns: repeat(3, 1fr); }
    .blog-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
    .nav-list > li > a { padding: 0.5rem 0.6rem; font-size: 0.75rem; }
}

@media (max-width: 992px) {
    :root {
        --container-max: 720px;
        --header-height: 70px;
        --topbar-height: 38px;
        --header-total-height: 108px;
    }
    
    .premium-top-bar { height: 30px; }
    .top-bar-row { height: 30px; }
    .iso-badge span { font-size: 0.65rem; }
    .brand-tagline { display: none; }
    .brand-divider { display: none; }
    .contact-text { display: none; }
    
    .site-header { top: 30px; }
    
    .mobile-menu-toggle { display: block; }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow-xl);
        max-height: 70vh;
        overflow-y: auto;
    }
    
    .main-nav.active { display: block; }
    
    .nav-list {
        flex-direction: column;
        padding: var(--space-md);
    }
    
    .nav-list > li > a {
        padding: 0.75rem;
        justify-content: space-between;
    }
    
    .mega-menu {
        position: static;
        width: 100%;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        display: none;
        padding: var(--space-md);
        border-radius: 0;
    }
    
    .mega-menu-trigger.active .mega-menu { display: block; }
    .mega-grid { grid-template-columns: repeat(2, 1fr); }
    
    .header-actions { display: none; }
    
    .hero-slider { margin-top: var(--header-total-height); }
    
    .counter-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .product-carousel { grid-template-columns: repeat(2, 1fr); }
    .review-carousel { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .room-content { grid-template-columns: repeat(2, 1fr); }
    .masonry-grid { columns: 2; }
    .form-grid { grid-template-columns: 1fr; }
    .footer-bottom-content { flex-direction: column; text-align: center; }
    .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8 { width: 100%; }
}

@media (max-width: 768px) {
    :root {
        --container-max: 540px;
        --font-size-5xl: 2rem;
        --font-size-4xl: 1.75rem;
        --font-size-6xl: 2.5rem;
        --topbar-height: 36px;
        --header-height: 65px;
        --header-total-height: 101px;
    }
    
    .premium-top-bar { height: 30px; }
    .top-bar-row { height: 30px; justify-content: center; }
    .top-bar-brand { display: none; }
    .top-bar-contact { width: 100%; justify-content: center; gap: 0.4rem; }
    .contact-divider { display: none; }
    
    .site-header { top: 30px; height: 65px; }
    
    .hero-slider { height: 80vh; min-height: 500px; }
    .hero-content h1 { font-size: var(--font-size-4xl); }
    .hero-content .subheadline { font-size: var(--font-size-base); }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { width: 100%; }
    
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .product-carousel { grid-template-columns: 1fr; }
    .review-carousel { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .room-content { grid-template-columns: 1fr; }
    .masonry-grid { columns: 1; }
    
    .mobile-cta-bar { display: block; }
    .floating-whatsapp { bottom: 5rem; right: 1rem; width: 50px; height: 50px; }
    #back-to-top { bottom: 5rem; left: 1rem; }
    .logo img { height: 40px; }
    .sticky .logo img { height: 35px; }
    .page-banner { padding-top: calc(var(--header-total-height) + 2rem); padding-bottom: 2rem; }
    .page-banner h1 { font-size: var(--font-size-3xl); }
    .product-cta { flex-direction: column; }
    .product-cta .btn { width: 100%; justify-content: center; }
}

@media (max-width: 576px) {
    :root {
        --container-padding: 0.75rem;
        --font-size-5xl: 1.75rem;
        --font-size-4xl: 1.5rem;
        --topbar-height: 34px;
        --header-height: 60px;
        --header-total-height: 94px;
    }
    
    .premium-top-bar { height: 28px; }
    .top-bar-row { height: 28px; }
    .top-bar-contact { gap: 0.3rem; }
    .top-contact-link { font-size: 0.65rem; }
    .top-phone-number { font-size: 0.75rem; padding: 0.2rem 0.5rem; }
    
    .site-header { top: 34px; height: 60px; }
    
    .hero-slider { height: 70vh; min-height: 400px; }
    .hero-content { padding: var(--space-md); }
    .category-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-sm); }
    .cat-card { padding: var(--space-md); }
    .cat-card img { height: 100px; }
    .mega-grid { grid-template-columns: 1fr; }
    .room-tabs { gap: var(--space-xs); }
    .tab { padding: 0.5rem 1rem; font-size: var(--font-size-xs); }
    .social-links { justify-content: center; }
    .social-icon { width: 38px; height: 38px; font-size: 1rem; }
    .logo img { height: 35px; }
    .sticky .logo img { height: 30px; }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .premium-top-bar,
    .site-header,
    .mobile-cta-bar,
    .floating-whatsapp,
    #back-to-top,
    .hero-slider,
    .lead-form-section {
        display: none !important;
    }
    body { font-size: 12pt; color: #000; padding-top: 0; }
    a { color: #000; text-decoration: underline; }
    .page-banner { padding: 2rem 0; background: none; }
    .page-banner h1 { color: #000; }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================
   PROJECT GALLERY ENHANCEMENTS
   ============================================ */

/* Project Stats Counter */
.display-5 {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-secondary);
}

/* Masonry Grid */
.masonry-grid {
    columns: 3;
    column-gap: 20px;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.masonry-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.masonry-item:hover img {
    transform: scale(1.03);
}

/* Overlay */
.masonry-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, 
        rgba(15, 23, 42, 0.95) 0%, 
        rgba(15, 23, 42, 0.6) 40%, 
        transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 25px 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.masonry-item:hover .overlay {
    opacity: 1;
}

.overlay h4 {
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.overlay p {
    color: rgba(255, 255, 255, 0.7);
    margin: 3px 0 0;
    font-size: 0.8rem;
}

/* Project Filters */
.project-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    display: inline-block;
    padding: 10px 22px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-600);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-btn:hover {
    background: var(--gray-50);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-primary);
}

/* ============================================
   LIGHTBOX ENHANCED
   ============================================ */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.lightbox-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 45px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--gold);
    transform: scale(1.1);
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    text-align: center;
    margin-top: 15px;
    color: #fff;
}

.lightbox-caption h4 {
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.lightbox-caption p {
    color: var(--gray-400);
    font-size: 0.85rem;
    margin: 0;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}

.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }

.lightbox-counter {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
    font-size: 0.85rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .masonry-grid {
        columns: 2;
    }
    
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
}

@media (max-width: 768px) {
    .masonry-grid {
        columns: 1;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .project-filters {
        gap: 6px;
    }
    
    .filter-btn {
        padding: 6px 14px;
        font-size: 0.7rem;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}