/* ===== CSS VARIABLES ===== */
:root {
    --primary: #6c5ce7;
    --primary-light: #a29bfe;
    --primary-dark: #4834d4;
    --secondary: #00cec9;
    --accent: #fd79a8;
    --success: #00b894;
    --warning: #fdcb6e;
    --danger: #e17055;
    --morning: #f39c12;
    --afternoon: #e74c3c;
    --evening: #9b59b6;
    --night: #2c3e50;
    --easypaisa: #3aaa35;
    --jazzcash: #e3272d;
    --bank-blue: #1a5276;
    --dark: #0a0a1a;
    --dark-light: #1a1a2e;
    --text-primary: #ffffff;
    --text-secondary: #b2bec3;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: rgba(0, 0, 0, 0.3);
    --gradient-1: linear-gradient(135deg, #6c5ce7, #a29bfe);
    --gradient-2: linear-gradient(135deg, #00cec9, #55efc4);
    --gradient-3: linear-gradient(135deg, #fd79a8, #e84393);
    --gradient-morning: linear-gradient(135deg, #f39c12, #f1c40f);
    --gradient-afternoon: linear-gradient(135deg, #e74c3c, #e67e22);
    --gradient-evening: linear-gradient(135deg, #9b59b6, #8e44ad);
    --gradient-night: linear-gradient(135deg, #2c3e50, #3498db);
    --gradient-ep: linear-gradient(135deg, #3aaa35, #5ec95a);
    --gradient-jc: linear-gradient(135deg, #e3272d, #ff5757);
    --gradient-bk: linear-gradient(135deg, #1a5276, #2980b9);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

/* ===== BACKGROUND ===== */
.bg-animation { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; overflow: hidden; }
.bg-circle { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.25; }
.circle-1 { width: 600px; height: 600px; background: var(--primary); top: -200px; right: -200px; animation: float1 20s ease-in-out infinite; }
.circle-2 { width: 400px; height: 400px; background: var(--easypaisa); bottom: -100px; left: -100px; animation: float2 25s ease-in-out infinite; }
.circle-3 { width: 300px; height: 300px; background: var(--accent); top: 50%; left: 50%; animation: float3 18s ease-in-out infinite; }
.circle-4 { width: 500px; height: 500px; background: var(--jazzcash); bottom: -200px; right: 20%; animation: float4 22s ease-in-out infinite; }
.circle-5 { width: 350px; height: 350px; background: var(--morning); top: 30%; left: -100px; animation: float2 28s ease-in-out infinite reverse; }

@keyframes float1 { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(-100px,100px) scale(1.1)} 66%{transform:translate(50px,-50px) scale(0.9)} }
@keyframes float2 { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(80px,-80px) scale(1.2)} 66%{transform:translate(-40px,40px) scale(0.8)} }
@keyframes float3 { 0%,100%{transform:translate(-50%,-50%) scale(1)} 50%{transform:translate(-30%,-70%) scale(1.3)} }
@keyframes float4 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-80px,-60px) scale(1.1)} }

#particles { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; }
.particle { position: absolute; width: 3px; height: 3px; background: rgba(255,255,255,0.3); border-radius: 50%; animation: particleFloat linear infinite; }
@keyframes particleFloat { 0%{transform:translateY(100vh);opacity:0} 10%{opacity:1} 90%{opacity:1} 100%{transform:translateY(-10vh);opacity:0} }

/* ===== GLASS ===== */
.glass-effect { background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--glass-border); box-shadow: 0 8px 32px var(--glass-shadow); }
.glass-effect-dark { background: rgba(0,0,0,0.3); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; }

/* ===== ANIMATIONS ===== */
.fade-in-up { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.16,1,0.3,1); transition-delay: var(--delay, 0s); }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }
.fade-in-right { opacity: 0; transform: translateX(40px); transition: all 0.8s cubic-bezier(0.16,1,0.3,1); }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }
.slide-in-up { animation: slideInUp 0.6s cubic-bezier(0.16,1,0.3,1); }
@keyframes slideInUp { from{opacity:0;transform:translateY(60px) scale(0.95)} to{opacity:1;transform:translateY(0) scale(1)} }
.spin-slow { animation: spin 8s linear infinite; }
@keyframes spin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.pulse-glow { animation: pulseGlow 2s ease-in-out infinite; }
@keyframes pulseGlow { 0%,100%{box-shadow:0 0 20px rgba(108,92,231,0.3)} 50%{box-shadow:0 0 40px rgba(108,92,231,0.6)} }
.gradient-text { background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ===== NAVBAR ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; justify-content: space-between; align-items: center; padding: 15px 40px; transition: all 0.3s; }
.navbar.scrolled { padding: 10px 40px; background: rgba(10,10,26,0.95); }
.nav-brand { display: flex; align-items: center; gap: 10px; font-size: 1.5rem; font-weight: 800; }
.nav-brand i { color: var(--primary); font-size: 1.8rem; }
.nav-links { display: flex; gap: 30px; }
.nav-link { color: var(--text-secondary); text-decoration: none; font-weight: 500; transition: all 0.3s; position: relative; }
.nav-link::after { content:''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--gradient-1); transition: width 0.3s; }
.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { width: 100%; }
.nav-currency { display: flex; align-items: center; gap: 6px; padding: 6px 14px; background: rgba(0,184,148,0.15); border: 1px solid rgba(0,184,148,0.3); border-radius: 20px; color: var(--success); font-weight: 600; font-size: 0.85rem; }
.pakistan-flag { font-size: 1.1rem; }

/* ===== HERO ===== */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: space-between; padding: 100px 60px; gap: 40px; }
.hero-content { flex: 1; max-width: 650px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; border-radius: 30px; font-size: 0.85rem; color: var(--warning); margin-bottom: 20px; }
.hero-badge i { animation: pulse 1.5s ease infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.5} }
.hero-title { font-size: 4rem; font-weight: 900; line-height: 1.1; margin-bottom: 20px; }
.hero-highlight { display: inline-block; position: relative; }
.hero-highlight::after { content:''; position: absolute; bottom: 5px; left: 0; width: 100%; height: 12px; background: var(--primary); opacity: 0.3; border-radius: 6px; z-index: -1; }
.hero-subtitle { font-size: 1.15rem; color: var(--text-secondary); margin-bottom: 25px; max-width: 500px; }
.hero-subtitle strong { color: var(--easypaisa); }
.hero-subtitle strong:last-of-type { color: var(--jazzcash); }
.hero-stats { display: flex; align-items: center; gap: 25px; margin-bottom: 25px; }
.stat-item { text-align: center; }
.stat-number { display: block; font-size: 1.5rem; font-weight: 800; color: var(--primary-light); }
.stat-label { font-size: 0.8rem; color: var(--text-secondary); }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

