/* ============================================
   Jai Mata Vaishno Devi Katra - Main Stylesheet
   Premium Devotional Design
   ============================================ */

/* CSS Variables */
:root {
    --deep-red: #B22234;
    --white: #FFFFFF;
    --soft-beige: #D9C6B2;
    --warm-brown: #A0522D;
    --dark-pink: #C72C41;
    --soft-gold: #D4A853;
    --text-dark: #2D2D2D;
    --text-muted: #666666;
    --light-bg: #FAFAFA;
    --shadow: rgba(0,0,0,0.08);
    --shadow-deep: rgba(0,0,0,0.15);
    --transition-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);
    --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --font-hindi: 'Noto Sans Devanagari', 'Mangal', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.lang-hi {
    font-family: var(--font-hindi);
}

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

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

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

.container-fluid {
    width: 100%;
    padding: 0 40px;
}

/* Section Spacing */
.section {
    padding: 80px 0;
    position: relative;
}

.section-sm {
    padding: 40px 0;
}

/* Typography */
.section-label {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--deep-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--dark-pink);
    line-height: 1.3;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    transition: all 0.3s var(--transition-bounce);
    white-space: nowrap;
}

.btn-primary {
    background: var(--deep-red);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--dark-pink);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(178,34,52,0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--deep-red);
    border: 2px solid var(--deep-red);
}

.btn-secondary:hover {
    background: var(--deep-red);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--deep-red);
}

.btn-white:hover {
    background: var(--soft-beige);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--deep-red);
}

/* Cards */
.card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px var(--shadow);
    transition: all 0.3s var(--transition-smooth);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px var(--shadow-deep);
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--soft-gold), #E8C97A);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--deep-red);
    margin-bottom: 16px;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-pink);
    margin-bottom: 8px;
}

.card-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Grid */
.grid {
    display: grid;
    gap: 24px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: all 0.3s var(--transition-smooth);
}

.header-top {
    background: var(--deep-red);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.8rem;
}

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

.header-main {
    padding: 12px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo img {
    height: 55px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--deep-red);
    line-height: 1.2;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 10px 14px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: 8px;
    transition: all 0.25s var(--transition-smooth);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--deep-red);
    background: rgba(178,34,52,0.06);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 240px;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s var(--transition-smooth);
    z-index: 100;
    list-style: none;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 10px 20px;
    font-size: 0.85rem;
    color: var(--text-dark);
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.dropdown-link:hover {
    background: rgba(178,34,52,0.05);
    color: var(--deep-red);
    border-left-color: var(--deep-red);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(178,34,52,0.06);
    border-radius: 50px;
    padding: 4px;
}

.lang-btn {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    background: transparent;
    color: var(--text-dark);
    transition: all 0.3s;
}

.lang-btn.active {
    background: var(--deep-red);
    color: var(--white);
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(178,34,52,0.06);
    color: var(--deep-red);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.icon-btn:hover {
    background: var(--deep-red);
    color: var(--white);
}

.whatsapp-btn {
    background: #25D366;
    color: var(--white);
}

.whatsapp-btn:hover {
    background: #128C7E;
    color: var(--white);
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--deep-red);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--white);
    z-index: 1100;
    padding: 80px 24px 24px;
    transition: right 0.3s var(--transition-smooth);
    overflow-y: auto;
    box-shadow: -4px 0 30px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1050;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

