.custom-navbar{
    background: #fffdf8;
    border-bottom: 1px solid rgba(255,107,0,0.08);
    transition: all .3s ease;
}

.navbar-brand img{
    height: 45px;
}

.nav-link{
    color: #111827 !important;
    font-weight: 500;
    margin: 0 10px;
}

.nav-link:hover{
    color: #ff6b00 !important;
}

.btn-orange{
    background: #ff6b00;
    color: #fff;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    transition: .3s;
}

.btn-orange:hover{
    background: #e85f00;
    color: #fff;
}

.navbar{
    box-shadow: 0 4px 20px rgba(0,0,0,.03);
}

@media(max-width:991px){

    .navbar-collapse{
        padding:20px 0 10px;
    }

    .navbar-nav{
        text-align:center;
        margin-bottom:15px;
    }

    .nav-link{
        margin:8px 0;
        padding:6px 0 !important;
    }

    .navbar-collapse > .btn-orange{
        display:block;
        width:100%;
        text-align:center;
    }

}

html{
    scroll-behavior:smooth;
    overflow-x:hidden;
}

body{
    background:#ffffff !important;
    overflow-x:hidden;
    max-width:100%;
}

#how-it-works,
#locations,
#for-shop-owners,
#about,
#contact,
#download{
    scroll-margin-top:85px;
}

.hero-section{
    display:flex;
    min-height: 500px;
    background:#fffdf8;
    padding-top:90px;
}

.hero-left{
    width:45%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:80px;
    z-index:2;
}

.hero-right{
    width:55%;
    position:relative;
    overflow:hidden;
    min-height:500px;
}

.hero-right img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.live-tag{
    color:#ff6b00;
    font-size:22px;
    font-weight:600;
    margin-bottom:25px;
}

.changing-word{
    color:#ff6b00;
    transition:.3s;
}
.hero-left h1{
    font-size:45px;
    line-height:1.05;
    font-weight:800;
    color:#0f172a;
    margin-bottom:25px;
}

.line{
    width:90px;
    height:4px;
    background:#ff6b00;
    border-radius:30px;
    margin:25px 0;
}

.hero-left p{
    font-size:22px;
    line-height:1.8;
    color:#555;
    max-width:620px;
}

.store-buttons{
    display:flex;
    gap:15px;
    margin-top:35px;
}

.store-buttons img{
    height:55px;
}
.notification-stack{
    position:absolute;
    right:40px;
    top:50%;
    transform:translateY(-50%);
    width:320px;
    height:180px;
}

.offer-card{
    position:absolute;
    top:0;
    left:0;
    width:100%;

    background:#fff;
    border-radius:20px;
    padding:22px;

    box-shadow:0 25px 60px rgba(0,0,0,.15);

    opacity:0;
    visibility:hidden;

    transform:translateX(60px);

    transition:all .8s ease;
}

.offer-card.active{
    opacity:1;
    visibility:visible;
    transform:translateX(0);
    animation:floatCard 3s ease-in-out infinite;
}

@keyframes floatCard{

    0%{
        transform:translateX(0) translateY(0);
    }

    50%{
        transform:translateX(0) translateY(-8px);
    }

    100%{
        transform:translateX(0) translateY(0);
    }

}
.offer-header{
    display:flex;
    justify-content:space-between;
    margin-bottom:15px;
    color:#ff6b00;
}

.offer-card h5{
    font-size:22px;
    font-weight:700;
    margin-bottom:12px;
}

.offer-card p{
    font-size:16px;
    line-height:1.6;
    color:#555;
}

.offer-card a{
    color:#ff6b00;
    font-weight:600;
    text-decoration:none;
}

@media(max-width:991px){

.hero-section{
    flex-direction:column;
    min-height:auto;
}

.hero-left,

.hero-right{
    width:100%;
}

.hero-left{
    padding:40px 25px;
}

.hero-left h1{
    font-size:42px;
}

.hero-right{
    height:500px;
}

.offer-card{
    width:280px;
    right:20px;
}

}

