/* --- Premium Sunset Design System --- */
:root {
    --primary-dark: #EA6113;
    --primary-orange: #F88F22;
    --primary-yellow: #FBB931;
    --bg-dark: #070403;
    --bg-card: #120b08;
    --bg-card-hover: #190f0b;
    --text-main: #ffffff;
    --text-muted: #a89a93;
    --gradient-btn: linear-gradient(135deg, #EA6113 0%, #FBB931 100%);
    --gradient-glow: radial-gradient(circle, rgba(234, 97, 19, 0.3), transparent 70%);
    --border-subtle: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Hind Siliguri', 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
    padding-bottom: 70px;
}

@media (min-width: 769px) {
    body { padding-bottom: 0; }
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}

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

/* --- Top Announcement Bar --- */
.top-announcement {
    background: linear-gradient(90deg, #EA6113, #F88F22, #FBB931);
    color: #000;
    text-align: center;
    padding: 5px 10px;
    font-weight: 800;
    font-size: 0.82rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* --- Compact Navbar --- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7, 4, 3, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { font-weight: 800; font-size: 1.3rem; }
.logo-text { color: #fff; }
.logo-highlight { color: var(--primary-yellow); margin-left: 4px; }

/* --- Live Countdown Timer Bar --- */
.countdown-bar {
    background: rgba(18, 11, 8, 0.95);
    border-bottom: 1px solid var(--primary-orange);
    padding: 8px 0;
}

.countdown-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cd-label {
    font-weight: 700;
    font-size: 0.88rem;
    color: #fff;
}
.cd-label i { color: var(--primary-yellow); }

.cd-boxes {
    display: flex;
    gap: 8px;
    align-items: center;
}

.cd-box {
    background: rgba(234, 97, 19, 0.15);
    border: 1px solid var(--primary-orange);
    color: var(--primary-yellow);
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.76rem;
    font-weight: 600;
}

.cd-box strong {
    font-size: 0.92rem;
    font-weight: 800;
    color: #fff;
    margin-right: 2px;
}

/* --- Buttons & Animations --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    font-size: 0.92rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.btn-primary {
    background: var(--gradient-btn);
    color: #fff;
    box-shadow: 0 6px 20px rgba(234, 97, 19, 0.4);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(234, 97, 19, 0.6);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid var(--primary-yellow);
}
.btn-outline:hover { background: rgba(251, 185, 49, 0.1); }

.btn-large { padding: 14px 28px; font-size: 1.05rem; }
.btn-full { width: 100%; margin-top: 12px; }

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(234, 97, 19, 0.6); }
    70% { transform: scale(1.03); box-shadow: 0 0 0 12px rgba(234, 97, 19, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(234, 97, 19, 0); }
}
.pulse-anim { animation: pulse 2.5s infinite; }

/* --- Hero Section --- */
.hero {
    position: relative;
    padding: 35px 0 45px 0;
}

.hero-radial-glow {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 300px;
    background: var(--gradient-glow);
    pointer-events: none;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 30px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(251, 185, 49, 0.12);
    border: 1px solid var(--primary-yellow);
    color: var(--primary-yellow);
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.pulse-dot {
    width: 7px; height: 7px;
    background: var(--primary-yellow);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.headline {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 40%, var(--primary-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: 8px;
}

.sub-headline {
    font-size: 1.15rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 14px;
}

.hero-cta-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
    margin-bottom: 15px;
}

.quick-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 0.8rem;
}
.quick-pills i { color: var(--primary-yellow); }

/* Master Poster Hero Card */
.master-card-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
    border: 2px solid var(--primary-orange);
    transition: transform 0.3s;
    max-width: 440px;
    margin: 0 auto;
}
.master-card-wrap:hover { transform: scale(1.02); }

.master-poster-img {
    width: 100%;
    height: auto;
    display: block;
}

.glass-poster-overlay {
    position: absolute;
    bottom: 10px; left: 10px; right: 10px;
    background: rgba(7, 4, 3, 0.88);
    backdrop-filter: blur(8px);
    color: var(--primary-yellow);
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    text-align: center;
    border: 1px solid var(--border-subtle);
}

/* --- Mobile Preview Reference Section --- */
.mobile-editor-section {
    background: var(--bg-card);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.mobile-preview-card {
    display: flex;
    justify-content: center;
    margin-top: 18px;
}

.mobile-img-wrapper {
    position: relative;
    width: 100%;
    max-width: 720px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.85);
    border: 1.5px solid var(--primary-orange);
}

.mobile-ref-img {
    width: 100%;
    height: auto;
    display: block;
}

.mobile-overlay-badge {
    position: absolute;
    bottom: 10px; left: 10px; right: 10px;
    background: rgba(7, 4, 3, 0.9);
    backdrop-filter: blur(8px);
    color: var(--primary-yellow);
    padding: 7px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    border: 1px solid var(--border-subtle);
}

/* Mobile Steps Row */
.mobile-steps-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.step-card-mini {
    background: var(--bg-dark);
    border: 1px solid var(--border-subtle);
    padding: 8px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
}
.s-num {
    width: 24px; height: 24px;
    background: var(--gradient-btn);
    color: #fff; font-weight: 800;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; flex-shrink: 0;
}

/* --- Asset Breakdown Cards --- */
.breakdown-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}
.b-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 20px 16px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}
.b-card:hover { transform: translateY(-4px); border-color: var(--primary-orange); }
.b-icon { font-size: 1.8rem; color: var(--primary-yellow); margin-bottom: 8px; }
.b-card h3 { font-size: 1.05rem; margin-bottom: 6px; color: #fff; }
.b-tag {
    display: inline-block;
    background: rgba(251, 185, 49, 0.1);
    color: var(--primary-yellow);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* --- Section Titles --- */
.section-title { text-align: center; margin-bottom: 25px; }
.section-title h2 { font-size: 1.7rem; margin-bottom: 4px; }
.title-underline {
    width: 45px; height: 3px;
    background: var(--gradient-btn);
    margin: 8px auto 0 auto;
    border-radius: 2px;
}

/* --- Masonry Gallery --- */
.thumb-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
}
.thumb-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}
.thumb-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}
.thumb-box:hover img { transform: scale(1.05); }
.thumb-label {
    position: absolute;
    bottom: 8px; left: 8px;
    background: rgba(7, 4, 3, 0.88);
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 600;
}

/* --- Mentor & FAQ --- */
.mentor-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 20px 16px;
    text-align: center;
}
.sub-tag { color: var(--primary-yellow); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; margin-bottom: 4px; display: block; }
.m-info h2 { font-size: 1.5rem; }

