/* ============================================================== */
/* first section of home page  */
/* ================================================================= */
.hero-section {
        background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
        padding: 100px 0;
        overflow: hidden;
    }

    .hero-badge {
        display: inline-block;
        padding: 8px 20px;
        background: rgba(212, 175, 55, 0.1);
        border-radius: 50px;
        letter-spacing: 2px;
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .hero-title {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2.5rem, 5vw, 4.5rem); /* Responsive font size */
        line-height: 1.1;
        color: #1a1a1a;
    }

    .hero-subtitle {
        font-family: 'Poppins', sans-serif;
        max-width: 500px;
        color: #666;
    }

    /* Image Styling */
    .image-wrapper {
        position: relative;
        z-index: 1;
    }

    .main-img {
        width: 100%;
        height: auto;
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; /* Unique Organic Shape */
        box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
        transition: transform 0.5s ease;
    }

    .main-img:hover {
        transform: scale(1.02);
    }

    /* Floating Element for Luxury Feel */
    .floating-card {
        position: absolute;
        bottom: 10%;
        left: -5%;
        background: #fff;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        z-index: 2;
        animation: float 3s ease-in-out infinite;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }

    /* Mobile Adjustments */
    @media (max-width: 768px) {
        .hero-section { padding: 60px 0; text-align: center; }
        .hero-subtitle { margin: 0 auto 2rem; }
        .floating-card { display: none; }
        .main-img { border-radius: 20px; margin-top: 40px; }
    }
/* ============================================================== */
/* Second section of home page  */
/* ================================================================= */
    .wig-card {
        border: none;
        border-radius: 15px;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        background: #fff;
    }

    .wig-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
    }

    .product-img-container {
        position: relative;
        overflow: hidden;
        aspect-ratio: 4/5;
    }

    .product-img-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .wig-card:hover .product-img-container img {
        transform: scale(1.1);
    }

    /* Discount/New Badge */
    .badge-premium {
        position: absolute;
        top: 15px;
        left: 15px;
        background: #000;
        color: #fff;
        padding: 5px 15px;
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-radius: 50px;
        z-index: 2;
    }

    .wishlist-btn {
        position: absolute;
        top: 15px;
        right: 15px;
        background: white;
        border-radius: 50%;
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        color: #ff4d4d;
        z-index: 2;
    }

    .btn-view {
        border-radius: 0;
        font-weight: 600;
        letter-spacing: 1px;
        transition: 0.3s;
    }

    .btn-view:hover {
        background: #D4AF37;
        border-color: #D4AF37;
        color: white;
    }
    
    .section-title {
        position: relative;
        display: inline-block;
        padding-bottom: 15px;
    }
    
    .section-title::after {
        content: '';
        position: absolute;
        width: 50%;
        height: 3px;
        background: #D4AF37;
        bottom: 0;
        left: 25%;
    }
    /* ============================================================== */
/* third section of home page  */
/* ================================================================= */
.features-section {
        background-color: #fafafa;
        border-top: 1px solid #eee;
    }

    .feature-card {
        padding: 40px 20px;
        transition: all 0.3s ease;
        border-radius: 20px;
        height: 100%;
    }

    .feature-card:hover {
        background: #fff;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        transform: translateY(-5px);
    }

    .icon-box {
        width: 75px;
        height: 75px;
        background: #fdf6e3; /* Light gold tint */
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin: 0 auto 25px;
        font-size: 1.8rem;
        color: #D4AF37;
    }

    .feature-title {
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        font-size: 1.3rem;
        margin-bottom: 12px;
        color: #1a1a1a;
    }

    .feature-text {
        font-size: 0.95rem;
        color: #666;
        line-height: 1.6;
    }

    .cta-link {
        color: #D4AF37;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .divider-custom {
        width: 60px;
        height: 3px;
        background: #D4AF37;
        margin: 15px auto;
    }
    /* ============================================================== */
    /* forth section of home page   */
    /*  =============================================================== */
    /* Lookbook Custom Styles */
.lookbook-section {
    background-color: #ffffff;
}

.text-gold {
    color: #D4AF37;
}

.lookbook-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    background: #eee;
    height: 250px; /* Default height */
}

.lookbook-card.tall {
    height: 520px; /* Bigger height for featured image */
}

.lookbook-card.wide {
    height: 255px;
}

.lookbook-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.lookbook-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lookbook-card:hover img {
    transform: scale(1.1);
}