@media(max-width:575px){

    .hero-section{
        padding-top:75px;
    }

    .hero-left{
        padding:30px 20px;
    }

    .live-tag{
        font-size:16px;
        margin-bottom:18px;
    }

    .hero-left h1{
        font-size:32px;
        margin-bottom:18px;
    }

    .hero-left p{
        font-size:16px;
        line-height:1.7;
    }

    .store-buttons{
        gap:10px;
        margin-top:25px;
        flex-wrap:wrap;
    }

    .store-buttons img{
        height:46px;
    }

    .hero-right{
        height:340px;
    }

    .notification-stack{
        width:88%;
        max-width:300px;
        right:6%;
        height:auto;
    }

    .offer-card{
        width:100%;
        right:0;
        padding:16px;
    }

    .offer-card h5{
        font-size:17px;
        margin-bottom:8px;
    }

    .offer-card p{
        font-size:14px;
    }

}
.how-it-works{
    padding:50px 0;
    background:#fff;
    position:relative;
}

.section-heading{
    text-align:center;
    max-width:850px;
    margin:auto;
    margin-bottom:45px;
}

.section-tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:#fff4ec;
    color:#ff6b00;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:20px;
}

.section-heading h2{
    font-size:44px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:12px;
}

.section-heading h2 span{
    color:#ff6b00;
}

.section-heading p{
    font-size:16px;
    color:#64748b;
    line-height:1.6;
}

.process-wrapper{
    position:relative;
}

.process-line{
    position:absolute;
    top:85px;
    left:16%;
    width:68%;
    height:2px;
    background:linear-gradient(
        to right,
        #ff6b00,
        #ff9f5a
    );
    z-index:1;
}

.premium-step{
    position:relative;
    background:#fff;
    border-radius:22px;
    padding:30px 25px;
    text-align:center;
    height:100%;
    z-index:2;

    border:1px solid #f3f4f6;

    transition:.4s ease;

    box-shadow:
    0 10px 40px rgba(0,0,0,.04);
}

.premium-step:hover{
    transform:translateY(-10px);

    box-shadow:
    0 25px 60px rgba(0,0,0,.08);
}

.step-number{
    position:absolute;
    top:15px;
    right:18px;

    font-size:48px;
    font-weight:800;

    color:rgba(255,107,0,.08);
}

.step-icon{
    width:70px;
    height:70px;

    border-radius:24px;

    background:
    linear-gradient(
        135deg,
        #ff6b00,
        #ff9f5a
    );

    margin:auto;
    margin-bottom:30px;

    display:flex;
    align-items:center;
    justify-content:center;
}

.step-icon i{
    color:#fff;
    font-size:34px;
}

.premium-step h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:10px;
}

.premium-step p{
    color:#64748b;
    line-height:1.6;
    font-size:15px;
    margin-bottom:0;
}
.premium-step::before{
    content:'';
    position:absolute;
    inset:0;

    border-radius:28px;

    background:
    radial-gradient(
        circle at top,
        rgba(255,107,0,.08),
        transparent 60%
    );

    opacity:0;
    transition:.4s;
}

.premium-step:hover::before{
    opacity:1;
}

@media(max-width:991px){

    .how-it-works{
        padding:60px 0;
    }

    .process-line{
        display:none;
    }

    .section-heading h2{
        font-size:32px;
    }

}

@media(max-width:575px){

    .section-heading h2{
        font-size:27px;
    }

    .section-tag{
        font-size:13px;
    }

    .premium-step{
        padding:25px 20px;
    }

}


/* =========================
   LOCATIONS SECTION
========================= */

.live-locations{
    padding:30px 0;
    background:#ffffff;
}

/* Header */

.live-header{
    text-align:center;
    max-width:900px;
    margin:0 auto 40px;
}

.section-badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:#fff4ec;
    color:#ff6b00;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:20px;
}

.live-header h2{
    font-size:48px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:15px;
    color:#0f172a;
}

