/* 
 * Punjab Lottery King - Official Punjab State Lotteries Red & Gold Theme
 * Based on authentic Punjab State Lotteries palette:
 * Vibrant Punjab Red (#e52e39 / #dc2626), Golden Yellow (#fbbf24 / #ffd000), Mint Green (#22c55e), White & Midnight Slate
 */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

:root {
    /* Brand Colors from Punjab State Lotteries */
    --brand-red: #e32636;
    --brand-red-dark: #b91c1c;
    --brand-red-light: #ff4d5a;
    --brand-red-gradient: linear-gradient(135deg, #f03a47 0%, #d81b2a 50%, #b3101e 100%);
    --brand-crimson-deep: #7f1d1d;

    --gold-primary: #f59e0b;
    --gold-secondary: #d97706;
    --gold-gradient: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);

    --punjabi-green: #16a34a;
    --punjabi-green-light: #22c55e;

    /* Warm Ivory / Royal Soft Cream Light Palette */
    --bg-page: #fdfbf7;
    --card-bg: #ffffff;
    --card-border: #f1e4db;
    --surface-light: #fbf5ef;
    --input-bg: #ffffff;
    --border-subtle: #e2e8f0;

    --text-white: #ffffff;
    --text-main: #334155;
    --text-muted: #64748b;
    --text-dark: #0f172a;

    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --border-radius-lg: 16px;
    --border-radius-md: 10px;
    --transition: all 0.22s ease-in-out;
}

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

html {
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-page);
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.25;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   TOP TICKER BAR
   ========================================= */
.top-ticker {
    background: #ffd000;
    color: #991b1b;
    font-size: 0.85rem;
    font-weight: 800;
    padding: 6px 0;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 2px solid #b91c1c;
}

.ticker-wrapper {
    display: flex;
    animation: tickerAnim 30s linear infinite;
    width: max-content;
}

@media (max-width: 768px) {
    .ticker-wrapper {
        animation-duration: 16s;
    }
}

.ticker-content {
    display: inline-block;
    text-transform: uppercase;
}

@keyframes tickerAnim {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =========================================
   HEADER & OFFICIAL PB LOGO
   ========================================= */
.main-header {
    background: #e32636;
    border-bottom: 2px solid var(--gold-primary);
    box-shadow: none !important;
    filter: none !important;
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 10000 !important;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    box-shadow: none !important;
}

/* Official PB State Lotteries Logo Representation */
.pb-logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pb-mark {
    background: var(--gold-gradient);
    color: #991b1b;
    font-weight: 900;
    font-size: 1.45rem;
    letter-spacing: -0.05em;
    padding: 4px 10px;
    border-radius: 8px;
    box-shadow: none !important;
    filter: none !important;
    border: 2px solid #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.pb-title-block h1 {
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
}

.pb-title-block .punjabi-tagline {
    font-size: 0.82rem;
    color: #bbf7d0;
    font-weight: 700;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pb-title-block .punjabi-tagline span {
    color: var(--gold-secondary);
    font-size: 0.72rem;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-menu a {
    font-weight: 700;
    font-size: 0.92rem;
    color: #ffe4e6;
    padding: 6px 0;
    position: relative;
    box-shadow: none !important;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold-primary);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-primary);
    border-radius: 2px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Premium Zero-Shadow Header Buy Button */
.header-buy-btn,
.header-buy-btn:hover,
.header-buy-btn:focus,
.header-buy-btn:active {
    box-shadow: none !important;
    filter: none !important;
    text-shadow: none !important;
}

.header-buy-btn {
    background: #ffd000 !important;
    color: #7f1d1d !important;
    font-weight: 800;
    border: 1.5px solid #ffffff !important;
    border-radius: 8px;
    padding: 8px 18px !important;
    font-size: 0.84rem !important;
    letter-spacing: 0.03em;
    transition: background 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
    box-shadow: none !important;
    filter: none !important;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.header-buy-btn:hover {
    background: #ffdb33 !important;
    color: #5c0f13 !important;
    border-color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: none !important;
    filter: none !important;
}

/* =========================================
   LUXURY SHINING / SHIMMER ANIMATION
   ========================================= */
.btn-shine::before,
.header-buy-btn.btn-shine::before,
.dropdown-buy-btn.btn-shine::before,
.scheme-card-footer .btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -130%;
    width: 65%;
    height: 200%;
    background: linear-gradient(115deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.25) 25%,
            rgba(255, 255, 255, 0.85) 50%,
            rgba(255, 255, 255, 0.25) 75%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(25deg);
    animation: btnShineSweep 2.6s cubic-bezier(0.4, 0, 0.2, 1) infinite !important;
    pointer-events: none;
    z-index: 2;
}

.btn-shine:hover::before,
.header-buy-btn.btn-shine:hover::before,
.dropdown-buy-btn.btn-shine:hover::before,
.scheme-card-footer .btn:hover::before {
    animation-duration: 1.5s !important;
}

@keyframes btnShineSweep {
    0% {
        left: -130%;
    }

    35%,
    100% {
        left: 220%;
    }
}

/* =========================================
   CLEAN, SIMPLE & STYLISH MOBILE HAMBURGER & DROPDOWN MENU
   ========================================= */
.mobile-toggle,
.mobile-toggle:focus,
.mobile-toggle:focus-visible {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 40px;
    height: 40px;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    cursor: pointer;
    gap: 5.5px;
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-shadow: none !important;
    filter: none !important;
    outline: none !important;
    animation: none !important;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    touch-action: manipulation;
    z-index: 10002;
}

.mobile-toggle:hover {
    background: transparent !important;
    border: none !important;
    opacity: 0.9;
}

.mobile-toggle.open {
    background: transparent !important;
    border: none !important;
}

.mobile-toggle .hamburger-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.24s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease, background 0.2s ease;
    animation: none !important;
    pointer-events: none;
}

.mobile-toggle:hover .hamburger-bar {
    background: #fbbf24;
}

.mobile-toggle.open .hamburger-bar {
    background: #fbbf24;
}

.mobile-toggle.open .hamburger-bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.mobile-toggle.open .hamburger-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle.open .hamburger-bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* =========================================
   CLEAN, SIMPLE & PREMIUM MOBILE DROPDOWN MENU
   (No heavy background, No borders, Elegant HR lines)
   ========================================= */
.mobile-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #b91c1c;
    border: none !important;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
    z-index: 10001;
    animation: none !important;
}

