* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --gold: #ba7537;
    --white: #ffffff;
    --dark: #1a1a1a;
}
.logo img {
    height: 50px; /* Aap apni pasand ke mutabiq height rakh sakte hain */
    width: auto;  /* Width auto rakhne se logo kharab (stretch) nahi hoga */
    display: block;
    object-fit: contain;
}

/* Agar aap header ke beech mein thodi space chahte hain */
.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Top Bar */
.top-bar {
    background: var(--dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
    border-bottom: 2px solid var(--gold);
}

.social-links a {
    color: var(--white);
    margin-left: 15px;
    transition: 0.3s;
}



/* Header */
.main-header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo h1 { color: var(--dark); }
.logo span { color: var(--gold); }

.nav-menu ul { display: flex; list-style: none; }
.nav-menu ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    margin: 0 15px;
    transition: 0.3s;
}
.nav-menu ul li a:hover { color: var(--gold); }

.search-bar { display: flex; }
.search-bar input {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
}
.search-bar button {
    background: var(--gold);
    border: none;
    padding: 8px 15px;
    color: white;
    cursor: pointer;
}

/* Hero Section */



.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

/* Slider Controls */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.5); /* Golden Transparent */
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 20px;
    transition: 0.3s;
    z-index: 10;
}

.prev:hover, .next:hover { background: var(--gold); }
.prev { left: 20px; }
.next { right: 20px; }
.btn-gold {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: var(--gold);
    color: white;
    text-decoration: none;
    border-radius: 25px;
}

/* Categories */
.categories { padding: 40px 0; text-align: center; }
.cat-item {
    flex: 1;
    padding: 20px;
    border: 1px solid #eee;
    margin: 0 10px;
    transition: 0.3s;
}
.cat-item i { font-size: 30px; color: var(--gold); margin-bottom: 10px; }
.cat-item:hover { border-color: var(--gold); cursor: pointer; }

/* Product/Deal Cards */
.deal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.deal-card {
    background: white;
    padding: 15px;
    border: 1px solid #eee;
    text-align: center;
    position: relative;
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--gold);
    color: white;
    padding: 5px 10px;
    font-size: 12px;
}

.price { color: var(--gold); font-weight: bold; font-size: 18px; margin: 10px 0; }

.btn-view {
    text-decoration: none;
    color: var(--dark);
    border: 1px solid var(--gold);
    padding: 8px 15px;
    display: block;
    transition: 0.3s;
}

.btn-view:hover { background: var(--gold); color: white; }

/* Footer */
:root {
    --gold: #ba7537;
    --dark-bg: #111111;
    --light-text: #e0e0e0;
}

.main-footer {
    background-color: white;
    color: var(--light-text);
    padding: 0;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.footer-top-accent {
    height: 4px;
    background: #ba7537;
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding: 80px 0 50px;
}

.footer-title {
    color: black;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #ba7537;
}

.brand-desc {
    font-size: 14px;
    line-height: 1.8;
    color: #999;
    margin: 20px 0;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 15px; }
.footer-links li a {
    color: black;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}

.footer-links li a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.footer-social { display: flex; gap: 15px; }
.social-icon {
    width: 40px;
    height: 40px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 50%;
    transition: 0.4s;
    text-decoration: none;
    background: var(--gold);
}

.social-icon:hover {
    
    color: #000;
    transform: translateY(-5px);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
}

.gold-icon { color: var(--gold); font-size: 18px; }

.app-download p {
    font-size: 14px;
    font-weight: 600;
    margin: 25px 0 15px;
}

.app-badges img {
    height: 35px;
    margin-right: 10px;
    filter: grayscale(1) invert(1); /* Matches dark theme */
    transition: 0.3s;
}

.app-badges img:hover { filter: none; }

.footer-bottom {
    background: #0a0a0a;
    padding: 25px 0;
    border-top: 1px solid #222;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-methods {
    display: flex;
    gap: 20px;
    font-size: 24px;
    color: #444;
}

.payment-methods i:hover { color: var(--gold); }

/* Mobile Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        padding: 50px 20px;
    }
}

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-title::after { left: 50%; transform: translateX(-50%); }
    .footer-social { justify-content: center; }
    .footer-bottom .container { flex-direction: column; gap: 15px; }
}

/* Service Highlights Styling */
.service-highlights {
background: var(--white);
    padding: 37px 0;
}

.highlight-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px; /* Boxes ke darmiyan thodi space */
}

.highlight-item {
    display: flex;
    align-items: center;
    padding: 30px 20px;
    border: 1px solid #eee; /* Light border */
    flex: 1;
    transition: all 0.4s ease; /* Smooth animation ke liye */
    cursor: pointer;
    background: var(--white);
    border-radius: 8px; /* Thode round corners */
}