.live-header h2 span{
    color:#ff6b00;
}

.live-header p{
    color:#64748b;
    font-size:17px;
    line-height:1.7;
    margin-bottom:0;
}

/* Cards */

.location-feature,
.location-card-small,
.location-wide-card{
    position:relative;
    overflow:hidden;
    border-radius:24px;
    cursor:pointer;
    transition:all .4s ease;
}

/* Perfect Height Alignment */

.location-feature{
    height:405px;
}

.location-card-small{
    height:195px;
}

.location-wide-card{
    height:195px;
}

/* Images */

.location-feature img,
.location-card-small img,
.location-wide-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .7s ease;
}

/* Hover Effects */

.location-feature:hover,
.location-card-small:hover,
.location-wide-card:hover{
    transform:translateY(-8px);
}

.location-feature:hover img,
.location-card-small:hover img,
.location-wide-card:hover img{
    transform:scale(1.08);
}

/* Featured Overlay */

.location-overlay{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:30px;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.85) 0%,
        rgba(0,0,0,.30) 45%,
        transparent 100%
    );
}

.location-overlay h4{
    color:#fff;
    font-size:32px;
    font-weight:700;
    margin:0;
    text-shadow:0 2px 10px rgba(0,0,0,.35);
}

/* Glass Tag */

.location-tag{
    display:inline-block;
    width:max-content;

    padding:8px 14px;
    margin-bottom:12px;

    border-radius:30px;

    background:rgba(255,255,255,.15);

    color:#fff;
    font-size:13px;
    font-weight:500;

    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
}

/* Small Cards */

.location-info{
    position:absolute;
    left:0;
    right:0;
    bottom:0;

    padding:18px;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.80) 0%,
        rgba(0,0,0,.25) 50%,
        transparent 100%
    );
}

.location-info h5{
    color:#fff;
    font-size:20px;
    font-weight:700;
    margin-bottom:4px;
    text-shadow:0 2px 10px rgba(0,0,0,.35);
}

.location-info span{
    color:#f1f5f9;
    font-size:14px;
    display:block;
}

/* Subtle Glow */

.location-feature::before,
.location-card-small::before,
.location-wide-card::before{
    content:'';
    position:absolute;
    inset:0;

    background:linear-gradient(
        135deg,
        rgba(255,107,0,.12),
        transparent
    );

    opacity:0;
    transition:.4s;
    z-index:1;
}

.location-feature:hover::before,
.location-card-small:hover::before,
.location-wide-card:hover::before{
    opacity:1;
}

/* Mobile */

@media(max-width:991px){

    .live-locations{
        padding:60px 0;
    }

    .live-header{
        margin-bottom:30px;
    }

    .live-header h2{
        font-size:34px;
    }

    .live-header p{
        font-size:15px;
    }

    .location-feature{
        height:280px;
    }

    .location-card-small,
    .location-wide-card{
        height:180px;
    }

    .location-overlay{
        padding:20px;
    }

    .location-overlay h4{
        font-size:24px;
    }

    .location-info h5{
        font-size:18px;
    }
}

@media(max-width:575px){

    .live-header h2{
        font-size:27px;
    }

    .location-feature{
        height:220px;
    }

    .location-card-small,
    .location-wide-card{
        height:140px;
    }

    .location-overlay{
        padding:16px;
    }

    .location-overlay h4{
        font-size:22px;
    }

    .location-tag{
        font-size:11px;
        padding:6px 12px;
    }

    .location-info{
        padding:14px;
    }

    .location-info h5{
        font-size:15px;
    }

    .location-info span{
        font-size:12px;
    }
}

/* ===========================
   MERCHANT SECTION
=========================== */

.merchant-section{
    padding:80px 0;
    background:#fffdf8;
}

.merchant-wrapper{
    background:linear-gradient(
        135deg,
        #fff8f2,
        #ffffff
    );

    border-radius:32px;
    padding:60px;

    position:relative;
    overflow:hidden;

    border:1px solid rgba(255,107,0,.08);

    box-shadow:
    0 20px 60px rgba(0,0,0,.04);
}

