/* 
   Premium Sales Landing Page Stylesheet
   Theme: Ultra Modern Black + Gold + Purple Gradient (with red/yellow hot accents)
   Target: Indian Mobile Users & Desktop Viewers
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --bg-dark: #09090b;
    --bg-card: rgba(20, 20, 25, 0.65);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow-gold: rgba(245, 158, 11, 0.3);
    
    --primary-purple: #a855f7;
    --primary-purple-rgb: 168, 85, 247;
    --accent-gold: #fbbf24;
    --accent-gold-rgb: 251, 191, 36;
    
    /* Hot Red-Yellow Gradients for CTA and key items (as requested: "red colour yellew jaisa") */
    --gradient-hot: linear-gradient(135deg, #ff3366 0%, #ff9900 100%);
    --gradient-gold-purple: linear-gradient(135deg, #fbbf24 0%, #a855f7 100%);
    --gradient-dark-purple: linear-gradient(180deg, #1e1b4b 0%, #09090b 100%);
    
    --text-primary: #f8fafc;
    --text-muted: #94a3b8;
    --text-gold: #fbbf24;
    
    --font-primary: 'Outfit', sans-serif;
    --font-sec: 'Plus Jakarta Sans', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    user-select: none;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #09090b;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #a855f7, #fbbf24);
    border-radius: 4px;
}

/* Selection */
::selection {
    background: var(--primary-purple);
    color: #fff;
}

/* Background Gradients & Beams */
.bg-glow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.bg-glow-1 {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(100px);
    animation: floatGlow 15s infinite alternate;
}

.bg-glow-2 {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(120px);
    animation: floatGlow 20s infinite alternate-reverse;
}

.bg-glow-3 {
    position: absolute;
    top: 40%;
    left: 30%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(100px);
}

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

/* Loader Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #09090b;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--accent-gold);
    border-right: 4px solid var(--primary-purple);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-logo {
    margin-top: 20px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
    background: var(--gradient-gold-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulseLogo 1.5s infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseLogo {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Mouse Glow Effect */
.mouse-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.12) 0%, rgba(0, 0, 0, 0) 75%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 999;
    mix-blend-mode: screen;
    display: none; /* Enabled on desktop via JS */
}

@media (min-width: 1024px) {
    .mouse-glow {
        display: block;
    }
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 80px 0;
    position: relative;
}

/* Typography & Titles */
.gradient-text {
    background: var(--gradient-gold-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hot-gradient-text {
    background: var(--gradient-hot);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-gold);
    margin-bottom: 12px;
    display: inline-block;
    padding: 6px 16px;
    background: rgba(251, 191, 36, 0.06);
    border: 1px solid rgba(251, 191, 36, 0.15);
    border-radius: 30px;
    font-family: var(--font-sec);
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.text-center {
    text-align: center;
}

/* Buttons and Ripple Effect */
.btn-premium {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 12px;
    border: none;
    color: #fff;
    background: var(--gradient-hot);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.35);
    transition: var(--transition-smooth);
    z-index: 1;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold-purple);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-smooth);
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
}

.btn-premium:hover::before {
    opacity: 1;
}

.btn-premium:active {
    transform: translateY(1px);
}

/* Pulsing effect for CTA */
.btn-pulse {
    animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 51, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 51, 102, 0);
    }
}

/* Ripple effect container */
.ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple-effect 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-effect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Glassmorphism General */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* 1. HERO SECTION */
.hero-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    min-height: 90vh;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
}

.hero-left {
    text-align: center;
    max-width: 650px;
}

.badge-new {
    background: linear-gradient(90deg, rgba(251, 191, 36, 0.15) 0%, rgba(168, 85, 247, 0.15) 100%);
    border: 1px solid rgba(251, 191, 36, 0.3);
    padding: 8px 18px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-new i {
    color: #ef4444;
}

.hero-title {
    font-size: 44px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-weight: 500;
}

.hero-bullets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 35px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-bullet-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.hero-bullet-item i {
    color: var(--accent-gold);
    font-size: 18px;
    background: rgba(251, 191, 36, 0.1);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.hero-right {
    position: relative;
    width: 100%;
    max-width: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Mockup glowing, floating style */
.mockup-container {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: visible;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.mockup-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.45) 0%, rgba(251, 191, 36, 0.15) 50%, rgba(0, 0, 0, 0) 80%);
    filter: blur(40px);
    z-index: -1;
    border-radius: 30px;
}

.mockup-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 
                0 0 40px rgba(168, 85, 247, 0.15);
    animation: floatUpDown 6s ease-in-out infinite;
    transform: rotateX(8deg) rotateY(-8deg);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0px) rotateX(8deg) rotateY(-8deg); }
    50% { transform: translateY(-15px) rotateX(10deg) rotateY(-6deg); }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 56px;
    }
    .hero-subtitle {
        font-size: 20px;
    }
}