.icon-box {
    font-size: 35px;
    color: var(--gold);
    margin-right: 15px;
    transition: transform 0.5s ease; /* Icon rotation animation */
}

.text-box h4 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 3px;
    text-transform: uppercase;
    font-weight: 700;
    transition: color 0.4s ease;
}

.text-box p {
    font-size: 13px;
    color: #777;
    margin: 0;
    transition: color 0.4s ease;
}

/* --- Hover Effects --- */

.highlight-item:hover {
    background: var(--gold); /* Box golden fill ho jayega */
    border-color: var(--gold);
    transform: translateY(-5px); /* Thoda upar ko uthega */
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3); /* Golden shadow */
}

.highlight-item:hover .icon-box {
    color: var(--white); /* Icon white ho jayega background gold hone par */
    transform: rotate(360deg); /* Icon pura rotate hoga */
}

.highlight-item:hover .text-box h4,
.highlight-item:hover .text-box p {
    color: var(--white); /* Text white ho jayega hover par */
}

/* Responsive Fix */
@media (max-width: 992px) {
    .highlight-wrapper {
        flex-wrap: wrap;
    }
    .highlight-item {
        flex: 45%; /* Tablet par 2 columns */
        margin-bottom: 15px;
    }
}

@media (max-width: 600px) {
    .highlight-item {
        flex: 100%; /* Mobile par 1 column */
    }
}

/* Puray section ko block rakhein */
.categories-section {
    width: 100%;
    padding: 60px 0;
    background: #fff;
    display: block !important; /* Force block layout */
}

/* Main Wrapper jo center mein rahe ga */
.cat-container-main {
    max-width: 1200px;
    margin: 0 auto;
    display: block !important;
}

/* Heading Row - Isko width 100% deni hai taake niche wali line khali ho */
.cat-heading-row {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
    display: block !important;
}

.cat-heading-row h3 {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
    margin: 0;
}

.gold-line {
    width: 60px;
    height: 4px;
    background: #D4AF37; /* Golden color */
    margin: 12px auto 0;
}

/* Items Row - Ye hamesha heading ke niche aye ga */
.cat-items-row {
    display: flex !important; /* Boxes ke liye flex zaroori hai */
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
}

/* Individual Card Styling */
.cat-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    width: 280px;
    padding: 40px 20px;
    text-align: center;
    transition: 0.4s ease;
    cursor: pointer;
}

.cat-img {
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.cat-img img {
    max-height: 100%;
    max-width: 100%;
}

.cat-card p {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    margin: 0;
}

/* Hover Effect */
.cat-card:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
}

.cat-card:hover p {
    color: #D4AF37;
}

/* --- Global Reset --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- Top Bar Responsive --- */
@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        padding: 10px 0;
        text-align: center;
    }
    .contact-info {
        font-size: 12px;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
}