.hero-payment-methods { display: flex; gap: 10px; margin-bottom: 30px; flex-wrap: wrap; }
.payment-chip { display: flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05); }
.chip-dot { width: 8px; height: 8px; border-radius: 50%; }
.ep-dot { background: var(--easypaisa); }
.jc-dot { background: var(--jazzcash); }
.bk-dot { background: var(--bank-blue); }

.cta-button { display: inline-flex; align-items: center; gap: 12px; padding: 16px 36px; background: var(--gradient-1); color: white; text-decoration: none; border-radius: 50px; font-weight: 600; font-size: 1.1rem; transition: all 0.3s; border: none; cursor: pointer; }
.cta-button:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(108,92,231,0.4); }
.cta-button i { animation: bounce 2s ease infinite; }
@keyframes bounce { 0%,20%,50%,80%,100%{transform:translateY(0)} 40%{transform:translateY(5px)} 60%{transform:translateY(3px)} }

.hero-image { flex: 1; display: flex; justify-content: center; align-items: center; }
.field-graphic { width: 350px; height: 500px; border: 3px solid var(--primary); border-radius: 20px; position: relative; opacity: 0.6; animation: fieldGlow 3s ease-in-out infinite; }
@keyframes fieldGlow { 0%,100%{box-shadow:0 0 20px rgba(108,92,231,0.2),inset 0 0 20px rgba(108,92,231,0.1)} 50%{box-shadow:0 0 40px rgba(108,92,231,0.4),inset 0 0 40px rgba(108,92,231,0.2)} }
.field-line { position: absolute; top: 50%; left: 0; right: 0; height: 3px; background: var(--primary); }
.field-circle { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 120px; height: 120px; border: 3px solid var(--primary); border-radius: 50%; }
.field-center-dot { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 12px; height: 12px; background: var(--primary); border-radius: 50%; }
.field-goal-top { position: absolute; top: -3px; left: 50%; transform: translateX(-50%); width: 80px; height: 40px; border: 3px solid var(--primary); border-top: none; border-radius: 0 0 10px 10px; }
.field-goal-bottom { position: absolute; bottom: -3px; left: 50%; transform: translateX(-50%); width: 80px; height: 40px; border: 3px solid var(--primary); border-bottom: none; border-radius: 10px 10px 0 0; }