.merchant-badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:#fff4ec;
    color:#ff6b00;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:20px;
}

.merchant-wrapper h2{
    font-size:52px;
    line-height:1.1;
    font-weight:800;
    margin-bottom:20px;
    color:#0f172a;
}

.merchant-wrapper h2 span{
    color:#ff6b00;
}

.merchant-wrapper p{
    font-size:18px;
    line-height:1.8;
    color:#64748b;
    margin-bottom:30px;
}

.merchant-benefits{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-bottom:35px;
}

.benefit{
    display:flex;
    align-items:center;
    gap:12px;

    background:#fff;
    padding:14px 18px;

    border-radius:14px;

    border:1px solid #f3f4f6;
}

.benefit i{
    color:#ff6b00;
}

.benefit span{
    font-weight:500;
    color:#0f172a;
}

.merchant-image-wrapper{
    position:relative;
}

.merchant-image{
    border-radius:28px;
    width:100%;
}

/* Floating Stats */

.merchant-stat{
    position:absolute;

    background:#fff;

    padding:16px 20px;

    border-radius:18px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.10);
}

.merchant-stat strong{
    display:block;
    font-size:22px;
    color:#ff6b00;
}

.merchant-stat span{
    font-size:13px;
    color:#64748b;
}

.stat-one{
    top:30px;
    left:-20px;
}

.stat-two{
    bottom:40px;
    right:-20px;
}

/* Notification */

.merchant-notification{
    position:absolute;

    top:50%;
    right:-30px;

    transform:translateY(-50%);

    width:280px;

    background:#fff;

    padding:18px;

    border-radius:20px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.12);

    animation:floatNotification 4s ease-in-out infinite;
}

.notification-header{
    display:flex;
    justify-content:space-between;
    margin-bottom:10px;
}

.merchant-notification p{
    font-size:15px;
    margin:0;
    line-height:1.5;
}

@keyframes floatNotification{

    0%{
        transform:translateY(-50%);
    }

    50%{
        transform:translateY(calc(-50% - 10px));
    }

    100%{
        transform:translateY(-50%);
    }

}

/* Mobile */

@media(max-width:991px){

    .merchant-wrapper{
        padding:35px 25px;
    }

    .merchant-wrapper h2{
        font-size:36px;
    }

    .merchant-benefits{
        grid-template-columns:1fr;
    }

    .merchant-notification{
        width:220px;
        right:10px;
    }

    .stat-one{
        left:10px;
    }

    .stat-two{
        right:10px;
    }

}

@media(max-width:575px){

    .merchant-section{
        padding:50px 0;
    }

    .merchant-wrapper h2{
        font-size:27px;
    }

    .merchant-wrapper p{
        font-size:16px;
    }

    .benefit{
        padding:12px 14px;
        font-size:14px;
    }

    .merchant-notification{
        display:none;
    }

}
/* =========================
   DOWNLOAD APP SECTION
========================= */

.download-section{
    padding:80px 0;
    background:#fff;
}

.download-wrapper{
    background:linear-gradient(
        135deg,
        #ff6b00,
        #ff8f3c
    );

    border-radius:32px;
    padding:70px 60px;

    overflow:hidden;
    position:relative;
}

/* Glow Effect */

.download-wrapper::before{
    content:'';
    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    top:-250px;
    right:-100px;
}

/* Badge */

.download-badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:#fff4ec;
    color:#ff6b00;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:20px;
}

/* Content */

.download-wrapper h2{
    color:#fff;
    font-size:58px;
    font-weight:800;
    line-height:1.05;
    margin-bottom:20px;
}

.download-wrapper h2 span{
    color:#fffbe6;
}

.download-wrapper p{
    color:rgba(255,255,255,.90);
    font-size:18px;
    line-height:1.8;
    max-width:550px;
    margin-bottom:30px;
}

