/* ==========================================================================
   STYLE SHEET: Urban Interiors Experience Centre
   Description: Premium, Modern, Responsive Showroom Website Styles
   Palette: Urban Ivory, Charcoal Black, Urban Teal, Warm Walnut, Soft Copper
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. RESET & VARIABLE DEFINITIONS
   -------------------------------------------------------------------------- */
:root {
    /* Color Palette */
    --bg-primary: #F7F3EC;      /* Urban Ivory */
    --text-main: #1F2326;       /* Charcoal Black */
    --color-teal: #1F6F68;      /* Urban Teal */
    --color-walnut: #8B5E3C;    /* Warm Walnut */
    --color-copper: #B87350;    /* Soft Copper */
    --color-beige: #D8C3A5;     /* Sand Beige */
    --color-grey: #E7E3DD;      /* Mist Grey */
    --color-white: #FFFFFF;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Borders */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-round: 50%;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-quick: all 0.2s ease;
    
    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(31, 35, 38, 0.05), 0 2px 4px -1px rgba(31, 35, 38, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(31, 35, 38, 0.08), 0 4px 6px -2px rgba(31, 35, 38, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(31, 35, 38, 0.12), 0 10px 10px -5px rgba(31, 35, 38, 0.04);
    --shadow-inset: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--color-beige);
    border-radius: 5px;
    border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-teal);
}

/* --------------------------------------------------------------------------
   2. TYPOGRAPHY & REUSABLE UTILITIES
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
    color: var(--text-main);
}

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

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

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center { text-align: center; }
.color-teal { color: var(--color-teal); }
.text-accent { color: var(--color-teal); }
.max-w-xl { max-w: 640px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.rounded-card { border-radius: var(--radius-md); overflow: hidden; }
.shadow-lg { box-shadow: var(--shadow-lg); }

.label-caps {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1.125rem;
    color: #5A6065;
    font-weight: 300;
    line-height: 1.7;
}

/* Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.8rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--color-teal);
    color: var(--color-white);
}
.btn-primary:hover {
    background-color: var(--color-walnut);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-teal {
    background-color: var(--color-teal);
    color: var(--color-white);
}
.btn-teal:hover {
    background-color: var(--color-walnut);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-teal {
    background-color: transparent;
    border-color: var(--color-teal);
    color: var(--color-teal);
}
.btn-outline-teal:hover {
    background-color: var(--color-teal);
    color: var(--color-white);
}

.btn-outline-walnut {
    background-color: transparent;
    border-color: var(--color-walnut);
    color: var(--color-walnut);
}
.btn-outline-walnut:hover {
    background-color: var(--color-walnut);
    color: var(--color-white);
}

.btn-outline-white {
    background-color: transparent;
    border-color: var(--color-white);
    color: var(--color-white);
}
.btn-outline-white:hover {
    background-color: var(--color-white);
    color: var(--text-main);
}

.btn-white {
    background-color: var(--color-white);
    color: var(--text-main);
}
.btn-white:hover {
    background-color: var(--color-teal);
    color: var(--color-white);
}

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

.btn-lg {
    padding: 1.1rem 2.4rem;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   3. HEADER & MOBILE NAVIGATION
   -------------------------------------------------------------------------- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(247, 243, 236, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(31, 35, 38, 0.05);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-sm);
    padding: 0.5rem 0;
}

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

.logo-area {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--text-main);
    line-height: 1;
}

.logo-subtitle {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-teal);
    letter-spacing: 0.22em;
    margin-top: 0.25rem;
}

.desktop-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-teal);
    transition: var(--transition-quick);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--color-teal);
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 110;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-main);
    transition: var(--transition-quick);
    border-radius: 2px;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-lg);
    z-index: 150;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.mobile-drawer.open {
    transform: translateX(-320px);
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.drawer-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-main);
}

.drawer-nav {
    flex-grow: 1;
}

.drawer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.drawer-link {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
}

.drawer-link:hover {
    color: var(--color-teal);
}

.drawer-footer {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.drawer-contact-info {
    font-size: 0.9rem;
    color: #5A6065;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(31, 35, 38, 0.4);
    backdrop-filter: blur(4px);
    z-index: 140;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.drawer-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* --------------------------------------------------------------------------
   4. HERO SECTION & ANTI-GRAVITY EFFECTS
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(31, 35, 38, 0.85) 0%, rgba(31, 35, 38, 0.5) 100%);
    z-index: 2;
}

.anti-gravity-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 4;
    color: var(--color-white);
    margin-top: 60px;
}

.hero-content {
    max-width: 720px;
}

.hero-badge-top {
    color: var(--color-beige);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.hero-title .text-accent {
    color: var(--color-beige);
}

.hero-subtitle-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--color-grey);
    font-weight: 300;
    margin-bottom: 2.5rem;
    max-width: 650px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-badge {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.hero-badge .badge-icon {
    color: var(--color-beige);
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

/* Floating side cards overlay */
.hero-floating-cards {
    position: absolute;
    bottom: 4rem;
    right: 4rem;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.floating-mini-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.9rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 240px;
    transform: translateY(0);
    transition: var(--transition-smooth);
    cursor: default;
}

