/* ===== CSS RESET & VARIABLES ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --saffron: #FF6B00;
    --saffron-light: #FF8C33;
    --saffron-deep: #E55A00;
    --gold: #D4A843;
    --gold-light: #F0D68A;
    --gold-dark: #B8922E;
    --temple-red: #8B1A1A;
    --temple-red-light: #A52A2A;
    --cream: #FFF8EF;
    --cream-dark: #F5EBD8;
    --brown-dark: #3E2723;
    --brown-medium: #5D4037;
    --text-dark: #2C1810;
    --text-medium: #4A3728;
    --text-light: #6D5D4B;
    --white: #FFFFFF;
    --overlay-dark: rgba(30, 15, 5, 0.7);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Noto Sans', sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

a { text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== DECORATIVE BORDER ===== */
.ornament-border {
    height: 6px;
    background: repeating-linear-gradient(90deg,
        var(--saffron) 0px, var(--saffron) 20px,
        var(--gold) 20px, var(--gold) 40px,
        var(--temple-red) 40px, var(--temple-red) 60px,
        var(--gold) 60px, var(--gold) 80px);
}
.ornament-border-top, .ornament-border-bottom {
    height: 6px;
    background: repeating-linear-gradient(90deg,
        var(--saffron) 0px, var(--saffron) 20px,
        var(--gold) 20px, var(--gold) 40px,
        var(--temple-red) 40px, var(--temple-red) 60px,
        var(--gold) 60px, var(--gold) 80px);
}
.ornament-top, .ornament-bottom { position: relative; z-index: 10; }
.ornament-top svg, .ornament-bottom svg { display: block; width: 100%; height: 6px; }

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--temple-red);
    color: var(--gold-light);
    text-align: center;
    padding: 6px 20px;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
}
.top-bar a { color: var(--gold-light); text-decoration: none; }
.top-bar a:hover { color: var(--white); }
.top-bar-content {
    display: flex; justify-content: space-between; align-items: center;
    max-width: 1200px; margin: 0 auto;
}
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 8px; }
.top-bar-item { display: inline-flex; align-items: center; gap: 4px; }
.top-bar-separator { margin: 0 6px; opacity: 0.6; }
.top-bar-text { display: inline-flex; align-items: center; gap: 4px; }
.top-bar-contact { display: inline-flex; align-items: center; gap: 12px; }
.temple-hours { font-size: 0.8rem; opacity: 0.9; }
.icon-phone, .icon-email { font-size: 0.85rem; }
.contact-info { display: flex; align-items: center; gap: 15px; }
.contact-item { display: inline-flex; align-items: center; gap: 4px; }

/* ===== NAVIGATION ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(62, 39, 35, 0.97);
    backdrop-filter: blur(12px);
    padding: 0 40px;
    transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.sticky-header { position: sticky; top: 0; z-index: 1000; }
.sticky-navbar {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(62, 39, 35, 0.97);
    backdrop-filter: blur(12px);
    padding: 0 40px;
    transition: var(--transition);
}
.navbar-container, .nav-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}
.navbar-brand { display: flex; align-items: center; }
.navbar-logo { display: flex; align-items: center; }
.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--gold-light);
    flex-shrink: 0;
}
.nav-logo img {
    height: 50px; width: auto;
}
.nav-logo-icon {
    width: 45px; height: 45px;
    background: linear-gradient(135deg, var(--saffron), var(--gold));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--white); font-weight: 700;
}
.nav-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; font-weight: 700; line-height: 1.2;
    color: var(--gold-light);
}
.nav-logo-text small {
    display: block;
    font-family: 'Noto Sans', sans-serif;
    font-size: 0.65rem; font-weight: 400;
    color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase;
}
.logo {
    display: flex; align-items: center; gap: 10px;
}
.logo h1, .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; font-weight: 700;
    color: var(--gold-light); margin: 0;
}
.logo-subtitle {
    font-family: 'Noto Sans', sans-serif;
    font-size: 0.65rem; color: var(--gold);
    letter-spacing: 1.5px; text-transform: uppercase;
}
.nav-links, .nav-menu {
    display: flex; list-style: none; gap: 5px; align-items: center;
}
.nav-links a, .nav-menu a, .nav-link {
    color: var(--cream-dark); text-decoration: none;
    padding: 8px 14px; font-size: 0.88rem; font-weight: 500;
    border-radius: var(--radius-sm); transition: var(--transition);
    position: relative;
}
.nav-links a:hover, .nav-links a.active,
.nav-menu a:hover, .nav-menu a.active,
.nav-link:hover, .nav-link.active {
    color: var(--gold-light);
    background: rgba(255, 107, 0, 0.15);
}
.nav-links a::after, .nav-menu a::after {
    content: ''; position: absolute; bottom: 2px; left: 50%;
    width: 0; height: 2px; background: var(--saffron);
    transition: var(--transition); transform: translateX(-50%);
}
.nav-links a:hover::after, .nav-menu a:hover::after { width: 60%; }
.nav-donate, .donate-btn {
    background: linear-gradient(135deg, var(--saffron), var(--saffron-deep)) !important;
    color: var(--white) !important; font-weight: 600 !important;
    padding: 10px 22px !important; border-radius: 50px !important;
}
.nav-donate:hover, .donate-btn:hover {
    background: linear-gradient(135deg, var(--saffron-light), var(--saffron)) !important;
    transform: translateY(-1px);
}
.nav-donate::after, .donate-btn::after { display: none !important; }
.nav-item { list-style: none; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
    display: none; position: absolute; top: 100%; left: 0;
    background: var(--brown-dark); border-radius: var(--radius-sm);
    min-width: 200px; padding: 8px 0; box-shadow: var(--shadow-lg);
    z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
    display: block; padding: 8px 20px; font-size: 0.85rem;
    color: var(--cream-dark); border-radius: 0;
}
.nav-dropdown-menu a:hover { background: rgba(255,107,0,0.15); }

/* Hamburger */
.hamburger {
    display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px;
}
.hamburger span {
    width: 26px; height: 2.5px; background: var(--gold-light);
    border-radius: 2px; transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; font-size: 0.95rem; font-weight: 600;
    text-decoration: none; border-radius: 50px;
    transition: var(--transition); cursor: pointer; border: none;
    letter-spacing: 0.3px; font-family: 'Noto Sans', sans-serif;
}
.btn-primary {
    background: linear-gradient(135deg, var(--saffron), var(--saffron-deep));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 107, 0, 0.5);
}
.btn-secondary {
    background: transparent; color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
    padding: 14px 32px;
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--gold-light); color: var(--gold-light);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent; color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--gold-light); color: var(--gold-light);
    transform: translateY(-2px);
}
.btn-outline-dark {
    background: transparent; color: var(--text-dark);
    border: 2px solid var(--gold);
}
.btn-outline-dark:hover {
    background: var(--gold); color: var(--white); transform: translateY(-2px);
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--brown-dark);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 168, 67, 0.4);
}
.btn-light {
    background: var(--white); color: var(--text-dark);
    font-weight: 600;
}
.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255,255,255,0.3);
}
.btn-sm {
    padding: 10px 20px; font-size: 0.85rem;
}
.btn-link {
    background: none; color: var(--saffron); padding: 0;
    font-weight: 600; border-radius: 0;
    display: inline-flex; align-items: center; gap: 6px;
}
.btn-link:hover { color: var(--saffron-deep); transform: translateX(3px); }
.btn-donate {
    background: linear-gradient(135deg, var(--saffron), var(--saffron-deep));
    color: var(--white); font-weight: 600;
    padding: 10px 22px; border-radius: 50px;
}
.btn-donate:hover { transform: translateY(-1px); }
.btn-donate-footer {
    display: inline-block; margin-top: 15px;
    padding: 10px 24px; border-radius: 50px;
    background: linear-gradient(135deg, var(--saffron), var(--saffron-deep));
    color: var(--white); font-weight: 600; font-size: 0.88rem;
    text-decoration: none; transition: var(--transition);
}
.btn-donate-footer:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(255,107,0,0.4); }

