/* ==========================================
   PROMOMINT
   GLOBAL STYLES
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#f5f8ff;

    color:#1d2433;

    line-height:1.6;

}

/* ==========================================
   CONTAINER
========================================== */

.container{

    width:min(1200px,92%);

    margin:auto;

}

/* ==========================================
   LINKS
========================================== */

a{

    text-decoration:none;

    color:inherit;

}

/* ==========================================
   IMAGES
========================================== */

img{

    max-width:100%;

    display:block;

}

/* ==========================================
   BUTTONS
========================================== */

button{

    font-family:'Poppins',sans-serif;

    cursor:pointer;

    border:none;

}

/* ==========================================
   HEADER
========================================== */

.header{

    position:sticky;

    top:0;

    z-index:999;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(12px);

    border-bottom:1px solid rgba(0,0,0,.06);

}

.header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 0;

}

/* ==========================================
   LOGO
========================================== */

.logo{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:1.6rem;

    font-weight:800;

    color:#0b57ff;

}

.logo-icon{

    width:48px;

    height:48px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:14px;

    background:linear-gradient(135deg,#0b57ff,#5b7dff);

    color:#fff;

    font-size:22px;

    box-shadow:0 12px 30px rgba(11,87,255,.25);

}

/* ==========================================
   SEARCH
========================================== */

.search-box{

    width:420px;

    max-width:100%;

}

.search-box input{

    width:100%;

    padding:15px 22px;

    border-radius:50px;

    border:2px solid #dbe5ff;

    background:#fff;

    outline:none;

    transition:.3s;

    font-size:15px;

}

.search-box input:focus{

    border-color:#0b57ff;

    box-shadow:0 0 0 5px rgba(11,87,255,.12);

}

/* ==========================================
   HERO
========================================== */

.hero{

    padding:60px 0 35px;

    text-align:center;

}

.hero h1{

    font-size:2.4rem;

    font-weight:800;

    margin-bottom:10px;

    color:#081f5c;

}

.hero p{

    color:#5b6579;

    font-size:1rem;

}

/* ==========================================
   COUPON SECTION
========================================== */

.coupon-section{

    padding:20px 0 70px;

}

.coupon-grid{

    display:grid;

    grid-template-columns:1fr;

    gap:25px;

}

/* ==========================================
   TICKET CARD
========================================== */

.coupon-card{

    position:relative;

    background:#ffffff;

    border-radius:22px;

    padding:20px;

    border:1px solid #e8eeff;

    overflow:hidden;

    transition:.35s ease;

    box-shadow:
    0 12px 40px rgba(0,0,0,.06);

}

/* Ticket cutouts */

.coupon-card::before{

    content:"";

    position:absolute;

    left:-16px;

    top:50%;

    width:32px;

    height:32px;

    border-radius:50%;

    background:#f5f8ff;

    transform:translateY(-50%);

}

.coupon-card::after{

    content:"";

    position:absolute;

    right:-16px;

    top:50%;

    width:32px;

    height:32px;

    border-radius:50%;

    background:#f5f8ff;

    transform:translateY(-50%);

}

.coupon-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 25px 60px rgba(11,87,255,.18);

}

/* ==========================================
   TOP ROW
========================================== */

.card-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:10px;

}

.rating{

    font-weight:700;

    color:#ff9800;

}

