/* ============================================
   Bhavana Decors - Premium Interior Decor Website
   Main Stylesheet
   ============================================ */

/* Color Variables */
:root {
    --color-beige: #f6f2ed;
    --color-gold: #d5a15d;
    --color-brown: #6b3508;
    --color-green: #1f4a3d;
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Open Sans', sans-serif;
    color: var(--color-brown);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 80px;
    background-color: var(--color-beige);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--color-brown);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    color: var(--color-green);
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
    color: var(--color-brown);
}

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

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

/* Header Styles */
.navbar {
    background-color: var(--color-beige);
    box-shadow: 0 2px 10px rgba(107, 53, 8, 0.1);
    padding: 1rem 0;
    transition: var(--transition);
    z-index: 1000;
}

.navbar.scrolled {
    background-color: var(--color-beige);
    box-shadow: 0 2px 20px rgba(107, 53, 8, 0.15);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-brown) !important;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    padding: 0;
}

.navbar-brand img {
    height: 80px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.navbar-brand:hover img {
    opacity: 0.8;
}

.navbar-nav .nav-link {
    color: var(--color-brown) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    color: var(--color-gold) !important;
}

.navbar-nav .nav-link.active {
    color: var(--color-green) !important;
    font-weight: 600;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.navbar-nav .nav-link.active::after {
    width: 80%;
    background-color: var(--color-green);
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 90vh;
    min-height: 90vh;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-beige);
    text-align: center;
    padding: 2rem;
    overflow: hidden;
}

.hero-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    perspective: 1200px;
    -webkit-perspective: 1200px;
    transform: none;
    -webkit-transform: none;
    min-height: 100%;
    max-height: 100%;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    overflow: hidden;
    z-index: 1;
    visibility: visible;
    will-change: opacity;
    transition: opacity 1.5s ease-in-out;
    transform: none;
    -webkit-transform: none;
    min-height: 100%;
    max-height: 100%;
    contain: layout style paint;
    box-sizing: border-box;
}

.hero-image-container.active {
    opacity: 1;
    z-index: 3;
    visibility: visible;
    transform: none;
    -webkit-transform: none;
}

.hero-image-container.next {
    z-index: 2;
    opacity: 0;
    transform: none;
    -webkit-transform: none;
}

.hero-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center;
    display: block;
    transform: none !important;
    -webkit-transform: none !important;
    will-change: auto;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    min-height: 100%;
    max-height: 100%;
    box-sizing: border-box;
    opacity: 1;
    visibility: visible;
}

/* Blinds Overlay - Hidden for crossfade animation */
.blinds-overlay {
    display: none;
}