@media (min-width: 1024px) {
    .hero-wrapper {
        flex-direction: row;
        justify-content: space-between;
        padding-top: 120px;
    }
    .hero-left {
        text-align: left;
        max-width: 620px;
    }
    .hero-bullets {
        margin-left: 0;
    }
}

/* 2. SOCIAL PROOF SECTION */
.social-proof-sec {
    background: rgba(15, 15, 20, 0.6);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 50px 0;
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (min-width: 768px) {
    .counters-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.counter-card {
    text-align: center;
}

.counter-number {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 6px;
    font-family: var(--font-sec);
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--gradient-gold-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.counter-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 3. VIDEO PREVIEW SECTION */
.video-preview-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(168, 85, 247, 0.1);
    cursor: pointer;
    aspect-ratio: 16/9;
}

.video-preview-container:hover .video-overlay-glow {
    opacity: 0.25;
}

.video-preview-container:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 40px var(--accent-gold);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: var(--transition-smooth);
}

.video-preview-container:hover .video-thumbnail {
    transform: scale(1.03);
}

.video-overlay-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, rgba(0,0,0,0.6) 80%);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 80px;
    height: 80px;
    background: var(--accent-gold);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    padding-left: 5px; /* offset play icon */
    box-shadow: 0 0 25px rgba(251, 191, 36, 0.6);
    transition: var(--transition-smooth);
    z-index: 5;
    animation: playPulse 2s infinite;
}

@keyframes playPulse {
    0% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(251, 191, 36, 0); }
    100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0); }
}

.video-preview-btn-wrap {
    margin-top: 35px;
    text-align: center;
}

/* Video Popups Styles */
.video-popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.video-popup-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
}

.video-popup-close {
    position: absolute;
    top: -45px;
    right: 0;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    background: none;
    border: none;
    transition: var(--transition-smooth);
}

.video-popup-close:hover {
    color: var(--accent-gold);
    transform: rotate(90deg);
}

.video-popup-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* 4. FEATURES SECTION */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(168, 85, 247, 0.08), transparent 50%);
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5), 0 0 20px rgba(251, 191, 36, 0.05);
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(168, 85, 247, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent-gold);
    margin-bottom: 20px;
    border: 1px solid rgba(168, 85, 247, 0.2);
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--gradient-gold-purple);
    color: #000;
    border-color: transparent;
    transform: rotate(5deg) scale(1.05);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.5;
}

/* 5. WHY CHOOSE US - COMPARISON TABLE */
.comparison-container {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    background: rgba(15, 15, 20, 0.4);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th, 
.comparison-table td {
    padding: 20px 24px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: rgba(20, 20, 25, 0.8);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.col-us {
    background: rgba(168, 85, 247, 0.06);
    color: var(--accent-gold);
}

.comparison-table td.col-us {
    font-weight: 700;
}

.comparison-table td i.fa-check-circle {
    color: #22c55e;
    font-size: 20px;
}

.comparison-table td i.fa-times-circle {
    color: #ef4444;
    font-size: 18px;
}

.us-pill {
    background: var(--gradient-gold-purple);
    color: #000;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    display: inline-block;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

/* 6. TESTIMONIALS SECTION (Marquee) */
.testimonials-sec {
    overflow: hidden;
    padding: 80px 0;
}

.marquee-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 24px;
    animation: marquee 35s linear infinite;
}

.marquee-track-reverse {
    display: flex;
    width: max-content;
    gap: 24px;
    animation: marqueeReverse 35s linear infinite;
}

.marquee-container:hover .marquee-track,
.marquee-container:hover .marquee-track-reverse {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 12px)); }
}

@keyframes marqueeReverse {
    0% { transform: translateX(calc(-50% - 12px)); }
    100% { transform: translateX(0); }
}

.testimonial-card {
    width: 320px;
    flex-shrink: 0;
    padding: 24px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    border-color: rgba(251, 191, 36, 0.2);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-5px);
}

.stars {
    color: var(--accent-gold);
    font-size: 14px;
    margin-bottom: 12px;
}

.testimonial-content {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-gold-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #000;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.1);
}