/* CTA Button (used in deities, festivals) */
.cta-button {
    display: inline-block; padding: 14px 32px;
    background: linear-gradient(135deg, var(--saffron), var(--saffron-deep));
    color: var(--white); font-weight: 600; font-size: 0.95rem;
    border-radius: 50px; text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(255,107,0,0.4);
}
.cta-button:hover { transform: translateY(-2px); box-shadow: 0 6px 30px rgba(255,107,0,0.5); }

/* ===== SECTIONS ===== */
.section { padding: 90px 40px; }
.section-dark { background: var(--brown-dark); color: var(--cream); }
.section-cream { background: var(--cream); }
.section-warm { background: var(--cream-dark); }
.section-light { background: var(--cream); }
.section-red { background: linear-gradient(135deg, var(--temple-red), var(--temple-red-light), var(--saffron-deep)); color: var(--white); }

.container { max-width: 1200px; margin: 0 auto; }
.container-narrow { max-width: 900px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
    font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 3px; color: var(--saffron); margin-bottom: 10px;
}
.section-title {
    font-family: 'Playfair Display', serif; font-size: 2.6rem;
    font-weight: 700; color: var(--text-dark); margin-bottom: 20px; line-height: 1.35;
}
.section-title-centered { text-align: center; }
.section-dark .section-title { color: var(--gold-light); }
.section-dark .section-label { color: var(--saffron-light); }
.section-line, .ornament-line {
    width: 80px; height: 3px;
    background: linear-gradient(90deg, var(--saffron), var(--gold));
    margin: 0 auto 25px; border-radius: 2px;
}
.section-desc {
    max-width: 700px; margin: 0 auto;
    color: var(--text-light); font-size: 1.05rem; line-height: 1.8;
}
.section-dark .section-desc { color: rgba(255,248,239,0.7); }
.section-subtitle {
    color: var(--text-light); font-size: 1rem; text-align: center;
    margin-top: 15px; margin-bottom: 40px;
}

/* ===== PAGE HEADER / BANNER ===== */
.page-banner {
    position: relative; padding: 120px 40px 80px;
    text-align: center; overflow: hidden;
    background: var(--brown-dark);
}
.page-banner-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    filter: brightness(0.3); transform: scale(1.05);
}
.page-banner-overlay, .banner-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(62,39,35,0.4), rgba(30,15,5,0.8));
}
.page-banner-content { position: relative; z-index: 2; }
.page-banner h1, .page-banner-title, .banner-title {
    font-family: 'Playfair Display', serif; font-size: 3rem;
    font-weight: 700; color: var(--white); margin-bottom: 15px;
    position: relative; z-index: 2;
}
.page-banner p, .banner-subtitle {
    color: rgba(255,248,239,0.8); font-size: 1.1rem; max-width: 600px; margin: 5px auto 0;
    position: relative; z-index: 2;
}
.breadcrumb {
    margin-top: 20px; font-size: 0.85rem; color: rgba(255,248,239,0.5);
    position: relative; z-index: 2;
}
.breadcrumb a { color: var(--gold-light); text-decoration: none; }
.breadcrumb a:hover { color: var(--saffron-light); }
.breadcrumb span { margin: 0 8px; }
.breadcrumb-content { max-width: 1200px; margin: 0 auto; padding: 10px 20px; }
.breadcrumb-separator { margin: 0 6px; }
.breadcrumb-current { color: var(--text-light); }
.main-content { min-height: 50vh; }

/* ===== HERO SECTION ===== */
.hero {
    position: relative; min-height: 90vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(62,39,35,0.3) 0%, rgba(30,15,5,0.75) 100%);
    z-index: 1;
}
.hero-content {
    position: relative; z-index: 2;
    text-align: center; max-width: 800px; padding: 40px 20px;
}
.sanskrit-text {
    font-family: 'Lora', serif; font-style: italic;
    color: var(--gold-light); font-size: 1.2rem;
    letter-spacing: 2px; margin-bottom: 15px;
    animation: fadeInUp 0.8s ease both;
    animation-delay: 0.2s;
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw + 0.5rem, 3.5rem);
    font-weight: 800; color: var(--white);
    line-height: 1.15; margin-bottom: 10px;
    animation: fadeInUp 0.8s ease both;
    animation-delay: 0.5s;
}
.hero-subtitle {
    font-family: 'Lora', serif; font-style: italic;
    color: var(--saffron-light); font-size: 1.15rem;
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease both;
    animation-delay: 0.8s;
}
.hero-description {
    color: var(--cream); font-size: 1.05rem;
    line-height: 1.8; margin-bottom: 30px; opacity: 0.9;
    animation: fadeInUp 0.8s ease both;
    animation-delay: 1.0s;
}
.hero-cta {
    display: flex; justify-content: center; gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease both;
    animation-delay: 1.3s;
}

/* ===== HIGHLIGHTS BAR ===== */
.highlights-bar {
    background: var(--brown-dark); padding: 40px 20px;
}
.highlights-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 25px; max-width: 1200px; margin: 0 auto;
}
.highlight-item { text-align: center; }
.highlight-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw + 0.5rem, 3rem);
    font-weight: 700; color: var(--gold-light);
    line-height: 1.2;
}
.highlight-label {
    color: var(--cream); font-size: 0.85rem;
    opacity: 0.8; line-height: 1.4; margin-top: 5px;
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
    padding: 90px 40px; background: var(--cream-dark);
}
.about-preview-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 40px; align-items: center; max-width: 1200px; margin: 0 auto;
}
.about-preview-image {
    overflow: hidden; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.about-preview-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}
.about-preview-image:hover img { transform: scale(1.05); }
.about-preview-content .section-title { text-align: left; }
.about-preview-content p {
    color: var(--text-medium); font-size: 0.95rem;
    line-height: 1.8; margin-bottom: 15px;
}