/* Store Buttons */

.download-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.download-buttons img{
    height:55px;
    transition:.3s;
}

.download-buttons img:hover{
    transform:translateY(-3px);
}

/* Phone */

.app-preview{
    position:relative;
    text-align:center;
}

.phone-mockup{
    max-width:160px;
    position:relative;
    z-index:2;
}

/* Floating Alerts */

.app-alert{
    position:absolute;

    background:#fff;

    padding:12px 18px;

    border-radius:14px;

    font-size:14px;
    font-weight:600;

    box-shadow:
    0 15px 40px rgba(0,0,0,.15);

    animation:floatAlert 4s ease-in-out infinite;
}

.alert-1{
    top:40px;
    left:20px;
}

.alert-2{
    top:180px;
    right:0;
    animation-delay:1s;
}

.alert-3{
    bottom:50px;
    left:40px;
    animation-delay:2s;
}

@keyframes floatAlert{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0);
    }

}

/* Mobile */

@media(max-width:991px){

    .download-wrapper{
        padding:40px 25px;
        text-align:center;
    }

    .download-wrapper h2{
        font-size:38px;
    }

    .download-buttons{
        justify-content:center;
    }

    .app-preview{
        margin-top:40px;
    }

    .phone-mockup{
        max-width:100px;
    }

    .app-alert{
        font-size:12px;
        padding:10px 14px;
    }

}

@media(max-width:575px){

    .download-section{
        padding:50px 0;
    }

    .download-wrapper{
        padding:35px 20px;
        border-radius:24px;
    }

    .download-wrapper h2{
        font-size:28px;
    }

    .download-wrapper p{
        font-size:15px;
    }

    .download-buttons img{
        height:46px;
    }

    .alert-2{
        right:auto;
        left:60%;
    }

}

/* =========================
   FOOTER
========================= */

.footer-section{
    background:#fffdf8;
    padding:70px 0 25px;
    border-top:1px solid rgba(255,107,0,.08);
}

/* Logo */

.footer-logo{
    height:42px;
    margin-bottom:20px;
}

.footer-about{
    color:#64748b;
    line-height:1.8;
    max-width:320px;
    margin-bottom:25px;
}

/* Headings */

.footer-section h6{
    font-size:16px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:20px;
}

/* Links */

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:#64748b;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#ff6b00;
    padding-left:4px;
}

/* Social */

.footer-social{
    display:flex;
    gap:12px;
}

.footer-social a{
    width:42px;
    height:42px;

    border-radius:50%;

    background:#fff;

    color:#0f172a;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    border:1px solid rgba(0,0,0,.06);

    transition:.3s;
}

.footer-social a:hover{
    background:#ff6b00;
    color:#fff;
    transform:translateY(-3px);
}

/* Bottom */

.footer-bottom{
    margin-top:50px;
    padding-top:25px;

    border-top:1px solid rgba(0,0,0,.06);

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.copyright{
    color:#64748b;
    font-size:14px;
}

.developer{
    color:#64748b;
    font-size:14px;
}

.developer a{
    color:#ff6b00;
    text-decoration:none;
    font-weight:600;
}

/* Mobile */

@media(max-width:991px){

    .footer-section{
        text-align:center;
    }

    .footer-about{
        margin:0 auto 25px;
    }

    .footer-social{
        justify-content:center;
    }

    .footer-bottom{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }

}

.scroll-top{
    position:fixed;
    right:25px;
    bottom:25px;

    width:70px;
    height:70px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        #ff6b00,
        #ff8f3c
    );

    color:#fff;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    box-shadow:
    0 15px 40px rgba(255,107,0,.35);

    z-index:999;

    opacity:0;
    visibility:hidden;

    transform:translateY(20px);

    transition:all .35s ease;
}

.scroll-top.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.scroll-top i{
    font-size:28px;
    line-height:1;
}

.scroll-top span{
    font-size:10px;
    font-weight:700;
    letter-spacing:1px;
    margin-top:2px;
}

