/* ==========================================
   SHREE POOJA - PREMIUM CSS DESIGN SYSTEM
   ========================================== */

/* Variables & Theme Tokens */
:root {
    --primary-saffron: #FF7A00;
    --primary-saffron-dark: #E05300;
    --primary-gold: #D4AF37;
    --primary-gold-light: #F4E4BA;
    --accent-red: #A30000;
    --navy-blue: #0F172A;
    --navy-blue-light: #1E293B;
    --bg-ivory: #FCFAF7;
    --bg-card: #FFFFFF;
    --text-dark: #1E293B;
    --text-light: #FFFFFF;
    --text-muted: #64748B;
    --border-color: #E2E8F0;
    
    /* Gradients */
    --gradient-saffron: linear-gradient(135deg, #FF9F43 0%, #FF5252 100%);
    --gradient-gold: linear-gradient(135deg, #FAD961 0%, #F76B1C 100%);
    --gradient-divine: linear-gradient(135deg, #FFE082 0%, #FFB300 50%, #FF6F00 100%);
    --gradient-navy: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    --gradient-soft: linear-gradient(180deg, #FCFAF7 0%, #FFFFFF 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 8px 24px rgba(212, 175, 55, 0.08);
    --shadow-lg: 0 15px 35px rgba(15, 23, 42, 0.08);
    --shadow-glow: 0 0 20px rgba(255, 122, 0, 0.4);
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-ivory);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: var(--navy-blue);
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.w-full { width: 100%; }
.mt-4 { margin-top: 1.5rem; }
.text-center { text-align: center; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-saffron);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.5);
}

.btn-outline {
    border-color: var(--primary-gold);
    color: var(--primary-saffron-dark);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

/* Immersive Ambient Music Indicator */
.audio-control {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--primary-gold);
    padding: 10px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    font-weight: 600;
    font-size: 0.85rem;
}

.audio-control:hover {
    transform: scale(1.05);
    background: #fff;
    box-shadow: var(--shadow-glow);
}

.audio-control i {
    color: var(--primary-saffron);
    font-size: 1.1rem;
}

/* Header & Navigation */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(252, 250, 247, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: rgba(252, 250, 247, 0.95);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition-smooth);
}

.header.scrolled .header-container {
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 42px;
    height: 42px;
}

.logo-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 5px rgba(255, 122, 0, 0.2));
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--navy-blue);
}

.logo-text .highlight {
    color: var(--primary-saffron);
}

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

.nav-links a {
    font-weight: 700;
    color: var(--navy-blue-light);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-saffron-dark);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-saffron);
    transition: var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

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

.header-actions .btn {
    padding: 9px 20px;
    font-size: 0.85rem;
    height: 40px;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--navy-blue);
    cursor: pointer;
}

/* Mobile Nav Drawer */
.mobile-nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--bg-card);
    border-bottom: 2px solid var(--primary-gold-light);
    padding: 20px;
    display: none;
    flex-direction: column;
    gap: 15px;
    z-index: 99;
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.mobile-nav.open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav a {
    font-weight: 600;
    font-size: 1.1rem;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

/* Hero Banner Slider Section */
.hero-slider-section {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 560px;
    padding: 0;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 5;
}

.hero-slider-overlay-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(212, 175, 55, 0.08) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    opacity: 0.5;
}

.hero-slide-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    padding: 40px 20px;
    z-index: 2;
    position: relative;
    height: 100%;
}

.badge-trust-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--primary-gold);
    color: #FFE082;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 24px;
}