/* Legacy keyframes - keeping for compatibility */
@keyframes verticalBlindsOpen {
    0% {
        clip-path: polygon(
            0% 0%, 0% 100%,
            0% 100%, 0% 0%,
            0% 0%, 0% 100%,
            0% 100%, 0% 0%,
            0% 0%, 0% 100%,
            0% 100%, 0% 0%,
            0% 0%, 0% 100%,
            0% 100%, 0% 0%,
            0% 0%, 0% 100%,
            0% 100%, 0% 0%,
            0% 0%, 0% 100%,
            0% 100%, 0% 0%,
            0% 0%, 0% 100%
        );
    }
    8.33% {
        clip-path: polygon(
            0% 0%, 0% 100%,
            8.33% 100%, 8.33% 0%,
            0% 0%, 0% 100%,
            0% 100%, 0% 0%,
            0% 0%, 0% 100%,
            0% 100%, 0% 0%,
            0% 0%, 0% 100%,
            0% 100%, 0% 0%,
            0% 0%, 0% 100%,
            0% 100%, 0% 0%,
            0% 0%, 0% 100%,
            0% 100%, 0% 0%,
            0% 0%, 0% 100%
        );
    }
    16.66% {
        clip-path: polygon(
            0% 0%, 0% 100%,
            8.33% 100%, 8.33% 0%,
            16.66% 0%, 16.66% 100%,
            0% 100%, 0% 0%,
            0% 0%, 0% 100%,
            0% 100%, 0% 0%,
            0% 0%, 0% 100%,
            0% 100%, 0% 0%,
            0% 0%, 0% 100%,
            0% 100%, 0% 0%,
            0% 0%, 0% 100%,
            0% 100%, 0% 0%,
            0% 0%, 0% 100%
        );
    }
    25% {
        clip-path: polygon(
            0% 0%, 0% 100%,
            8.33% 100%, 8.33% 0%,
            16.66% 0%, 16.66% 100%,
            25% 100%, 25% 0%,
            0% 0%, 0% 100%,
            0% 100%, 0% 0%,
            0% 0%, 0% 100%,
            0% 100%, 0% 0%,
            0% 0%, 0% 100%,
            0% 100%, 0% 0%,
            0% 0%, 0% 100%,
            0% 100%, 0% 0%,
            0% 0%, 0% 100%
        );
    }
    33.33% {
        clip-path: polygon(
            0% 0%, 0% 100%,
            8.33% 100%, 8.33% 0%,
            16.66% 0%, 16.66% 100%,
            25% 100%, 25% 0%,
            33.33% 0%, 33.33% 100%,
            0% 100%, 0% 0%,
            0% 0%, 0% 100%,
            0% 100%, 0% 0%,
            0% 0%, 0% 100%,
            0% 100%, 0% 0%,
            0% 0%, 0% 100%,
            0% 100%, 0% 0%,
            0% 0%, 0% 100%
        );
    }
    41.66% {
        clip-path: polygon(
            0% 0%, 0% 100%,
            8.33% 100%, 8.33% 0%,
            16.66% 0%, 16.66% 100%,
            25% 100%, 25% 0%,
            33.33% 0%, 33.33% 100%,
            41.66% 100%, 41.66% 0%,
            0% 0%, 0% 100%,
            0% 100%, 0% 0%,
            0% 0%, 0% 100%,
            0% 100%, 0% 0%,
            0% 0%, 0% 100%,
            0% 100%, 0% 0%,
            0% 0%, 0% 100%
        );
    }
    50% {
        clip-path: polygon(
            0% 0%, 0% 100%,
            8.33% 100%, 8.33% 0%,
            16.66% 0%, 16.66% 100%,
            25% 100%, 25% 0%,
            33.33% 0%, 33.33% 100%,
            41.66% 100%, 41.66% 0%,
            50% 0%, 50% 100%,
            0% 100%, 0% 0%,
            0% 0%, 0% 100%,
            0% 100%, 0% 0%,
            0% 0%, 0% 100%,
            0% 100%, 0% 0%,
            0% 0%, 0% 100%
        );
    }
    58.33% {
        clip-path: polygon(
            0% 0%, 0% 100%,
            8.33% 100%, 8.33% 0%,
            16.66% 0%, 16.66% 100%,
            25% 100%, 25% 0%,
            33.33% 0%, 33.33% 100%,
            41.66% 100%, 41.66% 0%,
            50% 0%, 50% 100%,
            58.33% 100%, 58.33% 0%,
            0% 0%, 0% 100%,
            0% 100%, 0% 0%,
            0% 0%, 0% 100%,
            0% 100%, 0% 0%,
            0% 0%, 0% 100%
        );
    }
    66.66% {
        clip-path: polygon(
            0% 0%, 0% 100%,
            8.33% 100%, 8.33% 0%,
            16.66% 0%, 16.66% 100%,
            25% 100%, 25% 0%,
            33.33% 0%, 33.33% 100%,
            41.66% 100%, 41.66% 0%,
            50% 0%, 50% 100%,
            58.33% 100%, 58.33% 0%,
            66.66% 0%, 66.66% 100%,
            0% 100%, 0% 0%,
            0% 0%, 0% 100%,
            0% 100%, 0% 0%,
            0% 0%, 0% 100%
        );
    }
    75% {
        clip-path: polygon(
            0% 0%, 0% 100%,
            8.33% 100%, 8.33% 0%,
            16.66% 0%, 16.66% 100%,
            25% 100%, 25% 0%,
            33.33% 0%, 33.33% 100%,
            41.66% 100%, 41.66% 0%,
            50% 0%, 50% 100%,
            58.33% 100%, 58.33% 0%,
            66.66% 0%, 66.66% 100%,
            75% 100%, 75% 0%,
            0% 0%, 0% 100%,
            0% 100%, 0% 0%,
            0% 0%, 0% 100%
        );
    }
    83.33% {
        clip-path: polygon(
            0% 0%, 0% 100%,
            8.33% 100%, 8.33% 0%,
            16.66% 0%, 16.66% 100%,
            25% 100%, 25% 0%,
            33.33% 0%, 33.33% 100%,
            41.66% 100%, 41.66% 0%,
            50% 0%, 50% 100%,
            58.33% 100%, 58.33% 0%,
            66.66% 0%, 66.66% 100%,
            75% 100%, 75% 0%,
            83.33% 0%, 83.33% 100%,
            0% 100%, 0% 0%,
            0% 0%, 0% 100%
        );
    }
    91.66% {
        clip-path: polygon(
            0% 0%, 0% 100%,
            8.33% 100%, 8.33% 0%,
            16.66% 0%, 16.66% 100%,
            25% 100%, 25% 0%,
            33.33% 0%, 33.33% 100%,
            41.66% 100%, 41.66% 0%,
            50% 0%, 50% 100%,
            58.33% 100%, 58.33% 0%,
            66.66% 0%, 66.66% 100%,
            75% 100%, 75% 0%,
            83.33% 0%, 83.33% 100%,
            91.66% 100%, 91.66% 0%,
            0% 0%, 0% 100%
        );
    }
    100% {
        clip-path: polygon(
            0% 0%, 0% 100%,
            8.33% 100%, 8.33% 0%,
            16.66% 0%, 16.66% 100%,
            25% 100%, 25% 0%,
            33.33% 0%, 33.33% 100%,
            41.66% 100%, 41.66% 0%,
            50% 0%, 50% 100%,
            58.33% 100%, 58.33% 0%,
            66.66% 0%, 66.66% 100%,
            75% 100%, 75% 0%,
            83.33% 0%, 83.33% 100%,
            91.66% 100%, 91.66% 0%,
            100% 0%, 100% 100%
        );
    }
}