/* ===== SLOTS ===== */
.slots-section { padding: 80px 60px; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 10px; }
.section-subtitle { color: var(--text-secondary); font-size: 1.1rem; }

.date-picker-container { max-width: 400px; margin: 0 auto 40px; padding: 20px 30px; border-radius: 16px; display: flex; align-items: center; gap: 15px; }
.date-picker-container label { display: flex; align-items: center; gap: 8px; color: var(--text-secondary); font-weight: 500; white-space: nowrap; }
.date-picker-container label i { color: var(--primary); }
.date-input { flex: 1; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); color: var(--text-primary); padding: 10px 15px; border-radius: 10px; font-family: 'Inter'; font-size: 0.95rem; outline: none; transition: all 0.3s; }
.date-input:focus { border-color: var(--primary); box-shadow: 0 0 15px rgba(108,92,231,0.2); }
.date-input::-webkit-calendar-picker-indicator { filter: invert(1); cursor: pointer; }

.slots-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 25px; max-width: 1100px; margin: 0 auto; }

.slot-card { padding: 28px; border-radius: 24px; position: relative; overflow: hidden; transition: all 0.4s cubic-bezier(0.16,1,0.3,1); }
.slot-card::before { content:''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.slot-card[data-slot="1"]::before { background: var(--gradient-morning); }
.slot-card[data-slot="2"]::before { background: var(--gradient-afternoon); }
.slot-card[data-slot="3"]::before { background: var(--gradient-evening); }
.slot-card[data-slot="4"]::before { background: var(--gradient-night); }
.slot-card:hover { transform: translateY(-8px); border-color: rgba(108,92,231,0.3); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }

.slot-ribbon { position: absolute; top: 16px; left: -30px; background: var(--gradient-1); color: white; padding: 4px 40px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; transform: rotate(-45deg); z-index: 2; }
.slot-ribbon.hot { background: var(--gradient-3); }
.slot-ribbon.premium { background: var(--gradient-night); }

.slot-status { position: absolute; top: 20px; right: 20px; display: flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; z-index: 2; }
.slot-status.available { background: rgba(0,184,148,0.2); color: var(--success); border: 1px solid rgba(0,184,148,0.3); }
.slot-status.booked { background: rgba(225,112,85,0.2); color: var(--danger); border: 1px solid rgba(225,112,85,0.3); }

.slot-icon { width: 55px; height: 55px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 18px; }
.slot-icon.morning { background: rgba(243,156,18,0.15); color: var(--morning); }
.slot-icon.afternoon { background: rgba(231,76,60,0.15); color: var(--afternoon); }
.slot-icon.evening { background: rgba(155,89,182,0.15); color: var(--evening); }
.slot-icon.night { background: rgba(52,152,219,0.15); color: #3498db; }

.slot-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; }
.slot-time { display: flex; align-items: center; gap: 8px; color: var(--text-secondary); font-size: 1rem; margin-bottom: 18px; }
.slot-time i { color: var(--primary); }

.slot-details { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 20px; }
.detail-item { display: flex; align-items: center; gap: 8px; color: var(--text-secondary); font-size: 0.82rem; }
.detail-item i { color: var(--secondary); width: 14px; text-align: center; font-size: 0.75rem; }

.slot-price { display: flex; align-items: baseline; gap: 2px; margin-bottom: 20px; }
.slot-price .currency { font-size: 1.1rem; color: var(--success); font-weight: 600; }
.slot-price .amount { font-size: 2.2rem; font-weight: 800; }
.slot-price .per { color: var(--text-secondary); font-size: 0.85rem; margin-left: 4px; }

.book-button { width: 100%; padding: 13px; border: none; border-radius: 14px; font-family: 'Inter'; font-size: 0.95rem; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: all 0.3s; color: white; }
.btn-morning { background: var(--gradient-morning); }
.btn-afternoon { background: var(--gradient-afternoon); }
.btn-evening { background: var(--gradient-evening); }
.btn-night { background: var(--gradient-night); }
.book-button:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.3); }
.book-button:disabled { background: rgba(255,255,255,0.1)!important; color: var(--text-secondary); cursor: not-allowed; box-shadow: none!important; transform: none!important; }
.book-button i { transition: transform 0.3s; }
.book-button:hover i { transform: translateX(5px); }