/* ===== DEITIES SECTION ===== */
.featured-deities, .deities-section { padding: 90px 40px; }
.deities-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 30px; max-width: 1200px; margin: 0 auto;
}
.deity-card {
    background: var(--white); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-sm);
    border: 1px solid rgba(212,168,67,0.15);
    transition: var(--transition);
}
.deity-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.deity-image {
    height: 220px; overflow: hidden;
}
.deity-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}
.deity-card:hover .deity-image img { transform: scale(1.08); }
.deity-content { padding: 24px; }
.deity-name, .deity-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem; color: var(--text-dark); margin-bottom: 8px;
}
.deity-subtitle {
    font-family: 'Lora', serif; font-style: italic;
    color: var(--saffron); font-size: 0.88rem; margin-bottom: 12px;
}
.deity-description {
    color: var(--text-light); font-size: 0.92rem; line-height: 1.7;
    margin-bottom: 12px;
}
.deity-description p { margin-bottom: 10px; }
.deity-link {
    color: var(--saffron); font-weight: 600; font-size: 0.9rem;
    display: inline-flex; align-items: center; gap: 4px;
    transition: var(--transition);
}
.deity-link:hover { color: var(--saffron-deep); transform: translateX(3px); }
.deity-cta { text-align: center; margin-top: 40px; }

/* Deities page — Featured deity */
.deity-featured { padding: 80px 40px; background: var(--cream-dark); }
.deity-featured-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 50px;
    align-items: center; max-width: 1200px; margin: 0 auto;
}
.deity-featured-image { overflow: hidden; border-radius: var(--radius-lg); }
.deity-featured-image img {
    width: 100%; max-height: 500px; object-fit: cover;
    border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
}
.deity-featured-content .deity-title { font-size: 2rem; margin-bottom: 10px; }
.deity-featured-content .deity-subtitle { font-size: 1rem; margin-bottom: 18px; }
.deity-featured-content .deity-description { font-size: 0.95rem; line-height: 1.8; }
.deity-featured-content .deity-description p { margin-bottom: 12px; }

/* Deities page — Alternating panels */
.deities-showcase { padding: 60px 40px; }
.deities-showcase .container { max-width: 1200px; margin: 0 auto; }
.deity-panel {
    display: grid; grid-template-columns: 1fr 1fr; gap: 50px;
    align-items: center; padding: 60px 0;
    border-bottom: 1px solid rgba(212,168,67,0.1);
}
.deity-panel:last-child { border-bottom: none; }
.deity-panel-reverse .deity-panel-image { order: 2; }
.deity-panel-reverse .deity-panel-content { order: 1; }
.deity-panel-image { overflow: hidden; border-radius: var(--radius-lg); }
.deity-panel-image img {
    width: 100%; height: 350px; object-fit: cover;
    border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
}
.deity-panel-content .deity-title { font-size: 1.6rem; }
.deity-panel-content .deity-subtitle { font-size: 0.95rem; }
.deity-panel-content .deity-description { font-size: 0.95rem; line-height: 1.8; }
.deity-panel-content .deity-description p { margin-bottom: 12px; }

/* Deities page card content */
.card-content { padding: 24px; }
.card-content h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--text-dark); margin-bottom: 8px; }
.card-content h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--text-dark); margin-bottom: 10px; }
.card-content h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--text-dark); margin: 15px 0 8px; }
.card-content p { color: var(--text-light); font-size: 0.92rem; line-height: 1.7; margin-bottom: 10px; }
.card-content ul { margin: 8px 0 12px 20px; }
.card-content ul li { color: var(--text-light); font-size: 0.92rem; line-height: 1.7; margin-bottom: 4px; }

/* Intro section */
.intro-section { padding: 50px 40px; text-align: center; }
.intro-text {
    max-width: 800px; margin: 0 auto;
    color: var(--text-medium); font-size: 1.05rem; line-height: 1.8;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--temple-red), var(--temple-red-light), var(--saffron-deep));
    color: var(--white); text-align: center; padding: 80px 40px;
}
.cta-banner-content, .cta-content {
    max-width: 700px; margin: 0 auto;
}
.cta-banner-title {
    font-family: 'Playfair Display', serif; font-size: 2.2rem;
    font-weight: 700; color: var(--white); margin-bottom: 15px;
}
.cta-banner-text {
    color: var(--cream-dark); font-size: 1.05rem;
    line-height: 1.8; margin-bottom: 25px; opacity: 0.9;
}
.cta-content h2 {
    font-family: 'Playfair Display', serif; font-size: 2.2rem;
    font-weight: 700; color: var(--white); margin-bottom: 15px;
}
.cta-content p {
    color: var(--cream-dark); font-size: 1.05rem;
    line-height: 1.8; margin-bottom: 25px; opacity: 0.9;
}
.cta-section {
    background: linear-gradient(135deg, var(--temple-red), var(--temple-red-light), var(--saffron-deep));
    color: var(--white); text-align: center; padding: 80px 40px;
}
.cta-section h2 {
    font-family: 'Playfair Display', serif; font-size: 2.2rem;
    font-weight: 700; color: var(--white); margin-bottom: 15px;
}
.cta-section p {
    color: var(--cream-dark); font-size: 1.05rem;
    line-height: 1.8; margin-bottom: 25px; max-width: 700px; margin-left: auto; margin-right: auto;
}
.cta-section a { color: var(--gold-light); }

/* ===== TEMPLE TIMINGS ===== */
.temple-timings {
    padding: 90px 40px; background: var(--cream-dark);
}
.timings-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 25px; max-width: 1200px; margin: 0 auto;
}
.timing-card {
    background: var(--white); padding: 30px;
    text-align: center; border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-top: 3px solid transparent;
    transition: var(--transition);
}
.timing-card:hover {
    border-top-color: var(--saffron);
    transform: translateY(-5px); box-shadow: var(--shadow-md);
}
.timing-period {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; color: var(--saffron);
    text-transform: uppercase; font-weight: 700;
    margin-bottom: 10px;
}
.timing-hours {
    font-size: 1.4rem; font-weight: 700;
    color: var(--text-dark); margin-bottom: 8px;
}
.timing-description {
    color: var(--text-light); font-size: 0.88rem; line-height: 1.6;
}

/* ===== FESTIVALS ===== */
.festivals-preview, .festival-section { padding: 90px 40px; }
.festivals-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 25px; max-width: 1200px; margin: 0 auto;
}
.festival-card {
    background: var(--white); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(212,168,67,0.15);
}
.festival-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.festival-banner {
    height: 80px; display: flex; align-items: center; justify-content: center;
    color: var(--white); padding: 15px;
}
.festival-month {
    font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700;
}
.festival-content { padding: 24px; }
.festival-name {
    font-family: 'Playfair Display', serif; font-size: 1.15rem;
    color: var(--text-dark); margin-bottom: 8px;
}
.festival-date {
    color: var(--saffron); font-size: 0.85rem; font-weight: 600; margin-bottom: 10px;
}
.festival-description {
    color: var(--text-light); font-size: 0.92rem; line-height: 1.7; margin-bottom: 12px;
}

/* Cards grid for festivals */
.cards-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px; max-width: 1200px; margin: 0 auto;
}
.ritual-list { margin: 10px 0 15px 20px; }
.ritual-list li { margin-bottom: 6px; color: var(--text-medium); font-size: 0.92rem; }
.ritual-list ul { margin: 5px 0 5px 20px; }