.badge{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:4px;

    min-width:72px;

    height:30px;

    padding:0 12px;

    border-radius:999px;

    background:linear-gradient(135deg,#ff3b30,#ff6b5f);

    color:#fff;

    font-size:12px;

    font-weight:700;

    white-space:nowrap;

}

.hot{

    background:linear-gradient(135deg,#ff3b30,#ff6b5f);

}

/* ==========================================
   BRAND LOGO
========================================== */

.brand-logo{

    width:64px;

    height:64px;

    margin:0 auto 10px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#fff;

    border-radius:18px;

    border:1px solid #edf2ff;

    box-shadow:0 6px 16px rgba(0,0,0,.05);

}

.brand-logo img{

    width:88%;

    height:88%;

    object-fit:contain;

}
/* ==========================================
   TITLES
========================================== */

.coupon-card h2{

    text-align:center;

    font-size:1.32rem;

    color:#081f5c;

    margin-bottom:4px;

}

.offer{

    text-align:center;

    color:#4f5b75;

    font-weight:500;

    margin-bottom:12px;

    line-height:1.35;

}

/* ==========================================
   VERIFIED
========================================== */

.verified{

    display:flex;

    justify-content:center;

    align-items:center;

    width:fit-content;

    margin:8px auto 12px;

    padding:6px 14px;

    background:#ecfdf3;

    border:1px solid #bbf7d0;

    border-radius:999px;

    color:#16a34a;

    font-size:13px;

    font-weight:600;

}

/* ==========================================
   PROGRESS BAR
========================================== */

.progress-bar{

    width:100%;

    height:10px;

    background:#edf2ff;

    border-radius:50px;

    overflow:hidden;

    margin-bottom:10px;

}

.progress-fill{

    width:100%;

    height:100%;

    background:linear-gradient(90deg,#0b57ff,#ffc933);

    transition:width .5s ease;

}

/* ==========================================
   COUPON LEFT
========================================== */

.coupon-left{

    text-align:center;

    font-size:.95rem;

    font-weight:600;

    color:#555;

    margin:12px 0;

}

.coupon-left span{

    color:#ff3b30;

    font-size:1.4rem;

    font-weight:800;

}

/* ==========================================
   INFO
========================================== */

.card-info{

    display:flex;

    justify-content:space-between;

    align-items:center;

    width:100%;

    margin:14px 0 16px;

    font-size:13px;

    color:#667085;

}

/* ==========================================
   BUTTON
========================================== */

.coupon-btn{

    width:100%;

    height:50px;

    border:none;

    border-radius:18px;

    background:linear-gradient(135deg,#0b57ff,#386dff);

    color:#fff;

    font-size:16px;

    font-weight:700;

    cursor:pointer;

    position:relative;

    overflow:hidden;

    transition:all .35s ease;

    animation:ctaFloat 2.5s ease-in-out infinite;

    box-shadow:0 12px 30px rgba(11,87,255,.28);

}

.coupon-btn:hover{

    transform:translateY(-5px) scale(1.03);

    box-shadow:0 20px 40px rgba(11,87,255,.45);

}

/* ==========================================
   TABLET
========================================== */

@media(min-width:768px){

.coupon-grid{

grid-template-columns:
repeat(2,1fr);

}

}

/* ==========================================
   DESKTOP
========================================== */

@media(min-width:1200px){

.coupon-grid{

grid-template-columns:
repeat(2,1fr);

gap:32px;

}

}

/* ==========================================
   CARD ANIMATIONS
========================================== */

.coupon-card{

    animation:cardFade .8s ease both;

}

@keyframes cardFade{

    from{

        opacity:0;

        transform:translateY(30px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.coupon-card:nth-child(2){

    animation-delay:.1s;

}

.coupon-card:nth-child(3){

    animation-delay:.2s;

}

.coupon-card:nth-child(4){

    animation-delay:.3s;

}

.coupon-card:nth-child(5){

    animation-delay:.4s;

}

/* ==========================================
   BUTTON PULSE
========================================== */

.coupon-btn{

    position:relative;

    overflow:hidden;

}

.coupon-btn::after{

    content:"";

    position:absolute;

    top:0;

    left:-150%;

    width:45%;

    height:100%;

    background:rgba(255,255,255,.35);

    transform:skewX(-25deg);

    animation:shine 3.5s linear infinite;

}

.coupon-btn:hover::after{

    left:140%;

    transition:.8s;

}

/* ==========================================
   SEARCH ANIMATION
========================================== */

.search-box input{

    transition:
    .35s ease;

}

.search-box input:hover{

    transform:translateY(-2px);

}

/* ==========================================
   LOGO ANIMATION
========================================== */

.logo-icon{

    animation:floatLogo 3s ease-in-out infinite;

}

@keyframes floatLogo{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-4px);

    }

    100%{

        transform:translateY(0);

    }

}

/* ==========================================
   FOOTER
========================================== */

.footer{

    margin-top:70px;

    background:#081f5c;

    color:#fff;

    padding:55px 0;

}

.footer-content{

    display:flex;

    justify-content:space-between;

    gap:50px;

    flex-wrap:wrap;

}

.footer h3{

    margin-bottom:16px;

    color:#ffc933;

}

.footer p{

    max-width:450px;

    color:#cfd7ef;

}

.footer ul{

    list-style:none;

}

.footer li{

    margin-bottom:10px;

    color:#dbe3ff;

}

.copyright{

    margin-top:40px;

    padding-top:20px;

    border-top:1px solid rgba(255,255,255,.12);

    text-align:center;

    color:#bfc8e4;

    font-size:.9rem;

}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:768px){

.header .container{

    flex-direction:column;

    gap:18px;

}

.search-box{

    width:100%;

}

.hero{

    padding:40px 0 25px;

}

.hero h1{

    font-size:2rem;

}

.brand-logo{

    width:80px;

    height:80px;

}

.coupon-card{

    padding:22px;

}

}

/* ==========================================
   STEP 2 MODAL
========================================== */

.modal{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.65);

    display:none;

    justify-content:center;

    align-items:center;

    padding:20px;

    z-index:9999;

}

.modal.active{

    display:flex;

}

.modal-content{

    width:100%;

    max-width:650px;

    background:#ffffff;

    border-radius:24px;

    padding:35px;

    position:relative;

    animation:popup .35s ease;

    box-shadow:0 25px 70px rgba(0,0,0,.25);

}

@keyframes popup{

    from{

        opacity:0;

        transform:translateY(30px) scale(.96);

    }

    to{

        opacity:1;

        transform:translateY(0) scale(1);

    }

}

.close-modal{

    position:absolute;

    top:18px;

    right:22px;

    font-size:34px;

    cursor:pointer;

    color:#777;

    transition:.3s;

}

.close-modal:hover{

    color:#ff3b30;

}

.modal-header{

    display:flex;

    align-items:center;

    gap:20px;

    margin-bottom:25px;

}

.modal-logo{

    width:90px;

    height:90px;

    object-fit:contain;

    border-radius:18px;

    border:1px solid #edf2ff;

    padding:10px;

}

.modal-description{

    background:linear-gradient(135deg,#2563ff,#3b82f6);

    color:#ffffff !important;

    font-size:17px;

    font-weight:700;

    text-align:center;

    line-height:1.5;

    padding:14px 18px;

    border-radius:18px;

    margin:0 auto 12px;

    max-width:100%;

    box-shadow:0 10px 25px rgba(37,99,255,.25);

}

.modal-stats{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

    margin:25px 0;

}

.modal-stats div{

    background:#f7f9ff;

    padding:14px;

    border-radius:12px;

    font-weight:600;

}

#modalDetails{

    margin:25px 0;

    padding-left:20px;

}

#modalDetails li{

    margin-bottom:12px;

    line-height:1.7;

}

@media(max-width:768px){

.modal-content{

padding:25px;

}

.modal-header{

flex-direction:column;

text-align:center;

}

.modal-stats{

grid-template-columns:1fr;

}

}

@keyframes ctaFloat{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-4px);

}

100%{

transform:translateY(0);

}

}