.lookbook-card:hover .lookbook-overlay {
    opacity: 1;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .lookbook-card.tall, .lookbook-card.wide {
        height: 300px;
    }
    .lookbook-overlay {
        opacity: 1; /* Keep text visible on touch devices */
        background: linear-gradient(transparent, rgba(0,0,0,0.6));
    }
}
    /* ============================================================== */
    /* five section of home page   */
    /*  =============================================================== */
    .gold-text {
    color: #D4AF37 !important;
}

.testimonial-box {
    border-radius: 20px;
    border-left: 5px solid #D4AF37;
    min-height: 320px; /* Sabhi reviews ko equal height dene ke liye */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: #555;
}

.customer-img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #D4AF37;
}

.icon-circle {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Indicators Styling */
.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
/* ======================================================= */
/* six section of home page    */
/* ======================================================= */
/* Maintenance Section Styling */
.text-gold {
    color: #D4AF37 !important;
}

.maintenance-img-wrapper {
    position: relative;
    padding: 20px;
}

.maintenance-img-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 90%;
    border: 8px solid #fdf6e3;
    z-index: -1;
    border-radius: 15px;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 0;
    background: #000;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.care-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    transition: all 0.3s ease;
}

.care-item:hover {
    border-color: #D4AF37;
    transform: translateX(5px);
}

.care-item h6 {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .maintenance-img-wrapper {
        margin-bottom: 40px;
    }
    .experience-badge {
        padding: 15px;
        bottom: -10px;
    }
}
/* ===================================================== */
/* seven section of home page     */
/* ===================================================== */
/* FAQ Styling */
.text-gold {
    color: #D4AF37 !important;
}

.accordion-button:not(.collapsed) {
    background-color: #fff;
    color: #D4AF37;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(212, 175, 55, 0.2);
}

.accordion-item {
    border-radius: 12px !important;
    overflow: hidden;
}

.accordion-button {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.accordion-button i {
    font-size: 1.3rem;
}

/* Hover Effect */
.accordion-button:hover {
    background-color: #fffcf5;
}
/* ===================================================== */
/* eight section of home page     */
/* ===================================================== */
.text-gold { color: #D4AF37; }
.expert-img-container {
    border: 10px solid #fff;
    transform: rotate(-3deg);
    transition: 0.3s;
}
.expert-img-container:hover { transform: rotate(0deg); }

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.2);
    font-family: 'Playfair Display';
}
.process-card {
    background: #fff;
    border-radius: 15px;
    transition: 0.3s;
}
.process-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    background: #fdf6e3;
}




/* ========================================================================================== */

/* Colloction Page CSS  */

/* =============================================================================================== */
/* Hero Section */
    .coll-hero {
        background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.pexels.com/photos/3993444/pexels-photo-3993444.jpeg?auto=compress&cs=tinysrgb&w=1600');
        background-size: cover;
        background-position: center;
        padding: 100px 0;
        text-align: center;
        color: white;
    }

    /* Product Grid Styling */
    .product-card {
        border: none;
        background: #fff;
        border-radius: 15px;
        overflow: hidden;
        transition: 0.4s;
        margin-bottom: 30px;
    }

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    }

    .img-wrapper {
        position: relative;
        overflow: hidden;
        aspect-ratio: 1/1;
    }

    .img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.6s;
    }

    .product-card:hover .img-wrapper img {
        transform: scale(1.1);
    }

    .price-tag {
        color: #D4AF37;
        font-weight: 700;
        font-size: 1.2rem;
    }

    .category-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        background: rgba(212, 175, 55, 0.9);
        color: #000;
        padding: 4px 12px;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        border-radius: 5px;
        z-index: 2;
    }

    /* Shop CTA Section */
    .shop-cta {
        background: #fdf6e3;
        border-radius: 20px;
        padding: 40px;
        border-left: 8px solid #D4AF37;
    }

    .btn-gold {
        background-color: #D4AF37;
        color: #000;
        font-weight: 600;
        border: none;
        border-radius: 50px;
        padding: 12px 30px;
        transition: 0.3s;
    }

    .btn-gold:hover {
        background-color: #000;
        color: #D4AF37;
    }
    /* ========================================================================================== */

/* Contact Page CSS  */