/* Festivals page — Daily Pooja card */
.daily-pooja-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 40px; box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--saffron);
    max-width: 900px; margin: 0 auto;
}
.daily-pooja-card h3 {
    font-family: 'Playfair Display', serif; font-size: 1.3rem;
    color: var(--text-dark); margin-bottom: 12px;
}
.daily-pooja-card h4 {
    font-family: 'Playfair Display', serif; font-size: 1.1rem;
    color: var(--text-dark); margin: 20px 0 10px;
}
.daily-pooja-card p {
    color: var(--text-medium); font-size: 0.95rem; line-height: 1.8; margin-bottom: 10px;
}
.daily-pooja-card .temple-hours {
    font-size: 1.2rem; font-weight: 600; color: var(--saffron); padding: 15px 0;
}

/* Festivals page — Festival timing label */
.festival-timing {
    color: var(--saffron); font-weight: 600; font-size: 0.88rem; margin-bottom: 12px;
}

/* Festivals page — Major festivals grid */
.festivals-major-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 30px; max-width: 1200px; margin: 0 auto;
}
.festival-major-card {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(212,168,67,0.15);
    border-radius: var(--radius-lg); padding: 30px;
    border-left: 4px solid var(--saffron);
    transition: var(--transition);
}
.festival-major-card:hover {
    background: rgba(255,255,255,0.08); transform: translateY(-3px);
}
.festival-major-card h3 {
    font-family: 'Playfair Display', serif; font-size: 1.2rem;
    color: var(--gold-light); margin-bottom: 8px;
}
.festival-major-card p {
    color: rgba(255,248,239,0.7); font-size: 0.92rem; line-height: 1.7; margin-bottom: 8px;
}
.festival-major-card .festival-timing {
    color: var(--saffron-light);
}

/* CTA contact note */
.cta-contact-note {
    margin-top: 10px; font-size: 0.9rem; opacity: 0.85;
}
.cta-contact-note a { color: var(--gold-light); }

/* ===== QUICK CONTACT ===== */
.quick-contact {
    padding: 90px 40px; background: var(--brown-dark); color: var(--cream);
}
.quick-contact .section-title { color: var(--gold-light); }
.contact-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 30px; max-width: 1200px; margin: 0 auto;
}
.contact-item {
    text-align: center; padding: 30px;
}
.contact-item h4 {
    font-family: 'Playfair Display', serif;
    color: var(--gold-light); font-size: 1.15rem; margin-bottom: 10px;
}
.contact-item p {
    color: rgba(255,248,239,0.7); font-size: 0.92rem; line-height: 1.7;
}
.contact-item a { color: var(--gold-light); text-decoration: none; transition: var(--transition); }
.contact-item a:hover { color: var(--saffron-light); }
.contact-icon { font-size: 2.5rem; margin-bottom: 15px; }
.contact-cta {
    display: flex; justify-content: center; gap: 15px; margin-top: 40px;
    flex-wrap: wrap;
}

/* ===== CARDS ===== */
.card {
    background: var(--white); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-sm);
    transition: var(--transition); border: 1px solid rgba(212,168,67,0.15);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card-image { height: 280px; overflow: hidden; }
.card-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}
.card:hover .card-image img { transform: scale(1.08); }
.card-body { padding: 24px; }
.card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem; color: var(--text-dark); margin-bottom: 5px;
}
.card-body .subtitle {
    font-family: 'Lora', serif; font-style: italic;
    color: var(--saffron); font-size: 0.88rem; margin-bottom: 12px;
}
.card-body p {
    color: var(--text-light); font-size: 0.92rem; line-height: 1.7;
}

/* Dark cards (for dark sections) */
.card-dark {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,168,67,0.2);
    border-radius: var(--radius-md); padding: 30px 25px;
    transition: var(--transition); text-align: center;
}
.card-dark:hover {
    background: rgba(255,255,255,0.1); border-color: var(--gold);
    transform: translateY(-5px);
}
.card-dark h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem; color: var(--gold-light); margin-bottom: 10px;
}
.card-dark p { color: rgba(255,248,239,0.7); font-size: 0.9rem; line-height: 1.7; }

/* Icon cards */
.icon-card {
    text-align: center; padding: 40px 30px;
    background: var(--white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm); border: 1px solid rgba(212,168,67,0.15);
    transition: var(--transition);
}
.icon-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.icon-card-icon {
    width: 70px; height: 70px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,107,0,0.1), rgba(212,168,67,0.15));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; font-size: 1.8rem;
}
.icon-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem; color: var(--text-dark); margin-bottom: 12px;
}
.icon-card p { color: var(--text-light); font-size: 0.92rem; line-height: 1.7; }

/* ===== GRIDS ===== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }

/* ===== ABOUT PAGE SECTIONS ===== */
.heritage-section, .idol-section, .worship-section { padding: 90px 40px; }
.heritage-section { background: var(--cream); }
.idol-section { background: var(--cream-dark); }
.worship-section { background: var(--cream); }

.heritage-content, .idol-content, .worship-content {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 40px; align-items: start; max-width: 1200px; margin: 0 auto;
}
.heritage-text h3, .idol-text h3, .worship-text h3 {
    font-family: 'Playfair Display', serif; font-size: 1.5rem;
    color: var(--text-dark); margin-bottom: 15px;
}
.heritage-text p, .idol-text p, .worship-text p {
    color: var(--text-medium); font-size: 0.95rem;
    line-height: 1.8; margin-bottom: 15px;
}
.heritage-quote {
    border-left: 4px solid var(--gold); padding: 15px 20px;
    margin: 20px 0; background: rgba(212,168,67,0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.heritage-quote p {
    font-family: 'Lora', serif; font-style: italic;
    color: var(--text-medium); font-size: 1rem;
}
.heritage-image img, .idol-image img, .worship-image img {
    border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
    width: 100%; height: auto; object-fit: cover;
}

/* Idol specs */
.idol-spec { margin-bottom: 20px; }
.idol-spec h4 {
    font-family: 'Playfair Display', serif; font-size: 1.15rem;
    color: var(--saffron); margin-bottom: 8px;
}
.idol-details { margin: 8px 0 0 20px; }
.idol-details li {
    color: var(--text-medium); font-size: 0.92rem; line-height: 1.8;
    margin-bottom: 4px; list-style-type: disc;
}
.idol-note {
    background: rgba(255,107,0,0.05); border-left: 4px solid var(--saffron);
    padding: 15px 20px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-top: 15px;
}

/* Timeline */
.timeline-section { padding: 90px 40px; background: var(--cream-dark); }
.timeline { position: relative; max-width: 900px; margin: 0 auto; padding-left: 50px; }
.timeline::before {
    content: ''; position: absolute; left: 20px; top: 0; bottom: 0;
    width: 2px; background: linear-gradient(180deg, var(--saffron), var(--gold));
}
.timeline-item {
    position: relative; margin-bottom: 35px;
    padding-left: 30px;
}
.timeline-marker {
    position: absolute; left: -40px; top: 5px;
    display: flex; flex-direction: column; align-items: center;
}
.timeline-dot {
    width: 20px; height: 20px; border-radius: 50%;
    background: linear-gradient(135deg, var(--saffron), var(--gold));
    border: 3px solid var(--cream-dark);
    box-shadow: 0 0 0 3px var(--saffron);
}
.timeline-year {
    font-family: 'Playfair Display', serif; font-size: 0.9rem;
    font-weight: 700; color: var(--saffron); margin-top: 5px;
    white-space: nowrap;
}
.timeline-content {
    background: var(--white); padding: 20px 25px;
    border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
    border: 1px solid rgba(212,168,67,0.15);
}
.timeline-content h4 {
    font-family: 'Playfair Display', serif; font-size: 1.15rem;
    color: var(--text-dark); margin-bottom: 8px;
}
.timeline-content p {
    color: var(--text-light); font-size: 0.92rem; line-height: 1.7;
}

/* Mission */
.mission-section { padding: 90px 40px; background: var(--cream); }
.mission-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 25px; max-width: 1200px; margin: 0 auto;
}
.mission-card {
    text-align: center; padding: 35px 25px;
    background: var(--white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm); border: 1px solid rgba(212,168,67,0.15);
    transition: var(--transition);
}
.mission-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.mission-icon {
    width: 70px; height: 70px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,107,0,0.1), rgba(212,168,67,0.15));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px; font-size: 1.8rem;
}
.mission-card h3 {
    font-family: 'Playfair Display', serif; font-size: 1.15rem;
    color: var(--text-dark); margin-bottom: 10px;
}
.mission-card p {
    color: var(--text-light); font-size: 0.9rem; line-height: 1.7;
}