/* Price Bars */
.price-comparison { max-width: 700px; margin: 40px auto 0; padding: 30px; border-radius: 20px; }
.price-comparison h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.price-comparison h3 i { color: var(--primary); }
.price-bars { display: flex; flex-direction: column; gap: 14px; }
.price-bar { display: flex; align-items: center; gap: 12px; }
.bar-label { min-width: 160px; font-size: 0.85rem; color: var(--text-secondary); }
.bar-track { flex: 1; height: 10px; background: rgba(255,255,255,0.05); border-radius: 5px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 5px; transition: width 1.5s cubic-bezier(0.16,1,0.3,1); }
.morning-bar { background: var(--gradient-morning); }
.afternoon-bar { background: var(--gradient-afternoon); }
.evening-bar { background: var(--gradient-evening); }
.night-bar { background: var(--gradient-night); }
.bar-price { min-width: 70px; text-align: right; font-weight: 700; font-size: 0.9rem; color: var(--success); }

/* ===== ABOUT ===== */
.about-section { padding: 80px 60px; }
.about-content { max-width: 1000px; margin: 0 auto; padding: 50px; border-radius: 24px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 25px; margin-top: 40px; }
.feature-card { text-align: center; padding: 28px 18px; border-radius: 16px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); transition: all 0.3s; }
.feature-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.06); }
.feature-icon { width: 55px; height: 55px; border-radius: 14px; background: var(--gradient-1); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin: 0 auto 12px; }
.feature-icon.icon-green { background: var(--gradient-ep); }
.feature-icon.icon-pink { background: var(--gradient-3); }
.feature-icon.icon-yellow { background: var(--gradient-morning); }
.feature-card h4 { font-size: 1rem; margin-bottom: 6px; }
.feature-card p { color: var(--text-secondary); font-size: 0.82rem; }

/* ===== MODAL ===== */
.modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(8px); z-index: 1000; display: none; justify-content: center; align-items: flex-start; padding: 20px; overflow-y: auto; }
.modal-overlay.active { display: flex; }
.modal { width: 100%; max-width: 600px; border-radius: 24px; padding: 35px; position: relative; margin: auto; }
.modal::-webkit-scrollbar { width: 4px; }
.modal::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 2px; }
.modal-close { position: absolute; top: 15px; right: 15px; width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05); color: var(--text-secondary); font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s; z-index: 10; }
.modal-close:hover { background: rgba(255,255,255,0.1); color: var(--text-primary); transform: rotate(90deg); }

.progress-steps { display: flex; align-items: center; justify-content: center; margin-bottom: 30px; }
.step { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.step-number { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; transition: all 0.4s; }
.step.active .step-number { background: var(--gradient-1); box-shadow: 0 0 20px rgba(108,92,231,0.4); }
.step.completed .step-number { background: var(--success); }
.step span { font-size: 0.72rem; color: var(--text-secondary); font-weight: 500; }
.step.active span { color: var(--primary-light); }
.step-line { width: 50px; height: 2px; background: rgba(255,255,255,0.1); margin: 0 8px; margin-bottom: 20px; transition: background 0.4s; }
.step-line.active { background: var(--primary); }

.modal-step { animation: fadeIn 0.4s ease; }
.modal-step.hidden { display: none; }
@keyframes fadeIn { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }
.modal-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.modal-title i { color: var(--primary); }

/* Summary */
.booking-summary { padding: 16px 20px; border-radius: 12px; margin-bottom: 22px; }
.summary-row { display: flex; gap: 20px; margin-bottom: 10px; flex-wrap: wrap; }
.summary-item { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; }
.summary-item i { color: var(--primary); font-size: 0.85rem; }
.summary-price-tag { display: flex; justify-content: space-between; align-items: center; padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.08); font-weight: 600; }
.summary-price-value { font-size: 1.2rem; color: var(--success); font-weight: 800; }