/* Marquee */
.marquee-bar {
    background: var(--deep-red);
    color: var(--white);
    padding: 12px 0;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.marquee-text {
    font-family: var(--font-hindi);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(178,34,52,0.9) 0%, rgba(199,44,65,0.85) 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(178,34,52,0.85) 0%, rgba(199,44,65,0.75) 50%, rgba(160,82,45,0.7) 100%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--soft-gold);
    border-radius: 50%;
    opacity: 0.5;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% { transform: translateY(100vh) translateX(0); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.4; }
    100% { transform: translateY(-10vh) translateX(50px); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 100px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

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

.mandir-frame {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 3/4;
    border: 8px solid var(--soft-gold);
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(212,168,83,0.3), 0 20px 60px rgba(0,0,0,0.3);
    animation: frame-glow 3s ease-in-out infinite alternate;
}

.mandir-frame::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 60px;
    background: linear-gradient(180deg, var(--soft-gold) 0%, #C9963B 100%);
    border-radius: 60px 60px 0 0;
    z-index: 2;
}

.mandir-frame video,
.mandir-frame iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes frame-glow {
    0% { box-shadow: 0 0 40px rgba(212,168,83,0.2), 0 20px 60px rgba(0,0,0,0.3); }
    100% { box-shadow: 0 0 80px rgba(212,168,83,0.4), 0 20px 60px rgba(0,0,0,0.3); }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s var(--transition-smooth), transform 0.6s var(--transition-smooth);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s var(--transition-smooth), transform 0.6s var(--transition-smooth);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s var(--transition-smooth), transform 0.6s var(--transition-smooth);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s var(--transition-smooth), transform 0.6s var(--transition-smooth);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }
.stagger-7 { transition-delay: 0.7s; }
.stagger-8 { transition-delay: 0.8s; }

/* Update Strip */
.update-strip {
    background: linear-gradient(90deg, var(--deep-red), var(--dark-pink));
    color: var(--white);
    padding: 20px 0;
}

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

.update-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.update-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--soft-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-red);
    flex-shrink: 0;
}

.update-label {
    font-size: 0.75rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.update-value {
    font-weight: 600;
    font-size: 0.9rem;
}

/* About Section */
.about-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--soft-beige) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--transition-smooth);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: repeating-linear-gradient(to bottom, var(--soft-gold) 0, var(--soft-gold) 8px, transparent 8px, transparent 16px);
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
}

.timeline-dot {
    position: absolute;
    left: -33px;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--deep-red);
    border: 4px solid var(--soft-gold);
    z-index: 2;
}

.timeline-content {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px var(--shadow);
}

.timeline-image {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
}

.timeline-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-pink);
    margin-bottom: 8px;
}

.timeline-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.timeline-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    background: rgba(178,34,52,0.08);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--deep-red);
}

/* Suvichar Section */
.suvichar-section {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.suvichar-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.suvichar-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.suvichar-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.suvichar-card {
    position: relative;
    z-index: 2;
    max-width: 960px;
    text-align: center;
    padding: 48px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.2);
}

.suvichar-quote-icon {
    font-size: 3rem;
    color: var(--soft-gold);
    margin-bottom: 16px;
    line-height: 1;
}

.suvichar-text {
    font-family: var(--font-hindi);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 16px;
}

.suvichar-translation {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
    font-style: italic;
}

.suvichar-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Bhajan Card */
.bhajan-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 32px;
    align-items: center;
    background: var(--white);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 24px var(--shadow);
}

.bhajan-thumbnail {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
}

.bhajan-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bhajan-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
}

.play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--deep-red);
    color: var(--white);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: play-pulse 2s ease-in-out infinite;
    transition: transform 0.3s var(--transition-bounce);
}

.play-btn:hover {
    transform: scale(1.1);
}

@keyframes play-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    color: var(--white);
    font-size: 0.85rem;
}