.scroll-top:hover{
    color:#fff;
    transform:translateY(-5px);
}

@media(max-width:575px){

    .scroll-top{
        width:52px;
        height:52px;
        right:16px;
        bottom:16px;
    }

    .scroll-top i{
        font-size:20px;
    }

    .scroll-top span{
        font-size:8px;
    }

}

.scroll-top::before{
    content:'';
    position:absolute;
    inset:-4px;
    border-radius:50%;
    border:2px solid rgba(255,107,0,.35);
    animation:pulseRing 2s infinite;
}

@keyframes pulseRing{
    from{
        transform:scale(1);
        opacity:1;
    }
    to{
        transform:scale(1.4);
        opacity:0;
    }
}

.offers-marquee{
    position:relative;
    overflow:hidden;
}

.offers-marquee::before,
.offers-marquee::after{
    content:"";
    position:absolute;
    top:0;
    width:120px;
    height:100%;
    z-index:2;
    pointer-events:none;
}

.offers-marquee::before{
    left:0;
    background:linear-gradient(
        to right,
        #fffdf8,
        transparent
    );
}

.offers-marquee::after{
    right:0;
    background:linear-gradient(
        to left,
        #fffdf8,
        transparent
    );
}

.offer-slide:hover{
    transform:translateY(-8px) scale(1.02);
}

.offers-marquee-section{
    padding:70px 0;
    background:#fffdf8;
    overflow:hidden;
}

.offers-marquee{
    overflow:hidden;
}

.offers-track{
    display:flex;
    gap:24px;
    width:max-content;
    flex-wrap:nowrap;

    will-change:transform;
}

.offer-slide{
    flex:0 0 auto;

    width:320px;
    min-width:320px;

    background:#fff;
    border-radius:24px;
    overflow:hidden;

    border:1px solid rgba(255,107,0,.08);

    box-shadow:
    0 10px 35px rgba(0,0,0,.05);

    transition:.35s;
}

.offer-slide:hover{
    transform:translateY(-8px);
}

.offer-slide img{
    width:100%;
    height:180px;
    object-fit:cover;
    display:block;
}

.offer-content{
    padding:22px;
}

.offer-shop{
    display:inline-block;
    font-size:13px;
    font-weight:600;

    color:#ff6b00;
    background:#fff4ec;

    padding:7px 14px;
    border-radius:30px;

    margin-bottom:14px;
}

.offer-slide h4{
    font-size:28px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:8px;
}

.offer-slide p{
    margin:0;
    color:#64748b;
    font-size:15px;
}

@media(max-width:768px){

    .offer-slide{
        width:260px;
        min-width:260px;
    }

}

@media(max-width:575px){

    .offers-marquee-section{
        padding:50px 0;
    }

    .offer-slide{
        width:230px;
        min-width:230px;
    }

    .offer-slide img{
        height:150px;
    }

    .offer-slide h4{
        font-size:22px;
    }

    .offer-content{
        padding:18px;
    }

}

.brands-section{
    padding:80px 0;
    background:#ffffff;
}

.brands-header{
    text-align:center;
    max-width:700px;
    margin:0 auto 50px;
}

.brands-header h2{
    font-size:48px;
    font-weight:800;
    margin-bottom:15px;
}

.brands-header h2 span{
    color:#ff6b00;
}

.brands-header p{
    color:#64748b;
    font-size:17px;
    line-height:1.7;
}

@media(max-width:991px){

    .brands-section{
        padding:60px 0;
    }

    .brands-header{
        margin-bottom:35px;
    }

    .brands-header h2{
        font-size:32px;
    }
}

@media(max-width:575px){

    .brands-header h2{
        font-size:26px;
    }

    .brands-header p{
        font-size:15px;
    }

    .brand-card{
        width:135px;
        height:80px;
    }

    .brand-card img{
        max-width:85px;
        max-height:34px;
    }
}