/* =============================================================================================== */
.contact-hero {
        background: #fdf6e3;
        padding: 60px 0;
        text-align: center;
    }
    
    .contact-card-box {
        border: none;
        border-radius: 20px;
        transition: 0.3s;
        height: 100%;
        background: #fff;
    }

    .icon-box-contact {
        width: 60px;
        height: 60px;
        background: #000;
        color: #D4AF37;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin-bottom: 20px;
        font-size: 1.5rem;
    }

    .booking-form-container {
        background: #fff;
        padding: 40px;
        border-radius: 25px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    }

    .form-control {
        padding: 12px;
        border-radius: 10px;
        border: 1px solid #eee;
    }

    .form-control:focus {
        border-color: #D4AF37;
        box-shadow: none;
    }

    .map-container {
        border-radius: 25px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        height: 450px;
    }
     /* ========================================================================================== */

/* About US Page CSS  */

/* =============================================================================================== */
/* Hero Section */
    .about-hero {
        background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.pexels.com/photos/3992870/pexels-photo-3992870.jpeg?auto=compress&cs=tinysrgb&w=1600');
        background-size: cover;
        background-position: center;
        padding: 120px 0;
        color: white;
        text-align: center;
    }

    /* Content Styling */
    .about-img-frame {
        position: relative;
        padding: 15px;
    }

    .about-img-frame::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 2px solid #D4AF37;
        transform: translate(15px, 15px);
        z-index: -1;
        border-radius: 15px;
    }

    .stat-box {
        background: #fdf6e3;
        padding: 30px;
        border-radius: 20px;
        text-align: center;
        transition: 0.3s;
    }

    .stat-box:hover {
        background: #D4AF37;
        color: #fff;
    }

    .stat-box h2 {
        font-family: 'Playfair Display', serif;
        font-weight: 800;
        margin-bottom: 5px;
    }

    .mission-card {
        border-left: 5px solid #D4AF37;
        background: #fff;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        border-radius: 0 15px 15px 0;
    }
     /* ========================================================================================== */

/* Gallery Page CSS  */

/* =============================================================================================== */
/* Hero Section */
    .gallery-hero {
        background: #000;
        padding: 80px 0;
        text-align: center;
        color: white;
    }

    /* Filter Buttons */
    .filter-btn {
        border: 2px solid #D4AF37;
        background: transparent;
        color: #333;
        padding: 8px 25px;
        margin: 5px;
        border-radius: 50px;
        font-weight: 600;
        transition: 0.3s;
    }

    .filter-btn:hover, .filter-btn.active {
        background: #D4AF37;
        color: #000;
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    }

    /* Masonry Gallery Layout */
    .gallery-container {
        columns: 3 300px; /* Modern Masonry Grid */
        column-gap: 20px;
    }

    .gallery-item {
        margin-bottom: 20px;
        break-inside: avoid;
        position: relative;
        overflow: hidden;
        border-radius: 15px;
        cursor: pointer;
    }

    .gallery-item img {
        width: 100%;
        display: block;
        transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    /* Advanced Hover Overlay */
    .gallery-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: 0.4s;
        backdrop-filter: blur(3px);
    }

    .gallery-item:hover .gallery-overlay {
        opacity: 1;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

    .view-icon {
        width: 50px;
        height: 50px;
        background: #D4AF37;
        color: #000;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        transform: translateY(20px);
        transition: 0.4s;
    }

    .gallery-item:hover .view-icon {
        transform: translateY(0);
    }

    /* Badge on Image */
    .img-tag {
        position: absolute;
        bottom: 15px;
        right: 15px;
        background: rgba(255,255,255,0.9);
        padding: 2px 10px;
        border-radius: 5px;
        font-size: 0.7rem;
        font-weight: bold;
        z-index: 2;
    }

    @media (max-width: 768px) {
        .gallery-container {
            columns: 2 150px;
        }
    }
    .video-card {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        background: #000;
        margin-bottom: 25px;
        /* Reel/TikTok Style */
        cursor: pointer;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .video-card video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.8;
        transition: 0.5s;
    }

    .video-card:hover video {
        opacity: 1;
        transform: scale(1.05);
    }

    /* Video Play Icon */
    .play-btn-wrapper {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
        pointer-events: none;
    }

    .play-icon-circle {
        width: 60px;
        height: 60px;
        background: rgba(212, 175, 55, 0.9);
        color: #000;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    }

    .video-info {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 20px;
        background: linear-gradient(transparent, rgba(0,0,0,0.8));
        color: #fff;
        z-index: 3;
    }

    .video-title {
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 0;
    }

    /* Section Heading Glow */
    .video-heading {
        font-family: 'Playfair Display', serif;
        position: relative;
        display: inline-block;
        padding-bottom: 10px;
    }

    .video-heading::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60%;
        height: 3px;
        background: #D4AF37;
    }