/* ==========================================================================
   Rudrabhishek Puja Landing Page - Style System (Vanilla CSS)
   ========================================================================== */

/* --- CSS Variables / Design Tokens --- */
:root {
    --bg-dark: #0a0a09;
    --bg-semi: #131311;
    --bg-card: rgba(22, 22, 20, 0.75);
    
    --primary-saffron: #d45d25;
    --primary-hover: #b84c1b;
    --accent-gold: #d4af37;
    --accent-gold-light: #ffdf73;
    
    --text-light: #fcfbf7;
    --text-muted: #b9b8b0;
    --text-dark: #1a1a17;
    
    --border-gold: rgba(212, 175, 55, 0.2);
    --border-gold-hover: rgba(212, 175, 55, 0.5);
    --glow-gold: 0 0 15px rgba(212, 175, 55, 0.3);
    
    --font-heading-hi: 'Rozha One', 'Yatra One', serif;
    --font-body: 'Mukta', 'Martel', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Base Reset & Typography --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 16px;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(212, 93, 37, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 45%);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Custom Headings --- */
.font-traditional {
    font-family: var(--font-heading-hi);
    font-weight: normal;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-light);
    letter-spacing: 0.5px;
}

/* --- Utility Components --- */
.section-title-wrapper {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.2rem;
    font-family: var(--font-heading-hi);
    background: linear-gradient(135deg, var(--text-light) 30%, var(--accent-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 300;
}

.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 15px 0;
}

.gold-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    box-shadow: var(--glow-gold);
}

.gold-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--border-gold-hover);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), var(--glow-gold);
    transform: translateY(-4px);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-saffron) 0%, var(--primary-hover) 100%);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(212, 93, 37, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-hover) 0%, #a13d12 100%);
    box-shadow: 0 6px 20px rgba(212, 93, 37, 0.6);
    transform: scale(1.02);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--border-gold);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--accent-gold);
    color: var(--accent-gold-light);
    box-shadow: var(--glow-gold);
}

/* ==========================================================================
   Background & Audio Widgets
   ========================================================================== */

/* Floating Incense Smoke Effect */
.smoke-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.smoke {
    position: absolute;
    bottom: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(230, 220, 200, 0.08) 0%, transparent 60%);
    border-radius: 50%;
    opacity: 0;
    transform-origin: bottom center;
}

.smoke-1 {
    left: 15%;
    animation: float-smoke-left 15s infinite ease-in-out;
}

.smoke-2 {
    left: 50%;
    animation: float-smoke-mid 20s infinite ease-in-out 3s;
}

.smoke-3 {
    left: 80%;
    animation: float-smoke-right 17s infinite ease-in-out 1s;
}

@keyframes float-smoke-left {
    0% { transform: translateY(0) scale(0.6) translateX(0); opacity: 0; }
    15% { opacity: 0.8; }
    50% { transform: translateY(-40vh) scale(1.2) translateX(-60px); opacity: 0.4; }
    100% { transform: translateY(-90vh) scale(2) translateX(-120px); opacity: 0; }
}

@keyframes float-smoke-mid {
    0% { transform: translateY(0) scale(0.5) translateX(0); opacity: 0; }
    20% { opacity: 0.9; }
    50% { transform: translateY(-50vh) scale(1.3) translateX(40px); opacity: 0.3; }
    100% { transform: translateY(-95vh) scale(2.2) translateX(80px); opacity: 0; }
}

@keyframes float-smoke-right {
    0% { transform: translateY(0) scale(0.6) translateX(0); opacity: 0; }
    10% { opacity: 0.7; }
    60% { transform: translateY(-45vh) scale(1.4) translateX(-30px); opacity: 0.4; }
    100% { transform: translateY(-90vh) scale(2) translateX(-60px); opacity: 0; }
}



/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.main-header {
    position: sticky;
    top: 0;
    background: rgba(10, 10, 9, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    z-index: 99;
    padding: 15px 0;
    transition: var(--transition-smooth);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-gold-light);
}

.logo-text {
    font-family: var(--font-heading-hi);
    font-weight: normal;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
}