.brands-marquee{
    overflow:hidden;
    position:relative;
}

.brands-track{
    display:flex;
    gap:25px;
    width:max-content;
    will-change:transform;
}

.brand-card{
    width:180px;
    height:100px;

    background:#fff;

    border:1px solid rgba(255,107,0,.08);

    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:
    0 10px 30px rgba(0,0,0,.04);

    transition:.3s;
}

.brand-card:hover{
    transform:translateY(-5px);
}

.brand-card img{
    max-width:110px;
    max-height:45px;
    object-fit:contain;
    filter:grayscale(100%);
    opacity:.8;
    transition:.3s;
}

.brand-card:hover img{
    filter:none;
    opacity:1;
}

.brand-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-bottom:60px;
}

.stat{
    background:#fff;
    border:1px solid rgba(255,107,0,.08);
    border-radius:24px;

    padding:30px 20px;

    text-align:center;

    box-shadow:
    0 10px 30px rgba(0,0,0,.04);

    transition:.35s ease;
}

.stat:hover{
    transform:translateY(-6px);
    box-shadow:
    0 20px 40px rgba(255,107,0,.10);
}

.stat h3{
    margin:0 0 10px;

    font-size:42px;
    font-weight:800;

    color:#ff6b00;

    line-height:1;
}

.stat p{
    margin:0;

    color:#64748b;

    font-size:15px;
    font-weight:500;
}

@media(max-width:768px){

    .brand-stats{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
        margin-bottom:40px;
    }

    .stat{
        padding:22px 15px;
    }

    .stat h3{
        font-size:32px;
    }
}

@media(max-width:400px){

    .stat h3{
        font-size:26px;
    }

    .stat p{
        font-size:13px;
    }
}
/* =========================
   ABOUT SECTION
========================= */

.about-section{
    padding:90px 0;
    background:#fffdf8;
}

.about-section h2{
    font-size:44px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:22px;
    color:#0f172a;
}

.about-section h2 span{
    color:#ff6b00;
}

.about-section p{
    font-size:17px;
    line-height:1.85;
    color:#64748b;
    margin-bottom:20px;
}

.about-section .merchant-benefits{
    margin-bottom:0;
    margin-top:30px;
}

.about-image-wrapper{
    position:relative;
    text-align:center;
}

.about-image{
    border-radius:28px;
    max-width:100%;
    box-shadow:0 25px 70px rgba(0,0,0,.08);
}

@media(max-width:991px){

    .about-section{
        padding:60px 0;
        text-align:center;
    }

    .about-section h2{
        font-size:32px;
    }

    .about-section .merchant-benefits{
        grid-template-columns:1fr;
    }

}

@media(max-width:575px){

    .about-section{
        padding:50px 0;
    }

    .about-section h2{
        font-size:26px;
    }

    .about-section p{
        font-size:15px;
    }

}

/* =========================
   CONTACT SECTION
========================= */

.contact-section{
    padding:90px 0;
    background:#ffffff;
}

.contact-info-card{
    background:#fff;
    border:1px solid #f3f4f6;
    border-radius:22px;
    padding:40px 25px;
    text-align:center;
    height:100%;

    box-shadow:0 10px 40px rgba(0,0,0,.04);
    transition:.35s ease;
}

.contact-info-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(0,0,0,.08);
}

.contact-info-card .contact-icon{
    width:64px;
    height:64px;
    border-radius:18px;

    background:linear-gradient(135deg, #ff6b00, #ff9f5a);

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 20px;
}

.contact-info-card .contact-icon i{
    color:#fff;
    font-size:24px;
}

.contact-info-card h5{
    font-size:18px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:8px;
}

.contact-info-card a,
.contact-info-card span{
    color:#64748b;
    text-decoration:none;
    font-weight:500;
    font-size:15px;
}

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

@media(max-width:991px){

    .contact-section{
        padding:60px 0;
    }
}

@media(max-width:575px){

    .contact-info-card{
        padding:30px 20px;
    }
}