/* Charitable */
.charitable-section { padding: 90px 40px; background: var(--brown-dark); color: var(--cream); }
.charitable-intro {
    max-width: 800px; margin: 0 auto 40px; text-align: center;
    color: rgba(255,248,239,0.8); font-size: 1.05rem; line-height: 1.8;
}
.charitable-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 30px; max-width: 1200px; margin: 0 auto;
}
.charitable-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,168,67,0.2);
    border-radius: var(--radius-md); padding: 30px 25px;
    text-align: center; transition: var(--transition);
}
.charitable-card:hover {
    background: rgba(255,255,255,0.1); border-color: var(--gold);
    transform: translateY(-5px);
}
.card-icon { font-size: 2rem; margin-bottom: 15px; }
.charitable-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem; color: var(--gold-light); margin-bottom: 10px;
}
.charitable-card p {
    color: rgba(255,248,239,0.7); font-size: 0.9rem; line-height: 1.7; margin-bottom: 12px;
}
.card-link {
    color: var(--gold-light); font-size: 0.88rem; font-weight: 600;
    text-decoration: none; transition: var(--transition);
}
.card-link:hover { color: var(--saffron-light); }

/* Worship highlights */
.worship-highlights { margin-top: 15px; }
.worship-highlights h4 {
    font-family: 'Playfair Display', serif; font-size: 1.1rem;
    color: var(--text-dark); margin-bottom: 10px;
}
.worship-highlights ul { margin-left: 20px; }
.worship-highlights li {
    color: var(--text-medium); font-size: 0.92rem;
    line-height: 1.8; margin-bottom: 5px; list-style-type: disc;
}

/* ===== CONTACT PAGE SECTIONS ===== */
.contact-info-section {
    padding: 60px 20px; background: var(--brown-dark); color: var(--cream);
}
.contact-info-section h2 {
    font-family: 'Playfair Display', serif; font-size: 2.2rem;
    text-align: center; margin-bottom: 50px; color: var(--gold-light);
}
.contact-info-section .contact-card {
    background: rgba(255,255,255,0.06); padding: 30px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--saffron);
    transition: var(--transition); box-shadow: var(--shadow-sm);
}
.contact-info-section .contact-card:hover {
    transform: translateY(-5px); box-shadow: var(--shadow-md);
    background: rgba(255,255,255,0.1);
}
.contact-info-section .contact-card h3 {
    font-family: 'Playfair Display', serif; font-size: 1.3rem;
    color: var(--gold-light); margin-bottom: 15px;
}
.contact-info-section .contact-card p {
    font-family: 'Lora', serif; font-size: 0.95rem;
    line-height: 1.7; color: rgba(255,248,239,0.7);
}
.contact-info-section .contact-card a {
    color: var(--gold-light); text-decoration: none; transition: var(--transition);
}
.contact-info-section .contact-card a:hover { color: var(--saffron-light); }

/* Temple Hours */
.temple-hours-section { padding: 60px 20px; background: var(--cream-dark); }
.temple-hours-section h2 {
    font-family: 'Playfair Display', serif; font-size: 2.2rem;
    text-align: center; margin-bottom: 40px; color: var(--saffron);
}
.hours-container {
    max-width: 800px; margin: 0 auto; background: var(--white);
    padding: 40px; border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
}
.hours-item {
    display: flex; justify-content: space-between;
    padding: 18px 0; border-bottom: 1px solid var(--cream-dark);
    font-family: 'Lora', serif;
}
.hours-item:last-child { border-bottom: none; }
.hours-item-title { font-weight: 600; color: var(--saffron); font-size: 0.95rem; }
.hours-item-time { color: var(--text-dark); font-size: 0.95rem; }

/* Contact Form */
.contact-form-section { padding: 60px 20px; background: var(--cream); }
.contact-form-section h2 {
    font-family: 'Playfair Display', serif; font-size: 2.2rem;
    text-align: center; margin-bottom: 40px; color: var(--saffron);
}
.form-container {
    max-width: 700px; margin: 0 auto;
    background: var(--white); padding: 40px;
    border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--saffron);
}
.form-group { margin-bottom: 22px; }
.form-group label {
    display: block; margin-bottom: 6px;
    font-weight: 600; color: var(--text-dark); font-size: 0.9rem;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%; padding: 12px; font-family: 'Noto Sans', sans-serif;
    font-size: 0.92rem; border: 1px solid var(--cream-dark);
    border-radius: var(--radius-sm); background: var(--cream);
    transition: var(--transition); box-sizing: border-box;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none; border-color: var(--saffron);
    box-shadow: 0 0 0 3px rgba(255,107,0,0.15);
    transform: translateY(-1px);
}
.form-group textarea { resize: vertical; min-height: 150px; }
.form-submit {
    width: 100%; padding: 14px;
    background: linear-gradient(135deg, var(--saffron), var(--saffron-deep));
    color: var(--white); font-family: 'Noto Sans', sans-serif;
    font-size: 0.95rem; font-weight: 600; border: none;
    border-radius: 50px; cursor: pointer; transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255,107,0,0.3);
}
.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255,107,0,0.4);
}

/* Maps */
.maps-section { padding: 60px 20px; background: var(--cream-dark); }
.maps-section h2 {
    font-family: 'Playfair Display', serif; font-size: 2.2rem;
    text-align: center; margin-bottom: 40px; color: var(--saffron);
}
.maps-container { max-width: 1200px; margin: 0 auto; }
.maps-container iframe {
    width: 100%; height: 400px; border: none; border-radius: var(--radius-md);
}