.hero-slide-title {
    font-size: 3rem;
    line-height: 1.25;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.hero-slide-title .highlight-gold {
    color: #FFD54F;
    background: linear-gradient(135deg, #FFE082 0%, #FFD54F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-slide-subtitle {
    font-size: 1.1rem;
    color: #E2E8F0;
    margin-bottom: 35px;
    max-width: 580px;
    line-height: 1.6;
}

.hero-slide-buttons {
    display: flex;
    gap: 15px;
}

.hero-slide-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-img {
    max-width: 100%;
    max-height: 380px;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    border: 2px solid rgba(212, 175, 55, 0.2);
    animation: floating 6s ease-in-out infinite;
    object-fit: contain;
}

/* Slider Controls */
.hero-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
}

.hero-slider-btn:hover {
    background: #ffffff;
    color: var(--navy-blue);
    border-color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.hero-slider-btn.prev {
    left: 24px;
}

.hero-slider-btn.next {
    right: 24px;
}

/* Slider Indicators */
.hero-slider-indicators {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.indicator-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--primary-gold);
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

/* Devotional Shortcuts Section */
.shortcuts-section {
    background-color: #f8fafc;
    padding: 60px 0;
    position: relative;
    z-index: 10;
}

.shortcuts-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.shortcut-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #ffffff;
    border-radius: 20px;
    padding: 24px 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.03);
    overflow: hidden;
    min-height: 250px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.shortcut-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border-color: rgba(212, 175, 55, 0.25);
}

.shortcut-info {
    z-index: 2;
}

.shortcut-info h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 6px;
}

.shortcut-info p {
    font-size: 0.88rem;
    color: #64748b;
    font-weight: 600;
}

.shortcut-visual {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 65%;
    height: 150px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    pointer-events: none;
    z-index: 1;
}

.shortcut-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

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

.shortcut-arrow-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #8E24AA;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    z-index: 2;
    margin-top: auto;
}

.shortcut-card:hover .shortcut-arrow-btn {
    background: #7B1FA2;
    transform: scale(1.1);
}

/* Special styling for dark green card */
.shortcut-card.special-green {
    background-color: #17423c;
}

.shortcut-card.special-green .shortcut-info h3 {
    color: #ffffff;
}

/* Trust Stats Section */
.trust-stats-section {
    background: #0d213f;
    padding: 80px 0;
    color: var(--text-light);
    position: relative;
    z-index: 10;
}

.stats-container-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 60px;
    align-items: center;
}

.stats-left-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stats-tagline {
    color: #58a6ff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stats-title {
    color: #ffffff;
    font-size: 2.8rem;
    line-height: 1.25;
    margin-bottom: 20px;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    text-align: left;
}

.stats-desc {
    color: #94a3b8;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 500px;
    text-align: left;
}

.stats-right-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
}

.stat-grid-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.stat-card-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.stat-card-icon-wrapper.prayer-icon {
    background: rgba(251, 113, 133, 0.12);
    color: #fb7185;
}

.stat-card-icon-wrapper.star-icon {
    background: rgba(234, 179, 8, 0.12);
    color: #facc15;
}

.stat-card-icon-wrapper.globe-icon {
    background: rgba(59, 130, 246, 0.12);
    color: #60a5fa;
}

.stat-card-icon-wrapper.fire-icon {
    background: rgba(249, 115, 22, 0.12);
    color: #fb923c;
}

.stat-card-text h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 6px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.stat-card-text p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Section Common Styles */
section {
    padding: 100px 0;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-tagline {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--primary-saffron-dark);
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.4rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

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

/* Interactive Hub (Panchang & Horoscope) */
.interactive-hub {
    background-color: #FAF5EE;
}

.hub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.hub-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(212, 175, 55, 0.1);
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.widget-title {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-title i {
    color: var(--primary-saffron);
}

.panchang-date {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-saffron-dark);
    background: rgba(255, 122, 0, 0.08);
    padding: 6px 14px;
    border-radius: 50px;
}

.panchang-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 25px;
    flex-grow: 1;
}

.panchang-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    border-radius: 10px;
    background: var(--bg-ivory);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.panchang-item .label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.panchang-item .value {
    font-weight: 700;
    color: var(--navy-blue-light);
    font-size: 0.95rem;
}

.panchang-item.auspicious {
    background: rgba(46, 204, 113, 0.08);
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.panchang-item.auspicious .value {
    color: #27ae60;
}

.panchang-item.inauspicious {
    background: rgba(231, 76, 60, 0.08);
    border: 1px solid rgba(231, 76, 60, 0.2);
}

.panchang-item.inauspicious .value {
    color: #c0392b;
}

.text-green { color: #27ae60; margin-right: 5px; }
.text-red { color: #c0392b; margin-right: 5px; }

.widget-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--bg-ivory);
    color: var(--primary-saffron-dark);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition-smooth);
}