.nav-links a:hover {
    color: var(--accent-gold-light);
    border-bottom-color: var(--accent-gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-cta {
    background: linear-gradient(135deg, var(--primary-saffron) 0%, var(--primary-hover) 100%);
    color: var(--text-light);
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 93, 37, 0.4);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 100px 0 120px;
    background-image: url('rudrabhishek_hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 10, 9, 0.98) 35%, rgba(10, 10, 9, 0.85) 60%, rgba(10, 10, 9, 0.4) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sacred-badge {
    display: inline-block;
    background: rgba(212, 93, 37, 0.15);
    border: 1px solid var(--primary-saffron);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--accent-gold-light);
    margin-bottom: 25px;
    font-weight: 600;
}

.hero-content h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-gold-light) 50%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content h2 {
    font-size: 1.8rem;
    color: var(--primary-saffron);
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Pricing Card inside Hero */
.hero-price-tag {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: rgba(22, 22, 20, 0.85);
    border-color: var(--primary-saffron);
    max-width: 580px;
}

.price-info {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: 4px;
}

.current-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-gold-light);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.original-price {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.discount-percent {
    font-size: 0.85rem;
    font-weight: 700;
    color: #4caf50;
    background: rgba(76, 175, 80, 0.15);
    padding: 2px 8px;
    border-radius: 4px;
}



/* ==========================================================================
   Trust Guarantees Section
   ========================================================================== */
.guarantees-bar {
    background-color: var(--bg-semi);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 25px 0;
}

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

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.g-icon {
    font-size: 2.2rem;
    background: rgba(212, 175, 55, 0.1);
    padding: 8px;
    border-radius: 50%;
    border: 1px solid var(--border-gold);
    line-height: 1;
}

.guarantee-item h4 {
    font-size: 1rem;
    color: var(--accent-gold-light);
    font-weight: 600;
}

.guarantee-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Elements Section (Tabs & Lists)
   ========================================================================== */
/* ==========================================================================
   Sawan Significance Section
   ========================================================================== */
.sawan-significance-section {
    background-color: var(--bg-semi);
    padding: 100px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.05);
}

.sawan-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: stretch;
}

.sawan-benefits-card, .sawan-eligibility-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sawan-benefits-card h3, .sawan-eligibility-card h3 {
    font-size: 1.8rem;
    color: var(--accent-gold-light);
    margin-bottom: 20px;
    font-family: var(--font-heading-hi);
    font-weight: normal;
    position: relative;
    padding-bottom: 10px;
}

.sawan-benefits-card h3::after, .sawan-eligibility-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-saffron);
}

.sawan-intro {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.sawan-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 25px;
}

.sawan-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.sawan-icon {
    font-size: 1.8rem;
    background: rgba(212, 93, 37, 0.1);
    border: 1px solid rgba(212, 93, 37, 0.25);
    border-radius: 8px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.sawan-list li h4 {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.sawan-list li p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.eligibility-list {
    list-style: none;
    margin-bottom: 25px;
}

.eligibility-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.eligibility-bullet {
    color: var(--accent-gold);
    font-size: 1rem;
    filter: drop-shadow(var(--glow-gold));
    margin-top: 3px;
}

.eligibility-list li p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.eligibility-conclusion {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border-gold);
    text-align: center;
}

.eligibility-conclusion p {
    font-size: 1.05rem;
    color: var(--accent-gold-light);
    font-weight: 600;
    line-height: 1.6;
}

/* ==========================================================================
   Redesigned Sections
   ========================================================================== */
.vidhi-section {
    background-color: var(--bg-dark);
    padding: 100px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.05);
}

.vidhi-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.vidhi-info h3 {
    font-size: 1.8rem;
    color: var(--accent-gold-light);
    margin-bottom: 15px;
    font-family: var(--font-heading-hi);
    font-weight: normal;
}

.vidhi-info p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.spiritual-list {
    list-style: none;
}

.spiritual-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.list-bullet {
    color: var(--primary-saffron);
    font-size: 0.9rem;
    margin-top: 6px;
    filter: drop-shadow(0 0 4px rgba(212, 93, 37, 0.4));
}

.vidhi-visual {
    display: flex;
    justify-content: center;
}

.element-card {
    text-align: center;
    max-width: 320px;
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.2));
}

.element-card h4 {
    color: var(--accent-gold-light);
    margin-bottom: 10px;
    font-family: var(--font-heading-hi);
    font-weight: normal;
}

.element-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.samagri-section {
    background-color: var(--bg-semi);
    padding: 100px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.05);
}

/* Materials Grid */
.materials-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.material-item {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    padding: 25px 15px;
    text-align: center;
    transition: var(--transition-smooth);
}