.faq-accordion { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-box { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 8px; overflow: hidden; }
.faq-box.active { border-color: var(--primary-orange); }
.faq-header { padding: 14px 16px; font-weight: 700; font-size: 0.95rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-header i { color: var(--primary-yellow); transition: transform 0.3s; }
.faq-box.active .faq-header i { transform: rotate(180deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; padding: 0 16px; color: var(--text-muted); font-size: 0.88rem; }
.faq-box.active .faq-body { max-height: 120px; padding: 0 16px 14px 16px; }

/* --- Footer & Checkout Modal --- */
.footer { padding: 35px 0 20px 0; }
.price-badge { display: inline-block; background: #e2136e; color: #fff; padding: 3px 12px; border-radius: 20px; font-weight: 700; font-size: 0.8rem; margin-bottom: 10px; }
.footer-title { font-size: 1.8rem; margin-bottom: 6px; }
.price-row { margin: 10px 0 18px 0; display: flex; justify-content: center; align-items: center; gap: 10px; }
.price-row .old { text-decoration: line-through; color: var(--text-muted); font-size: 1.1rem; }
.price-row .new { font-size: 2.5rem; font-weight: 800; color: var(--primary-yellow); }
.sub-note { color: var(--text-muted); font-size: 0.8rem; margin-top: 30px; }

/* Checkout Modal */
.checkout-modal {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.85); backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    z-index: 2000; opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.checkout-modal.open { opacity: 1; pointer-events: all; }

.modal-content {
    background: var(--bg-card); border: 1px solid var(--primary-orange);
    border-radius: 16px; padding: 22px 18px;
    width: 92%; max-width: 420px; position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.85);
}
.close-btn { position: absolute; top: 12px; right: 16px; background: transparent; border: none; color: #fff; font-size: 1.6rem; cursor: pointer; }
.modal-content h3 { font-size: 1.2rem; margin-bottom: 4px; }
.modal-price { color: var(--primary-yellow); font-size: 0.95rem; margin-bottom: 10px; }

/* --- Payment Instruction Card & Copy Box --- */
.payment-instruction-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 12px;
    margin: 10px 0 15px 0;
    text-align: center;
}

.pay-logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.pay-logo {
    height: 32px;
    width: auto;
    border-radius: 6px;
}

.pay-type-badge {
    background: rgba(234, 97, 19, 0.2);
    color: var(--primary-yellow);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
}

.copy-num-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #000;
    border: 1px solid var(--primary-orange);
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 8px;
}

.num-text {
    font-family: monospace;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--primary-yellow);
}

.copy-btn {
    background: var(--gradient-btn);
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.78rem;
    cursor: pointer;
    transition: all 0.2s;
}

.copy-btn:hover {
    transform: scale(1.04);
}

.pay-instruction-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.form-group { margin-bottom: 12px; text-align: left; }
.form-group label { display: block; font-size: 0.85rem; margin-bottom: 4px; font-weight: 600; }
.form-group input, .form-group select {
    width: 100%; padding: 10px 12px;
    background: rgba(255,255,255,0.05); border: 1px solid var(--border-subtle);
    border-radius: 8px; color: #fff; font-family: inherit; font-size: 0.9rem;
}
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--primary-yellow); }