/* ===== DONATE PAGE SECTIONS ===== */
.contribution-section { padding: 60px 20px; background: var(--cream); }
.contribution-section h2 {
    font-family: 'Playfair Display', serif; font-size: 2.2rem;
    text-align: center; margin-bottom: 30px; color: var(--saffron);
}
.contribution-text {
    max-width: 800px; margin: 0 auto;
    font-family: 'Lora', serif; font-size: 1rem;
    line-height: 1.8; color: var(--text-medium); text-align: center;
}

.ways-to-donate-section { padding: 60px 20px; background: var(--cream-dark); }
.ways-to-donate-section h2 {
    font-family: 'Playfair Display', serif; font-size: 2.2rem;
    text-align: center; margin-bottom: 50px; color: var(--saffron);
}
.donation-cards {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px; max-width: 1200px; margin: 0 auto;
}
.donation-card {
    background: var(--white); padding: 35px;
    border-radius: var(--radius-lg); text-align: center;
    box-shadow: var(--shadow-sm); transition: var(--transition);
    border-top: 4px solid var(--saffron);
}
.donation-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.donation-card h3 {
    font-family: 'Playfair Display', serif; font-size: 1.3rem;
    color: var(--saffron); margin-bottom: 12px;
}
.donation-card p {
    font-family: 'Lora', serif; font-size: 0.92rem;
    color: var(--text-light); line-height: 1.7;
}

/* Pooja Section */
.pooja-section { padding: 60px 20px; background: var(--cream); }
.pooja-section h2 {
    font-family: 'Playfair Display', serif; font-size: 2.2rem;
    text-align: center; margin-bottom: 30px; color: var(--saffron);
}
.pooja-intro {
    max-width: 800px; margin: 0 auto 40px;
    font-family: 'Lora', serif; font-size: 1rem;
    line-height: 1.8; color: var(--text-medium); text-align: center;
}
.pooja-table-container { max-width: 1000px; margin: 0 auto; overflow-x: auto; }
.pooja-table {
    width: 100%; border-collapse: collapse; background: var(--white);
    border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm);
}
.pooja-table thead { background: var(--brown-dark); }
.pooja-table th {
    padding: 15px 20px; text-align: left;
    color: var(--gold-light); font-family: 'Playfair Display', serif;
    font-size: 0.9rem; font-weight: 600;
}
.pooja-table td {
    padding: 14px 20px; border-bottom: 1px solid var(--cream-dark);
    font-family: 'Lora', serif; font-size: 0.92rem; color: var(--text-medium);
}
.pooja-table tbody tr:hover { background: var(--cream); }

/* Important Note */
.important-note-section { padding: 60px 20px; background: var(--cream-dark); }
.important-note-section h2 {
    font-family: 'Playfair Display', serif; font-size: 2.2rem;
    text-align: center; margin-bottom: 40px; color: var(--saffron);
}
.note-box {
    max-width: 800px; margin: 0 auto;
    background: rgba(255,107,0,0.05); border-left: 4px solid var(--saffron);
    padding: 25px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-family: 'Lora', serif;
}
.note-box p { color: var(--text-medium); font-size: 0.92rem; line-height: 1.8; }
.note-box a { color: var(--saffron); font-weight: 600; text-decoration: none; }
.note-box a:hover { text-decoration: underline; }

/* Payment Methods */
.payment-section { padding: 60px 20px; background: var(--cream); }
.payment-section h2 {
    font-family: 'Playfair Display', serif; font-size: 2.2rem;
    text-align: center; margin-bottom: 30px; color: var(--saffron);
}
.payment-methods { max-width: 800px; margin: 0 auto; text-align: center; }
.payment-methods p {
    font-family: 'Lora', serif; font-size: 0.95rem;
    color: var(--text-medium); margin-bottom: 15px; line-height: 1.8;
}
.payment-icons {
    display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin: 25px 0;
}
.payment-icon {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.payment-icon span { font-size: 2.2rem; }
.payment-icon p { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); }

/* Contact Section (donate page) */
.contact-section { padding: 40px 20px; background: var(--cream-dark); text-align: center; }
.contact-section h2 {
    font-family: 'Playfair Display', serif; font-size: 1.6rem;
    color: var(--saffron); margin-bottom: 20px;
}
.contact-section p {
    font-family: 'Lora', serif; font-size: 0.95rem;
    color: var(--text-medium); margin: 8px 0; line-height: 1.8;
}
.contact-section a { color: var(--saffron); text-decoration: none; font-weight: 600; }
.contact-section a:hover { text-decoration: underline; }

/* ===== PRICING PAGE ===== */
.services-intro { margin-bottom: 30px; }
.pricing-section { margin-bottom: 30px; }
.pricing-notes { margin-top: 30px; }
.pricing-notes h3, .pricing-notes h4 {
    font-family: 'Playfair Display', serif; color: var(--text-dark);
    margin: 20px 0 10px;
}
.pricing-notes p, .pricing-notes li {
    color: var(--text-medium); font-size: 0.92rem; line-height: 1.8;
}
.booking-section, .refund-cancellation-info, .service-delivery-info, .contact-cta { margin-bottom: 30px; }
.pricing-link {
    display: inline-block; margin-top: 25px;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--saffron), var(--saffron-deep));
    color: var(--white); text-decoration: none;
    border-radius: 50px; font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255,107,0,0.3);
}
.pricing-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255,107,0,0.4);
}
.contact-details { margin: 15px 0; }
.contact-details p { color: var(--text-medium); line-height: 1.8; }
.contact-details a { color: var(--saffron); }
.policy-footer { margin-top: 30px; color: var(--text-light); }
.footer-social { display: flex; gap: 12px; margin-top: 10px; }
.footer-social a { color: var(--gold-light); transition: var(--transition); }
.footer-social a:hover { color: var(--saffron-light); }

/* ===== REACH CARDS ===== */
.reach-card {
    display: flex; gap: 18px; padding: 22px;
    background: var(--white); border-radius: var(--radius-md);
    border-left: 4px solid var(--saffron); box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.reach-card:hover { box-shadow: var(--shadow-md); transform: translateX(5px); }
.reach-card-icon {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--saffron), var(--gold));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; flex-shrink: 0; color: var(--white);
}
.reach-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem; color: var(--text-dark); margin-bottom: 5px;
}
.reach-card p { color: var(--text-light); font-size: 0.88rem; line-height: 1.6; }

/* ===== CONTACT CARDS ===== */
.contact-card {
    text-align: center; padding: 40px 30px;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(212,168,67,0.2);
    border-radius: var(--radius-lg); transition: var(--transition);
}
.contact-card:hover { background: rgba(255,255,255,0.1); border-color: var(--gold); transform: translateY(-5px); }
.contact-card-icon {
    width: 65px; height: 65px; border-radius: 50%;
    background: linear-gradient(135deg, var(--saffron), var(--gold));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; font-size: 1.5rem;
}
.contact-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold-light); font-size: 1.2rem; margin-bottom: 10px;
}
.contact-card p { color: rgba(255,248,239,0.7); font-size: 0.95rem; line-height: 1.7; }
.contact-card a { color: var(--gold-light); text-decoration: none; transition: var(--transition); }
.contact-card a:hover { color: var(--saffron-light); }