.floating-mini-card:hover {
    transform: translateY(-5px);
    background: var(--color-white);
}

.mini-card-icon {
    font-size: 1.5rem;
}

.mini-card-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
}

/* Anti-Gravity Element Placements & CSS Animations */
.ag-item {
    position: absolute;
    transform-style: preserve-3d;
    will-change: transform;
}

/* 1. Cabinet Silhouette */
.ag-item.cabinet {
    top: 15%;
    left: 8%;
    animation: float-soft 14s infinite ease-in-out;
}
/* 2. Wardrobe Door Panel */
.ag-item.wardrobe-door {
    top: 40%;
    right: 12%;
    animation: float-mid 18s infinite ease-in-out;
}
/* 3. Dining Chair */
.ag-item.chair {
    bottom: 25%;
    left: 5%;
    animation: float-slow 20s infinite ease-in-out;
}
/* 4. Pendant Light */
.ag-item.pendant-light {
    top: -5%;
    left: 45%;
    animation: float-soft 16s infinite ease-in-out;
}
/* 5. Sofa Outline */
.ag-item.sofa {
    bottom: 8%;
    left: 40%;
    animation: float-mid 22s infinite ease-in-out;
}
/* 6. Blueprint Plan Card */
.ag-item.floor-plan {
    top: 45%;
    left: 48%;
    animation: float-soft 24s infinite ease-in-out;
}
/* 7. Render preview badge */
.ag-item.preview-card {
    top: 12%;
    right: 20%;
    animation: float-mid 21s infinite ease-in-out;
}
/* 8. Decorative wavy lines */
.ag-item.decor-lines {
    bottom: 15%;
    left: 25%;
    animation: float-slow 25s infinite ease-in-out;
}

/* Blueprint and visual preview card designs */

.ag-blueprint-card {
    background: rgba(31, 111, 104, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(247, 243, 236, 0.2);
    border-radius: var(--radius-sm);
    padding: 0.6rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.ag-blueprint-card span {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    color: var(--bg-primary);
    opacity: 0.8;
}

.ag-visual-badge {
    background: rgba(184, 115, 80, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(184, 115, 80, 0.3);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    color: var(--bg-primary);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.ag-visual-badge .badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-copper);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-copper);
}

/* Keyframe Animations for Floating Particles */
@keyframes float-soft {
    0% { transform: translate3d(0, 0, 0) rotate(0deg); }
    50% { transform: translate3d(0, -15px, 0) rotate(2deg); }
    100% { transform: translate3d(0, 0, 0) rotate(0deg); }
}

@keyframes float-mid {
    0% { transform: translate3d(0, 0, 0) rotate(0deg); }
    50% { transform: translate3d(0, -25px, 0) rotate(-3deg); }
    100% { transform: translate3d(0, 0, 0) rotate(0deg); }
}

@keyframes float-slow {
    0% { transform: translate3d(0, 0, 0) rotate(0deg); }
    50% { transform: translate3d(0, -35px, 0) rotate(4deg); }
    100% { transform: translate3d(0, 0, 0) rotate(0deg); }
}

/* --------------------------------------------------------------------------
   5. ABOUT SECTION
   -------------------------------------------------------------------------- */
.about-section {
    padding: 8rem 0;
    background-color: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-visual .image-wrapper {
    position: relative;
    height: 550px;
    border-radius: var(--radius-lg);
}

.about-visual img {
    width: 100%;
    height: 100%;
}

.experience-tag {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--color-teal);
    color: var(--color-white);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.exp-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
    margin-bottom: 3rem;
}

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

.hl-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-walnut);
    border-radius: 50%;
}