.material-item:hover {
    border-color: var(--primary-saffron);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(212, 93, 37, 0.15);
}

.m-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 12px;
}

.m-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
}

.hidden-material {
    display: none !important;
}

.hidden-material.show {
    display: block !important;
    animation: fadeInUp 0.4s forwards;
}

.materials-action {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Auspicious Time Cards */
.auspicious-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

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

.time-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: inline-block;
}

.time-card h4 {
    font-size: 1.4rem;
    color: var(--accent-gold-light);
    margin-bottom: 10px;
    font-family: var(--font-heading-hi);
    font-weight: normal;
}

.time-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Chanting Player Widget */
.mantra-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mantra-card {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--primary-saffron);
    padding: 15px 20px;
    border-radius: 0 8px 8px 0;
}

.mantra-card h5 {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.mantra-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.mantra-player {
    width: 100%;
    max-width: 380px;
}

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

.player-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-gold-light);
}

.pulse-indicator {
    width: 10px;
    height: 10px;
    background-color: #f44336;
    border-radius: 50%;
    opacity: 0.3;
}

.pulse-indicator.active {
    background-color: #4caf50;
    animation: led-blink 1s infinite alternate;
}

@keyframes led-blink {
    0% { opacity: 0.4; box-shadow: 0 0 2px #4caf50; }
    100% { opacity: 1; box-shadow: 0 0 10px #4caf50; }
}

.mantra-display {
    background: rgba(0,0,0,0.5);
    border: 1px dashed rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    padding: 20px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    text-align: center;
}

.mantra-line {
    font-size: 1rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
    opacity: 0.4;
    line-height: 1.5;
}

.mantra-line.active {
    opacity: 1;
    color: var(--accent-gold-light);
    transform: scale(1.05);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.btn-play {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-saffron);
    border: none;
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(212, 93, 37, 0.3);
}

.btn-play:hover {
    background-color: var(--primary-hover);
    transform: scale(1.08);
}

.audio-wave {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 30px;
    flex-grow: 1;
}

.audio-wave span {
    display: block;
    width: 3px;
    background-color: var(--accent-gold);
    border-radius: 2px;
    height: 4px;
    transition: height 0.1s ease;
}

.mantra-player.playing .audio-wave span {
    animation: jump-wave 1s infinite alternate;
}

.mantra-player.playing .audio-wave span:nth-child(1) { height: 10px; animation-duration: 0.8s; }
.mantra-player.playing .audio-wave span:nth-child(2) { height: 22px; animation-duration: 1.2s; }
.mantra-player.playing .audio-wave span:nth-child(3) { height: 15px; animation-duration: 0.9s; }
.mantra-player.playing .audio-wave span:nth-child(4) { height: 28px; animation-duration: 1.4s; }
.mantra-player.playing .audio-wave span:nth-child(5) { height: 18px; animation-duration: 1.1s; }
.mantra-player.playing .audio-wave span:nth-child(6) { height: 8px; animation-duration: 0.7s; }

@keyframes jump-wave {
    0% { transform: scaleY(1); }
    100% { transform: scaleY(2.2); }
}

.player-help {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}

/* ==========================================================================
   How Online Puja Works (Timeline)
   ========================================================================== */
.how-it-works-section {
    background-color: var(--bg-semi);
    padding: 100px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.05);
}

.timeline-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    z-index: 1;
}

.timeline-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-saffron) 0%, #aa3e12 100%);
    border: 3px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 25px;
    box-shadow: var(--glow-gold);
}

.step-card {
    text-align: center;
    height: 100%;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.step-card h3 {
    font-size: 1.3rem;
    color: var(--accent-gold-light);
    margin-bottom: 12px;
    font-family: var(--font-heading-hi);
    font-weight: normal;
}

.step-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Benefits Section (Grid)
   ========================================================================== */
.benefits-section {
    background-color: var(--bg-dark);
    padding: 100px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.05);
}

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

/* Health, Peace, Wealth, Planets, Spiritual */
.benefit-card {
    text-align: center;
    padding: 40px 30px;
}

.benefit-card:nth-child(4) {
    grid-column: span 1.5 / span 1;
    margin-left: auto;
    width: calc(100% - 15px);
    max-width: 540px;
}

.benefit-card:nth-child(5) {
    grid-column: span 1.5 / span 1;
    margin-right: auto;
    width: calc(100% - 15px);
    max-width: 540px;
}