.mobile-dropdown-menu.open {
    display: block;
}

.mobile-dropdown-inner {
    padding: 6px 18px 18px;
}

.mobile-nav-link {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 13px 4px !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    text-decoration: none !important;
    color: #ffffff !important;
    transition: color 0.18s ease, padding-left 0.18s ease !important;
    -webkit-tap-highlight-color: transparent;
    animation: none !important;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    background: transparent !important;
    color: var(--gold-primary) !important;
    padding-left: 6px !important;
}

.mobile-nav-link.active {
    background: transparent !important;
    color: var(--gold-primary) !important;
}

.mobile-nav-link .dropdown-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fbbf24;
    background: transparent !important;
    border: none !important;
    flex-shrink: 0;
}

.mobile-nav-link.active .dropdown-icon {
    color: var(--gold-primary);
}

.dropdown-title {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.98rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.01em;
    flex: 1;
}

.mobile-nav-link:hover .dropdown-title,
.mobile-nav-link.active .dropdown-title {
    color: var(--gold-primary);
}

.dropdown-arrow {
    color: rgba(255, 255, 255, 0.42);
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    transition: transform 0.2s ease, color 0.2s ease;
}

.mobile-nav-link:hover .dropdown-arrow,
.mobile-nav-link.active .dropdown-arrow {
    color: var(--gold-primary);
    transform: translateX(3px);
}

/* Elegant HR separator lines between nav items */
.dropdown-hr {
    border: none !important;
    height: 1px !important;
    background: rgba(255, 255, 255, 0.12) !important;
    margin: 0 !important;
    width: 100% !important;
    display: block !important;
}

.mobile-dropdown-footer {
    padding-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dropdown-buy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 18px;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.94rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: center;
    border-radius: 10px;
    background: var(--gold-gradient) !important;
    color: #540e0e !important;
    border: none !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
    position: relative;
    overflow: hidden;
}

.dropdown-call-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.88);
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    padding: 6px 12px;
    text-align: center;
    transition: color 0.2s ease;
}

.dropdown-call-link:hover {
    color: var(--gold-primary);
}