/* Form */
.booking-form { display: flex; flex-direction: column; gap: 15px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 0.82rem; color: var(--text-secondary); font-weight: 500; display: flex; align-items: center; gap: 5px; }
.form-group label i { color: var(--primary); font-size: 0.75rem; }
.form-group input, .form-group select { padding: 11px 14px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; color: var(--text-primary); font-family: 'Inter'; font-size: 0.92rem; outline: none; transition: all 0.3s; }
.form-group input:focus, .form-group select:focus { border-color: var(--primary); box-shadow: 0 0 15px rgba(108,92,231,0.15); background: rgba(255,255,255,0.1); }
.form-group input::placeholder { color: rgba(255,255,255,0.3); }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a29bfe' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }
.form-group select option { background: var(--dark-light); color: var(--text-primary); }
.input-hint { font-size: 0.72rem; color: rgba(255,255,255,0.3); margin-top: 2px; }

.next-button { padding: 13px 28px; background: var(--gradient-1); color: white; border: none; border-radius: 14px; font-family: 'Inter'; font-size: 0.95rem; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: all 0.3s; margin-top: 3px; }
.next-button:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(108,92,231,0.3); }

/* ===== PAYMENT STEP ===== */
.payment-info { padding: 18px; margin-bottom: 18px; }
.payment-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.payment-header h3 { font-size: 0.95rem; font-weight: 600; color: var(--primary-light); }
.payment-badge { padding: 3px 10px; background: rgba(0,184,148,0.15); color: var(--success); border-radius: 6px; font-size: 0.7rem; font-weight: 700; }
.payment-row { display: flex; justify-content: space-between; padding: 7px 0; font-size: 0.88rem; color: var(--text-secondary); }
.payment-row.total { font-weight: 700; font-size: 1.05rem; color: var(--text-primary); }
.total-amount { color: var(--success)!important; }
.payment-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 6px 0; }

/* Payment Methods */
.payment-methods { margin-bottom: 18px; }
.methods-title { font-size: 0.95rem; font-weight: 600; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.methods-title i { color: var(--primary); }
.method-cards { display: flex; gap: 10px; }
.method-card { flex: 1; padding: 14px 10px; border-radius: 14px; background: rgba(255,255,255,0.03); border: 2px solid rgba(255,255,255,0.08); cursor: pointer; transition: all 0.3s; display: flex; flex-direction: column; align-items: center; gap: 8px; position: relative; text-align: center; }
.method-card:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.06); }
.method-card.active { border-color: var(--primary); background: rgba(108,92,231,0.1); }
.method-card.active.easypaisa { border-color: var(--easypaisa); background: rgba(58,170,53,0.1); }
.method-card.active.jazzcash { border-color: var(--jazzcash); background: rgba(227,39,45,0.1); }
.method-card.active.bank { border-color: var(--bank-blue); background: rgba(26,82,118,0.1); }