/* ===== FOOTER ===== */
.footer { background: #1A0F0A; padding: 70px 40px 0; }
.footer-content { max-width: 1200px; margin: 0 auto; }
.footer-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px; padding-bottom: 50px;
}
.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold-light); font-size: 1.4rem; margin-bottom: 12px;
}
.footer-brand p {
    color: rgba(255,248,239,0.65); font-size: 0.9rem; line-height: 1.7; margin-bottom: 15px;
}
.footer-section h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold-light); font-size: 1.15rem; margin-bottom: 15px;
}
.footer-section p {
    color: rgba(255,248,239,0.6); font-size: 0.9rem; line-height: 1.7; margin-bottom: 8px;
}
.footer-section a {
    color: rgba(255,248,239,0.6); text-decoration: none; transition: var(--transition);
}
.footer-section a:hover { color: var(--gold-light); }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 8px; }
.footer-section ul a { font-size: 0.9rem; }
.footer h4, .footer-title {
    font-family: 'Playfair Display', serif;
    color: var(--gold-light); font-size: 1.05rem; margin-bottom: 20px;
    letter-spacing: 0.5px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,248,239,0.6); text-decoration: none;
    font-size: 0.9rem; transition: var(--transition);
}
.footer-links a:hover { color: var(--gold-light); padding-left: 5px; }
.footer-text {
    color: rgba(255,248,239,0.6); font-size: 0.9rem; line-height: 1.7;
}
.footer-text a { color: rgba(255,248,239,0.6); text-decoration: none; transition: var(--transition); }
.footer-text a:hover { color: var(--gold-light); }
.footer-donation { margin-top: 15px; }
.footer-contact-item {
    display: flex; gap: 10px; margin-bottom: 12px;
    color: rgba(255,248,239,0.6); font-size: 0.9rem; align-items: flex-start;
}
.footer-contact-item span { color: var(--saffron); font-size: 1.1rem; }
.footer-contact-item a { color: rgba(255,248,239,0.6); text-decoration: none; transition: var(--transition); }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-bottom {
    max-width: 1200px; margin: 0 auto; padding: 20px 0 25px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 15px;
    border-top: 1px solid rgba(212,168,67,0.1);
}
.footer-bottom p { color: rgba(255,248,239,0.5); font-size: 0.85rem; }
.footer-bottom a { color: rgba(255,248,239,0.6); text-decoration: none; font-size: 0.85rem; transition: var(--transition); }
.footer-bottom a:hover { color: var(--gold-light); }
.footer-bottom-content {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 15px; width: 100%;
}
.footer-address p { color: rgba(255,248,239,0.35); font-size: 0.8rem; }
.copyright { color: rgba(255,248,239,0.35); }
.website-link { font-size: 0.75rem; }
.footer-legal { display: flex; gap: 25px; flex-wrap: wrap; }

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed; bottom: 30px; right: 30px;
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--saffron), var(--gold));
    color: var(--white); border: none; border-radius: 50%;
    font-size: 1.3rem; cursor: pointer;
    box-shadow: var(--shadow-md); opacity: 0; visibility: hidden;
    transition: var(--transition); z-index: 999;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.92); z-index: 3000;
    align-items: center; justify-content: center; padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox img {
    max-width: 90%; max-height: 85vh; object-fit: contain;
    border-radius: var(--radius-md); box-shadow: 0 0 60px rgba(0,0,0,0.5);
}
.lightbox-close {
    position: absolute; top: 20px; right: 30px;
    color: var(--white); font-size: 2.5rem; cursor: pointer;
    background: none; border: none; transition: var(--transition);
}
.lightbox-close:hover { color: var(--saffron); }

/* ===== LEGAL PAGES (Privacy, Terms, etc.) ===== */
.legal-content { max-width: 900px; margin: 0 auto; }
.legal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; color: var(--text-dark); margin: 35px 0 15px;
}
.legal-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem; color: var(--text-dark); margin: 25px 0 10px;
}
.legal-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; color: var(--text-dark); margin: 20px 0 8px;
}
.legal-content p {
    color: var(--text-medium); font-size: 0.95rem; line-height: 1.85; margin-bottom: 15px;
}
.legal-content ul, .legal-content ol { margin: 10px 0 20px 20px; }
.legal-content ul li, .legal-content ol li {
    color: var(--text-medium); font-size: 0.95rem; line-height: 1.85;
    margin-bottom: 8px; list-style-type: disc;
}
.legal-content ol li { list-style-type: decimal; }
.legal-content a { color: var(--saffron); text-decoration: underline; }
.legal-content a:hover { color: var(--saffron-deep); }
.legal-content .effective-date {
    background: var(--cream-dark); padding: 15px 20px;
    border-radius: var(--radius-sm); border-left: 4px solid var(--saffron);
    margin-top: 30px;
}

/* ===== PRICING TABLE ===== */
.pricing-table {
    width: 100%; border-collapse: collapse; margin: 30px 0;
    background: var(--white); border-radius: var(--radius-md); overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.pricing-table thead { background: var(--brown-dark); }
.pricing-table th {
    padding: 15px 20px; text-align: left;
    color: var(--gold-light); font-size: 0.9rem; font-weight: 600;
}
.pricing-table td {
    padding: 14px 20px; border-bottom: 1px solid var(--cream-dark);
    color: var(--text-medium); font-size: 0.92rem;
}
.pricing-table tbody tr:hover { background: var(--cream); }
.pricing-table .price { color: var(--saffron); font-weight: 600; }

/* ===== GALLERY GRID ===== */
.gallery-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px; gap: 15px;
}
.gallery-item {
    border-radius: var(--radius-md); overflow: hidden;
    position: relative; cursor: pointer;
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5));
    opacity: 0; transition: var(--transition);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item.span-2 { grid-column: span 2; }
.gallery-item.span-row-2 { grid-row: span 2; }