@keyframes shine{

0%{

left:-150%;

}

100%{

left:160%;

}

}

/* ==========================================
   FOOTER
========================================== */

.footer{

    background:#081f5c;

    color:#ffffff;

    padding:40px 20px;

    text-align:center;

    margin-top:40px;

}

.footer h2{

    font-size:24px;

    font-weight:700;

    margin-bottom:28px;

}

.footer-feature{

    margin-bottom:24px;

}

.footer-feature h3{

    font-size:18px;

    margin-bottom:8px;

    color:#ffffff;

}

.footer-feature p{

    max-width:300px;

    margin:0 auto;

    font-size:14px;

    line-height:1.7;

    color:rgba(255,255,255,.85);

}

.copyright{

    margin-top:30px;

    font-size:13px;

    color:rgba(255,255,255,.65);

}

/* ==========================================
   STEP 2 MODAL
========================================== */

.modal{

    display:none;

    position:fixed;

    inset:0;

    background:rgba(8,31,92,.65);

    backdrop-filter:blur(8px);

    z-index:9999;

    overflow-y:auto;

    padding:18px;

}

.modal-content{

    position:relative;

    background:#ffffff;

    border-radius:24px;

    max-width:420px;

    margin:25px auto;

    padding:22px;

    box-shadow:0 20px 60px rgba(0,0,0,.18);

}

.close-modal{

    position:absolute;

    top:18px;

    right:18px;

    font-size:28px;

    font-weight:700;

    cursor:pointer;

    color:#667085;

    transition:.25s;

}

.close-modal:hover{

    color:#081f5c;

}

.modal-brand{

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

    margin-bottom:2px;

}

.modal-logo-box{

    width:72px;

    height:72px;

    border-radius:18px;

    background:#ffffff;

    border:1px solid #edf2ff;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:0 8px 18px rgba(0,0,0,.06);

    flex-shrink:0;

}

.modal-logo-box img{

    width:80%;

    height:80%;

    object-fit:contain;

}

.modal-tags{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:6px;

    flex-wrap:nowrap;

    margin-top:8px;

    margin-bottom:10px;

}

.coupon-tag{

    background:#eef4ff;

    color:#2563ff;

    padding:6px 12px;

    border-radius:999px;

    font-size:12px;

    font-weight:600;

}

.modal-description{

    max-width:290px;

    margin:-4px auto 14px;

    text-align:center;

    line-height:1.6;

    font-size:15px;

    color:#475467;

}

.modal-stats{

    display:flex;

    justify-content:space-between;

    gap:10px;

    margin-bottom:26px;

}

.stat-box{

    flex:1;

    background:#f8faff;

    border:1px solid #edf2ff;

    border-radius:16px;

    padding:14px 10px;

    text-align:center;

}

.stat-value{

    font-size:18px;

    font-weight:700;

    color:#081f5c;

    margin-bottom:6px;

}