/* centering adjustments for grid template columns span */
@media (min-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    .benefit-card:nth-child(1) { grid-column: span 2; }
    .benefit-card:nth-child(2) { grid-column: span 2; }
    .benefit-card:nth-child(3) { grid-column: span 2; }
    .benefit-card:nth-child(4) { grid-column: 2 / span 2; }
    .benefit-card:nth-child(5) { grid-column: 4 / span 2; }
}

.benefit-card-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: inline-block;
    filter: drop-shadow(0 0 8px rgba(212,175,55,0.25));
}

.benefit-card h3 {
    font-size: 1.35rem;
    color: var(--accent-gold-light);
    margin-bottom: 12px;
    font-family: var(--font-heading-hi);
    font-weight: normal;
}

.benefit-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Temple Place details
   ========================================================================== */
.practical-section {
    background-color: var(--bg-semi);
    padding: 100px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.05);
}

.location-card {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px;
}

.location-image-wrapper {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, #2d2d2a 0%, #161614 100%);
    box-shadow: inset 0 0 40px rgba(0,0,0,0.6);
}

.temple-placeholder {
    font-size: 6rem;
    animation: breath-glow 3s infinite alternate;
}

.temple-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-smooth);
}

.location-card:hover .temple-img {
    transform: scale(1.05);
}

.location-details-text h3 {
    font-size: 1.8rem;
    color: var(--accent-gold-light);
    margin-bottom: 15px;
    font-family: var(--font-heading-hi);
    font-weight: normal;
}

.location-details-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ==========================================================================
   FAQs Section
   ========================================================================== */
.faq-section {
    background-color: var(--bg-dark);
    padding: 100px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.05);
}

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

.faq-card {
    padding: 30px;
}

.faq-card h4 {
    font-size: 1.15rem;
    color: var(--accent-gold-light);
    margin-bottom: 12px;
    font-weight: 600;
}

.faq-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   Booking Section & Price Badge
   ========================================================================== */
.booking-section {
    background: linear-gradient(180deg, var(--bg-semi) 0%, var(--bg-dark) 100%);
    padding: 100px 0;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.booking-details h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 30%, var(--accent-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.booking-details p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Price Badge visual in form */
.booking-price-badge {
    padding: 25px;
    background: rgba(22, 22, 20, 0.85);
    border-color: var(--accent-gold);
    max-width: 450px;
    text-align: center;
}

.price-header-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-gold-light);
    margin: 8px 0;
    text-shadow: var(--glow-gold);
}

.old-val {
    font-size: 1.3rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 10px;
}

.price-includes {
    font-size: 0.9rem;
    color: #4caf50;
    font-weight: 600;
}

/* Form Styles */
.form-card {
    padding: 40px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-gold-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border-gold);
    border-radius: 6px;
    padding: 12px 15px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-saffron);
    box-shadow: 0 0 10px rgba(212, 93, 37, 0.3);
}

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

.form-success-msg {
    text-align: center;
    padding: 30px 10px;
    animation: fade-in-tab 0.5s ease-out;
}

.success-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 15px;
    animation: bounce 1.5s infinite ease-in-out;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.form-success-msg h4 {
    color: var(--accent-gold);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.form-success-msg p {
    color: var(--text-muted);
}

/* ==========================================================================
   Payment Modal (Checkout Portal Overlay)
   ========================================================================== */
.payment-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.payment-modal-overlay.active {
    display: flex;
}

.payment-modal-card {
    width: 100%;
    max-width: 480px;
    position: relative;
    padding: 35px;
    border-color: var(--primary-saffron);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8), var(--glow-gold);
    animation: scale-up-modal 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes scale-up-modal {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.close-modal:hover {
    color: var(--primary-saffron);
}

.payment-header {
    text-align: center;
    margin-bottom: 25px;
}

.sacred-symbol {
    font-size: 2rem;
    display: block;
    margin-bottom: 5px;
}

.pay-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-gold-light);
    margin-top: 5px;
    text-shadow: var(--glow-gold);
}

.payment-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-gold);
    margin-bottom: 25px;
    gap: 10px;
}

.pay-tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 10px;
    cursor: pointer;
    font-weight: 600;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border-bottom: 2px solid transparent;
    transition: var(--transition-smooth);
}