/* Gallery Overlay */
.gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.7); display: flex;
    align-items: flex-end; padding: 20px;
    opacity: 0; transition: var(--transition); z-index: 2;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay p {
    color: var(--white); font-size: 1rem;
    font-weight: 500; margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Gallery Note */
.gallery-note {
    background: linear-gradient(135deg, var(--cream-dark), var(--cream));
    padding: 30px 30px; border-radius: var(--radius-md);
    text-align: center; margin: 50px 0 30px;
    border-left: 5px solid var(--saffron);
}
.gallery-note p {
    color: var(--text-medium); font-size: 0.95rem;
    line-height: 1.8; margin: 0;
}
.gallery-note a {
    color: var(--saffron); text-decoration: none;
    font-weight: 600; transition: var(--transition);
}
.gallery-note a:hover {
    color: var(--saffron-deep); text-decoration: underline;
}

/* Reach Cards Container */
.reach-cards {
    display: grid; grid-template-columns: 1fr;
    gap: 20px;
}

/* Reach Map */
.reach-map {
    border-radius: var(--radius-md); overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
}

/* Nearby Landmarks */
.nearby-landmarks {
    margin-top: 60px; padding-top: 40px;
    border-top: 2px dashed var(--gold);
}
.nearby-landmarks h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; color: var(--text-dark);
    margin-bottom: 25px; text-align: center;
}
.landmarks-list {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.landmark-item {
    background: var(--cream); padding: 18px 20px;
    border-radius: var(--radius-md); display: flex;
    align-items: center; gap: 12px;
    border-left: 3px solid var(--saffron);
    transition: var(--transition);
}
.landmark-item:hover {
    background: var(--cream-dark); transform: translateX(8px);
    box-shadow: var(--shadow-sm);
}
.landmark-marker { font-size: 1.3rem; }
.landmark-name {
    color: var(--text-medium); font-size: 0.95rem;
    font-weight: 500;
}

/* ===== BROKEN IMAGE FALLBACK ===== */
img.broken-img {
    display: flex; align-items: center; justify-content: center;
    background: var(--cream-dark); color: var(--text-light);
    min-height: 200px; font-size: 0.9rem;
    border: 1px dashed var(--gold);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.15); }
}
@keyframes sacredReveal {
    from { opacity: 0; transform: translateY(20px); filter: blur(4px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes gentleScaleIn {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes lineGrow {
    from { width: 0; }
    to { width: 80px; }
}
@keyframes goldenPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(255, 107, 0, 0.65); }
}
@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 0 3px var(--saffron); }
    50% { box-shadow: 0 0 0 6px rgba(255, 107, 0, 0.3); }
}

/* Animation utility classes */
.animate-hidden {
    opacity: 0; transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-visible {
    opacity: 1 !important; transform: translateY(0) !important;
}
.animate-on-scroll {
    opacity: 0; transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

/* Image lazy-load fade-in */
img[loading="lazy"] { opacity: 0; transition: opacity 0.5s ease; }
img[loading="lazy"].loaded, img[loading="lazy"][complete] { opacity: 1; }

/* Golden pulse on donate buttons */
.btn-primary, .cta-button, .btn-donate-footer {
    animation: goldenPulse 3s ease-in-out infinite;
}
.btn-primary:hover, .cta-button:hover, .btn-donate-footer:hover {
    animation: none;
}

/* ===== FLUID TYPOGRAPHY ===== */
.section-title { font-size: clamp(1.5rem, 3vw + 0.5rem, 2.6rem); }
.page-banner h1 { font-size: clamp(1.6rem, 4vw + 0.5rem, 3rem); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-2 { grid-template-columns: 1fr; gap: 30px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
    .gallery-item.span-2 { grid-column: span 1; }
    .gallery-item.span-row-2 { grid-row: span 1; }

    .hero { min-height: 80vh; }
    .hero-title { font-size: 2.4rem; }
    .hero-cta { flex-direction: column; align-items: center; }

    .highlights-grid { grid-template-columns: repeat(2, 1fr); }
    .about-preview-grid { grid-template-columns: 1fr; }
    .deities-grid { grid-template-columns: repeat(2, 1fr); }
    .timings-grid { grid-template-columns: repeat(2, 1fr); }
    .festivals-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }

    .heritage-content, .idol-content, .worship-content { grid-template-columns: 1fr; }
    .mission-grid { grid-template-columns: repeat(2, 1fr); }
    .charitable-grid { grid-template-columns: repeat(2, 1fr); }
    .donation-cards { grid-template-columns: repeat(2, 1fr); }

    .deity-featured-grid { gap: 35px; }
    .deity-panel { gap: 35px; }
    .festivals-major-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section { padding: 60px 20px; }
    .navbar, .sticky-navbar { padding: 0 20px; }
    .nav-links, .nav-menu {
        display: none; position: absolute; top: 70px; left: 0; right: 0;
        background: var(--brown-dark); flex-direction: column;
        padding: 20px; gap: 5px; box-shadow: var(--shadow-lg);
    }
    .nav-links.open, .nav-menu.open { display: flex; }
    .hamburger { display: flex; }
    .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-bottom-content { flex-direction: column; text-align: center; }
    .page-banner { padding: 100px 20px 60px; }

    .hero { min-height: 70vh; }
    .hero-title { font-size: 1.8rem; }
    .hero-content { padding: 30px 15px; }
    .highlights-grid { grid-template-columns: repeat(2, 1fr); }
    .deities-grid { grid-template-columns: 1fr; }
    .timings-grid { grid-template-columns: 1fr; }
    .festivals-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .mission-grid { grid-template-columns: 1fr; }
    .charitable-grid { grid-template-columns: 1fr; }
    .donation-cards { grid-template-columns: 1fr; }

    .about-preview { padding: 60px 20px; }
    .temple-timings { padding: 60px 20px; }
    .festivals-preview, .festival-section { padding: 60px 20px; }
    .featured-deities, .deities-section { padding: 60px 20px; }
    .deity-featured { padding: 60px 20px; }
    .deities-showcase { padding: 40px 20px; }
    .deity-featured-grid { grid-template-columns: 1fr; }
    .deity-panel { grid-template-columns: 1fr; padding: 40px 0; }
    .deity-panel-reverse .deity-panel-image { order: 0; }
    .deity-panel-reverse .deity-panel-content { order: 0; }
    .deity-panel-image img { height: 280px; }
    .festivals-major-grid { grid-template-columns: 1fr; }
    .quick-contact { padding: 60px 20px; }
    .cta-banner, .cta-section { padding: 60px 20px; }
    .heritage-section, .idol-section, .worship-section { padding: 60px 20px; }
    .timeline-section { padding: 60px 20px; }
    .mission-section { padding: 60px 20px; }
    .charitable-section { padding: 60px 20px; }

    .top-bar-content { flex-direction: column; gap: 4px; }
    .top-bar-right { display: none; }

    .pricing-table { font-size: 0.85rem; }
    .pricing-table th, .pricing-table td { padding: 10px 12px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }

    .form-group input, .form-group textarea, .form-group select { font-size: 16px; }

    .section-subtitle { margin-top: 10px; }
    .timeline { padding-left: 40px; }
    .timeline::before { left: 15px; }
    .timeline-item { padding-left: 25px; }
    .timeline-marker { left: -35px; }

    .footer { padding: 50px 20px 0; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .gallery-item.span-2 { grid-column: span 1; }
    .grid-2 { gap: 20px; }

    .hero { min-height: 60vh; }
    .hero-title { font-size: 1.5rem; }
    .highlights-grid { grid-template-columns: 1fr 1fr; gap: 15px; }
    .highlight-number { font-size: 2rem; }
    .section-subtitle { font-size: 0.9rem; }

    .footer-legal { flex-direction: column; gap: 8px; }
}

@media (max-width: 360px) {
    .hero-title { font-size: 1.3rem; }
    .hero-description { font-size: 0.9rem; }
    .section { padding: 45px 15px; }
    .page-banner { padding: 70px 15px 50px; }
    .btn { padding: 12px 24px; font-size: 0.88rem; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .animate-hidden, .animate-on-scroll {
        opacity: 1 !important; transform: none !important;
    }
    img[loading="lazy"] { opacity: 1; }
    .hero-content > * { animation: none !important; opacity: 1 !important; }
}