.widget-action:hover {
    background: var(--primary-gold-light);
    color: var(--navy-blue);
    transform: translateY(-2px);
}

/* Horoscope Widget Details */
.badge-accent {
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    background: var(--accent-red);
    padding: 5px 12px;
    border-radius: 50px;
}

.zodiac-carousel-wrapper {
    overflow-x: auto;
    padding-bottom: 12px;
    margin-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-gold-light) transparent;
}

.zodiac-carousel-wrapper::-webkit-scrollbar {
    height: 4px;
}

.zodiac-carousel-wrapper::-webkit-scrollbar-thumb {
    background: var(--primary-gold-light);
    border-radius: 4px;
}

.zodiac-grid {
    display: flex;
    gap: 12px;
}

.zodiac-item {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 78px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition-smooth);
    background: var(--bg-ivory);
}

.zodiac-item:hover,
.zodiac-item.active {
    background: var(--gradient-saffron);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 5px 12px rgba(255, 122, 0, 0.2);
    transform: translateY(-3px);
}

.zodiac-item i {
    font-size: 1.4rem;
    margin-bottom: 6px;
    color: var(--primary-gold);
}

.zodiac-item:hover i,
.zodiac-item.active i {
    color: #fff;
}

.zodiac-item span {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.horoscope-content-box {
    background: var(--bg-ivory);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(0,0,0,0.03);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.horoscope-active-sign {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.sign-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary-saffron-dark);
}

.sign-date-range {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.horoscope-text {
    font-size: 0.95rem;
    color: var(--navy-blue-light);
    line-height: 1.5;
    margin-bottom: 18px;
    min-height: 75px;
}

.horoscope-stats {
    display: flex;
    justify-content: space-between;
    border-top: 1px dashed rgba(212, 175, 55, 0.3);
    padding-top: 15px;
}

.horo-stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.horo-stat-item .label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
}

.rating-stars {
    display: flex;
    gap: 3px;
    color: #F1C40F;
    font-size: 0.8rem;
}

/* Special Pujas Cards Grid */
.pujas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.puja-card {
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.puja-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 175, 55, 0.4);
}

.puja-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #e2e8f0;
}

.puja-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.puja-card:hover .puja-image-container img {
    transform: scale(1.08);
}

.puja-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    padding: 6px 12px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(8px);
}

.puja-badge.live {
    background: rgba(231, 76, 60, 0.9);
}

.puja-badge.live i {
    animation: flash 1s infinite alternate;
}

.puja-badge.premium {
    background: rgba(155, 89, 182, 0.9);
}

.puja-badge.budget {
    background: rgba(39, 174, 96, 0.9);
}

.puja-countdown {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    z-index: 2;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(6px);
    color: var(--text-light);
    text-align: center;
    padding: 6px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.time-block {
    color: var(--primary-gold);
    font-weight: 700;
}

.puja-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.puja-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--primary-saffron);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.puja-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.puja-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.puja-details {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 15px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.puja-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy-blue-light);
}

.puja-detail i {
    color: var(--primary-gold);
    width: 16px;
}

.puja-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 18px;
}

.puja-price {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.puja-price .currency {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy-blue-light);
}

.puja-price .amount {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-saffron-dark);
}