/* --- SLEEK COMPACT FLOATING PURCHASE POPUP --- */
.purchase-popup {
    position: fixed;
    bottom: -80px; left: 15px;
    background: rgba(19, 12, 9, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(251, 185, 49, 0.4);
    padding: 6px 14px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
    z-index: 999;
    transition: bottom 0.4s ease;
}
.purchase-popup.show { bottom: 75px; }
.popup-icon { color: var(--primary-yellow); font-size: 0.85rem; }
.popup-content p { color: #fff; font-size: 0.78rem; font-weight: 600; }

.floating-wa {
    position: fixed; bottom: 75px; right: 15px;
    width: 44px; height: 44px;
    background: #25D366; color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000; text-decoration: none;
}

@media (min-width: 769px) {
    .purchase-popup.show { bottom: 15px; }
    .floating-wa { bottom: 20px; }
}

/* --- MOBILE STICKY BOTTOM ORDER BAR --- */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    height: 60px;
    background: rgba(10, 6, 4, 0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--primary-orange);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    z-index: 1500;
}

@media (min-width: 769px) {
    .mobile-sticky-bar { display: none; }
}

.m-sticky-price { display: flex; align-items: center; gap: 8px; }
.m-old { text-decoration: line-through; color: var(--text-muted); font-size: 0.85rem; }
.m-new { color: var(--primary-yellow); font-weight: 800; font-size: 1.4rem; }
.m-sticky-btn { padding: 8px 20px; font-size: 0.9rem; }

/* 📱 MOBILE SPECIFIC OVERRIDES (< 768px) */
@media (max-width: 768px) {
    .top-announcement { font-size: 0.78rem; padding: 4px 8px; }
    .logo { font-size: 1.1rem; }
    .nav-cta { display: none; }
    
    .section-padding { padding: 35px 0; }
    .hero { padding: 20px 0 30px 0; }
    .hero-layout { grid-template-columns: 1fr; text-align: center; }
    
    .headline { font-size: 2.1rem; margin-bottom: 6px; }
    .sub-headline { font-size: 0.95rem; margin-bottom: 12px; }
    .hero-badge { font-size: 0.72rem; margin-bottom: 8px; }
    
    .master-card-wrap { max-width: 100%; border-width: 1.5px; }
    .glass-poster-overlay { font-size: 0.72rem; padding: 4px 8px; }
    
    .hero-cta-group, .quick-pills { justify-content: center; }
    .btn-large { width: 100%; padding: 12px 18px; font-size: 0.95rem; }
    
    .section-title h2 { font-size: 1.4rem; }
    .breakdown-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .b-card { padding: 14px 10px; }
    .b-card h3 { font-size: 0.9rem; }
    .b-tag { font-size: 0.68rem; padding: 2px 6px; }
    
    .thumb-masonry { grid-template-columns: 1fr 1fr; gap: 8px; }
    .thumb-box img { height: 130px; }
    
    .footer-title { font-size: 1.6rem; }
    .price-row .new { font-size: 2.2rem; }
}