/* --- Header & Nav Responsive --- */
.mobile-menu-btn {
    display: none; /* Desktop par hidden */
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

@media (max-width: 992px) {
    .main-header .container {
        padding: 15px 20px;
    }

    .mobile-menu-btn {
        display: block;
        order: 2;
    }

    .logo { order: 1; }
    
    .search-bar {
        order: 3;
        width: 100%;
        margin-top: 15px;
    }

    .nav-menu {
        display: none; /* Default hidden on mobile */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .nav-menu.active {
        display: block; /* JS se toggle hoga */
    }

    .nav-menu ul {
        flex-direction: column;
        padding: 20px;
    }

    .nav-menu ul li {
        margin: 10px 0;
        text-align: center;
    }
}

/* --- Categories Responsive (Bikes, Solar, Mobile) --- */
/* =========================
   CATEGORY SECTION
========================= */

.cat-section{
    padding: 40px 20px;
    margin: 40px 0;
    
    border-radius: 18px;
}

/* HEADER */
.cat-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.cat-header h2{
    color: #000000;
    font-size: 30px;
    font-weight: 700;
    margin: 0;
    position: relative;
    padding-bottom: 8px;
}

/* GOLD LINE */
.cat-header h2::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 3px;
    background: #ba7537;
    border-radius: 20px;
}

/* VIEW ALL BUTTON */
.cat-header a{
    text-decoration: none;
    background: #ba7537;
    color: #ffffff;
    padding: 11px 22px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s ease;
    
}

.cat-header a:hover{
    background: transparent;
    color: #ba7537;
    border: 2px solid #ba7537;
}

/* =========================
   SWIPER
========================= */

.swiper{
    padding: 10px 5px 50px;
    overflow: hidden;
}

/* PRODUCT CARD */
.product-card{
    
    border-radius: 14px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: 0.35s ease;
    height: 100%;
}

/* HOVER BORDER */
.product-card:hover{
    border-color: #ba7537;
    transform: translateY(-5px);
}

/* IMAGE */
.img-box{
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: white;
}

.img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.product-card:hover img{
    transform: scale(1.05);
}

/* INFO */
.info{
    padding: 18px;
    text-align: center;
    border-top:2px solid #ba7537 ;
    background-color:#ba7537 ;
}

.info h4{
    color: white;
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.price{
    color: black;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 18px;
}

/* BUTTON */
.info .btn{
    display: inline-block;
    padding: 10px 22px;
    border-radius: 6px;
    background: #ffffff;
    color: #ba7537;
    text-decoration: none;
    font-weight: 700;
    border:1px solid #ba7537 ;
     ;
    
    transition: 0.3s ease;
}

.info .btn:hover{
    background: transparent;
    color: rgb(255, 255, 255);
    border: 2px solid #ffffff;
}

/* =========================
   SWIPER ARROWS
========================= */

.swiper-button-next,
.swiper-button-prev{
    width: 42px !important;
    height: 42px !important;
    border-radius: 50%;
    background: #ba7537;
    border: 2px solid #ba7537;
    transition: 0.3s ease;
}

/* ICON */
.swiper-button-next::after,
.swiper-button-prev::after{
    font-size: 16px !important;
    color: #ffffff;
    font-weight: bold;
}

/* HOVER */
.swiper-button-next:hover,
.swiper-button-prev:hover{
    background: #ba7537;
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after{
    color: #111;
}

/* arrows andar */
.swiper-button-prev{
    left: 10px !important;
}

.swiper-button-next{
    right: 10px !important;
}

/* PAGINATION */
.swiper-pagination-bullet{
    background: #777 !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active{
    background: #ba7537 !important;
}

/* MOBILE */
@media(max-width:768px){

    .cat-header{
        flex-direction: column;
        align-items: flex-start;
    }

    .cat-header h2{
        font-size: 24px;
    }

    .img-box{
        height: 200px;
    }
}

.product-card{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #ba7537 ;
    
}

.swiper-slide{
    height: auto;
    display: flex;
}

.img-box{
    width: 100%;
    height: 340px;   /* fixed image height */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
}

.img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* =========================
   CATEGORY SECTION
========================= */

.qb-categories-section{
    padding: 60px 20px;
    background: #fff;
}

.qb-container-main{
    max-width: 1400px;
    margin: auto;
}

/* HEADING */
.qb-heading-row{
    text-align: center;
    margin-bottom: 45px;
}

.qb-heading-row h3{
    font-size: 36px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.qb-gold-line{
    width: 90px;
    height: 4px;
    background: #d4af37;
    margin: auto;
    border-radius: 20px;
}

/* ROW */
.qb-items-row{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 35px;
    flex-wrap: wrap;
}

/* CARD */
.qb-card{
    text-align: center;
    transition: 0.3s ease;
    cursor: pointer;
}

/* IMAGE CIRCLE */
.qb-img{
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #d4af37;
    padding: 4px;
    background: #fff;
    transition: 0.35s ease;
    margin: auto;
}

/* IMAGE */
.qb-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: 0.4s ease;
}

/* HOVER */
.qb-card:hover .qb-img{
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(212,175,55,0.35);
}

.qb-card:hover img{
    transform: scale(1.08);
}

/* TEXT */
.qb-card p{
    margin-top: 14px;
    font-size: 24px;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
    transition: 0.3s ease;
}

.qb-card:hover p{
    color: #d4af37;
}

/* MOBILE */
@media(max-width:768px){

    .qb-items-row{
        gap: 22px;
    }

    .qb-img{
        width: 95px;
        height: 95px;
    }

    .qb-card p{
        font-size: 16px;
    }

    .qb-heading-row h3{
        font-size: 28px;
    }
}

/* SECTION */
.lr-section{
    padding: 60px 20px;
}

/* CONTAINER */
.lr-container{
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 20px;
}

/* BOX (IMPORTANT) */
.lr-box{
    flex: 0 0 50%;   /* FIX 2 COLUMN */
    max-width: 50%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

/* IMAGE */
.lr-box img{
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: 0.4s;
}

/* OVERLAY */
.lr-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.5);
    opacity: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    transition: 0.4s;
}

/* TEXT */
.lr-overlay h3{
    color: #fff;
    font-size: 28px;
    transform: translateY(20px);
    transition: 0.4s;
}

/* HOVER */
.lr-box:hover img{
    filter: brightness(70%);
}

.lr-box:hover .lr-overlay{
    opacity: 1;
}

.lr-box:hover .lr-overlay h3{
    transform: translateY(0);
}

/* =====================
   SCROLL ANIMATION
===================== */
.slide-left{
    opacity: 0;
    transform: translateX(-80px);
    transition: 0.8s ease;
}

.slide-right{
    opacity: 0;
    transform: translateX(80px);
    transition: 0.8s ease;
}

.slide-left.show,
.slide-right.show{
    opacity: 1;
    transform: translateX(0);
}

/* =====================
   MOBILE (optional)
===================== */
@media(max-width:768px){
    .lr-container{
        flex-direction: column; /* mobile par neeche aayega */
    }

    .lr-box{
        max-width: 100%;
        flex: 100%;
    }
}

/* SECTION */
.dual-banner{
    padding: 20px;
    background: #fff;
}

/* CONTAINER */
.dual-container{
    max-width: 1400px;
    margin: auto;
    display: flex;
    gap: 20px;
}

/* BOX */
.dual-box{
    flex: 0 0 50%;
    max-width: 50%;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

/* IMAGE */
.dual-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
}

/* HOVER EFFECT */
.dual-box:hover img{
    transform: scale(1.05);
}

/* =====================
   ANIMATION
===================== */
.slide-left{
    opacity: 0;
    transform: translateX(-80px);
    transition: 0.8s ease;
}

.slide-right{
    opacity: 0;
    transform: translateX(80px);
    transition: 0.8s ease;
}

.slide-left.show,
.slide-right.show{
    opacity: 1;
    transform: translateX(0);
}

/* MOBILE */
@media(max-width:768px){
    .dual-container{
        flex-direction: column;
    }

    .dual-box{
        max-width: 100%;
        flex: 100%;
    }
}

/* SECTION */
.faq-section{
    background: #fff;
    padding: 70px 20px;
}

/* CONTAINER */
.faq-container{
    max-width: 800px;
    margin: auto;
}

/* TITLE */
.faq-title{
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #111;
}

/* ITEM */
.faq-item{
    border-bottom: 1px solid #eee;
}

/* QUESTION */
.faq-question{
    width: 100%;
    background: none;
    border: none;
    padding: 18px 10px;
    font-size: 18px;
    text-align: left;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

/* HOVER */
.faq-question:hover{
    color: #ba7537;
}

/* PLUS ICON */
.faq-question span{
    font-size: 22px;
    color: #ba7537;
    transition: 0.3s;
}

/* ANSWER */
.faq-answer{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p{
    padding: 0 10px 15px;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

/* ACTIVE */
.faq-item.active .faq-answer{
    max-height: 200px;
}

.faq-item.active .faq-question span{
    transform: rotate(45deg);
}

/* SECTION */
.faq-pro-section{
    background: #fff;
    padding: 80px 20px;
}

/* CONTAINER */
.faq-pro-container{
    max-width: 900px;
    margin: auto;
}

/* TITLE */
.faq-pro-title{
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #111;
}

/* CARD ITEM */
.faq-pro-item{
    background: #ffffff;
    border-radius: 15px;
    margin-bottom: 15px;
    padding: 20px 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
    border: 1px solid transparent;
}

/* HOVER EFFECT */
.faq-pro-item:hover{
    transform: translateY(-5px);
    border-color: #ba7537;
}

/* QUESTION */
.faq-pro-question{
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-pro-question h3{
    font-size: 18px;
    font-weight: 600;
    color: #111;
}

/* ICON (CUSTOM +) */
.faq-pro-question span{
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid #ba7537;
    position: relative;
}

/* PLUS DESIGN */
.faq-pro-question span::before,
.faq-pro-question span::after{
    content: "";
    position: absolute;
    background: #ba7537;
    transition: 0.3s;
}

.faq-pro-question span::before{
    width: 12px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-pro-question span::after{
    width: 2px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ANSWER */
.faq-pro-answer{
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-pro-answer p{
    margin-top: 15px;
    color: #555;
    line-height: 1.7;
}

/* ACTIVE STATE */
.faq-pro-item.active{
    border-color: #ba7537;
}

.faq-pro-item.active .faq-pro-answer{
    max-height: 200px;
}

/* TURN + INTO - */
.faq-pro-item.active span::after{
    height: 0;
}

/* SECTION */
.review-section{
    background:#fff;
    padding-bottom: 20px;
    text-align:center;
    overflow:hidden;   /* ⭐ IMPORTANT FIX */
}

/* TITLE */
.review-title{
    font-size:34px;
    font-weight:700;
    margin-bottom:40px;
    color:#111;
}

/* SLIDER WRAPPER */
.review-slider{
    width:100%;
    overflow:hidden;   /* ⭐ BLOCKS PAGE SCROLL */
}

/* TRACK */
.review-track{
    display:flex;
    gap:20px;
    width:max-content;
    animation:scroll 25s linear infinite;
}

/* CARD */
.review-card{
    min-width:300px;
    max-width:300px;
    background:#fff;
    padding:25px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
    border:1px solid #eee;
}

/* HOVER */
.review-card:hover{
    transform:translateY(-6px);
    border-color:#ba7537;
}

/* TEXT */
.review-card p{
    font-size:15px;
    color:#555;
    margin-bottom:12px;
}

/* NAME */
.review-card h4{
    font-size:16px;
}

/* STARS */
.stars{
    color:#D4AF37;
}

/* ANIMATION */
@keyframes scroll{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}

/* MOBILE */
@media(max-width:768px){
    .review-card{
        min-width:260px;
    }
}

/* SECTION */
.full-banner{
    width:100%;
    overflow:hidden;   /* ⭐ IMPORTANT */
}

/* IMAGE */
.full-banner img{
    width:100%;
    height:auto;
    display:block;

    /* start position (right side hidden) */
    transform:translateX(120px);
    opacity:0;
    transition:all 1s ease;
}

/* ACTIVE STATE */
.full-banner.show img{
    transform:translateX(0);
    opacity:1;
}

.lux-page{
    background:#f7f7f7;
    font-family:'Segoe UI', sans-serif;
    padding-bottom:50px;
}

/* ================= MAIN BOX ================= */
.lux-page .lux-main{
    background:#fff;
    padding:35px;
    border-radius:20px;
    margin-top:40px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    border-top:4px solid #ba7537;
}

/* ================= IMAGE ================= */
.lux-page .lux-main-img{
    width:100%;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.lux-page .lux-thumb{
    width:85px;
    height:85px;
    object-fit:cover;
    border-radius:12px;
    margin-right:10px;
    cursor:pointer;
    border:2px solid #eee;
    transition:0.3s;
}

.lux-page .lux-thumb:hover{
    transform:scale(1.05);
    border-color:#ba7537;
}

/* ================= TITLE ================= */
.lux-page .lux-title{
    font-size:34px;
    font-weight:700;
    margin-bottom:15px;
    color:#111;
}

/* ================= DESC ================= */
.lux-page .lux-desc{
    color:#666;
    line-height:1.7;
}

/* ================= SELECT ================= */
.lux-page .lux-select{
    padding:12px;
    border-radius:12px;
    border:1px solid #ddd;
    width:100%;
}

.lux-page .lux-select:focus{
    border-color:#ba7537;
    box-shadow:0 0 0 0.2rem rgba(186,117,55,0.15);
}

/* ================= PLAN ================= */
.lux-page .lux-plan{
    border:1px solid #eee;
    border-left:4px solid #ba7537;
    border-radius:14px;
    padding:18px;
    margin-top:15px;
    background:#fffaf6;
}

.lux-page .lux-plan-title{
    font-size:18px;
    font-weight:600;
    color:#ba7537;
}

.lux-page .lux-advance{
    color:#ba7537;
    font-weight:600;
}

/* ================= BUTTON ================= */
.lux-page .lux-btn{
    background:#ba7537;
    color:#fff;
    border:none;
    padding:14px;
    border-radius:12px;
    font-size:17px;
    margin-top:20px;
    width:100%;
    font-weight:600;
    transition:0.3s;
}

.lux-page .lux-btn:hover{
    background:#9c622d;
    transform:translateY(-2px);
}

/* ================= RELATED ================= */
.lux-page .lux-related-title{
    margin-top:60px;
    font-size:26px;
    font-weight:700;
    color:#111;
}

.lux-page .lux-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.06);
    transition:0.3s;
    border:1px solid #eee;
}

.lux-page .lux-card:hover{
    transform:translateY(-6px);
    border-color:#ba7537;
}

.lux-page .lux-img-box{
    width:100%;
    height:220px;
    overflow:hidden;
    background:#f5f5f5;
}

.lux-page .lux-img-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.3s;
}

.lux-page .lux-card:hover img{
    transform:scale(1.08);
}

.lux-page .lux-content{
    padding:15px;
    text-align:center;
}

.lux-page .lux-content h6{
    font-size:15px;
    font-weight:600;
}

.lux-page .lux-link{
    text-decoration:none;
    color:#ba7537;
    font-weight:600;
}

.lux-page .lux-link:hover{
    color:#9c622d;
}