.stat-box small{

    display:block;

    color:#667085;

    font-size:12px;

}

.offer-section{

    margin-bottom:28px;

}

.offer-section h3{

    color:#081f5c;

    margin-bottom:16px;

}

.offer-section ol{

    margin:0;

    padding-left:20px;

}

.offer-section li{

    margin-bottom:12px;

    color:#475467;

    line-height:1.7;

    font-size:15px;

}

#showCouponBtn{

    width:100%;

    height:54px;

    border:none;

    border-radius:14px;

    font-size:17px;

    font-weight:700;

    cursor:pointer;

}

/* ==========================================
   STEP 3
========================================== */

.step3-container{

    max-width:390px;

    margin:0 auto;

    min-height:100vh;

    background:#ffffff;

}

.step3-header{

    background:linear-gradient(rgba(8,31,92,.82),rgba(8,31,92,.82)),
    url("assets/images/header-bg.jpg") center/cover;

    padding:28px 20px 24px;

    text-align:center;

    color:#fff;

}

.step3-logo{

    width:72px;

    height:72px;

    margin:0 auto 14px;

    background:#fff;

    border-radius:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:0 10px 25px rgba(0,0,0,.18);

}

.step3-logo img{

    max-width:60px;

    max-height:60px;

}

.step3-header h1{

    font-size:30px;

    font-weight:700;

    margin-bottom:14px;

}

.step3-tags{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    flex-wrap:wrap;

}

.step3-tags .badge{

    min-width:72px;

}

.step3-tags .coupon-tag{

    background:#eef4ff;

    color:#2563ff;

    padding:8px 14px;

    border-radius:999px;

    font-size:13px;

    font-weight:700;

}

.step3-tags .verified{

    background:#e9fff0;

    color:#0a9b43;

    padding:8px 14px;

    border-radius:999px;

    font-size:13px;

    font-weight:700;

    border:1px solid #b9ecc8;

}

/* ==========================================
   STEP 3
========================================== */

.step3-content{

    max-width:400px;

}

.verification-box{

    text-align:center;

    padding:30px 20px;

}

.verification-spinner{

    width:100%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:30px 0 35px;

    position:relative;

}

.spinner{

    width:72px;

    height:72px;

    border:6px solid #e6edff;

    border-top:6px solid #2563ff;

    border-radius:50%;

    animation:spin 1s linear infinite;

    margin:0 auto;

}

@keyframes spin{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}

#verificationStatus{

    color:#081f5c;

    font-size:20px;

    font-weight:700;

    line-height:1.5;

    margin-top:18px;   /* Add this */

    min-height:60px;

    text-align:center;

}

.coupon-ready{

    text-align:center;

    padding:24px 20px;

}

.coupon-ready h2{

    color:#081f5c;

    margin-bottom:14px;

}

.coupon-ready h3{

    color:#2563ff;

    margin-bottom:18px;

}

.claim-steps{

    text-align:left;

    margin:0 0 24px;

    padding-left:22px;

}

.claim-steps li{

    margin-bottom:12px;

    color:#475467;

    line-height:1.7;

}

.faq-section{

    padding:20px;

    border-top:1px solid #edf2ff;

}

.faq-section h3{

    color:#081f5c;

}

/* ==========================================
   FAQ
========================================== */

.faq-section{

    margin-top:30px;

    border-top:1px solid #edf2ff;

    padding-top:20px;

}

.faq-section h3{

    color:#081f5c;

    text-align:center;

    margin-bottom:18px;

    font-size:22px;

}

.faq-item{

    border:1px solid #e8eeff;

    border-radius:14px;

    margin-bottom:12px;

    overflow:hidden;

    background:#fff;

}

.faq-question{

    width:100%;

    border:none;

    background:#fff;

    padding:18px;

    text-align:left;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    color:#081f5c;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.faq-question::after{

    content:"+";

    font-size:22px;

    font-weight:700;

    color:#2563ff;

}

.faq-item.active .faq-question::after{

    content:"−";

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .35s ease;

    background:#f8faff;

}

.faq-answer p{

    padding:18px;

    margin:0;

    line-height:1.7;

    color:#475467;

}

.success-check{

    width:72px;

    height:72px;

    border-radius:50%;

    background:#2563ff;

    color:#fff;

    font-size:42px;

    font-weight:700;

    display:none;

    justify-content:center;

    align-items:center;

    margin:0 auto 20px;

}

.success-check.show{

    transform:scale(1);

    opacity:1;

}

.hide-spinner{

    display:none;
}

#step3Title{

    display:block;

    width:100%;

    text-align:center;

    margin:12px 0 10px;

    color:#fff;

    font-size:30px;

    font-weight:700;

}

.step3-header .modal-logo-box{

    margin:0 auto;

}