/* Horizontal Blinds Keyframes - Staggered slat opening from top to bottom */
@keyframes horizontalBlindsOpen {
    0% {
        clip-path: polygon(
            0% 0%, 100% 0%,
            100% 0%, 0% 0%,
            0% 0%, 100% 0%,
            100% 0%, 0% 0%,
            0% 0%, 100% 0%,
            100% 0%, 0% 0%,
            0% 0%, 100% 0%,
            100% 0%, 0% 0%,
            0% 0%, 100% 0%,
            100% 0%, 0% 0%,
            0% 0%, 100% 0%,
            100% 0%, 0% 0%,
            0% 0%, 100% 0%
        );
    }
    8.33% {
        clip-path: polygon(
            0% 0%, 100% 0%,
            100% 8.33%, 0% 8.33%,
            0% 0%, 100% 0%,
            100% 0%, 0% 0%,
            0% 0%, 100% 0%,
            100% 0%, 0% 0%,
            0% 0%, 100% 0%,
            100% 0%, 0% 0%,
            0% 0%, 100% 0%,
            100% 0%, 0% 0%,
            0% 0%, 100% 0%,
            100% 0%, 0% 0%,
            0% 0%, 100% 0%
        );
    }
    16.66% {
        clip-path: polygon(
            0% 0%, 100% 0%,
            100% 8.33%, 0% 8.33%,
            0% 16.66%, 100% 16.66%,
            100% 0%, 0% 0%,
            0% 0%, 100% 0%,
            100% 0%, 0% 0%,
            0% 0%, 100% 0%,
            100% 0%, 0% 0%,
            0% 0%, 100% 0%,
            100% 0%, 0% 0%,
            0% 0%, 100% 0%,
            100% 0%, 0% 0%,
            0% 0%, 100% 0%
        );
    }
    25% {
        clip-path: polygon(
            0% 0%, 100% 0%,
            100% 8.33%, 0% 8.33%,
            0% 16.66%, 100% 16.66%,
            100% 25%, 0% 25%,
            0% 0%, 100% 0%,
            100% 0%, 0% 0%,
            0% 0%, 100% 0%,
            100% 0%, 0% 0%,
            0% 0%, 100% 0%,
            100% 0%, 0% 0%,
            0% 0%, 100% 0%,
            100% 0%, 0% 0%,
            0% 0%, 100% 0%
        );
    }
    33.33% {
        clip-path: polygon(
            0% 0%, 100% 0%,
            100% 8.33%, 0% 8.33%,
            0% 16.66%, 100% 16.66%,
            100% 25%, 0% 25%,
            0% 33.33%, 100% 33.33%,
            100% 0%, 0% 0%,
            0% 0%, 100% 0%,
            100% 0%, 0% 0%,
            0% 0%, 100% 0%,
            100% 0%, 0% 0%,
            0% 0%, 100% 0%,
            100% 0%, 0% 0%,
            0% 0%, 100% 0%
        );
    }
    41.66% {
        clip-path: polygon(
            0% 0%, 100% 0%,
            100% 8.33%, 0% 8.33%,
            0% 16.66%, 100% 16.66%,
            100% 25%, 0% 25%,
            0% 33.33%, 100% 33.33%,
            100% 41.66%, 0% 41.66%,
            0% 0%, 100% 0%,
            100% 0%, 0% 0%,
            0% 0%, 100% 0%,
            100% 0%, 0% 0%,
            0% 0%, 100% 0%,
            100% 0%, 0% 0%,
            0% 0%, 100% 0%
        );
    }
    50% {
        clip-path: polygon(
            0% 0%, 100% 0%,
            100% 8.33%, 0% 8.33%,
            0% 16.66%, 100% 16.66%,
            100% 25%, 0% 25%,
            0% 33.33%, 100% 33.33%,
            100% 41.66%, 0% 41.66%,
            0% 50%, 100% 50%,
            100% 0%, 0% 0%,
            0% 0%, 100% 0%,
            100% 0%, 0% 0%,
            0% 0%, 100% 0%,
            100% 0%, 0% 0%,
            0% 0%, 100% 0%
        );
    }
    58.33% {
        clip-path: polygon(
            0% 0%, 100% 0%,
            100% 8.33%, 0% 8.33%,
            0% 16.66%, 100% 16.66%,
            100% 25%, 0% 25%,
            0% 33.33%, 100% 33.33%,
            100% 41.66%, 0% 41.66%,
            0% 50%, 100% 50%,
            100% 58.33%, 0% 58.33%,
            0% 0%, 100% 0%,
            100% 0%, 0% 0%,
            0% 0%, 100% 0%,
            100% 0%, 0% 0%,
            0% 0%, 100% 0%
        );
    }
    66.66% {
        clip-path: polygon(
            0% 0%, 100% 0%,
            100% 8.33%, 0% 8.33%,
            0% 16.66%, 100% 16.66%,
            100% 25%, 0% 25%,
            0% 33.33%, 100% 33.33%,
            100% 41.66%, 0% 41.66%,
            0% 50%, 100% 50%,
            100% 58.33%, 0% 58.33%,
            0% 66.66%, 100% 66.66%,
            100% 0%, 0% 0%,
            0% 0%, 100% 0%,
            100% 0%, 0% 0%,
            0% 0%, 100% 0%
        );
    }
    75% {
        clip-path: polygon(
            0% 0%, 100% 0%,
            100% 8.33%, 0% 8.33%,
            0% 16.66%, 100% 16.66%,
            100% 25%, 0% 25%,
            0% 33.33%, 100% 33.33%,
            100% 41.66%, 0% 41.66%,
            0% 50%, 100% 50%,
            100% 58.33%, 0% 58.33%,
            0% 66.66%, 100% 66.66%,
            100% 75%, 0% 75%,
            0% 0%, 100% 0%,
            100% 0%, 0% 0%,
            0% 0%, 100% 0%
        );
    }
    83.33% {
        clip-path: polygon(
            0% 0%, 100% 0%,
            100% 8.33%, 0% 8.33%,
            0% 16.66%, 100% 16.66%,
            100% 25%, 0% 25%,
            0% 33.33%, 100% 33.33%,
            100% 41.66%, 0% 41.66%,
            0% 50%, 100% 50%,
            100% 58.33%, 0% 58.33%,
            0% 66.66%, 100% 66.66%,
            100% 75%, 0% 75%,
            0% 83.33%, 100% 83.33%,
            100% 0%, 0% 0%,
            0% 0%, 100% 0%
        );
    }
    91.66% {
        clip-path: polygon(
            0% 0%, 100% 0%,
            100% 8.33%, 0% 8.33%,
            0% 16.66%, 100% 16.66%,
            100% 25%, 0% 25%,
            0% 33.33%, 100% 33.33%,
            100% 41.66%, 0% 41.66%,
            0% 50%, 100% 50%,
            100% 58.33%, 0% 58.33%,
            0% 66.66%, 100% 66.66%,
            100% 75%, 0% 75%,
            0% 83.33%, 100% 83.33%,
            100% 91.66%, 0% 91.66%,
            0% 0%, 100% 0%
        );
    }
    100% {
        clip-path: polygon(
            0% 0%, 100% 0%,
            100% 8.33%, 0% 8.33%,
            0% 16.66%, 100% 16.66%,
            100% 25%, 0% 25%,
            0% 33.33%, 100% 33.33%,
            100% 41.66%, 0% 41.66%,
            0% 50%, 100% 50%,
            100% 58.33%, 0% 58.33%,
            0% 66.66%, 100% 66.66%,
            100% 75%, 0% 75%,
            0% 83.33%, 100% 83.33%,
            100% 91.66%, 0% 91.66%,
            0% 100%, 100% 100%
        );
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(31, 74, 61, 0.5), rgba(31, 74, 61, 0.5));
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease;
    position: relative;
    z-index: 3;
}

