:root {
    --gold: #D4AF37;
    --dark-gold: #B8860B;
    --light-gold: #F5E8B0;
    --black: #121212;
    --dark-gray: #1E1E1E;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--black);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--gold);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--light-gold);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 0;
    font-family: 'Cinzel', serif;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background: var(--gold);
    color: var(--black);
}

/* Header Styles */
header {
    background-color: rgba(18, 18, 18, 0.9);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
}

.logo img {
    width: 100px;
}

.logo span {
    color: var(--white);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

nav ul li a:hover:after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(18, 18, 18, 0.7), rgba(18, 18, 18, 0.7)), url('/img/banner.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--light-gray);
}

/* Section Styling */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 2px;
    background-color: var(--gold);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

/* About Section */
.about {
    background-color: var(--dark-gray);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    height: 400px;
    background: url('/img/about.jpg') no-repeat center center/cover;
    border: 1px solid var(--gold);
}

/* Brands Section */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.brand-card {
    background-color: var(--dark-gray);
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.1);
}

.brand-card img { 
    width: 100%;
    margin-bottom: 20px;
}

/* Why Choose Us */
.why-us {
    background-color: var(--dark-gray);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 30px;
}

.feature i {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 20px;
}

/* Footer */
footer {
    background-color: var(--dark-gray);
    padding: 70px 0 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 1px;
    background-color: var(--gold);
    bottom: -10px;
    left: 0;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column p {
    color: var(--light-gray);
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    color: var(--gold);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--gold);
    color: var(--black);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-gray);
    font-size: 14px;
}

/* Page-specific styles */
.page-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(18, 18, 18, 0.7), rgba(18, 18, 18, 0.7)), url('https://images.unsplash.com/photo-1555529669-e69e7aa0ba9a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80') no-repeat center center/cover;
}

.page-content {
    padding: 100px 0;
}

 
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--light-gray);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--dark-gray);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--white);
    font-family: 'Lato', sans-serif;
    font-size: 16px;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}
 

.services-grid,
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card,
.product-card {
    background-color: var(--dark-gray);
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover,
.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.service-card i,
.product-card i {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 20px;
}

.vision-mission {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.vision,
.mission {
    padding: 30px;
    background-color: var(--dark-gray);
    border-left: 3px solid var(--gold);
}

.brands-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.brand-item {
    background-color: var(--dark-gray);
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.brand-item:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.brand-logo {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 15px;
}

.products-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-card {
    background-color: var(--dark-gray);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.category-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
}

.category-icon {
    font-size: 50px;
    color: var(--gold);
    margin-bottom: 20px;
}

/* Luxury Showcase Section */
.luxury-showcase {
    position: relative;
    height: 60vh;
    overflow: hidden;
    padding: 0;
}

.showcase-slider {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.8s ease;
}

.showcase-slide {
    width: 33.333%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.showcase-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(18, 18, 18, 0.4), rgba(18, 18, 18, 0.7));
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 0 20px;
}

.slide-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--gold);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--light-gray);
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: var(--gold);
    transform: scale(1.2);
}

/* Exclusive Collections Section */
.exclusive-collections {
    background-color: var(--dark-gray);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.collection-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.5s ease;
}

.collection-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.collection-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.collection-card:hover .collection-image {
    transform: scale(1.05);
}

.collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(18, 18, 18, 0.9));
    color: var(--white);
    transition: all 0.3s ease;
}

.collection-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--gold);
}

/* Dubai Lifestyle Section */
.dubai-lifestyle {
    position: relative;
    height: 80vh;
    background: url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center; 
}

.dubai-lifestyle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 0.4));
}

.lifestyle-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.lifestyle-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.lifestyle-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--light-gray);
}

.lifestyle-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }

    .about-content {
        flex-direction: column;
    }

    .about-image {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: var(--dark-gray);
        transition: all 0.3s ease;
        padding: 30px;
        border-right: 1px solid var(--gold);
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 15px 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .luxury-showcase {
        height: 80vh;
    }
    .dubai-lifestyle {
        height: 95vh;
    }
}

/* NEW: Luxury Gallery Section */
        .luxury-gallery {
            background-color: var(--dark-gray);
            padding: 100px 0;
        }
        
        .gallery-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
        }
        
        .gallery-intro p {
            font-size: 1.1rem;
            color: var(--light-gray);
            line-height: 1.8;
        }
        
        .gallery-filter {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 50px;
        }
        
        .filter-btn {
            padding: 10px 25px;
            background: transparent;
            color: var(--light-gray);
            border: 1px solid rgba(212, 175, 55, 0.3);
            font-family: 'Cinzel', serif;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .filter-btn:hover, .filter-btn.active {
            background: var(--gold);
            color: var(--black);
            border-color: var(--gold);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .gallery-item {
            position: relative;
            height: 350px;
            overflow: hidden;
            border: 1px solid rgba(212, 175, 55, 0.3);
            transition: all 0.5s ease;
            cursor: pointer;
        }
        
        .gallery-item:hover {
            transform: translateY(-10px);
            border-color: var(--gold);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        
        .gallery-image {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover .gallery-image {
            transform: scale(1.05);
        }
        
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 25px;
            background: linear-gradient(transparent, rgba(18, 18, 18, 0.95));
            color: var(--white);
            transform: translateY(10px);
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
            opacity: 1;
        }
        
        .gallery-overlay h3 {
            font-size: 1.3rem;
            margin-bottom: 5px;
            color: var(--gold);
        }
        
        .gallery-overlay p {
            font-size: 0.9rem;
            color: var(--light-gray);
        }
        
        .gallery-category {
            display: inline-block;
            padding: 5px 10px;
            background-color: rgba(212, 175, 55, 0.2);
            color: var(--gold);
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }