/* =========================================
   🌐 GLOBAL STYLES
========================================= */
body {
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
    color: #111;
    padding-top: 170px; /* match header height */
}

ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

/* =========================================
   🎯 HERO SECTION
========================================= */
/* HERO SECTION */
.hero-section {
    min-height: 90vh;
    position: relative;
}

/* TITLE */
.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
}

/* SUBTITLE */
.hero-subtitle {
    font-size: 18px;
    color: #666;
}

/* CTA BUTTON IMPROVE */
.btn-outline-dark {
    border-radius: 8px;
    padding: 12px 25px;
}

/* BADGES (TRUST POINTS) */
.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: #ffffff;
    border-radius: 30px;
    font-size: 14px;
    color: #333;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.hero-badge:hover {
    transform: translateY(-3px);
}

/* HERO IMAGE */
.hero-slider {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.hero-slider img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: 0.4s;
}

/* IMAGE DEPTH */
.hero-slider {
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

/* HOVER ZOOM */
.hero-slider:hover img {
    transform: scale(1.04);
}

/* SUBTLE OVERLAY */
.hero-slider::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.15), transparent);
    border-radius: 20px;
}

/* =========================================
   🎞 HERO SLIDER (FINAL CLEAN)
========================================= */

/* SLIDER CONTAINER */
.hero-slider {
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;

    /* PREMIUM SHADOW */
    box-shadow: 
        0 25px 60px rgba(0,0,0,0.12),
        0 10px 25px rgba(0,0,0,0.06);
}

/* IMAGE FIX (IMPORTANT) */
.hero-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 🔥 ensures full fill */
    display: block;
}

/* =========================================
   🎯 CAROUSEL CONTROLS
========================================= */
.carousel-control-prev,
.carousel-control-next {
    width: 8%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
    padding: 12px;
}

/* =========================================
   🧭 NAVBAR ON HERO
========================================= */
.custom-navbar {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
}

/* NAV LINKS */
.custom-navbar .nav-link {
    color: #111 !important;
    font-weight: 500;
}

/* CUSTOM DROPDOWN ARROW */
.custom-arrow i {
    font-size: 14px;
    margin-left: 6px;
    color: #111;
    transition: 0.3s;
}

/* HOVER */
.custom-arrow:hover i {
    color: #d4af37;
}

/* ROTATE ON OPEN */
.show > .custom-arrow i {
    transform: rotate(180deg);
}
/* FIX FULL HEIGHT CHAIN */
.hero-slider,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
    height: 100%;
}

/* IMAGE FULL FIT */
.hero-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* =========================================
   🎨 BUTTONS
========================================= */
.btn-gold {
    background: #d4af37;
    color: #000;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    transition: 0.3s;
}

.btn-gold:hover {
    background: #b8962e;
}

/* =========================================
   📦 SECTIONS
========================================= */
.section {
    padding: 80px 0;
}

.bg-light-soft {
    background: #f8f9fa;
}

/* =========================================
   ⭐ WHY SECTION (PREMIUM CLEAN)
========================================= */
/* NEW WHY DESIGN */
.why-card-2 {
    padding: 30px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 15px 50px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* TOP ROW */
.why-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

/* ICON */
.why-icon-2 {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: linear-gradient(135deg, #d4af37, #f5d77a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #000;
}

/* TEXT */
.why-card-2 h5 {
    margin: 0;
    font-weight: 600;
}

.why-card-2 p {
    color: #666;
    margin-top: 10px;
}

/* HOVER */
.why-card-2:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

/* GOLD SIDE GLOW */
.why-card-2::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 0%;
    background: #d4af37;
    left: 0;
    top: 0;
    transition: 0.3s;
}

.why-card-2:hover::before {
    height: 100%;
}
.why-section {
    background: linear-gradient(135deg, #fdecec, #ffffff);
    position: relative;
    overflow: hidden;
}

/* soft floating glow */
.why-section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: #f5b5b5;
    filter: blur(120px);
    top: -50px;
    left: -50px;
    opacity: 0.4;
}
/* =========================================
   🚐 VAN CARDS
========================================= */
/* SECTION */
.van-section {
    background: linear-gradient(135deg, #fdecec, #ffffff);
}

/* TABS */
.van-tabs .nav-link {
    border-radius: 30px;
    padding: 10px 20px;
    margin: 5px;
    background: #f5f5f5;
    color: #333;
    transition: 0.3s;
}

.van-tabs .nav-link.active {
    background: #d4af37;
    color: #fff;
}

/* LIST */
.van-list {
    list-style: none;
    padding: 0;
}

.van-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.van-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #d4af37;
}

/* MEDIA */
video {
    object-fit: cover;
}
.contact-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card a {
    text-decoration: none;
    color: #d4af37;
    font-weight: 600;
}
/* TOILET GALLERY CARD */
.toilet-card {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.4s;
}

/* IMAGE */
.toilet-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.4s;
}

/* HOVER EFFECT */
.toilet-card:hover img {
    transform: scale(1.08);
}

.toilet-card:hover {
    transform: translateY(-8px);
}
/* =========================================
   🎬 MOVIES SECTION
========================================= */
.movies-section {
    background: #f9f9f9;
}

/* TITLE */
.section-title {
    font-weight: 700;
    color: #d4af37;
    letter-spacing: 1px;
}

/* CARD */
.movie-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: 0.4s;
}

/* IMAGE */
.movie-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: 0.4s;
}

/* CONTENT */
.movie-content {
    padding: 15px;
    background: #fff;
}

.movie-content h5 {
    margin: 0;
    font-weight: 600;
}

/* HOVER EFFECT */
.movie-card:hover {
    transform: translateY(-10px);
}

.movie-card:hover img {
    transform: scale(1.05);
}
.movie-img {
    position: relative;
}

.movie-img::after {
    
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    opacity: 0;
    transition: 0.3s;
}

.movie-card:hover .movie-img::after {
    opacity: 1;
}
/* =========================================
   🖼 VANITY GALLERY
========================================= */
.vanity-gallery {
    background: #fff;
}

/* TITLE */
.section-title {
    color: #e74c3c;
    font-weight: 700;
    letter-spacing: 1px;
}

/* CARD */
.gallery-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.4s;
    position: relative;
}

/* IMAGE */
.gallery-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.4s;
}

/* HOVER EFFECT */
.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-card:hover {
    transform: translateY(-8px);
}
/* LIGHTBOX */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.image-modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.image-modal .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}


/* =========================================
   📱 MOBILE (≤576px)
========================================= */
@media (max-width: 576px) {

    body {
        padding-top: 120px; /* smaller header */
    }

    .hero-section {
        text-align: center;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-section .row {
        flex-direction: column-reverse;
    }

    .hero-slider img {
        max-height: 250px;
        margin-bottom: 20px;
    }

    .btn-gold,
    .btn-outline-dark {
        width: 100%;
        margin-bottom: 10px;
    }

    .section {
        padding: 50px 0;
    }

    .feature-card,
    .van-card {
        margin-bottom: 20px;
    }
}

/* =========================================
   📲 TABLET
========================================= */
@media (min-width: 577px) and (max-width: 991px) {

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-slider img {
        max-height: 300px;
    }

    .section {
        padding: 60px 0;
    }
}

/* =========================================
   💻 LARGE SCREENS
========================================= */
@media (min-width: 1200px) {

    .hero-title {
        font-size: 54px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-slider img {
        max-height: 450px;
    }
}
/* =========================================
   🔥 ABOUT SECTION (PREMIUM)
========================================= */
.about-section {
    background: linear-gradient(180deg, #fff, #f8f9fa);
}

.about-tag {
    color: #e74c3c;
    font-weight: 600;
    letter-spacing: 1px;
}

.about-title {
    font-size: 36px;
    font-weight: 700;
    margin: 10px 0 20px;
}

.about-text {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.highlight-item i {
    color: #d4af37;
}

/* IMAGE */
.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* BADGE */
.about-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #fff;
    padding: 10px 15px;
    border-radius: 30px;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-title {
        font-size: 28px;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
}
/* =========================================
   ❓ FAQ SECTION
========================================= */
.faq-section {
    background: #f9f9f9;
}

.faq-title {
    font-weight: 700;
    color: #111;
}

/* ACCORDION */
.accordion-item {
    border: none;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.accordion-button {
    font-weight: 600;
    padding: 18px;
    background: #fff;
}

.accordion-button:not(.collapsed) {
    background: #fff;
    color: #d4af37;
    box-shadow: none;
}

.accordion-body {
    background: #fff;
    color: #555;
    line-height: 1.7;
}

/* REMOVE DEFAULT ICON */
.accordion-button::after {
    filter: invert(1);
}

/* CONTACT BUTTONS */
.faq-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.faq-call-btn {
    display: inline-block;
    padding: 12px 15px;
    background: #d4af37;
    color: #000;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.faq-call-btn:hover {
    background: #c29b2f;
}
/* =========================================
   👥 CLIENTS SECTION
========================================= */
/* SECTION */
.clients-section {
    background: #fff;
}

/* TABS */
.clients-tabs .nav-link {
    background: #eee;
    border-radius: 30px;
    padding: 10px 20px;
    margin: 0 5px;
    transition: 0.3s;
}

.clients-tabs .nav-link.active {
    background: #e74c3c;
    color: #fff;
}

/* PRODUCTION CARD */
.client-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    border-radius: 12px;
    background: #f8f9fa;
    transition: 0.3s;
}

.client-card img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.client-card:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* CELEB CARD */
.celeb-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.celeb-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.celeb-card p {
    padding: 10px;
    font-weight: 500;
}

/* HOVER EFFECT */
.celeb-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}
/* =========================================
   👤 FOUNDER SECTION
========================================= */
.founder-section {
    background: #f9f9f9;
}

/* TABS */
.founder-tabs .nav-link {
    background: #eee;
    border-radius: 30px;
    padding: 10px 20px;
    margin: 0 5px;
    transition: 0.3s;
}

.founder-tabs .nav-link.active {
    background: #e74c3c;
    color: #fff;
}

/* IMAGE */
.founder-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* TEXT */
.founder-title {
    font-weight: 700;
    margin-bottom: 15px;
}

.founder-text {
    color: #555;
    line-height: 1.7;
}

/* HIGHLIGHTS */
.founder-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.founder-highlights span {
    background: #fff;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 13px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* =========================================
   🏆 AWARDS
========================================= */
.award-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.award-card h5 {
    margin-top: 10px;
    font-weight: 600;
}

.award-card p {
    font-size: 14px;
    color: #666;
}

.award-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* NOTE */
.awards-note {
    max-width: 700px;
    margin: auto;
    color: #555;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .founder-highlights {
        justify-content: center;
    }
}
/* =========================================
   📞 BOOKING SECTION (FULL WIDTH)
========================================= */

.booking-section {
    background: linear-gradient(135deg, #fff5f5, #ffecec);
    padding: 80px 0;
}

.booking-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.booking-card:hover {
    transform: translateY(-5px);
}

.booking-card h5 {
    margin-bottom: 20px;
    font-weight: 600;
}

.booking-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

/* CALL BUTTON */
.call-btn {
    background: #111;
    color: #fff;
    border-radius: 30px;
    padding: 10px 20px;
}

.call-btn:hover {
    background: #000;
    color: #fff;
}


/* =========================================
   💬 TESTIMONIALS
========================================= */
.testimonial-section {
    background: #f9f9f9;
}

/* CARD */
.testimonial-card {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    height: 100%;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* TEXT */
.testimonial-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* USER */
.testimonial-user {
    margin-top: 20px;
}

.testimonial-user strong {
    display: block;
    font-weight: 600;
}

.testimonial-user span {
    font-size: 13px;
    color: #888;
}
/*scroll*/
section {
    scroll-margin-top: 90px;
}