.hero-banner h1 {
    color: var(--color-beige);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(31, 74, 61, 1);
}

.hero-banner p {
    color: var(--color-beige);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--color-gold);
    color: var(--color-brown);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary-custom:hover {
    background-color: var(--color-green);
    color: var(--color-beige);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(213, 161, 93, 0.4);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--color-brown);
    padding: 0.75rem 2rem;
    border: 2px solid var(--color-brown);
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background-color: var(--color-brown);
    color: var(--color-beige);
    transform: translateY(-2px);
}

/* Section Styles */
.section {
    padding: 5rem 0;
    overflow: visible;
    position: relative;
    width: 100%;
    max-width: 100%;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-gold);
}

/* About Preview Section */
.about-preview {
    background-color: var(--color-beige);
}

.about-preview-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-preview-image {
    flex: 1;
    height: 400px;
    background: url('https://via.placeholder.com/600x400/F5F5DC/333333?text=About+Us') center/cover no-repeat;
}

.about-preview-text {
    flex: 1;
}

/* Featured Categories */
.category-card {
    background-color: var(--color-beige);
    border: 1px solid rgba(107, 53, 8, 0.2);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(107, 53, 8, 0.15);
}

.category-card-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

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

.category-card-body {
    padding: 1.5rem;
    text-align: center;
}