/* =========================================
   BUTTONS & BADGES
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 24px;
    font-size: 0.92rem;
    font-weight: 800;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.btn-gold {
    background: var(--gold-gradient);
    color: #7f1d1d;
    box-shadow: 0 4px 14px rgba(255, 199, 44, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 199, 44, 0.6);
    filter: brightness(1.05);
}

.btn-red {
    background: var(--brand-red-gradient);
    color: #ffffff;
    border: 1px solid var(--gold-primary);
    box-shadow: 0 4px 14px rgba(227, 38, 54, 0.4);
}

.btn-red:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.btn-outline {
    background: #ffffff;
    color: var(--brand-red);
    border: 2px solid var(--brand-red);
    box-shadow: 0 2px 6px rgba(227, 38, 54, 0.08);
}

.btn-outline:hover {
    border-color: var(--brand-red-dark);
    color: #ffffff;
    background: var(--brand-red-gradient);
    box-shadow: 0 4px 14px rgba(227, 38, 54, 0.25);
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.badge-bumper {
    background: var(--brand-red-gradient);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-gold {
    background: var(--gold-gradient);
    color: #7f1d1d;
}

.badge-green {
    background: #ecfdf5;
    color: #166534;
    border: 1px solid #86efac;
}

/* =========================================
   PREMIUM AUTO-SLIDING HERO SHOWCASE CAROUSEL
   ========================================= */
/* =========================================
   PREMIUM AUTO-SLIDING HERO SHOWCASE CAROUSEL
   ========================================= */
.hero-slider-section {
    position: relative;
    background: radial-gradient(circle at 50% 20%, #fff1f2 0%, #fffbeb 50%, #fdfbf7 100%);
    border-bottom: 2px solid rgba(245, 158, 11, 0.35);
    overflow: hidden;
    width: 100%;
}

.hero-slides-wrapper {
    position: relative;
    width: 100%;
    min-height: 540px;
    display: flex;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.97) translateY(10px);
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    padding: 50px 0 60px;
    pointer-events: none;
    z-index: 1;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
    pointer-events: auto;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.slide-badge-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.slide-badge {
    font-size: 0.82rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 8px;
}

.slide-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.76rem;
    font-weight: 800;
    color: #166534;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: #ecfdf5;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid #86efac;
}

.live-pulse-dot {
    width: 8px;
    height: 8px;
    background: #16a34a;
    border-radius: 50%;
    box-shadow: 0 0 10px #16a34a;
    animation: livePulse 1.8s infinite;
}

@keyframes livePulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(22, 163, 74, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0);
    }
}

.slide-title {
    font-size: 2.85rem;
    line-height: 1.16;
    margin-bottom: 16px;
    color: #0f172a;
    font-weight: 900;
    letter-spacing: -0.01em;
}