.hl-text {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-main);
}

.about-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    border-top: 1px solid var(--color-grey);
    padding-top: 2.5rem;
}

.stat-card {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-teal);
    line-height: 1.1;
}

.stat-label {
    font-size: 0.85rem;
    color: #5A6065;
    margin-top: 0.25rem;
}

/* --------------------------------------------------------------------------
   6. SERVICES SECTION
   -------------------------------------------------------------------------- */
.services-section {
    padding: 8rem 0;
    background-color: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--color-white);
    border: 1px solid rgba(31, 35, 38, 0.05);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.service-image img {
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.service-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-text {
    font-size: 0.95rem;
    color: #5A6065;
    margin-bottom: 2rem;
    flex-grow: 1;
    font-weight: 300;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--color-teal);
}

/* --------------------------------------------------------------------------
   7. MODULAR KITCHEN SECTION
   -------------------------------------------------------------------------- */
.kitchen-section {
    padding: 8rem 0;
    background-color: var(--color-white);
}

.kitchen-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.features-list-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

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

.bullet-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.bullet-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.bullet-text {
    font-size: 0.95rem;
    color: #5A6065;
    font-weight: 300;
}

.kitchen-visual .image-wrapper {
    position: relative;
    height: 520px;
}

.kitchen-visual img {
    width: 100%;
    height: 100%;
}

.floating-tag {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-main);
}

.floating-tag .tag-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-teal);
    border-radius: 50%;
}

.floating-tag.tag-1 { top: 20%; left: 10%; }
.floating-tag.tag-2 { bottom: 30%; right: 10%; }
.floating-tag.tag-3 { bottom: 15%; left: 15%; }

/* --------------------------------------------------------------------------
   8. WARDROBE SECTION
   -------------------------------------------------------------------------- */
.wardrobe-section {
    padding: 8rem 0;
    background-color: var(--bg-primary);
}

.wardrobe-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.wardrobe-visual .image-wrapper {
    position: relative;
    height: 520px;
}

.wardrobe-visual img {
    width: 100%;
    height: 100%;
}

.swatch-overlay-card {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    padding: 1.2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    width: 240px;
}

.overlay-card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.swatch-list {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.swatch-item {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-quick);
}

.swatch-item:hover {
    transform: scale(1.15);
}