.pay-tab-btn.active {
    color: var(--accent-gold-light);
    border-bottom-color: var(--primary-saffron);
}

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

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

/* UPI Tab */
.qr-code-wrapper {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.qr-svg {
    border: 8px solid white;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.upi-id-box {
    text-align: center;
    background: rgba(0,0,0,0.4);
    border: 1px dashed var(--border-gold);
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* Card Tab */
.card-form {
    display: flex;
    flex-direction: column;
}

.payment-action {
    margin-top: 15px;
}

.payment-action .btn {
    width: 100%;
}

/* Payment Processing Loading */
.payment-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 9, 0.95);
    border-radius: 12px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 50;
}

.payment-loading.active {
    display: flex;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(212, 175, 55, 0.2);
    border-top: 4px solid var(--primary-saffron);
    border-radius: 50%;
    animation: spin 1s infinite linear;
    margin-bottom: 20px;
}

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

/* Payment Success Screen */
.payment-success {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 9, 0.98);
    border-radius: 12px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    z-index: 100;
}

.payment-success.active {
    display: flex;
}

.success-chk {
    font-size: 4rem;
    width: 80px;
    height: 80px;
    background: rgba(76, 175, 80, 0.15);
    color: #4caf50;
    border: 3px solid #4caf50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    animation: pop-chk 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes pop-chk {
    from { transform: scale(0.6); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.payment-success h4 {
    color: var(--accent-gold);
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.payment-success p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.main-footer {
    background-color: var(--bg-dark);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding: 40px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-sacred-text {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 10px;
}

.sacred-word {
    font-size: 1.6rem;
    color: var(--accent-gold-light);
    animation: breath-glow 3s infinite alternate;
}

.sacred-word.divider {
    color: var(--primary-saffron);
    animation: none;
}

@keyframes breath-glow {
    0% { text-shadow: 0 0 4px rgba(255, 223, 115, 0.2); opacity: 0.8; }
    100% { text-shadow: 0 0 15px rgba(255, 223, 115, 0.8), 0 0 25px rgba(212, 93, 37, 0.4); opacity: 1; }
}

.copyright {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Responsive Grid adjustments (Mobile, Tablet)
   ========================================================================== */
@media (max-width: 991px) {
    /* Navbar */
    .nav-links {
        display: none;
    }
    
    /* Hero */
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
    }
    
    .hero-overlay {
        background: linear-gradient(to bottom, rgba(10, 10, 9, 0.95) 40%, rgba(10, 10, 9, 0.85) 75%, rgba(10, 10, 9, 0.6) 100%);
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero-price-tag {
        margin: 0 auto;
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-visual {
        margin-top: 40px;
    }
    
    .hero-content h1 {
        font-size: 3.2rem;
    }
    
    /* Guarantees */
    .guarantees-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    /* Sawan Significance & Redesigned Sections */
    .sawan-grid {
        grid-template-columns: 1fr;
    }
    .sawan-list {
        grid-template-columns: 1fr;
    }
    .vidhi-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .spiritual-list li {
        justify-content: center;
        text-align: left;
    }
    .materials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* How it works */
    .timeline-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .timeline-container::before {
        display: none;
    }
    
    /* Location */
    .location-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .location-image-wrapper {
        max-width: 350px;
        margin: 0 auto;
    }
    
    /* FAQs */
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    /* Benefits Grid */
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .benefit-card:nth-child(4),
    .benefit-card:nth-child(5) {
        grid-column: span 1;
        width: 100%;
        max-width: none;
    }
    
    /* Booking */
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .booking-details {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .guarantees-grid {
        grid-template-columns: 1fr;
    }
    .materials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* ==========================================================================
   Ritual Showcase Section
   ========================================================================== */
.ritual-showcase-section {
    padding: 60px 0;
    background-color: var(--bg-dark);
}

.ritual-showcase-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 30px;
    border-radius: 12px;
}

.showcase-image-wrapper {
    width: 100%;
    height: 380px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
}

.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-smooth);
}

.ritual-showcase-card:hover .showcase-img {
    transform: scale(1.03);
}

.ritual-showcase-card .sacred-tag {
    display: inline-block;
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.ritual-showcase-card h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-family: var(--font-traditional);
}

.ritual-showcase-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .ritual-showcase-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px;
    }
    .showcase-image-wrapper {
        height: 280px;
    }
    .ritual-showcase-card h3 {
        font-size: 1.6rem;
    }
}