.puja-price .price-desc {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Virtual Temple Room */
.virtual-temple-section {
    background: radial-gradient(circle at center, #2C0F08 0%, #150502 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.virtual-temple-section .section-title {
    color: #FFE082;
}

.virtual-temple-section .section-desc {
    color: #BCAAA4;
}

.virtual-temple-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.temple-instructions {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 30px 0;
}

.instruction-step {
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #E64A19;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
}

.instruction-step span {
    font-size: 0.95rem;
    color: #D7CCC8;
}

.temple-buttons {
    display: flex;
    gap: 15px;
}

.temple-buttons .btn-outline {
    border-color: #D4AF37;
    color: #D4AF37;
}

.temple-buttons .btn-outline:hover {
    background: rgba(212, 175, 55, 0.15);
}

/* The Temple Altar Box styling */
.temple-interactive-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.temple-frame-decor {
    position: relative;
    width: 380px;
    height: 480px;
    background: linear-gradient(180deg, #3E2723 0%, #1A0C0A 100%);
    border: 15px solid #5D4037;
    border-image: linear-gradient(to bottom, #8D6E63, #4E342E, #3E2723) 15;
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), inset 0 0 50px rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 25px;
    overflow: hidden;
}

.temple-frame-decor::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='20' viewBox='0 0 40 20'%3E%3Cpath d='M0,0 Q10,15 20,0 Q30,15 40,0 L40,20 L0,20 Z' fill='%235D4037' opacity='0.3'/%3E%3C/svg%3E") repeat-x;
    z-index: 2;
}

/* Hanging Brass Bell */
.virtual-bell-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transform-origin: top center;
}

.virtual-bell-container.ring {
    animation: swingBell 1.6s ease-in-out;
}

.bell-chain {
    width: 4px;
    height: 110px;
    background: linear-gradient(to right, #D4AF37, #AA7C11, #D4AF37);
    box-shadow: 2px 0 5px rgba(0,0,0,0.4);
}

.bell-body {
    width: 60px;
    height: 54px;
    background: radial-gradient(ellipse at center, #FFE082 0%, #D4AF37 60%, #8C6B00 100%);
    border-radius: 50% 50% 12px 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.5);
    position: relative;
    border-bottom: 4px solid #AA7C11;
}

.bell-clapper {
    position: absolute;
    bottom: -15px;
    left: 27px;
    width: 8px;
    height: 20px;
    background: #AA7C11;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.4);
    transform-origin: top center;
}

.virtual-bell-container.ring .bell-clapper {
    animation: swingClapper 1.6s ease-in-out;
}

.bell-ripple {
    position: absolute;
    top: 140px;
    width: 0px;
    height: 0px;
    border: 3px solid rgba(255, 224, 130, 0.7);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    left: 50%;
}

.bell-ripple.active {
    animation: rippleRing 0.8s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

/* Deity Altar Inside frame */
.deity-altar {
    margin-bottom: 30px;
    z-index: 1;
    opacity: 0.85;
}

.deity-svg {
    width: 140px;
    height: 140px;
}

.altar-halo {
    fill: none;
    stroke: rgba(255, 224, 130, 0.15);
    stroke-width: 2;
    stroke-dasharray: 4,4;
    animation: spin 30s linear infinite;
    transform-origin: center;
}

.deity-silhouette {
    fill: #E64A19;
    opacity: 0.12;
    filter: blur(1px);
}

/* Diya inside Temple Altar */
.altar-diya-container {
    width: 80px;
    height: 60px;
    position: relative;
    cursor: pointer;
    z-index: 8;
}

.virtual-diya-body {
    position: absolute;
    bottom: 0;
    width: 80px;
    height: 32px;
    background: radial-gradient(ellipse at center, #8E24AA 0%, #4A148C 100%);
    border-radius: 50% 50% 12px 12px;
    border-top: 3px solid #D4AF37;
    box-shadow: 0 6px 12px rgba(0,0,0,0.5);
}

.virtual-diya-wick {
    position: absolute;
    bottom: 27px;
    left: 38px;
    width: 5px;
    height: 10px;
    background: #000;
    border-radius: 2px;
}

.virtual-diya-flame {
    position: absolute;
    bottom: 32px;
    left: 32px;
    width: 16px;
    height: 28px;
    background: linear-gradient(to top, #FF3D00, #FFE082);
    border-radius: 50% 50% 20% 20%;
    transform-origin: bottom center;
    animation: flicker 1.5s ease-in-out infinite alternate;
    box-shadow: 0 0 15px rgba(255, 145, 0, 0.8);
    transition: var(--transition-smooth);
}

.virtual-diya-glow {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, rgba(255, 224, 130, 0.4) 0%, rgba(255, 122, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    transition: var(--transition-smooth);
    animation: glowPulse 2s infinite;
}

/* Altar Incense Sticks */
.incense-stick-left,
.incense-stick-right {
    position: absolute;
    bottom: 25px;
    width: 4px;
    height: 60px;
    z-index: 5;
}

.incense-stick-left { left: 40px; transform: rotate(-15deg); }
.incense-stick-right { right: 40px; transform: rotate(15deg); }

.stick {
    width: 3px;
    height: 50px;
    background: #5D4037;
    border-radius: 2px;
}

.smoke-stream {
    width: 2px;
    height: 0px;
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 6px #fff;
    border-radius: 50%;
    position: absolute;
    top: -5px;
    left: 0;
    animation: riseSmoke 4s infinite linear;
}

/* Services Grid offerings */
.services-grid-section {
    background: var(--bg-ivory);
}

.services-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-box-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.service-box-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-gold-light);
}

.icon-box {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.icon-box.saffron { background: rgba(255, 122, 0, 0.1); color: var(--primary-saffron); }
.icon-box.gold { background: rgba(212, 175, 55, 0.1); color: var(--primary-gold); }
.icon-box.purple { background: rgba(155, 89, 182, 0.1); color: #9b59b6; }
.icon-box.blue { background: rgba(52, 152, 219, 0.1); color: #3498db; }

.service-box-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
}

.service-box-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* App Promotion Banner */
.app-promo-banner {
    background: var(--gradient-navy);
    color: #fff;
    padding: 80px 0;
    overflow: hidden;
}

.promo-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.promo-content h2 {
    font-size: 2.6rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.promo-content p {
    color: #94A3B8;
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.store-badge.border-light {
    border: 1px solid rgba(255,255,255,0.15);
}

.promo-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.promo-phones-img {
    width: 320px;
    filter: drop-shadow(0 25px 40px rgba(0,0,0,0.5));
}

/* Testimonials Carousel */
.testimonials {
    background: #ffffff;
    padding: 80px 0;
}

.reviews-slider-outer {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

.reviews-slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-item-card {
    flex: 0 0 calc(25% - 18px);
    display: flex;
    flex-direction: column;
    min-height: 330px;
}

.review-content-card {
    background: #f1f5f9;
    border-radius: 16px;
    height: 240px;
    padding: 28px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.03);
}

.review-content-card.video-card {
    padding: 0;
    position: relative;
}

.review-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    background: #000000;
}

.review-text-quote {
    font-size: 0.95rem;
    color: #475569;
    font-style: italic;
    line-height: 1.65;
    text-align: left;
    margin: 0;
    font-weight: 500;
}

.review-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding-left: 4px;
}

.review-user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.review-user-meta h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 2px 0;
}

.review-user-meta span {
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 500;
    display: block;
}

.reviews-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.reviews-ctrl-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.reviews-ctrl-btn.prev {
    background: #e2e8f0;
    color: #475569;
}

.reviews-ctrl-btn.prev:hover {
    background: #cbd5e1;
}

.reviews-ctrl-btn.next {
    background: #f97316;
    color: #ffffff;
}

.reviews-ctrl-btn.next:hover {
    background: #ea580c;
}

.reviews-indicators {
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-dot.active {
    background: #f97316;
}

/* News Mentions */
.news-mentions {
    padding: 50px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: #fff;
}

.news-title-header {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.news-logos-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    opacity: 0.6;
}

.news-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-logo i {
    color: var(--primary-saffron);
}

/* Footer Section */
.footer {
    background: var(--navy-blue);
    color: #94A3B8;
    padding: 80px 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    color: #fff;
}

.brand-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #CBD5E1;
    font-size: 0.95rem;
    border: 1px solid rgba(255,255,255,0.02);
}

.social-links a:hover {
    background: var(--gradient-saffron);
    color: #fff;
    transform: translateY(-3px);
}

.footer-col h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 22px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a {
    font-size: 0.9rem;
}

.footer-col ul a:hover {
    color: var(--primary-saffron);
    padding-left: 5px;
}

.address-col p {
    font-size: 0.85rem;
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
}

.address-col p i {
    color: var(--primary-gold);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.8rem;
}

.security-logos {
    font-size: 0.85rem;
    font-weight: 600;
    color: #E2E8F0;
}

.security-logos i {
    color: #2ECC71;
    margin-right: 5px;
}

/* ==========================================
   KEYFRAME ANIMATIONS
   ========================================== */

@keyframes flicker {
    0% { transform: scale(1) rotate(-2deg); opacity: 0.9; }
    50% { transform: scale(1.08) rotate(3deg); opacity: 1; }
    100% { transform: scale(0.95) rotate(-1deg); opacity: 0.85; }
}

@keyframes glowPulse {
    0% { transform: scale(0.9); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.6; }
    100% { transform: scale(0.9); opacity: 0.3; }
}

@keyframes flash {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

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

@keyframes swingBell {
    0% { transform: translateX(-50%) rotate(0deg); }
    15% { transform: translateX(-50%) rotate(18deg); }
    30% { transform: translateX(-50%) rotate(-15deg); }
    45% { transform: translateX(-50%) rotate(10deg); }
    60% { transform: translateX(-50%) rotate(-8deg); }
    75% { transform: translateX(-50%) rotate(4deg); }
    90% { transform: translateX(-50%) rotate(-2deg); }
    100% { transform: translateX(-50%) rotate(0deg); }
}

@keyframes swingClapper {
    0% { transform: rotate(0deg); }
    15% { transform: rotate(-25deg); }
    30% { transform: rotate(20deg); }
    45% { transform: rotate(-15deg); }
    60% { transform: rotate(10deg); }
    75% { transform: rotate(-5deg); }
    90% { transform: rotate(2deg); }
    100% { transform: rotate(0deg); }
}

@keyframes rippleRing {
    0% { width: 0; height: 0; opacity: 1; }
    100% { width: 250px; height: 250px; opacity: 0; border-width: 1px; }
}

@keyframes riseSmoke {
    0% { top: 0; opacity: 0; transform: scaleX(1) translateX(0); }
    10% { opacity: 0.4; }
    50% { opacity: 0.2; transform: scaleX(2) translateX(10px); }
    100% { top: -60px; opacity: 0; transform: scaleX(3) translateX(-15px); }
}

/* ==========================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================== */

@media (max-width: 1024px) {
    html { font-size: 15px; }
    
    .hero-slider-section {
        height: 720px;
    }
    
    .hero-slide-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding: 40px 20px 80px 20px;
    }
    
    .hero-slide-title {
        font-size: 2.5rem;
    }
    
    .hero-slide-subtitle {
        margin: 0 auto 25px auto;
    }
    
    .hero-slide-buttons {
        justify-content: center;
    }
    
    .banner-img {
        max-height: 280px;
    }
    
    .hub-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pujas-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    
    .services-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .stats-container-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 50px 20px;
    }
    
    .stats-left-content {
        align-items: center;
    }
    
    .stats-title {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .stats-desc {
        text-align: center;
        margin: 0 auto;
    }

    .promo-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .promo-phones-img {
        width: 100%;
        max-width: 320px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .shortcuts-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .review-item-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .header-actions {
        display: none;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .virtual-temple-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .temple-instructions {
        text-align: left;
    }
    
    .temple-buttons {
        justify-content: center;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
    }
}

@media (max-width: 576px) {
    .pujas-grid {
        grid-template-columns: 1fr;
    }
    
    .services-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-right-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-grid-card {
        align-items: center;
        text-align: center;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-slider-section {
        height: 520px;
    }
    
    .hero-slide-title {
        font-size: 1.8rem;
    }
    
    .banner-img {
        max-height: 180px;
    }
    
    .shortcuts-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .shortcut-card {
        min-height: 220px;
        padding: 20px 16px;
    }

    .review-item-card {
        flex: 0 0 100%;
    }
}