.method-radio { width: 18px; height: 18px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.radio-dot { width: 8px; height: 8px; border-radius: 50%; background: transparent; transition: all 0.3s; }
.method-card.active .method-radio { border-color: var(--primary); }
.method-card.active .radio-dot { background: var(--primary); }
.method-card.active.easypaisa .method-radio { border-color: var(--easypaisa); }
.method-card.active.easypaisa .radio-dot { background: var(--easypaisa); }
.method-card.active.jazzcash .method-radio { border-color: var(--jazzcash); }
.method-card.active.jazzcash .radio-dot { background: var(--jazzcash); }
.method-card.active.bank .method-radio { border-color: var(--bank-blue); }
.method-card.active.bank .radio-dot { background: var(--bank-blue); }

.method-logo { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.ep-logo { background: rgba(58,170,53,0.15); color: var(--easypaisa); }
.jc-logo { background: rgba(227,39,45,0.15); color: var(--jazzcash); }
.bk-logo { background: rgba(26,82,118,0.15); color: var(--bank-blue); }
.method-name { font-weight: 600; font-size: 0.82rem; }
.method-desc { font-size: 0.68rem; color: var(--text-secondary); }
.method-info { display: flex; flex-direction: column; }
.method-check { display: none; position: absolute; top: 8px; right: 8px; width: 20px; height: 20px; border-radius: 50%; background: var(--success); color: white; font-size: 0.6rem; align-items: center; justify-content: center; }
.method-card.active .method-check { display: flex; }

/* Payment Details Section */
.payment-details-section { padding: 20px; margin-bottom: 18px; }
.payment-method-details { animation: fadeIn 0.4s ease; }
.account-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.account-logo-big { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: white; flex-shrink: 0; }
.ep-bg { background: var(--gradient-ep); }
.jc-bg { background: var(--gradient-jc); }
.bk-bg { background: var(--gradient-bk); }
.account-header h3 { font-size: 1rem; font-weight: 600; }
.account-header p { font-size: 0.78rem; color: var(--text-secondary); }

.account-details { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.account-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 12px; border-radius: 8px; font-size: 0.85rem; }
.highlight-row { background: rgba(255,255,255,0.05); }
.account-label { color: var(--text-secondary); }
.account-value { font-weight: 500; }
.account-value.copyable { cursor: pointer; display: flex; align-items: center; gap: 6px; color: var(--primary-light); transition: color 0.3s; }
.account-value.copyable:hover { color: var(--secondary); }
.account-value.copyable i { font-size: 0.7rem; }
.amount-highlight { color: var(--success)!important; font-weight: 700!important; font-size: 1rem!important; }

.payment-steps { background: rgba(255,255,255,0.03); border-radius: 10px; padding: 14px; }
.payment-steps h4 { font-size: 0.85rem; font-weight: 600; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.payment-steps h4 i { color: var(--primary); font-size: 0.8rem; }
.payment-steps ol { padding-left: 20px; display: flex; flex-direction: column; gap: 6px; }
.payment-steps li { font-size: 0.8rem; color: var(--text-secondary); }
.payment-steps li strong { color: var(--text-primary); }

/* Transaction ID Section */
.transaction-section { margin-bottom: 18px; display: flex; flex-direction: column; gap: 12px; }

/* Screenshot */
.screenshot-section { padding: 16px; margin-bottom: 18px; cursor: pointer; transition: all 0.3s; text-align: center; }
.screenshot-section:hover { border-color: rgba(108,92,231,0.3); }
.screenshot-label { cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.screenshot-label i { font-size: 1.5rem; color: var(--primary); }
.screenshot-label span { font-size: 0.88rem; font-weight: 500; }
.screenshot-label p { font-size: 0.72rem; color: var(--text-secondary); }
.screenshot-input { display: none; }
.screenshot-preview { position: relative; margin-top: 10px; display: inline-block; }
.screenshot-preview img { max-width: 200px; max-height: 150px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); }
.remove-screenshot { position: absolute; top: -8px; right: -8px; width: 24px; height: 24px; border-radius: 50%; background: var(--danger); color: white; border: none; font-size: 0.7rem; cursor: pointer; display: flex; align-items: center; justify-content: center; }

.button-group { display: flex; gap: 10px; }
.back-button { flex: 1; padding: 13px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); color: var(--text-secondary); border-radius: 12px; font-family: 'Inter'; font-size: 0.92rem; font-weight: 500; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.3s; }
.back-button:hover { background: rgba(255,255,255,0.12); color: var(--text-primary); }
.pay-button { flex: 2; padding: 13px; background: var(--gradient-ep); color: white; border: none; border-radius: 12px; font-family: 'Inter'; font-size: 0.95rem; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.3s; }
.pay-button:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(58,170,53,0.3); }
.pay-button:disabled { opacity: 0.6; cursor: not-allowed; transform: none!important; box-shadow: none!important; }
.spinner { width: 20px; height: 20px; border: 3px solid rgba(255,255,255,0.3); border-top: 3px solid white; border-radius: 50%; animation: spin 0.8s linear infinite; }
.hidden { display: none!important; }

/* ===== RECEIPT ===== */
.confirmation-content { text-align: center; }
.success-animation { margin-bottom: 18px; position: relative; }
.checkmark-circle { width: 75px; height: 75px; border-radius: 50%; background: var(--gradient-2); display: flex; align-items: center; justify-content: center; margin: 0 auto; font-size: 1.8rem; animation: scaleIn 0.5s cubic-bezier(0.16,1,0.3,1); box-shadow: 0 0 30px rgba(0,206,201,0.4); }
@keyframes scaleIn { from{transform:scale(0)} to{transform:scale(1)} }
.confirmation-title { font-size: 1.5rem; font-weight: 800; margin-bottom: 4px; }
.confirmation-subtitle { color: var(--text-secondary); margin-bottom: 20px; font-size: 0.95rem; }

.receipt { text-align: left; padding: 22px; margin-bottom: 18px; border-radius: 16px; }
.receipt-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.receipt-logo { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 1.05rem; }
.receipt-logo i { color: var(--primary); }
.receipt-badge { padding: 4px 12px; background: rgba(0,184,148,0.2); color: var(--success); border-radius: 20px; font-size: 0.68rem; font-weight: 700; letter-spacing: 1px; }
.receipt-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 12px 0; position: relative; }
.receipt-divider::before,.receipt-divider::after { content:''; position: absolute; top: -6px; width: 12px; height: 12px; background: var(--dark); border-radius: 50%; }
.receipt-divider::before { left: -28px; }
.receipt-divider::after { right: -28px; }
.receipt-id { text-align: center; margin-bottom: 12px; }
.receipt-id .label { display: block; font-size: 0.72rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.receipt-id .value { font-size: 1.15rem; font-weight: 800; color: var(--primary-light); font-family: monospace; letter-spacing: 2px; }
.receipt-details { display: flex; flex-direction: column; gap: 8px; }
.receipt-row { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; }
.receipt-row i { color: var(--primary); width: 14px; text-align: center; font-size: 0.75rem; }
.receipt-row .label { color: var(--text-secondary); min-width: 55px; }
.receipt-row .value { color: var(--text-primary); font-weight: 500; margin-left: auto; text-align: right; max-width: 200px; overflow: hidden; text-overflow: ellipsis; }
.receipt-total { display: flex; justify-content: space-between; font-size: 1.1rem; font-weight: 700; }
.receipt-total span:last-child { color: var(--success); }
.receipt-footer { text-align: center; margin-top: 12px; }
.receipt-footer p { font-size: 0.78rem; color: var(--text-secondary); margin-top: 6px; }
.receipt-time-stamp { font-size: 0.68rem!important; color: rgba(255,255,255,0.3)!important; }
.qr-placeholder { width: 90px; height: 90px; margin: 0 auto; background: white; border-radius: 8px; display: flex; align-items: center; justify-content: center; padding: 6px; }
.qr-placeholder canvas { width: 100%!important; height: 100%!important; }

.confetti { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; }
.confetti-piece { position: absolute; width: 8px; height: 8px; border-radius: 2px; animation: confettiFall 1.5s ease-out forwards; }
@keyframes confettiFall { 0%{transform:translate(0,0) rotate(0);opacity:1} 100%{transform:translate(var(--x),var(--y)) rotate(720deg);opacity:0} }

.confirmation-actions { display: flex; gap: 10px; }
.download-button,.share-button { flex: 1; padding: 11px; color: white; border: none; border-radius: 12px; font-family: 'Inter'; font-size: 0.85rem; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 6px; transition: all 0.3s; }
.download-button { background: var(--gradient-1); }
.share-button { background: var(--gradient-ep); }
.download-button:hover,.share-button:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
.done-button { flex: 1; padding: 11px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); color: var(--text-primary); border-radius: 12px; font-family: 'Inter'; font-size: 0.85rem; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 6px; transition: all 0.3s; }
.done-button:hover { background: rgba(255,255,255,0.12); }