.category-card-body h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-brown);
}

/* Why Choose Us */
.why-choose-us {
    background-color: var(--color-beige);
}

.feature-box {
    text-align: center;
    padding: 2rem;
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.feature-box h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-brown);
}

/* Call to Action */
.cta-section {
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-brown) 100%);
    color: var(--color-beige);
    text-align: center;
    padding: 4rem 0;
}

.cta-section h2 {
    color: var(--color-beige);
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--color-beige);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-section .btn-primary-custom {
    background-color: var(--color-gold);
    color: var(--color-brown);
}

.cta-section .btn-primary-custom:hover {
    background-color: var(--color-beige);
    color: var(--color-brown);
}

/* Page Banner */
.page-banner {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(31, 74, 61, 0.5), rgba(31, 74, 61, 0.5)),
                url('../images/Welcome.jpg') center/cover no-repeat;
    color: var(--color-beige);
    text-align: center;
}

/* Page-specific banner images */
.page-banner-about {
    background: linear-gradient(rgba(31, 74, 61, 0.5), rgba(31, 74, 61, 0.5)),
                url('../images/hero_images/Hero_section1.jpg') center/cover no-repeat;
}

.page-banner-products {
    background: linear-gradient(rgba(31, 74, 61, 0.5), rgba(31, 74, 61, 0.5)),
                url('../images/hero_images/Hero_section2.jpg') center/cover no-repeat;
}

.page-banner-gallery {
    background: linear-gradient(rgba(31, 74, 61, 0.5), rgba(31, 74, 61, 0.5)),
                url('../images/hero_images/Hero_section3.jpg') center/cover no-repeat;
}

.page-banner-contact {
    background: linear-gradient(rgba(31, 74, 61, 0.5), rgba(31, 74, 61, 0.5)),
                url('../images/hero_images/Hero_section4.jpg') center/cover no-repeat;
}

.page-banner h1 {
    color: var(--color-beige);
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(31, 74, 61, 0.5);
}

/* Product Cards */
.product-card {
    background-color: var(--color-beige);
    border: 1px solid rgba(107, 53, 8, 0.2);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    margin-bottom: 2rem;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 53, 8, 0.15);
}

.product-image {
    height: 250px;
    background: url('https://via.placeholder.com/400x250/F5F5DC/333333?text=Product') center/cover no-repeat;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

/* Blind Type Animations */
.product-card[data-blind-type="roller"] .product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to bottom, rgba(31, 74, 61, 0.3), rgba(31, 74, 61, 0.1));
    transition: height 0.6s ease;
    z-index: 1;
}

.product-card[data-blind-type="roller"]:hover .product-image::before {
    height: 100%;
    animation: rollerBlindDown 1s ease forwards;
}

.product-card[data-blind-type="vertical"] .product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: repeating-linear-gradient(
        to right,
        rgba(31, 74, 61, 0.2) 0px,
        rgba(31, 74, 61, 0.2) 8px,
        transparent 8px,
        transparent 16px
    );
    transition: width 0.6s ease;
    z-index: 1;
}

.product-card[data-blind-type="vertical"]:hover .product-image::after {
    width: 100%;
    animation: verticalBlindSlide 1s ease forwards;
}

.product-card[data-blind-type="zebra"] .product-image {
    background-size: 200% 100%;
    background-position: 0% 0%;
}

.product-card[data-blind-type="zebra"]:hover .product-image {
    animation: zebraBlindShift 1s ease forwards;
}

.product-card[data-blind-type="venetian"] .product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(31, 74, 61, 0.15) 0px,
        rgba(31, 74, 61, 0.15) 3px,
        transparent 3px,
        transparent 6px
    );
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.6s ease;
    z-index: 1;
}

.product-card[data-blind-type="venetian"]:hover .product-image::before {
    opacity: 1;
    animation: venetianBlindTilt 1s ease forwards;
}

.product-card[data-blind-type="cellular"] .product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        rgba(31, 74, 61, 0.1) 0px,
        rgba(31, 74, 61, 0.1) 20px,
        transparent 20px,
        transparent 40px
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.product-card[data-blind-type="cellular"]:hover .product-image::before {
    opacity: 1;
    animation: cellularBlindExpand 1s ease forwards;
}

/* Blind Animation Keyframes */
@keyframes rollerBlindDown {
    0% {
        height: 0;
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        height: 100%;
        opacity: 0.3;
    }
}

@keyframes verticalBlindSlide {
    0% {
        width: 0;
        transform: translateX(-10px);
    }
    100% {
        width: 100%;
        transform: translateX(0);
    }
}

@keyframes zebraBlindShift {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 0%;
    }
}

@keyframes venetianBlindTilt {
    0% {
        transform: rotateX(0deg);
    }
    50% {
        transform: rotateX(15deg);
    }
    100% {
        transform: rotateX(0deg);
    }
}