.user-info h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.user-info p {
    font-size: 11px;
    color: var(--accent-gold);
}

/* 7. URGENCY COUNTDOWN */
.urgency-sec {
    background: radial-gradient(circle at center, rgba(239, 68, 68, 0.1) 0%, transparent 60%);
    padding: 60px 0;
}

.urgency-panel {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid rgba(239, 68, 68, 0.2);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.05);
}

.urgency-title {
    color: #ef4444;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: pulseGlowRed 2s infinite;
}

@keyframes pulseGlowRed {
    0%, 100% { text-shadow: 0 0 10px rgba(239, 68, 68, 0.4); }
    50% { text-shadow: 0 0 25px rgba(239, 68, 68, 0.8); }
}

.countdown-wrapper {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.countdown-item {
    background: rgba(10, 10, 12, 0.8);
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: 12px;
    min-width: 65px;
    padding: 12px 6px;
    text-align: center;
}

.countdown-num {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    font-family: var(--font-sec);
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.countdown-label {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 1px;
}

@media (min-width: 480px) {
    .countdown-wrapper {
        gap: 20px;
    }
    .countdown-item {
        min-width: 80px;
        padding: 16px 10px;
    }
    .countdown-num {
        font-size: 32px;
    }
}

/* 8. PRICING SECTION */
.pricing-card-wrapper {
    max-width: 480px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-card {
    border: 1.5px solid rgba(251, 191, 36, 0.25);
    text-align: center;
    position: relative;
    overflow: visible;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 
                0 0 35px rgba(251, 191, 36, 0.1);
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-hot);
    color: #fff;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(239,68,68,0.4);
    white-space: nowrap;
}

.price-box {
    margin: 30px 0;
}

.old-price {
    font-size: 18px;
    text-decoration: line-through;
    color: var(--text-muted);
    margin-right: 10px;
    font-weight: 500;
}

.new-price {
    font-size: 52px;
    font-weight: 900;
    color: var(--accent-gold);
    font-family: var(--font-sec);
}

.price-sub {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: -6px;
    font-weight: 600;
    display: block;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 35px 0;
    padding: 0 10px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--accent-gold);
    font-size: 18px;
}

.pricing-card .btn-premium {
    width: 100%;
}

.payment-trust-badges {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 16px;
    opacity: 0.65;
    flex-wrap: wrap;
}

.payment-trust-badges span {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.payment-trust-badges span i {
    color: #22c55e;
}

/* 9. FAQ SECTION */
.faq-container {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(168, 85, 247, 0.25);
    background: rgba(255, 255, 255, 0.02);
}

.faq-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.faq-icon {
    font-size: 14px;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer {
    padding: 0 24px 20px 24px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* Open State */
.faq-item.active {
    background: rgba(168, 85, 247, 0.03);
    border-color: rgba(168, 85, 247, 0.3);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--accent-gold);
}

.faq-item.active .faq-question {
    color: var(--accent-gold);
}

/* 10. CHECKOUT SECTION */
.checkout-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.checkout-card {
    border: 1px solid rgba(168, 85, 247, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 
                0 0 30px rgba(168, 85, 247, 0.08);
}

.checkout-header {
    text-align: center;
    margin-bottom: 30px;
}

.checkout-header h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
}

.checkout-form-group {
    position: relative;
    margin-bottom: 24px;
}

.checkout-form-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.input-icon-wrapper {
    position: relative;
}

.checkout-input {
    width: 100%;
    padding: 16px 20px 16px 45px;
    background: rgba(10, 10, 12, 0.6);
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    font-family: var(--font-primary);
    font-weight: 500;
    transition: var(--transition-smooth);
}

.input-icon-wrapper i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 16px;
    transition: var(--transition-smooth);
}

.checkout-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.15);
    background: rgba(10, 10, 12, 0.9);
}

.checkout-input:focus + i {
    color: var(--accent-gold);
}

.checkout-card .btn-premium {
    width: 100%;
    margin-top: 10px;
}

/* Error message formatting */
.error-msg {
    color: #ef4444;
    font-size: 12px;
    font-weight: 600;
    margin-top: 6px;
    display: none;
}