/* Aarti TV Frame */
.tv-frame {
    max-width: 100%;
    margin: 0 auto;
    background: #1a1a1a;
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.tv-screen {
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.tv-screen iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.tv-stand {
    height: 30px;
    background: linear-gradient(180deg, #333 0%, #1a1a1a 100%);
    margin: 0 80px;
    border-radius: 0 0 10px 10px;
}

.tv-base {
    height: 8px;
    background: #333;
    margin: 0 40px;
    border-radius: 0 0 20px 20px;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(180deg, var(--warm-brown) 0%, var(--deep-red) 100%);
    color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-label {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 4px;
}

.contact-value {
    font-weight: 600;
    font-size: 1.05rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(178,34,52,0.15);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    background: var(--white);
    transition: all 0.3s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--deep-red);
    box-shadow: 0 0 0 4px rgba(178,34,52,0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--warm-brown);
    color: var(--white);
    padding: 60px 0 0;
}

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

.footer-logo img {
    height: 50px;
    margin-bottom: 16px;
}

.footer-about {
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 20px;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--soft-gold);
}

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

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

.footer-links a {
    opacity: 0.85;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--soft-gold);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.social-icon:hover {
    background: var(--deep-red);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* FAQ Accordion */
.faq-item {
    border-bottom: 1px solid rgba(178,34,52,0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(178,34,52,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-red);
    transition: all 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: var(--deep-red);
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s var(--transition-smooth);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 0 20px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Notification */
.notification {
    position: fixed;
    top: 100px;
    right: 24px;
    padding: 16px 24px;
    border-radius: 12px;
    color: var(--white);
    font-weight: 500;
    z-index: 2000;
    animation: slide-in-right 0.3s var(--transition-bounce);
    max-width: 400px;
}

.notification.success { background: #28a745; }
.notification.error { background: var(--deep-red); }
.notification.info { background: #17a2b8; }

@keyframes slide-in-right {
    from { transform: translateX(120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--deep-red) 0%, var(--dark-pink) 100%);
    color: var(--white);
    padding: 140px 0 60px;
    text-align: center;
}

.page-header-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 12px;
}

.page-header-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    font-size: 0.85rem;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb a {
    color: var(--deep-red);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .current {
    color: var(--text-muted);
}

/* Content Pages */
.content-page {
    padding: 40px 0 80px;
}

.content-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

.content-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.content-text h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-pink);
    margin: 32px 0 16px;
}

.content-text h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--deep-red);
    margin: 24px 0 12px;
}

.content-text p {
    margin-bottom: 16px;
}

.content-text ul,
.content-text ol {
    margin: 16px 0;
    padding-left: 24px;
}

.content-text li {
    margin-bottom: 8px;
}

.content-text strong {
    color: var(--dark-pink);
}

/* Blog Cards */
.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px var(--shadow);
    transition: all 0.3s var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--shadow-deep);
}

.blog-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.blog-category {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 14px;
    background: var(--deep-red);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

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

.blog-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* AdSense Placeholder */
.ad-slot {
    background: var(--light-bg);
    border: 1px dashed rgba(178,34,52,0.2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin: 24px 0;
}

.ad-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   IMAGE RENDERING FIXES — Sharp & Clear Images
   ============================================ */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: bicubic;
}
/* Gallery images */
.gallery-item img,
.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center top;
    display: block;
    image-rendering: auto;
    transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
/* Card images */
.card img,
.blog-card img {
    width: 100%;
    object-fit: cover;
    display: block;
}
/* Mandir / right frame image */
.mandir-frame img,
.deity-image,
.hero-right-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: inherit;
    image-rendering: auto;
}
/* Any img inside section */
section img:not(.site-logo img):not(.footer-brand-logo) {
    max-width: 100%;
    height: auto;
}
/* Fix blurry images — force hardware acceleration */
.fade-in img,
.card img,
.gallery-item img {
    will-change: auto;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Responsive */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(3, 1fr); }
    .grid-5 { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
    .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .hero { min-height: auto; padding: 120px 0 60px; }
    .hero-title { font-size: 2rem; }
    .mandir-frame { max-width: 320px; }
    .nav { display: none; }
    .mobile-toggle { display: flex; }
    .mobile-menu { display: block; }
    .update-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .bhajan-card { grid-template-columns: 1fr; }
    .timeline { padding-left: 30px; }
    .page-header { padding: 120px 0 40px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .container-fluid { padding: 0 16px; }
    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; }
    .update-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .suvichar-card { padding: 24px; }
    .suvichar-text { font-size: 1.2rem; }
}

/* ============================================================
   FULL-WIDTH DESKTOP RESPONSIVE OVERHAUL v6
   Desktop: 100% width, comfortable padding
   Tablet: 768–1024px
   Mobile: <768px
   ============================================================ */

/* Large desktop (>1400px): slightly more padding for breathing room */
@media (min-width: 1400px) {
    .container { padding: 0 60px; }
    .container-fluid { padding: 0 60px; }
    .site-header-inner { padding: 0 60px; }
    .header-ticker-inner { padding: 0 60px; }
}

/* Standard desktop (1025–1399px) */
@media (min-width: 1025px) and (max-width: 1399px) {
    .container { padding: 0 40px; }
    .container-fluid { padding: 0 40px; }
}

/* Force all section containers to use full width */
.hero-divine .container,
.counter-section .container,
.story-section .container,
.video-showcase .container,
.darshan-timer-section .container,
.section .container {
    width: 100%;
    max-width: 100%;
}

/* Grid system — full width at desktop */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; width: 100%; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; width: 100%; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; width: 100%; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; width: 100%; }