/* ===== TOAST ===== */
.toast { position: fixed; bottom: 30px; right: 30px; display: flex; align-items: center; gap: 10px; padding: 12px 20px; background: rgba(10,10,26,0.95); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; box-shadow: 0 10px 40px rgba(0,0,0,0.5); transform: translateY(100px); opacity: 0; transition: all 0.4s cubic-bezier(0.16,1,0.3,1); z-index: 2000; max-width: 380px; }
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-color: rgba(0,184,148,0.3); }
.toast.error { border-color: rgba(225,112,85,0.3); }
.toast-icon { font-size: 1.1rem; }
.toast.success .toast-icon { color: var(--success); }
.toast.error .toast-icon { color: var(--danger); }
.toast-message { font-size: 0.85rem; font-weight: 500; flex: 1; }
.toast-close { background: none; border: none; color: var(--text-secondary); cursor: pointer; padding: 4px; font-size: 0.85rem; }

/* ===== FOOTER ===== */
.footer { margin-top: 60px; padding: 40px 60px; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-brand { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.footer-brand i { color: var(--primary); }
.footer-content p { color: var(--text-secondary); font-size: 0.88rem; }
.footer-payment-methods { display: flex; justify-content: center; align-items: center; gap: 10px; margin: 15px 0; flex-wrap: wrap; }
.footer-payment-methods span { color: var(--text-secondary); font-size: 0.82rem; }
.footer-method { padding: 4px 12px; border-radius: 6px; font-size: 0.75rem; font-weight: 600; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }
.footer-info { display: flex; justify-content: center; gap: 30px; margin: 15px 0; flex-wrap: wrap; }
.footer-info-item { display: flex; align-items: center; gap: 6px; color: var(--text-secondary); font-size: 0.85rem; }
.footer-info-item i { color: var(--primary); font-size: 0.8rem; }
.footer-links { display: flex; justify-content: center; gap: 15px; margin: 15px 0; }
.footer-links a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: var(--text-secondary); text-decoration: none; transition: all 0.3s; }
.footer-links a:hover { background: var(--primary); color: white; transform: translateY(-3px); }
.copyright { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero { flex-direction: column; padding: 100px 20px 60px; text-align: center; }
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { margin: 0 auto 20px; }
    .hero-stats { justify-content: center; }
    .hero-payment-methods { justify-content: center; }
    .hero-image { display: none; }
    .slots-section,.about-section { padding: 60px 20px; }
    .slots-grid { grid-template-columns: 1fr; }
    .navbar { padding: 12px 20px; }
    .nav-links { gap: 15px; }
    .nav-currency { display: none; }
    .modal { padding: 22px; margin: 10px; }
    .form-row { grid-template-columns: 1fr; }
    .method-cards { flex-direction: column; }
    .summary-row { flex-direction: column; gap: 8px; }
    .button-group,.confirmation-actions { flex-direction: column; }
    .date-picker-container { flex-direction: column; text-align: center; }
    .section-title { font-size: 2rem; }
    .about-content { padding: 25px 18px; }
    .footer { padding: 30px 20px; }
    .footer-info { flex-direction: column; gap: 10px; align-items: center; }
    .progress-steps { transform: scale(0.85); }
    .price-comparison { padding: 20px; }
    .bar-label { min-width: 120px; font-size: 0.75rem; }
    .account-row { flex-direction: column; gap: 2px; align-items: flex-start; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .slot-card { padding: 20px; }
    .slot-details { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; }
}
/* ===== CRICKET FIELD GRAPHIC ===== */
.cricket-field {
    width: 400px;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fieldGlow 3s ease-in-out infinite;
}
@keyframes fieldGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(108, 92, 231, 0.2)); }
    50% { filter: drop-shadow(0 0 40px rgba(108, 92, 231, 0.5)); }
}
.cricket-boundary {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid var(--primary);
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(0, 184, 148, 0.08), rgba(108, 92, 231, 0.05));
    box-shadow: inset 0 0 30px rgba(108, 92, 231, 0.1);
}
.cricket-inner-circle {
    position: absolute;
    width: 60%;
    height: 60%;
    border: 2px dashed var(--primary-light);
    border-radius: 50%;
    opacity: 0.6;
}
.cricket-pitch {
    position: absolute;
    width: 14%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(243, 156, 18, 0.4), rgba(243, 156, 18, 0.5), rgba(243, 156, 18, 0.4));
    border: 2px solid rgba(243, 156, 18, 0.7);
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(243, 156, 18, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}
.cricket-crease-top, .cricket-crease-bottom {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.7);
}
.cricket-stumps { display: flex; gap: 3px; align-items: flex-end; }
.cricket-stumps span {
    width: 3px;
    height: 14px;
    background: linear-gradient(to bottom, #fff, #d4a559);
    border-radius: 1px 1px 0 0;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.6);
}
.cricket-stumps-top { margin-top: -6px; }
.cricket-stumps-bottom { margin-bottom: -6px; transform: rotate(180deg); }
.cricket-ball {
    position: absolute;
    width: 16px;
    height: 16px;
    background: radial-gradient(circle at 30% 30%, #ff6b6b, #c0392b);
    border-radius: 50%;
    box-shadow: inset -2px -2px 4px rgba(0, 0, 0, 0.3), 0 0 15px rgba(231, 76, 60, 0.6);
    animation: ballOrbit 8s linear infinite;
}
.cricket-ball::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%);
}
@keyframes ballOrbit {
    0% { transform: rotate(0deg) translateX(150px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(150px) rotate(-360deg); }
}
.brand-emoji { font-size: 1.8rem; display: inline-block; }
.footer-emoji, .receipt-emoji { font-size: 1.3rem; display: inline-block; }
.receipt-emoji { font-size: 1.1rem; }
@media (max-width: 768px) {
    .cricket-field { width: 300px; height: 300px; }
    @keyframes ballOrbit {
        0% { transform: rotate(0deg) translateX(115px) rotate(0deg); }
        100% { transform: rotate(360deg) translateX(115px) rotate(-360deg); }
    }
}
