/* ==========================================================================
   AP Decor & Furnishing - Main Stylesheet (styles.css)
   ========================================================================== */

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

body{font-family: 'Lato', sans-serif;color: #4A4A4A;background-color: #F9F8F6;line-height: 1.6;overflow-x: hidden;}
h1, h2, h3, h4, h5, h6 {font-family: 'Playfair Display', serif;color: #2C2C2C;font-weight: 500;}
a{text-decoration: none;color: inherit;transition: all 0.3s ease;}
ul{list-style: none;}
img{max-width: 100%;display: block;}
.overflow_section{overflow: hidden;}

/* Utility Classes */
.container {width: 100%;max-width: 1280px;margin: 0 auto;padding: 0 2rem;}
.section-padding{padding: 6rem 0;}
.text-center{text-align: center;}
.section-subtitle{color: #7A7A7A;max-width: 600px;margin: 0 auto 1.5rem;}

/* Buttons */
.btn{display: inline-block;padding: 0.8rem 2rem;font-size: 0.9rem;text-transform: uppercase;letter-spacing: 1px;border: none;cursor: pointer;transition: all 0.3s ease;}
.btn-primary{background-color: #2C2C2C;color: #FFFFFF;}
.btn-primary:hover{background-color: #A68A64;}
.btn-accent{background-color: #A68A64;color: #FFFFFF;}
.btn-accent:hover{background-color: #2C2C2C;color: #FFFFFF;}
.btn-outline{background-color: transparent;border: 1px solid #FFFFFF;color: #FFFFFF;}
.btn-outline:hover{background-color: #FFFFFF;color: #2C2C2C;}
.btn-outline-dark{background-color: transparent;border: 1px solid #2C2C2C;color: #2C2C2C;}
.btn-outline-dark:hover{background-color: #2C2C2C;color: #FFFFFF;}
.btn-whatsapp{background-color: #25D366;border: 1px solid #25D366;color: #FFFFFF;}
.btn-whatsapp:hover{background-color: #1ebe57;border-color: #1ebe57;}
.btn-full{width: 100%;text-align: center;}




/* 1. Header & Navigation */
header{background-color: #FFFFFF;padding: 1rem 0;position: sticky;top: 0;z-index: 1000;box-shadow: 0 2px 10px rgba(0,0,0,0.05);}
.nav-container{display: flex;justify-content: space-between;align-items: center;}
.logo{display: inline-flex;align-items: center;text-decoration: none;}
.logo img{width: 250px;height: auto;display: block;object-fit: contain;filter: brightness(1.12) contrast(1.15) saturate(1.08) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));}
.nav-links{display: flex;gap: 2rem;}
.nav-links a{font-size: 0.9rem;font-weight: 700;text-transform: uppercase;letter-spacing: 1px;}

.nav-links a.active,
.nav-links a:hover {
    color: #A68A64;
}

/* --- Mobile Menu Simple & Working CSS --- */
.mobile-menu-toggle{display: none;background: none;border: none;cursor: pointer;padding: 10px;z-index: 99;}
.mobile-menu-toggle span{display: block;width: 25px;height: 3px;background-color: #333;margin: 5px 0;transition: 0.3s;}

@media screen and (max-width: 768px) {
    .desktop-quote {
        display: none !important;
    }

    .nav-links a.active {
        color: #A68A64 !important; /* Apnar design onujayi active color */
        font-weight: 700 !important;
    }

    .mobile-menu-toggle {
        display: block !important;
    }

    .nav-links {
        display: none; /* Default-e mobile-e completely hidden thakbe */
        position: absolute;
        top: 99%;
        left: 0;
        width: 100%;
        background-color: #FFFFFF !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 1.5rem !important;
        padding: 2rem 0 !important;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    /* JS er maddhome ei class add hobe */
    .nav-links.mobile-show {
        display: flex !important;
    }

    .nav-links a {
        color: #333333 !important;
        font-size: 1rem !important;
    }

    /* Hamburger to X Animation */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}
/* 1. Header & Navigation-End */




/* 2. Hero Section */
.hero{position: relative;height: 90vh;display: flex;align-items: center;justify-content: center;text-align: center;color: #FFFFFF;overflow: hidden;}
.hero-slider{position: absolute;top: 0;left: 0;width: 100%;height: 100%;}
.hero-slider .slide{position: absolute;top: 0;left: 0;width: 100%;height: 100%;background-size: cover;background-position: center;display: flex;align-items: center;justify-content: center;opacity: 0;visibility: hidden;transition: opacity 1.5s ease-in-out, visibility 1.5s ease-in-out;transform: scale(1);}
.hero-slider .slide.active{opacity: 1;visibility: visible;animation: zoomEffect 6s infinite alternate ease-in-out;}
.hero-slider .slide::after{content: '';position: absolute;top: 0;left: 0;width: 100%;height: 100%;background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));z-index: 1;}
@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}
.hero-content{position: relative;z-index: 2;max-width: 800px;padding: 0 2rem;}
.hero h1{font-size: 4rem;color: #FFFFFF;margin-bottom: 1.5rem;line-height: 1.2;}
.hero p{font-size: 1.2rem;margin-bottom: 2rem;font-weight: 300;}
.hero-btns{display: flex;gap: 1rem;justify-content: center;}
/* 2. Hero Section-End */



/* 3. About Section */
.about{background-color: #FFFFFF;}
.about-grid{display: grid;grid-template-columns: 1fr 1fr;gap: 4rem;align-items: center;}
.section-title{font-size: 2.5rem;margin-bottom: 1.5rem;}
.about-text p{margin-bottom: 1.5rem;color: #7A7A7A;}
.about-highlights{display: grid;grid-template-columns: 1fr 1fr;gap: 1rem;margin-bottom: 2rem;}
.highlight-item{font-weight: 700;color: #2C2C2C;display: flex;align-items: center;gap: 0.5rem;}
.highlight-item::before{content: '✓';color: #A68A64;}
.about-img img{width: 100%;border-radius: 4px;box-shadow: 0 10px 30px rgba(0,0,0,0.08);}
/* 3. About Section-End */




/* 4. Product Categories */
.categories-grid{display: grid;grid-template-columns: repeat(4, 1fr);gap: 2rem;margin-top: 3rem;}
.category-card{background-color: #FFFFFF;transition: all 0.3s ease;overflow: hidden;}
.category-card:hover{transform: translateY(-5px);box-shadow: 0 10px 20px rgba(0,0,0,0.05);}
.category-img{height: 250px;overflow: hidden;}
.category-img img{width: 100%;height: 100%;object-fit: cover;transition: transform 0.5s ease;}
.category-card:hover .category-img img{transform: scale(1.05);}
.category-content{padding: 1.5rem;text-align: center;}
.category-content h3{font-size: 1.2rem;margin-bottom: 0.5rem;}
.category-content p{font-size: 0.9rem;color: #7A7A7A;margin-bottom: 1rem;}
.category-link{color: #A68A64;font-weight: 700;font-size: 0.9rem;}
.category-link:hover{color: #2C2C2C;}
/* 4. Product Categories-End */




/* 5. Why Choose Us */
.why-choose{background-color: #2C2C2C;color: #FFFFFF;}
.why-choose .section-title{color: #FFFFFF;}
.why-choose-subtitle{max-width: 600px;margin: 0 auto;color: #ccc;}
.features-grid{display: grid;grid-template-columns: repeat(3, 1fr);gap: 3rem;margin-top: 3rem;}
.feature-card{text-align: center;}
.card_title{color: #fff;}
.feature-icon{width: 60px;height: 60px;background-color: #A68A64;border-radius: 50%;margin: 0 auto 1.5rem;display: flex;align-items: center;justify-content: center;font-size: 1.5rem;}
.feature-desc{color: #ccc;font-size: 0.9rem;}
/* 5. Why Choose Us-End */




/* 6. Interior Solutions */
.solutions-grid{display: grid;grid-template-columns: repeat(3, 1fr);gap: 1.5rem;margin-top: 3rem;}
.solution-card{position: relative;height: 300px;overflow: hidden;display: flex;align-items: flex-end;padding: 2rem;}
.solution-card img{position: absolute;top: 0;left: 0;width: 100%;height: 100%;object-fit: cover;z-index: 0;transition: transform 0.5s ease;}
.solution-card:hover img{transform: scale(1.05);}
.solution-card::before{content: '';position: absolute;top: 0; left: 0; right: 0; bottom: 0;background: linear-gradient(transparent, rgba(0,0,0,0.8));z-index: 1;}
.solution-content{position: relative;z-index: 2;color: #FFFFFF;text-align: left;}
.solution-content h3{color: #FFFFFF;margin-bottom: 0.5rem;}
.solution-desc{font-size: 0.9rem;}
/* 6. Interior Solutions-End */




/* 7. Featured Products */
.products{background-color: #FFFFFF;}
.products-grid{display: grid;grid-template-columns: repeat(3, 1fr);gap: 2rem;margin-top: 3rem;}
.product-card{border: 1px solid #eee;background-color: #FFFFFF;transition: all 0.3s ease;}
.product-card:hover{box-shadow: 0 10px 25px rgba(0,0,0,0.08);}
.product-img{height: 350px;overflow: hidden;}
.product-img img{width: 100%;height: 100%;object-fit: cover;}
.product-info{padding: 1.5rem;}
.product-category{font-size: 0.8rem;text-transform: uppercase;color: #A68A64;letter-spacing: 1px;margin-bottom: 0.5rem;}
.product-info h3{margin-bottom: 0.8rem;}
.product-desc{color: #7A7A7A;font-size: 0.9rem;margin-bottom: 1.5rem;}
/* 7. Featured Products-End */




/* 8. Premium Banner */
.banner{height: 60vh;background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url(../images/parallax-banner.avif) center/cover fixed no-repeat;display: flex;align-items: center;justify-content: center;text-align: center;color: #FFFFFF;}
.banner h2{color: #FFFFFF;font-size: 3rem;margin-bottom: 1rem;}
.banner p{font-size: 1.2rem;max-width: 600px;margin: 0 auto 2rem;}
/* 8. Premium Banner-End */




/* 9. Clients */
.clients-grid{display: flex;flex-wrap: wrap;justify-content: center;gap: 2rem;margin-top: 3rem;}
.client-tag{padding: 1rem 2rem;border: 1px solid #A68A64;color: #2C2C2C;font-weight: 700;text-transform: uppercase;letter-spacing: 1px;font-size: 0.9rem;transition: all 0.3s ease;}
.client-tag:hover{background-color: #A68A64;color: #FFFFFF;}
/* 9. Clients-End */




/* 10. Store Visit */
.store{background-color: #FFFFFF;}
.store-grid{display: grid;grid-template-columns: 1fr 1fr;gap: 4rem;align-items: center;}
.store-info{background-color: #F9F8F6;padding: 3rem;}
.store-info .section-title{margin-bottom: 0.5rem;}
.store-subtitle{color: #A68A64;margin-bottom: 1rem;}
.store-info p{margin-bottom: 2rem;color: #7A7A7A;}
.store-btns{display: flex;gap: 1rem;}
.store-image{height: 400px;overflow: hidden;}
.store-image img{width: 100%;height: 100%;object-fit: cover;}
/* 10. Store Visit-End */




/* 11. Final CTA */
.final-cta{background-color: #A68A64;color: #FFFFFF;text-align: center;}
.final-cta h2{color: #FFFFFF;font-size: 2.5rem;margin-bottom: 1rem;}
.final-cta p{font-size: 1.2rem;margin-bottom: 2rem;}
.cta-btns{display: flex;gap: 1rem;justify-content: center;}
/* 11. Final CTA-End */




/* 12. Footer */
footer{background-color: #1A1A1A;color: #ccc;padding: 4rem 0 2rem;}
.footer-grid{display: grid;grid-template-columns: 2fr 1fr 1fr 1.5fr;gap: 3rem;margin-bottom: 3rem;}
.footer-logo{font-family: 'Playfair Display', serif;font-size: 1.5rem;color: #FFFFFF;margin-bottom: 1rem;}

/* Modern Footer Logo Card */
.footer-logo{display: inline-flex;align-items: center;justify-content: center;padding: 14px 20px;border-radius: 18px;background: rgba(255, 255, 255, 0.06);backdrop-filter: blur(12px);-webkit-backdrop-filter: blur(12px);border: 1px solid rgba(198, 158, 91, 0.35);box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);transition: all 0.35s ease;}
.footer-logo img{max-width: 230px;height: auto;display: block;filter: brightness(1.12) contrast(1.15) saturate(1.08)drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));}
.footer-logo:hover{transform: translateY(-3px);border-color: rgba(198, 158, 91, 0.7);box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45),0 0 24px rgba(198, 158, 91, 0.18);}
.footer-logo:hover img{filter: brightness(1.18) contrast(1.18) saturate(1.12)drop-shadow(0 6px 16px rgba(198, 158, 91, 0.25));}
.footer-desc{font-size: 0.9rem;margin-bottom: 1rem;}
.footer-col h4{color: #FFFFFF;margin-bottom: 1.5rem;}
.footer-col ul li{margin-bottom: 0.8rem;}
.footer-col ul li a.active,
.footer-col ul li a:hover {
    color: #A68A64;
}
.footer-contact-list{font-size: 0.9rem;}
.contact-item{margin-bottom: 0.5rem;display: flex;grid-gap: 10px;}
.contact-item-last{margin-bottom: 1rem;}
.contact-item-icon i{color: #25D366; font-size: 18px;margin: 5px 0;}
.contact-item-content a:hover{color: #A68A64;}

.footer-bottom{text-align: center;padding-top: 2rem;border-top: 1px solid #333;font-size: 0.9rem;}
.footer-bottom a{color: #A68A64;}

/* Responsive Design */
@media (max-width: 992px) {
    .categories-grid, .features-grid, .solutions-grid, .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid, .store-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 3rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero-btns, .cta-btns, .store-btns {
        flex-direction: column;
    }
    .categories-grid, .features-grid, .solutions-grid, .products-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
#curtains-blinds,
#window-blinds,
#upholstery,
#wallpapers,
#flooring,
#bed-bath-furnishings,
#ergonomic-mattresses,
#home-decor-accents-products {
    scroll-margin-top: 100px;
}

/* Container Placement */
.floating-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    z-index: 99999;
}

/* Card Base Structure */
.float-card {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    border-radius: 50px;
    padding: 4px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Text Label (Hidden by default, slides on hover) */
.float-text {
    color: #ffffff;
    font-family: 'Playfair Display', 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 0 0px 0 18px;
    max-width: 0;
    opacity: 0;
    white-space: nowrap;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

/* Hover Effect - Slide Out Text Label */
.float-card:hover .float-text {
    max-width: 150px;
    opacity: 1;
    padding-right: 12px;
}

/* Icon Container Circle */
.icon-box {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

/* Premium Gold Call Button (Matching AP Decor Gold Theme) */
.call-card {
    background: rgba(184, 144, 104, 0.15); /* Soft Glass Accent */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(184, 144, 104, 0.3);
}

.call-card .icon-box {
    background: linear-gradient(135deg, #c5a075 0%, #8c6843 100%);
    box-shadow: 0 8px 20px rgba(140, 104, 67, 0.35);
}

.call-card:hover {
    background: rgba(140, 104, 67, 0.9);
    box-shadow: 0 10px 25px rgba(140, 104, 67, 0.4);
}

/* Premium Glassy WhatsApp Button */
.whatsapp-card {
    background: rgba(37, 211, 102, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.whatsapp-card .icon-box {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.whatsapp-card:hover {
    background: rgba(18, 140, 126, 0.9);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

/* Shiny Light Reflection Effect on Hover */
.icon-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transform: rotate(45deg) translateY(-100%);
    transition: transform 0.6s ease;
}

.float-card:hover .icon-box::before {
    transform: rotate(45deg) translateY(100%);
}

/* Subtle Floating Pulse Animation */
@keyframes luxuryPulse {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}

.floating-container {
    animation: luxuryPulse 4s ease-in-out infinite;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .floating-container {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .icon-box {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

    /* Keep labels visible or subtle on mobile */
    .float-card:hover .float-text {
        max-width: 120px;
        font-size: 12px;
    }
}
/* 12. Footer-End*/


/*//about-pages//*/
.section-subtitle{color: #B88E58;font-size: 0.8125rem;letter-spacing: 0.18em;}
.section-title{font-size: clamp(2rem, 3.5vw, 2.75rem);line-height: 1.25;}
.text-gold{color: #B88E58 !important;}
.text-gold-light{color: #C8A97E !important;}
.text-light-muted{color: #888888;}
.bg-light-section{background-color: #F9F8F6;}
.bg-dark-luxury{background-color: #1A1A1A;}
.max-w-700{max-width: 700px;}
.transition-all{transition: all 0.3s ease;}
.shadow-subtle{box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);}

/* Section Spacing Padding */
.py-lg-6{padding-top: 5rem;padding-bottom: 5rem;}

@media (min-width: 992px) {
  .py-lg-6 {
    padding-top: 6.5rem;
    padding-bottom: 6.5rem;
  }
}

.lead-text{font-size: 1.05rem;color: #444444;line-height: 1.8;}
.vm-card{background-color: #F9F8F6;border-left: 3px solid #B88E58;transition: all 0.3s ease;}
.vm-card:hover{transform: translateX(5px);background-color: #F4F2EE;}
.vision-img-wrapper{border-radius: 4px;overflow: hidden;}
.vision-img-wrapper img{max-height: 620px;object-fit: cover;}
.experience-badge{border-left: 4px solid #B88E58;backdrop-filter: blur(8px);box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);min-width: 220px;}
.tracking-wider{letter-spacing: 0.12em;font-size: 0.75rem;}


/* ==========================================
   SECTION 2 — Why Choose Us Styles
   ========================================== */
.feature-card{border: 1px solid rgba(0, 0, 0, 0.03) !important;position: relative;}
.feature-card:hover{transform: translateY(-8px);box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;border-color: rgba(184, 142, 88, 0.2) !important;}
.feature-icon-wrapper{width: 60px;height: 60px; background-color: #F9F8F6;border: 1px solid rgba(184, 142, 88, 0.2);transition: all 0.3s ease;}

.feature-card:hover .feature-icon-wrapper{background-color: #B88E58;}
.feature-card:hover .feature-icon-wrapper i{color: #FFFFFF !important;}


/* ==========================================
   SECTION 3 — Awards & Accolades Styles
   ========================================== */
.border-dark-luxury{border: 1px solid rgba(255, 255, 255, 0.08);background-color: #242424;}
.award-card{position: relative;overflow: hidden;}
.award-card::before{content: '';position: absolute;top: 0;left: 50%;transform: translateX(-50%);width: 0%;height: 2px;background-color: #B88E58;transition: all 0.3s ease;}
.award-card:hover{transform: translateY(-6px);border-color: rgba(184, 142, 88, 0.3);box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);}
.award-card:hover::before{width: 80%;}
.award-icon-box{width: 68px;height: 68px;background-color: rgba(184, 142, 88, 0.1);border: 1px solid rgba(184, 142, 88, 0.25);transition: all 0.3s ease;}
.award-card:hover .award-icon-box{background-color: #B88E58;}
.award-card:hover .award-icon-box i{color: #FFFFFF !important;}


/* ==========================================
   SECTION 4 — Meet the Team Styles
   ========================================== */
.team-card{border: 1px solid rgba(0, 0, 0, 0.04) !important;}
.team-card:hover{transform: translateY(-8px);box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;}
.team-img-wrapper{aspect-ratio: 4 / 4.5;background-color: #F9F8F6;}
.team-img{transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);width: 100%;height: 100%;}
.team-card:hover .team-img{transform: scale(1.05);}
.team-designation{letter-spacing: 0.1em;font-size: 0.75rem;}
.social-link{width: 38px;height: 38px;border-radius: 50%;background-color: #F9F8F6;color: #1A1A1A;display: inline-flex;align-items: center;justify-content: center;text-decoration: none;font-size: 0.95rem;transition: all 0.3s ease;}
.social-link:hover {
  background-color: #B88E58;
  color: #FFFFFF;
  transform: translateY(-2px);
}
.ethos-banner{background-color: #EDE8E1;padding: 30px;text-align: center;border-radius: 4px;font-style: italic;color: #2C2C2C;box-shadow: 0 4px 15px rgba(0,0,0,0.03);border-left: 4px solid #8C7A6B;border-right: 4px solid #8C7A6B;}

/*//about-pages-End//*/





/*//our-store//*/
.our-stores-section{padding-bottom: 70px;background-color: #F9F8F6; width: 100%;position: relative;}
.store-container{max-width: 1200px;margin: 0 auto;}
.store-header{text-align: center;margin-bottom: 50px;}
.store-header h2{font-family: 'Playfair Display', serif;font-size: 2.6rem;color: #2C2C2C;margin-bottom: 12px;font-weight: 500;}
.store-header p{font-family: 'Lato', sans-serif;font-size: 1.05rem;color: #666666;max-width: 600px;margin: 0 auto;}
.store-divider{width: 50px;height: 2px;background-color: #C5A880;margin: 20px auto 0;}
.stores-grid{display: grid;grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));gap: 25px;}
.store-card{background: #FFFFFF;border: 1px solid #EAE7E1;padding: 35px 25px;position: relative;border-radius: 8px;overflow: hidden;box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);}

/* Modern Animated Bottom Accent Line */
.store-card::after{content: '';position: absolute;bottom: 0;left: 0;width: 0%;height: 3px;background-color: #C5A880;transition: width 0.35s ease;}
.store-card:hover::after{width: 100%;}
.store-card:hover {
    transform: translateY(-6px);
    border-color: rgba(197, 168, 128, 0.5);
    box-shadow: 0 15px 30px rgba(197, 168, 128, 0.15), 0 5px 12px rgba(0, 0, 0, 0.04);
}

/* Modern Gold Pill Badge */
.store-number{position: absolute;top: 20px;right: 20px;font-family: 'Lato', sans-serif;font-size: 0.8rem;font-weight: 600;color: #C5A880;background: #FAF6F0;padding: 4px 12px;border-radius: 20px;border: 1px solid rgba(197, 168, 128, 0.3);letter-spacing: 0.8px;transition: all 0.3s ease;}
.store-card:hover .store-number{background: #C5A880;color: #FFFFFF;}
.store-card h3{font-size: 1.6rem;margin-top: 10px;margin-bottom: 10px;color: #2C2C2C;font-weight: 500;}
.store-location{font-size: 1.05rem;color: #555555;display: flex;align-items: center;gap: 8px;}
.store-location svg{width: 18px;height: 18px;fill: #C5A880;flex-shrink: 0;transition: transform 0.3s ease;}
.store-card:hover .store-location svg{transform: translateY(-2px);}
/*//our-store-End//*/




/*//clients//*/
.our-clients-section{padding: 50px 20px; /* Reduced from 80px to 50px */background-color: #F9F8F6;width: 100%;}
.clients-container{max-width: 1200px;margin: 0 auto;}
.clients-header{text-align: center;margin-bottom: 35px; /* Reduced from 50px */}
.clients-header h2{font-family: 'Playfair Display', serif;font-size: 2.2rem; /* Slightly balanced size */color: #2C2C2C;margin-bottom: 8px; /* Reduced spacing */font-weight: 500;}
.clients-header p{font-family: 'Lato', sans-serif;font-size: 1rem;color: #666;max-width: 600px;margin: 0 auto;}
.clients-divider{width: 50px;height: 2px;background-color: #C5A880;margin: 15px auto 0;}
.clients-grid{display: grid;grid-template-columns: repeat(4, 1fr);gap: 18px; /* Tighter grid gap (reduced from 25px) */}

@media (max-width: 992px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 600px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}
.client-card{background: #ffffff;border: 1px solid #EAE7E1;padding: 12px; /* Reduced padding inside the card */height: 90px; /* Slightly lower height for compactness */display: flex;align-items: center;justify-content: center;border-radius: 4px; /* Subtle soft edge */box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03); /* Soft base box shadow */transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;}
.client-card:hover{transform: translateY(-4px);box-shadow: 0 12px 28px rgba(197, 168, 128, 0.18), 0 4px 10px rgba(0, 0, 0, 0.05); /* Rich gold-tinted shadow */border-color: #C5A880;}
.client-card img{max-width: 100%;max-height: 100%;width: auto;height: auto;object-fit: contain;filter: grayscale(100%);opacity: 0.65;transition: filter 0.3s ease, opacity 0.3s ease;}
.client-card:hover img{filter: grayscale(0%);opacity: 1;}
/*//clients-End//*/




/*// ================= PAGE HERO BANNER ================= //*/
.page-banner-section{position: relative;width: 100%;height: 340px;background-image: url('../images/parallax-banner.avif');background-size: cover;background-position: center center;background-repeat: no-repeat;display: flex;align-items: center;justify-content: center;overflow: hidden;}
.banner-overlay{position: absolute;top: 0;left: 0;width: 100%;height: 100%;background: linear-gradient(180deg, rgba(15, 15, 15, 0.60) 0%, rgba(15, 15, 15, 0.72) 50%, rgba(15, 15, 15, 0.85) 100%);z-index: 1;}
.banner-container{position: relative;z-index: 2;text-align: center;padding: 0 20px;max-width: 800px;}
.banner-tagline{font-family: 'Lato', sans-serif;font-size: 0.85rem;font-weight: 600;text-transform: uppercase;letter-spacing: 3px;color: #C5A880;margin-bottom: 10px;display: inline-block;}
.page-title{font-family: 'Playfair Display', serif;font-size: 3.2rem;font-weight: 500;color: #FFFFFF;text-transform: capitalize;margin: 0 0 16px 0;letter-spacing: 1px;text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);}
.banner-breadcrumb{display: inline-flex;align-items: center;justify-content: center;gap: 12px;list-style: none;margin: 0;padding: 8px 24px;background: rgba(255, 255, 255, 0.08);backdrop-filter: blur(12px);-webkit-backdrop-filter: blur(12px);border: 1px solid rgba(255, 255, 255, 0.18);border-radius: 30px;}
.banner-breadcrumb li{font-family: 'Lato', sans-serif;font-size: 0.95rem;font-weight: 400;}
.banner-breadcrumb li a{color: rgba(255, 255, 255, 0.8);text-decoration: none;transition: color 0.3s ease;}
.banner-breadcrumb li a:hover{color: #C5A880;}
.banner-breadcrumb li.separator{color: #C5A880;font-size: 1.2rem;line-height: 1;}
.banner-breadcrumb li.active{color: #FFFFFF;font-weight: 600;}

/* Mobile Responsive */
@media (max-width: 768px) {
    .page-banner-section {
        height: 260px;
    }

    .page-title {
        font-size: 2.3rem;
    }

    .banner-tagline {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .banner-breadcrumb {
        padding: 6px 18px;
    }
    
    .banner-breadcrumb li {
        font-size: 0.85rem;
    }
}
/*// ================= PAGE HERO BANNER END ================= //*/




/*// ================= CONTACT SECTION STYLES ================= //*/
.contact-us-section{padding: 70px 20px;background-color: #F9F8F6;width: 100%;}
.contact-container{max-width: 1200px;margin: 0 auto;}
.contact-grid{display: grid;grid-template-columns: 1fr 1.1fr;gap: 50px;align-items: start;margin-bottom: 70px;}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
.contact-info-wrapper .section-title span{font-size: 0.85rem;text-transform: uppercase;letter-spacing: 2px;color: #C5A880;font-weight: 600;}
.contact-info-wrapper .section-title h2{font-size: 2.3rem;margin-top: 5px;margin-bottom: 10px;}
.title-divider{width: 50px;height: 2px;background-color: #C5A880;margin-bottom: 20px;}
.info-description{color: #666;margin-bottom: 30px;font-size: 1rem;}
.info-cards-list{display: flex;flex-direction: column;gap: 18px;}
.info-card{display: flex;align-items: flex-start;gap: 18px;background: #FFFFFF;padding: 20px;border: 1px solid #E8E5E0;border-radius: 6px;box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);transition: all 0.3s ease;}
.info-card:hover{border-color: #C5A880;transform: translateY(-3px);box-shadow: 0 8px 20px rgba(197, 168, 128, 0.12);}
.info-icon{width: 44px;height: 44px;background: #FAF6F0;border: 1px solid rgba(197, 168, 128, 0.3);border-radius: 50%;display: flex;align-items: center;justify-content: center;flex-shrink: 0;}
.info-icon i{font-size: 18px;color: #C5A880;}
.info-content h3{font-size: 1.15rem;margin-bottom: 4px;}
.info-content p, .info-content a{color: #555;font-size: 0.98rem;}
.info-content a:hover{color: #C5A880;}
.form-card{background: #FFFFFF;padding: 40px 35px;border: 1px solid #E8E5E0;border-radius: 8px;box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);}
.form-card h3{font-size: 1.8rem;margin-bottom: 8px;}
.form-card p{color: #666;font-size: 0.95rem;margin-bottom: 25px;}
.contact-form .form-group{margin-bottom: 20px;}
.form-row{display: grid;grid-template-columns: 1fr 1fr;gap: 20px;}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.contact-form label{display: block;font-size: 0.9rem;font-weight: 600;color: #2C2C2C;margin-bottom: 6px;}
.contact-form input,
.contact-form textarea{width: 100%;padding: 12px 15px;border: 1px solid #E2DDD5;background-color: #FDFDFD;border-radius: 4px;font-family: 'Lato', sans-serif;font-size: 0.95rem;color: #333;outline: none;transition: border-color 0.3s ease, box-shadow 0.3s ease;}
.contact-form input:focus,
.contact-form textarea:focus{border-color: #C5A880;box-shadow: 0 0 8px rgba(197, 168, 128, 0.2);background-color: #FFFFFF;}
.submit-btn{width: 100%;padding: 14px;background-color: #2C2C2C;color: #FFFFFF;border: none;border-radius: 4px;font-family: 'Lato', sans-serif;font-size: 1rem;font-weight: 600;letter-spacing: 1px;text-transform: uppercase;cursor: pointer;transition: background-color 0.3s ease, transform 0.2s ease;}
.submit-btn:hover{background-color: #A68A64;}

.map-section{background: #FFFFFF;padding: 30px;border: 1px solid #E8E5E0;border-radius: 8px;}
.map-header{text-align: center;margin-bottom: 20px;}
.map-header h3{font-size: 1.8rem;margin-bottom: 6px;}
.map-header p{color: #666;font-size: 0.98rem;}
.map-container{border-radius: 6px;overflow: hidden;box-shadow: 0 4px 15px rgba(0,0,0,0.05);}
/*// ================= CONTACT SECTION STYLES-End ================= //*/



/* Products & Collections Section Styles */
.products-section{max-width: 1200px;margin: 0 auto;}
.section-header{text-align: center;margin-bottom: 60px;}
.section-header h2{font-size: 2.8rem;margin-bottom: 15px;letter-spacing: 1px;}
.section-header p{color: #666;max-width: 750px;margin: 0 auto;}
.product-split-item{display: flex;align-items: center;gap: 60px; margin-bottom: 90px;background: #ffffff;border-radius: 8px;overflow: hidden;box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);transition: transform 0.3s ease, box-shadow 0.3s ease;}
.product-split-item:hover{transform: translateY(-5px);box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);}
.product-split-item:nth-child(even){flex-direction: row-reverse;}
.product-image-container{flex: 1;height: 450px;overflow: hidden;position: relative;}
.product-image-container img{width: 100%;height: 100%;object-fit: cover;transition: transform 0.5s ease;}
.product-split-item:hover .product-image-container img{transform: scale(1.05);}
.product-info-content{flex: 1;padding: 50px;}
.product-title{font-size: 2rem;margin-bottom: 20px;color: #2C2C2C;line-height: 1.2;}
.product-description{font-size: 1.05rem;color: #555;margin-bottom: 25px;line-height: 1.7;}
.product-details{border-top: 1px solid #EFECE6;padding-top: 20px;}
.detail-group{margin-bottom: 12px;font-size: 0.95rem;}
.detail-group:last-child{margin-bottom: 0;}
.detail-title{font-weight: 700;color: #2C2C2C;display: block;margin-bottom: 4px;font-family: 'Playfair Display', serif;font-size: 1.05rem;}
.detail-values{color: #666;line-height: 1.5;}

/* Responsive Design */
@media (max-width: 968px) {
    .product-split-item, 
    .product-split-item:nth-child(even) {
        flex-direction: column;
        gap: 0;
    }
    .product-image-container {
        width: 100%;
        height: 300px;
    }
    .product-info-content {
        padding: 30px;
    }
    .section-header h2 {
        font-size: 2.2rem;
    }
    .product-title {
        font-size: 1.6rem;
    }
}








/* Main Container */
.terms-container {
    background-color: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(193, 157, 96, 0.2);
}

/* Luxury Header */
.terms-header {
    text-align: center;
    padding: 80px 40px 60px 40px;
    background: radial-gradient(circle at top, #FFFFFF 0%, #FAF8F2 100%);
    border-bottom: 1px solid #EAE2D0;
}



.terms-header h2 {
    font-size: 42px;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    line-height: 1.3;
    color: #1A1A1A;
}

.gold-divider {
    height: 3px;
    width: 90px;
    background: linear-gradient(90deg, #D4AF37, #C19D60, #D4AF37);
    margin: 0 auto 35px auto;
    border-radius: 2px;
}

.company-name {
    font-size: 22px;
    color: #2C2C2C;
    margin-bottom: 15px;
}

.intro-contact {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 15px;
}

.intro-contact span {
    font-size: 15px;
    color: #555555;
    display: flex;
    align-items: center;
    gap: 8px;
}

.intro-contact i {
    color: #C19D60;
    font-size: 18px;
}

/* Fixed Website Link Section */
.website-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    width: 100%;
}

.website-link {
    font-size: 16px;
    color: #C19D60;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.website-link i {
    color: #C19D60;
    font-size: 18px;
}

.website-link:hover {
    color: #A67C37;
    text-decoration: underline;
}

/* Modern Grid Layout for Terms */
.terms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    padding: 60px;
    background-color: #FFFFFF;
}

/* Term Cards */
.term-card {
    display: flex;
    gap: 22px;
    padding:20px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAF7 100%);
    border: 1px solid #EAE2D0;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    align-items: flex-start;
}

.term-card ul{margin: 0; padding: 0;}

.term-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(193, 157, 96, 0.12);
    border-color: #C19D60;
    background: #FFFFFF;
}

.full-width-card {
    grid-column: 1 / -1;
}

.term-icon {
    width: 60px;
    height: 60px;
    background-color: #F8F5EE;
    border: 1px solid #DFD2B8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C19D60;
    font-size: 22px;
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-shadow: 0 4px 10px rgba(193, 157, 96, 0.08);
}

.term-card:hover .term-icon {
    background: linear-gradient(135deg, #C19D60, #A67C37);
    color: #FFFFFF;
    border-color: transparent;
    transform: scale(1.05);
}

.term-content {
    flex: 1;
}

.term-content h3 {
    font-size: 19px;
    margin-bottom: 14px;
    color: #1A1A1A;
    display: flex;
    align-items: center;
    gap: 12px;
}

.term-content h3 span {
    color: #C19D60;
    font-size: 15px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    background: #F4EFE6;
    padding: 3px 10px;
    border-radius: 6px;
}

.term-content p {
    font-size: 15px;
    color: #555555;
    margin-bottom: 0;
}

.mt-space {
    margin-top: 12px;
}

.luxury-list {
    margin: 15px 0 0 0;
    padding-left: 0;
    list-style: none;
}

.luxury-list li {
    font-size: 15px;
    color: #555555;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.luxury-list li::before {
    content: "\f00c"; 
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #C19D60;
    font-size: 13px;
}

/* Luxury Footer Contacts */
.terms-footer-luxury {
    background: linear-gradient(135deg, #1A1A1A 0%, #111111 100%);
    padding: 80px 60px;
    color: #FFFFFF;
    border-top: 3px solid #C19D60;
}

.footer-note {
    text-align: center;
    margin-bottom: 50px;
}

.footer-note i {
    font-size: 30px;
    color: #C19D60;
    margin-bottom: 15px;
}

.footer-note p {
    font-size: 17px;
    font-style: italic;
    color: #CFCFCF;
    max-width: 650px;
    margin: 0 auto;
}

.team-title {
    text-align: center;
    font-size: 22px;
    color: #FFFFFF;
    margin-top: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.luxury-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.luxury-contact-card {
    background-color: #222222;
    padding: 40px 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid #333333;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.luxury-contact-card:hover {
    border-color: #C19D60;
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(193, 157, 96, 0.15);
}

.card-avatar {
    width: 65px;
    height: 65px;
    background-color: #2A2A2A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #C19D60;
    margin-bottom: 20px;
    border: 1px solid #444444;
    overflow: hidden;
}

.card-avatar img{width: 100%; height: 100%;}

.card-info h5 {
    color: #FFFFFF;
    font-size: 20px;
    margin-bottom: 6px;
}

.card-info .designation {
    display: block;
    font-size: 12px;
    color: #C19D60;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    font-weight: 700;
}

.card-info a {
    display: block;
    color: #B0B0B0;
    text-decoration: none;
    font-size: 12px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
    word-break: break-all;
}

.card-info a i {
    color: #C19D60;
    margin-right: 8px;
}

.card-info a:hover {
    color: #FFFFFF;
}

/* Company Card Accent */
.company-brand-card {
    background: linear-gradient(145deg, #2A2A2A, #181818);
    border: 1px solid #C19D60;
}

.company-brand-card .card-avatar {
    background: linear-gradient(135deg, #C19D60, #A67C37);
    color: #FFFFFF;
    border-color: transparent;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .terms-grid {
        grid-template-columns: 1fr;
        padding: 40px;
    }
    
    .luxury-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .full-width-card {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .terms-condition-section {
        padding: 40px 0;
    }
    
    .terms-header {
        padding: 50px 20px 40px 20px;
    }

    .terms-header h2 {
        font-size: 28px;
    }

    .terms-grid {
        padding: 20px;
        gap: 20px;
    }

    .term-card {
        flex-direction: column;
        padding: 25px;
        gap: 15px;
        text-align: left;
    }
    
    .term-icon {
        margin-bottom: 5px;
    }

    .luxury-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .terms-footer-luxury {
        padding: 50px 20px;
    }
    
    .intro-contact {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}