/* Gallery — 4 columns on desktop */
@media (min-width: 1025px) {
    .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
    .grid-5 { grid-template-columns: repeat(5, 1fr); }
    .footer-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; }
    .contact-grid { grid-template-columns: 1fr 1fr; gap: 60px; }
    .bhajan-card { grid-template-columns: 200px 1fr; }
    .about-grid { grid-template-columns: 1fr 1fr; gap: 60px; }
    .darshan-grid { grid-template-columns: 1fr 1fr 1fr; }
    .video-grid { grid-template-columns: 60% 40%; }
    .counter-grid { grid-template-columns: repeat(4, 1fr); }
    .story-teaser-grid { grid-template-columns: repeat(3, 1fr); }
    .tv-frame { max-width: 100%; }
    .content-wrapper { max-width: 100%; }
}

/* Tablet: 768–1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .container { padding: 0 24px; }
    .container-fluid { padding: 0 24px; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-5 { grid-template-columns: repeat(3, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .darshan-grid { grid-template-columns: 1fr 1fr; }
    .video-grid { grid-template-columns: 1fr; }
    .counter-grid { grid-template-columns: repeat(2, 1fr); }
    .page-header { padding: 100px 0 50px; }
}

/* Ensure no horizontal scroll on any device */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Sections fill full width */
section, .section, header, footer, nav {
    width: 100%;
    box-sizing: border-box;
}

/* Images always responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Table responsive wrapper */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Content pages — wider layout on desktop */
@media (min-width: 1025px) {
    .content-page { padding: 50px 0 80px; }
    .content-text { font-size: 1.05rem; line-height: 1.85; }
    .section-title { font-size: clamp(1.6rem, 2.5vw, 2.4rem); }
    .page-header { padding: 130px 0 70px; }
    .page-header-title { font-size: clamp(2rem, 3.5vw, 3rem); }
}

/* Footer always full width */
.new-footer, footer {
    width: 100%;
}
.footer-main {
    max-width: 100%;
    width: 100%;
    padding: 0 40px;
}
@media (min-width: 1400px) {
    .footer-main { padding: 0 60px; }
}
@media (max-width: 480px) {
    .footer-main { padding: 0 16px; }
}

/* Fix section subtitle max-width constraint */
.section-subtitle {
    max-width: 100%;
}

/* Card grids always full width */
.cards-grid,
.update-grid,
.pages-grid {
    width: 100%;
}

/* Prevent content overflow in all page cards */
.card,
.update-card,
.bhajan-card,
.hotel-card,
.blog-card {
    box-sizing: border-box;
    width: 100%;
}

/* Mobile menu — full width */
@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .container-fluid { padding: 0 20px; }
    .section { padding: 50px 0; }
    .grid-2 { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .bhajan-card { grid-template-columns: 1fr; }
    .video-grid { grid-template-columns: 1fr; }
    .darshan-grid { grid-template-columns: 1fr; }
    .counter-grid { grid-template-columns: repeat(2, 1fr); }
    .tv-frame { border-radius: 12px; padding: 8px; }
    .footer-main { padding: 0 20px; }
    .page-header { padding: 100px 0 40px; }
}

@media (max-width: 480px) {
    .container { padding: 0 14px; }
    .container-fluid { padding: 0 14px; }
    .grid-4 { grid-template-columns: 1fr; }
    .grid-5 { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .counter-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .section { padding: 40px 0; }
    .page-header { padding: 90px 0 35px; }
    .footer-main { padding: 0 14px; }
}