/* 11. FOOTER */
footer {
    background: #050508;
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 30px;
    list-style: none;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-social-icon:hover {
    background: var(--gradient-gold-purple);
    color: #000;
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-copyright {
    text-align: center;
    font-size: 13px;
    color: rgba(148, 163, 184, 0.4);
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* SUCCESS PAGE */
.success-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.success-card {
    max-width: 600px;
    width: 100%;
    text-align: center;
    padding: 50px 40px;
    border-color: rgba(34, 197, 94, 0.25);
    box-shadow: 0 25px 60px rgba(0,0,0,0.7), 0 0 30px rgba(34, 197, 94, 0.1);
}

.success-icon-wrap {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid rgba(34, 197, 94, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    color: #22c55e;
    margin: 0 auto 30px auto;
    animation: scaleIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes scaleIn {
    0% { transform: scale(0.6); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.success-card h1 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
}

.success-desc {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 35px;
}

.receipt-box {
    background: rgba(10, 10, 12, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    margin-bottom: 35px;
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
}

.receipt-row:not(:last-child) {
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.receipt-label {
    color: var(--text-muted);
}

.receipt-value {
    font-weight: 600;
    color: var(--text-primary);
}

.receipt-value.green {
    color: #22c55e;
}

/* PREMIUM UPI PAYMENT SCREEN SIMULATION */
.payment-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.payment-card {
    max-width: 480px;
    width: 100%;
}

.payment-header-sim {
    text-align: center;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding-bottom: 20px;
}

.pay-amount-badge {
    font-size: 32px;
    font-weight: 900;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 4px;
}

.upi-scan-box {
    text-align: center;
    margin: 25px 0;
}

.qr-code-wrapper {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    background: #fff;
    padding: 10px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    position: relative;
    border: 4px solid var(--accent-gold);
}

.qr-code-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qr-scanner-line {
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: 3px;
    background: #ef4444;
    box-shadow: 0 0 10px #ef4444;
    animation: qrScan 2s linear infinite;
}

@keyframes qrScan {
    0%, 100% { top: 10px; }
    50% { top: 185px; }
}

.payment-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}

.pay-option-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 6px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.pay-option-btn:hover {
    border-color: var(--accent-gold);
    background: rgba(251, 191, 36, 0.03);
}

.pay-option-btn.active {
    border-color: var(--primary-purple);
    background: rgba(168, 85, 247, 0.08);
}

.pay-option-btn img {
    height: 24px;
    object-fit: contain;
    margin-bottom: 6px;
}

.pay-option-btn span {
    font-size: 11px;
    font-weight: 600;
    display: block;
    color: var(--text-muted);
}

.pay-option-btn.active span {
    color: var(--text-primary);
}

.upi-id-copy-box {
    background: rgba(10, 10, 12, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    margin-bottom: 25px;
}

.upi-id-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.copy-btn {
    background: none;
    border: none;
    color: var(--accent-gold);
    cursor: pointer;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.copy-btn:hover {
    color: #fff;
}

.payment-simulate-btn {
    width: 100%;
    margin-top: 10px;
}

.sim-loader-msg {
    text-align: center;
    color: var(--accent-gold);
    font-size: 13px;
    font-weight: 600;
    margin-top: 15px;
    display: none;
    animation: flash 1.5s infinite;
}

@keyframes flash {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ADMIN PANEL STYLES */
.admin-login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.admin-dashboard-container {
    padding: 40px 0;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .admin-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-card {
    border: 1px solid var(--border-color);
}

.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.stat-header i {
    font-size: 20px;
    color: var(--primary-purple);
}

.stat-card.gold .stat-header i {
    color: var(--accent-gold);
}

.stat-val {
    font-size: 32px;
    font-weight: 800;
    font-family: var(--font-sec);
    color: var(--text-primary);
}

.admin-content-tabs {
    margin-bottom: 30px;
    display: flex;
    gap: 15px;
}

.admin-tab-btn {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.admin-tab-btn.active, 
.admin-tab-btn:hover {
    background: rgba(168, 85, 247, 0.08);
    border-color: var(--primary-purple);
    color: #fff;
}

.admin-tab-content {
    display: none;
}

.admin-tab-content.active {
    display: block;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
    background: rgba(15,15,20,0.3);
}

.admin-table th, 
.admin-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.admin-table th {
    background: rgba(20,20,25,0.7);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.admin-table tbody tr:hover {
    background: rgba(255,255,255,0.01);
}

.status-pill {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
}

.status-pill.completed {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
}

.status-pill.pending {
    background: rgba(234, 179, 8, 0.15);
    color: #facc15;
}

.status-pill.failed {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
}

.settings-form-wrapper {
    max-width: 600px;
}

.settings-btn-row {
    margin-top: 30px;
}

.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: 600;
}

.alert-success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #4ade80;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #f87171;
}