.swatch-item.wood-dark { background-color: #523725; }
.swatch-item.acrylic-white { background-color: #FFFFFF; border: 1px solid #CCC; }
.swatch-item.glass-tinted { background-color: #2F3E46; }
.swatch-item.matte-grey { background-color: #6C757D; }

.overlay-card-desc {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   9. PROJECT GALLERY SECTION
   -------------------------------------------------------------------------- */
.gallery-section {
    padding: 8rem 0;
    background-color: var(--color-white);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.project-card {
    position: relative;
    height: 320px;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.project-card img {
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(31, 35, 38, 0.95) 0%, rgba(31, 35, 38, 0.2) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.project-info {
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.project-tag {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-beige);
    display: block;
    margin-bottom: 0.5rem;
}

.project-name {
    color: var(--color-white);
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}

/* Hover States */
.project-card:hover img {
    transform: scale(1.12);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card:hover .project-info {
    transform: translateY(0);
}

/* --------------------------------------------------------------------------
   10. EXPERIENCE CENTRE / PHYSICAL STORE
   -------------------------------------------------------------------------- */
.experience-centre-section {
    padding: 8rem 0;
    background-color: var(--bg-primary);
}

.showroom-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.showroom-feat-card {
    background-color: var(--color-white);
    padding: 3rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(31, 35, 38, 0.03);
}

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

.feat-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1.5rem;
}

.feat-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
}

.feat-desc {
    font-size: 0.95rem;
    color: #5A6065;
    font-weight: 300;
}

.showroom-cta {
    margin-top: 3rem;
}

/* --------------------------------------------------------------------------
   11. WHY CHOOSE US
   -------------------------------------------------------------------------- */
.why-choose-section {
    padding: 8rem 0;
    background-color: var(--color-white);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.why-card {
    border-left: 3px solid var(--color-grey);
    padding-left: 1.5rem;
    transition: var(--transition-smooth);
}

.why-card:hover {
    border-left-color: var(--color-teal);
    transform: translateX(4px);
}

.why-number {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-beige);
    display: block;
    margin-bottom: 0.5rem;
}

.why-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.why-text {
    font-size: 0.95rem;
    color: #5A6065;
    font-weight: 300;
}

/* --------------------------------------------------------------------------
   12. DESIGN PROCESS TIMELINE
   -------------------------------------------------------------------------- */
.process-section {
    padding: 8rem 0;
    background-color: var(--bg-primary);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--color-beige);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 2rem 0;
    position: relative;
    width: 50%;
    margin-left: 0;
    padding-right: 3rem;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-right: 0;
    padding-left: 3rem;
}

.timeline-badge {
    width: 40px;
    height: 40px;
    background-color: var(--color-teal);
    color: var(--color-white);
    position: absolute;
    top: 2rem;
    right: -20px;
    border-radius: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    box-shadow: 0 0 0 6px var(--bg-primary);
}

.timeline-item:nth-child(even) .timeline-badge {
    left: -20px;
    right: auto;
}

.timeline-panel {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(31,35,38,0.02);
}

.timeline-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-teal);
}

.timeline-body {
    font-size: 0.95rem;
    color: #5A6065;
    font-weight: 300;
}

/* --------------------------------------------------------------------------
   13. REVIEWS SECTION
   -------------------------------------------------------------------------- */
.reviews-section {
    padding: 8rem 0;
    background-color: var(--color-white);
}

.reviews-header-block {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid var(--color-grey);
    padding-bottom: 2rem;
    margin-bottom: 4rem;
}

.rating-display {
    text-align: right;
}

.rating-num {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    display: block;
    color: var(--text-main);
}

.stars {
    color: #FFB020;
    font-size: 1.5rem;
    margin: 0.25rem 0;
}

.reviews-count {
    font-size: 0.9rem;
    color: #5A6065;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.review-card {
    background-color: var(--bg-primary);
    padding: 3rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(31, 35, 38, 0.02);
    position: relative;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.review-avatar {
    width: 48px;
    height: 48px;
    background-color: var(--color-beige);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
}

.client-name {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.2;
}

.client-subtitle {
    font-size: 0.8rem;
    color: #888;
}

.review-rating {
    color: #FFB020;
    margin-bottom: 1rem;
}

.review-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-main);
    line-height: 1.6;
    font-weight: 300;
}

/* --------------------------------------------------------------------------
   14. CONTACT SECTION
   -------------------------------------------------------------------------- */
.contact-section {
    padding: 8rem 0;
    background-color: var(--bg-primary);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    margin-top: 4rem;
}

.contact-info-card {
    background-color: var(--color-white);
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-header {
    border-bottom: 1px solid var(--color-grey);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.info-title {
    font-size: 1.6rem;
    font-weight: 800;
}

.info-tagline {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-teal);
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

.info-body {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    gap: 1.25rem;
}

.info-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.info-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.info-item p {
    font-size: 0.95rem;
    color: #5A6065;
}

.info-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-map {
    height: 600px;
    border: 1px solid rgba(31, 35, 38, 0.05);
}

/* --------------------------------------------------------------------------
   15. FOOTER
   -------------------------------------------------------------------------- */
.footer {
    background-color: var(--text-main);
    color: var(--bg-primary);
    padding: 6rem 0 3rem 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    border-bottom: 1px solid rgba(247, 243, 236, 0.1);
    padding-bottom: 4rem;
    margin-bottom: 3rem;
}

.brand-col .logo-title {
    color: var(--color-white);
}

.brand-col .logo-subtitle {
    color: var(--color-copper);
}

.footer-desc {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.7;
    font-weight: 300;
}

.footer-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.05);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
}

.rating-stars {
    color: #FFB020;
}

.footer-title {
    color: var(--color-white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
    letter-spacing: 0.02em;
}

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

.footer-links a {
    font-size: 0.95rem;
    opacity: 0.75;
}

.footer-links a:hover {
    color: var(--color-copper);
    opacity: 1;
    transform: translateX(4px);
}

.footer-address {
    font-size: 0.95rem;
    opacity: 0.75;
    margin-bottom: 1rem;
    font-weight: 300;
}

.footer-phone, .footer-whatsapp {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-whatsapp a {
    color: var(--color-copper);
    font-weight: 600;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* --------------------------------------------------------------------------
   16. FLOATING ACTIONS
   -------------------------------------------------------------------------- */
.whatsapp-fixed-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--color-white);
    border-radius: var(--radius-round);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.whatsapp-fixed-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-fixed-btn .pulse-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #25D366;
    border-radius: var(--radius-round);
    animation: ring-pulse 2s infinite ease-out;
}

@keyframes ring-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
}

.back-to-top-btn {
    position: fixed;
    bottom: 7rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background-color: var(--color-white);
    color: var(--text-main);
    border: 1px solid var(--color-grey);
    border-radius: var(--radius-round);
    box-shadow: var(--shadow-md);
    z-index: 89;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.back-to-top-btn.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    background-color: var(--color-teal);
    color: var(--color-white);
    border-color: var(--color-teal);
}

/* --------------------------------------------------------------------------
   17. INTERACTIVE ANIMATION CLASSES & RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
.scroll-reveal-element {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal-element.reveal-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* Base scroll reveal triggers classes for JS */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* -----------------------------------------
   BREAKPOINTS: LAPTOPS / DESKTOPS
   ----------------------------------------- */
@media (max-width: 1200px) {
    .hero-title { font-size: 3.2rem; }
    .about-grid, .kitchen-grid, .wardrobe-grid { gap: 3rem; }
    .project-grid { grid-template-columns: repeat(3, 1fr); }
    .showroom-features-grid { grid-template-columns: repeat(2, 1fr); }
    .why-choose-grid { grid-template-columns: repeat(3, 1fr); }
}

/* -----------------------------------------
   BREAKPOINTS: TABLETS / IPADS
   ----------------------------------------- */
@media (max-width: 991px) {
    .desktop-nav, .header-cta { display: none; }
    .mobile-nav-toggle { display: flex; }
    
    .hero-section { height: auto; padding: 100px 0; }
    .hero-container { margin-top: 40px; }
    .hero-floating-cards { display: none; }
    
    .about-grid, .kitchen-grid, .wardrobe-grid, .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-visual, .kitchen-visual, .wardrobe-visual {
        order: -1;
        height: auto;
    }
    
    .about-visual .image-wrapper,
    .kitchen-visual .image-wrapper,
    .wardrobe-visual .image-wrapper {
        height: 380px;
    }
    
    .about-visual img, .kitchen-visual img, .wardrobe-visual img {
        height: 100%;
        width: 100%;
    }
    
    .project-grid { grid-template-columns: repeat(2, 1fr); }
    .why-choose-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: 1fr; }
    
    .timeline::after { left: 40px; }
    .timeline-item { width: 100%; padding-left: 6rem; padding-right: 0; }
    .timeline-item:nth-child(even) { margin-left: 0; padding-left: 6rem; }
    .timeline-badge { left: 20px; right: auto; }
    .timeline-item:nth-child(even) .timeline-badge { left: 20px; }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

/* -----------------------------------------
   BREAKPOINTS: MOBILE PHONES
   ----------------------------------------- */
@media (max-width: 767px) {
    .hero-title { font-size: 2.4rem; }
    .hero-description { font-size: 1rem; }
    .hero-badges { gap: 0.5rem; }
    .hero-badge { padding: 0.4rem 0.8rem; font-size: 0.8rem; }
    .hero-actions { flex-direction: column; gap: 1rem; }
    
    .section-title { font-size: 2rem; }
    .highlight-grid { grid-template-columns: 1fr; }
    .about-stats-row { grid-template-columns: 1fr; gap: 1rem; }
    
    .about-visual .image-wrapper,
    .kitchen-visual .image-wrapper,
    .wardrobe-visual .image-wrapper {
        height: 300px;
    }
    
    .project-grid { grid-template-columns: 1fr; }
    .showroom-features-grid { grid-template-columns: 1fr; }
    .why-choose-grid { grid-template-columns: 1fr; }
    
    .showroom-feat-card { padding: 2rem; }
    .review-card { padding: 2rem; }
    .contact-info-card { padding: 2rem; }
    
    .footer-container { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-bottom-container { flex-direction: column; gap: 1rem; text-align: center; }
    
    /* Disable mouse parallax visual overrides */
    .anti-gravity-container {
        display: none;
    }
}

/* -----------------------------------------
   ACCESSIBILITY & PREFERS REDUCED MOTION
   ----------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .ag-item, .pulse-ring, .floating-mini-card, .service-card, .why-card, .showroom-feat-card {
        animation: none !important;
        transform: none !important;
        transition: none !important;
    }
    .scroll-reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}