@keyframes cellularBlindExpand {
    0% {
        transform: scaleY(0.5);
        opacity: 0.1;
    }
    100% {
        transform: scaleY(1);
        opacity: 0.3;
    }
}

.product-body {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-brown);
}

.product-price {
    font-size: 1.5rem;
    color: var(--color-gold);
    font-weight: 700;
}

.product-unit {
    font-size: 0.9rem;
    color: var(--color-brown);
    opacity: 0.8;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
    max-width: 100%;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(213, 161, 93, 0.3);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Contact Section */
.contact-details {
    background-color: var(--color-beige);
    padding: 3rem 0;
}

.contact-item {
    text-align: center;
    padding: 2rem;
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: var(--color-brown);
}

.contact-form {
    background-color: var(--color-beige);
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(107, 53, 8, 0.1);
}

.form-control {
    border-radius: 0;
    border: 1px solid rgba(107, 53, 8, 0.3);
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    transition: var(--transition);
    background-color: var(--color-beige);
}

.form-control:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 0.2rem rgba(213, 161, 93, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--color-brown);
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background-color: var(--color-green);
    color: var(--color-beige);
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: var(--color-beige);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer p,
.footer a {
    color: var(--color-beige);
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer a:hover {
    color: var(--color-gold);
    opacity: 1;
}

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

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

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(246, 242, 237, 0.2);
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1.25rem;
    color: var(--color-beige);
}

.social-icons a:hover {
    background-color: var(--color-gold);
    color: var(--color-brown);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(246, 242, 237, 0.2);
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
}

/* SEO Locations Section */
.seo-locations {
    background: #f8f9fa;
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    line-height: 1.4;
    border-top: 1px solid rgba(107, 53, 8, 0.1);
}

.seo-locations strong {
    color: #333;
    font-size: 14px;
}

.seo-locations p {
    margin-bottom: 0;
    color: var(--color-brown);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.animated {
    opacity: 1;
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-fade-up.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-fade-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-fade-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-fade-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-scale.animated {
    opacity: 1;
    transform: scale(1);
}

.animate-stagger {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-stagger.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.text-gold {
    color: var(--color-gold);
}

.bg-beige {
    background-color: var(--color-beige);
}

.bg-soft-grey {
    background-color: var(--color-beige);
}

.mt-section {
    margin-top: 5rem;
}

.mb-section {
    margin-bottom: 5rem;
}

/* ============================================
   Floating Action Buttons
   ============================================ */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.floating-btn i {
    font-size: 24px;
    z-index: 2;
}

.floating-btn-label {
    position: absolute;
    right: 70px;
    background-color: var(--color-brown);
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
    font-weight: 500;
}

.floating-btn-label::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid var(--color-brown);
}

.floating-btn:hover .floating-btn-label {
    opacity: 1;
    visibility: visible;
}

.floating-btn-call {
    background-color: var(--color-green);
}

.floating-btn-call:hover {
    background-color: #1a3d32;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(31, 74, 61, 0.3);
}

.floating-btn-whatsapp {
    background-color: #25D366;
}

.floating-btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.floating-btn-share {
    background-color: var(--color-gold);
}

.floating-btn-share:hover {
    background-color: #c4914a;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(213, 161, 93, 0.3);
}

.floating-btn:active {
    transform: scale(0.95);
}

/* Share Menu Styles */
.share-container {
    position: relative;
}

.share-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 8px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1001;
}

.share-container.active .share-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.share-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--color-brown);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 14px;
    font-weight: 500;
}

.share-option:hover {
    background-color: var(--color-beige);
    color: var(--color-green);
}

.share-option i {
    width: 20px;
    text-align: center;
    font-size: 18px;
}

.share-option[data-platform="facebook"] i {
    color: #1877F2;
}

.share-option[data-platform="twitter"] i {
    color: #1DA1F2;
}

.share-option[data-platform="whatsapp"] i {
    color: #25D366;
}

.share-option[data-platform="linkedin"] i {
    color: #0077B5;
}

.share-option[data-platform="native"] i {
    color: var(--color-gold);
}