.slide-title .highlight {
    color: var(--brand-red);
    background: linear-gradient(135deg, #e32636 0%, #b91c1c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

.slide-desc {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 25px;
    line-height: 1.65;
    max-width: 600px;
}

.hero-btn-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-primary-btn {
    padding: 13px 28px;
    font-size: 0.95rem;
}

.hero-secondary-btn {
    padding: 13px 24px;
    font-size: 0.95rem;
    background: #ffffff;
    color: #0f172a;
    border: 2px solid #cbd5e1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hero-secondary-btn:hover {
    background: #ffffff;
    border-color: var(--brand-red);
    color: var(--brand-red);
    box-shadow: 0 4px 14px rgba(227, 38, 54, 0.15);
    transform: translateY(-2px);
}

.hero-features {
    display: flex;
    gap: 22px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.86rem;
    color: #334155;
    font-weight: 600;
}

.hero-feature-item span {
    color: var(--punjabi-green);
    display: inline-flex;
    align-items: center;
}

/* Featured Hero Scheme Card */
.featured-lottery-card {
    background: #ffffff;
    border: 2px solid var(--gold-primary);
    border-radius: var(--border-radius-lg);
    padding: 28px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(185, 28, 28, 0.08);
}

.slide-card-draw-date {
    color: #64748b;
    font-size: 0.82rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}

.slide-card-title {
    font-size: 1.55rem;
    margin-bottom: 5px;
    color: #0f172a;
    font-weight: 800;
}

.slide-card-tagline {
    color: #b45309;
    font-size: 0.9rem;
    font-weight: 600;
}

.slide-card-price {
    color: #b91c1c;
    font-size: 1.15rem;
    font-weight: 900;
}

.slide-card-action-btn {
    width: 100%;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    font-size: 0.92rem;
}

/* Slider Controls: Arrows & Indicator Dots */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid var(--gold-primary);
    color: #7f1d1d;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 15;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    outline: none !important;
}

.slider-arrow-prev {
    left: 20px;
}

.slider-arrow-next {
    right: 20px;
}

.slider-arrow:hover,
.slider-arrow:active {
    background: var(--gold-primary);
    color: #7f1d1d;
    border-color: #ffffff;
    transform: translateY(-50%) scale(1.08);
}

.slider-indicators-wrap {
    position: absolute;
    bottom: 16px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 15;
    pointer-events: none;
}

.slider-dots {
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: auto;
    background: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.slider-dot-btn {
    width: 26px;
    height: 6px;
    border-radius: 4px;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none !important;
}

.slider-dot-btn.active {
    width: 52px;
    background: #fef3c7;
}

.slider-dot-progress {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0%;
    background: var(--gold-gradient);
    border-radius: 4px;
}

.slider-dot-btn.active .slider-dot-progress {
    width: 100%;
    transition: width 5s linear;
}

.featured-lottery-card::after {
    content: 'PUNJAB STATE LOTTERIES';
    position: absolute;
    top: 14px;
    right: -40px;
    background: var(--gold-gradient);
    color: #7f1d1d;
    font-size: 0.65rem;
    font-weight: 900;
    padding: 4px 45px;
    transform: rotate(45deg);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.prize-callout {
    margin: 18px 0;
    text-align: center;
    background: #fff1f2;
    border: 2px dashed #fca5a5;
    border-radius: 12px;
    padding: 18px;
}

.prize-callout span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #b91c1c;
    font-weight: 800;
}

.prize-callout .big-prize {
    font-size: 2.8rem;
    font-weight: 900;
    color: #dc2626;
    line-height: 1.1;
    margin-top: 4px;
}

.draw-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 22px;
    background: #fbf8f2;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #f1e6da;
}

.draw-meta-item small {
    display: block;
    color: #64748b;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
}

.draw-meta-item strong {
    font-size: 0.95rem;
    color: #0f172a;
}

/* =========================================
   SCHEMES GRID
   ========================================= */
.section-header {
    text-align: center;
    margin: 50px 0 35px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 8px;
    color: #0f172a;
}

.section-header p {
    color: #64748b;
    max-width: 620px;
    margin: 0 auto;
}

/* =========================================
   ACTIVE SCHEMES - 3 CARDS IN ONE LINE
   ========================================= */
.schemes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

@media (max-width: 1040px) {
    .schemes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 680px) {
    .schemes-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.scheme-card {
    background: #ffffff;
    border: 1px solid #fed7aa;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.scheme-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-red);
    box-shadow: 0 14px 30px rgba(227, 38, 54, 0.14);
}

.scheme-header {
    background: linear-gradient(135deg, #fff1f2 0%, #fef2f2 100%);
    padding: 18px 20px;
    border-bottom: 1px solid #fed7aa;
}

.scheme-badge-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.scheme-title {
    font-size: 1.18rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: #0f172a;
    line-height: 1.35;
    min-height: 2.7em;
}

.scheme-tagline {
    font-size: 0.82rem;
    color: #b45309;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.scheme-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.scheme-first-prize {
    text-align: center;
    margin-bottom: 16px;
    padding: 12px;
    background: #fffbeb;
    border: 1px dashed #fcd34d;
    border-radius: 10px;
}

.scheme-first-prize small {
    display: block;
    color: #92400e;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.scheme-first-prize strong {
    font-size: 1.7rem;
    color: #b91c1c;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.prize-list {
    list-style: none;
    margin-bottom: 14px;
    border-top: 1px solid #f1f5f9;
    padding-top: 10px;
    flex: 1;
}

.prize-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.84rem;
    padding: 5px 0;
    color: #334155;
}

.prize-list li strong {
    color: #0f172a;
    font-weight: 700;
}

.scheme-desc-snippet {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.scheme-footer {
    padding: 14px 20px;
    background: #fbf8f2;
    border-top: 1px solid #f1e6da;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.ticket-price-box small {
    display: block;
    font-size: 0.72rem;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 600;
}

.ticket-price-box strong {
    font-size: 1.3rem;
    color: #0f172a;
}

/* =========================================
   FULL-WIDTH HERO BANNER PHOTO (PHOTO ONLY)
   ========================================= */
.hero-fullwidth-banner-section {
    width: 100%;
    overflow: hidden;
    background: #111827;
    border-bottom: 3px solid var(--gold-primary);
    box-shadow: none !important;
}

.hero-fullwidth-banner-link {
    display: block;
    width: 100%;
    cursor: pointer;
    line-height: 0;
    transition: opacity 0.2s ease;
}

.hero-fullwidth-banner-link:hover {
    opacity: 0.96;
}

.hero-fullwidth-banner-img {
    width: 100%;
    height: auto;
    max-height: 560px;
    object-fit: cover;
    display: block;
    border: none;
    box-shadow: none !important;
}

@media (max-width: 768px) {
    .hero-fullwidth-banner-img {
        min-height: 260px;
        max-height: 420px;
    }
}

@media (max-width: 480px) {
    .hero-fullwidth-banner-img {
        min-height: 240px;
        max-height: 360px;
    }
}

/* ======================================================================
   HOMEPAGE FULL-WIDTH MULTI-BANNER SLIDER
   ====================================================================== */
.hero-multi-slider {
    position: relative;
    overflow: hidden;
    line-height: 0;
    width: 100%;
    background: #0e0507;
}

.hero-slider-track {
    position: relative;
    width: 100%;
}

.hero-slider-slide {
    display: none;
    width: 100%;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slider-slide.active {
    display: block;
    opacity: 1;
}

.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(14, 5, 7, 0.72);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(245, 183, 0, 0.4);
    color: var(--plk-gold, #ffc72c);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.25s ease;
}

.hero-slider-arrow:hover {
    background: var(--plk-gold, #ffc72c);
    color: #0d0204;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 4px 20px rgba(245, 183, 0, 0.4);
}

.hero-slider-arrow.prev {
    left: 16px;
}

.hero-slider-arrow.next {
    right: 16px;
}

.hero-slider-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-slider-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 1px solid rgba(245, 183, 0, 0.6);
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-slider-dot.active {
    width: 24px;
    border-radius: 6px;
    background: var(--plk-gold, #ffc72c);
    border-color: var(--plk-gold, #ffc72c);
}

@media (max-width: 600px) {
    .hero-slider-arrow {
        width: 36px;
        height: 36px;
    }

    .hero-slider-arrow.prev {
        left: 8px;
    }

    .hero-slider-arrow.next {
        right: 8px;
    }

    .hero-slider-dots {
        bottom: 10px;
        padding: 4px 10px;
        gap: 6px;
    }

    .hero-slider-dot {
        width: 7px;
        height: 7px;
    }

    .hero-slider-dot.active {
        width: 18px;
    }
}

/* =========================================
   CLEAN TICKET BOOKING PAGE
   ========================================= */
.clean-booking-wrapper {
    max-width: 860px;
    margin: 40px auto 80px;
    padding: 0 20px;
}

.clean-scheme-banner {
    background: linear-gradient(135deg, #e32636 0%, #a81824 100%);
    border-radius: var(--border-radius-lg);
    padding: 24px 30px;
    margin-bottom: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    border: 2px solid var(--gold-primary);
    box-shadow: 0 8px 25px rgba(227, 38, 54, 0.35);
}

.clean-scheme-banner h2 {
    font-size: 1.55rem;
    color: #ffffff;
    margin-bottom: 4px;
}

.clean-scheme-banner .scheme-prize-highlight {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--gold-primary);
    padding: 10px 20px;
    border-radius: 10px;
    text-align: right;
}

.clean-scheme-banner .scheme-prize-highlight small {
    display: block;
    color: var(--gold-secondary);
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
}

.clean-scheme-banner .scheme-prize-highlight strong {
    font-size: 1.5rem;
    color: #ffffff;
    font-family: var(--font-heading);
}

.clean-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
}

.clean-card-title {
    font-size: 1.35rem;
    margin-bottom: 6px;
    color: #0f172a;
}

.clean-card-sub {
    font-size: 0.88rem;
    color: #64748b;
    margin-bottom: 24px;
}

.form-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.form-card h3 {
    font-size: 1.35rem;
    margin-bottom: 6px;
    color: #0f172a;
}

.form-subtitle {
    font-size: 0.88rem;
    color: #64748b;
    margin-bottom: 22px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.86rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}

.form-group label span.required {
    color: #e32636;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: var(--border-radius-md);
    color: #0f172a;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--brand-red);
    box-shadow: 0 0 0 3px rgba(227, 38, 54, 0.14);
    background: #ffffff;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.pin-feedback {
    font-size: 0.82rem;
    margin-top: 5px;
    min-height: 18px;
    font-weight: 700;
}

.pin-feedback.loading {
    color: #2563eb;
}

.pin-feedback.success {
    color: #16a34a;
}

.pin-feedback.warning {
    color: #d97706;
}

.field-autofilled {
    border-color: #16a34a !important;
    background-color: #f0fdf4 !important;
}

/* Quantity Controls */
.quantity-control-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 12px 0 16px;
}

.qty-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius-md);
    background: #f1f5f9;
    border: 1.5px solid #cbd5e1;
    color: #0f172a;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.qty-btn:hover {
    background: var(--brand-red);
    border-color: var(--brand-red);
    color: white;
}

.qty-input {
    width: 80px;
    text-align: center;
    font-weight: 800;
    font-size: 1.2rem;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    color: #0f172a;
}

.ticket-pills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    max-height: 120px;
    overflow-y: auto;
}

.ticket-pill {
    background: #ffffff;
    border: 1.5px solid #f59e0b;
    color: #92400e;
    font-family: monospace;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(245, 158, 11, 0.1);
}

/* Clean Order Breakdown Bar */
.order-cost-bar {
    background: #fbf8f2;
    border: 1px solid #f1e6da;
    border-radius: 10px;
    padding: 16px 20px;
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-cost-bar span {
    color: #475569;
    font-size: 0.9rem;
    font-weight: 600;
}

.order-cost-bar strong {
    font-size: 1.45rem;
    color: #b91c1c;
    font-family: var(--font-heading);
}

/* =========================================
   PAYMENT SCREEN
   ========================================= */
.payment-wrapper {
    max-width: 620px;
    margin: 40px auto 80px;
}

.payment-card {
    background: #ffffff;
    border: 2px solid var(--brand-red);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    color: #0f172a;
}

.qr-box {
    background: white;
    padding: 14px;
    border-radius: 12px;
    display: inline-block;
    margin: 18px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.qr-box img {
    width: 210px;
    height: 210px;
}

.upi-details-pill {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    border-radius: 30px;
    padding: 8px 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: monospace;
    font-size: 0.95rem;
    color: #b91c1c;
    font-weight: 700;
    margin-bottom: 20px;
}

/* =========================================
   RECEIPT PRINTABLE
   ========================================= */
.receipt-wrapper {
    max-width: 800px;
    margin: 40px auto;
}

.ticket-receipt-card {
    background: #ffffff;
    color: #0f172a;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
    border: 3px solid var(--brand-red);
}

.ticket-receipt-header {
    background: linear-gradient(135deg, #e32636 0%, #991b1b 100%);
    color: white;
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 4px solid var(--gold-primary);
}

.ticket-receipt-header h2 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 2px;
}

.receipt-status-badge {
    background: var(--gold-primary);
    color: #7f1d1d;
    font-weight: 900;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.ticket-receipt-body {
    padding: 28px;
}

.receipt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.receipt-field small {
    display: block;
    color: #64748b;
    font-size: 0.78rem;
    text-transform: uppercase;
    font-weight: 700;
}

.receipt-field strong {
    font-size: 0.98rem;
    color: #0f172a;
}

.receipt-tickets-box {
    background: #fff1f2;
    border: 1px dashed #e32636;
    border-radius: 10px;
    padding: 18px;
    margin: 18px 0;
}

.receipt-barcode {
    text-align: center;
    margin: 22px 0 10px;
    font-family: monospace;
    letter-spacing: 0.3em;
    font-size: 1.35rem;
    font-weight: bold;
    color: #334155;
}

/* =========================================
   FOOTER (Deep Regal Maroon & Gold - Theme Aligned)
   ========================================= */
.main-footer {
    margin-top: auto;
    background: #2e0508;
    border-top: 3px solid var(--gold-primary);
    box-shadow: none !important;
    padding: 48px 0 26px;
    position: relative;
    color: #fce7ea;
}

.disclaimer-box {
    background: rgba(245, 158, 11, 0.09);
    border: 1px solid rgba(245, 158, 11, 0.35);
    border-left: 4px solid var(--gold-primary);
    border-radius: 8px;
    padding: 14px 18px;
    margin-bottom: 35px;
    font-size: 0.82rem;
    color: #fff1f2;
    line-height: 1.55;
    box-shadow: none !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.3fr;
    gap: 45px;
    margin-bottom: 35px;
}

.footer-col h3 {
    font-size: 1.12rem;
    margin-bottom: 16px;
    color: var(--gold-primary);
    position: relative;
    padding-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 800;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 38px;
    height: 3px;
    background: var(--gold-primary);
    border-radius: 2px;
}

.footer-col p {
    font-size: 0.88rem;
    color: #fecdd3;
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ffe4e6;
    font-size: 0.88rem;
    font-weight: 500;
    display: inline-block;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold-primary);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(245, 158, 11, 0.22);
    background: rgba(0, 0, 0, 0.35);
    padding: 18px 24px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: #fecdd3;
    flex-wrap: wrap;
    gap: 12px;
    box-shadow: none !important;
}

/* Trust Strip */
.trust-strip {
    background: linear-gradient(135deg, #080102, #1b0206);
    padding: 60px 0;
    border-top: 1px solid rgba(250, 204, 21, 0.15);
    border-bottom: 1px solid rgba(250, 204, 21, 0.15);
    margin: 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step-card {
    text-align: center;
    padding: 26px 20px;
    background: #ffffff;
    border-radius: var(--border-radius-md);
    border: 1px solid #ede2d5;
    box-shadow: 0 4px 16px rgba(180, 83, 9, 0.04);
}

.step-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: var(--gold-gradient);
    color: #7f1d1d;
    font-size: 1.4rem;
    font-weight: 900;
    border-radius: 50%;
    margin: 0 auto 14px;
}

.step-card h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: #0f172a;
}

.step-card p {
    font-size: 0.84rem;
    color: #475569;
}

/* Floating Calling Button with Flat Theme Styling (No Shadow) */
.floating-call-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    filter: none !important;
    box-shadow: none !important;
    transition: transform 0.25s ease;
}

.floating-call-btn:hover {
    transform: translateY(-2px);
}

.call-pulse-wave {
    display: none !important;
}

.call-btn-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--gold-gradient);
    border: 2px solid #ffffff;
    color: #7f1d1d;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none !important;
    flex-shrink: 0;
    animation: phoneShake 3.5s ease-in-out infinite;
}

@keyframes phoneShake {

    0%,
    80%,
    100% {
        transform: rotate(0deg);
    }

    85% {
        transform: rotate(-14deg);
    }

    90% {
        transform: rotate(14deg);
    }

    95% {
        transform: rotate(-8deg);
    }
}

.call-text-pill {
    background: #88131b;
    border: 1.5px solid var(--gold-primary);
    border-left: none;
    border-radius: 0 30px 30px 0;
    padding: 8px 18px 8px 14px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    margin-left: -8px;
    box-shadow: none !important;
}

.call-text-pill small {
    color: #ffd000;
    font-size: 0.68rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.05em;
    line-height: 1.1;
}

.call-text-pill strong {
    font-size: 0.88rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .nav-menu {
        display: none !important;
    }

    .mobile-toggle {
        display: flex;
    }

    .header-buy-btn {
        display: inline-flex !important;
        padding: 7px 13px !important;
        font-size: 0.78rem !important;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-slides-wrapper {
        min-height: auto;
    }

    .hero-slide {
        position: absolute;
        padding: 40px 0 60px;
    }

    .hero-slide.active {
        position: relative;
    }

    .slider-arrow {
        display: none;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none !important;
    }

    .mobile-toggle {
        display: flex;
    }

    .header-buy-btn {
        display: inline-flex !important;
        padding: 6px 11px !important;
        font-size: 0.74rem !important;
    }

    .container {
        padding: 0 14px;
        width: 100%;
        max-width: 100%;
    }

    .slide-title {
        font-size: 2.1rem;
    }

    .slide-desc {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .prize-callout .big-prize {
        font-size: 2.3rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .clean-scheme-banner {
        flex-direction: column;
        text-align: center;
    }

    .clean-scheme-banner .scheme-prize-highlight {
        text-align: center;
        width: 100%;
    }

    /* Compact Mobile Trust Bar */
    .trust-bar {
        padding: 10px 0;
        background: linear-gradient(135deg, #180508 0%, #260910 50%, #140406 100%) !important;
        border-top: 1px solid rgba(245, 158, 11, 0.35) !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.25) !important;
    }

    .trust-bar-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px 10px !important;
    }

    .trust-bar-item {
        gap: 8px !important;
        padding: 7px 10px !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid rgba(245, 158, 11, 0.22) !important;
        border-radius: 10px !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
    }

    .trust-bar-icon {
        width: 32px !important;
        height: 32px !important;
        flex: 0 0 32px !important;
        border-radius: 8px !important;
        color: #fbbf24 !important;
        background: linear-gradient(135deg, rgba(245, 158, 11, 0.22), rgba(245, 158, 11, 0.08)) !important;
        border: 1px solid rgba(245, 158, 11, 0.35) !important;
    }

    .trust-bar-icon svg {
        width: 16px !important;
        height: 16px !important;
    }

    .trust-bar-text {
        min-width: 0;
        flex: 1;
    }

    .trust-bar-item strong {
        color: #ffffff !important;
        font-size: 0.78rem !important;
        font-weight: 700 !important;
        line-height: 1.2 !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .trust-bar-item small {
        color: #cbd5e1 !important;
        font-size: 0.65rem !important;
        line-height: 1.2 !important;
        margin-top: 1px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@keyframes slideDownMenu {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .call-text-pill {
        display: none;
    }

    .floating-call-btn {
        bottom: 18px;
        right: 18px;
    }
}

@media print {
    body {
        background: #ffffff !important;
        color: #000000 !important;
    }

    .main-header,
    .main-footer,
    .top-ticker,
    .btn,
    .no-print {
        display: none !important;
    }

    .ticket-receipt-card {
        border: 2px solid #000 !important;
        box-shadow: none !important;
    }
}

/* ==========================================================================
   FRONTEND RASHI (ZODIAC) SELECTION SECTION (SPACIOUS & PREMIUM)
   ========================================================================== */
.booking-rashi-section {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #180509 0%, #260811 50%, #150307 100%);
    border: 1px solid rgba(245, 183, 0, 0.45);
    border-radius: 18px;
    padding: 24px 28px;
    box-shadow: none !important;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.booking-rashi-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #f5b700, #ffd34d, #f5b700, transparent);
}

.booking-rashi-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding-bottom: 0;
    border-bottom: none;
    text-align: center;
}

.booking-rashi-title-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.booking-rashi-icon {
    font-size: 1.5rem;
    line-height: 1;
    filter: drop-shadow(0 2px 6px rgba(245, 183, 0, 0.6));
}

.booking-rashi-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #f5b700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.25;
}

/* Spacious All-Rashi Grid */
.booking-rashi-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
}

.booking-rashi-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(10, 2, 4, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 10px 14px;
    cursor: pointer;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    color: #ffffff;
    text-align: left;
    box-sizing: border-box;
    width: 100%;
    user-select: none;
}

.booking-rashi-chip:hover {
    border-color: rgba(245, 183, 0, 0.65);
    background: rgba(245, 183, 0, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.booking-rashi-chip.is-active {
    border-color: #f5b700;
    background: linear-gradient(135deg, rgba(245, 183, 0, 0.28), rgba(217, 119, 6, 0.18));
    box-shadow: 0 4px 18px rgba(245, 183, 0, 0.3);
}

.br-chip-symbol {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(245, 183, 0, 0.16);
    color: #f5b700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    line-height: 1;
    flex-shrink: 0;
    border: 1px solid rgba(245, 183, 0, 0.3);
    transition: all 0.2s ease;
}

.booking-rashi-chip:hover .br-chip-symbol {
    transform: scale(1.08);
    border-color: #f5b700;
}

.booking-rashi-chip.is-active .br-chip-symbol {
    background: #f5b700;
    color: #1a070c;
    border-color: #f5b700;
}

.br-chip-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
}

.br-chip-hi {
    font-size: 0.95rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.br-chip-en {
    font-size: 0.74rem;
    color: #f5b700;
    font-weight: 600;
    margin-top: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Responsive Grid Breakpoints */
@media (max-width: 1024px) {
    .booking-rashi-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .booking-rashi-section {
        padding: 18px 18px;
        margin-bottom: 22px;
        border-radius: 14px;
    }

    .booking-rashi-header {
        margin-bottom: 16px;
        padding-bottom: 12px;
    }

    .booking-rashi-title {
        font-size: 0.94rem;
    }

    .booking-rashi-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .booking-rashi-chip {
        padding: 8px 10px;
        gap: 8px;
    }

    .br-chip-symbol {
        width: 30px;
        height: 30px;
        font-size: 1.15rem;
        border-radius: 8px;
    }

    .br-chip-hi {
        font-size: 0.86rem;
    }

    .br-chip-en {
        font-size: 0.68rem;
    }
}

@media (max-width: 480px) {
    .booking-rashi-section {
        padding: 16px 14px;
        margin-bottom: 18px;
    }

    .booking-rashi-header {
        margin-bottom: 16px;
        text-align: center;
    }

    .booking-rashi-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .booking-rashi-chip {
        padding: 8px 6px;
        gap: 6px;
    }

    .br-chip-symbol {
        width: 26px;
        height: 26px;
        font-size: 1rem;
    }

    .br-chip-hi {
        font-size: 0.8rem;
    }

    .br-chip-en {
        font-size: 0.64rem;
    }
}

@media (max-width: 360px) {
    .booking-rashi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}