/* ============================================
   MAYURA - Venus Exports Landing Page
   Temple-Themed Devotional Styling
   ============================================ */

/* CSS Variables - Festive White, Gold & Red Palette */
:root {
    --saffron: #FF6F00;
    --saffron-light: #FFA040;
    --saffron-dark: #E65100;
    --gold: #C5962C;
    --gold-light: #E8C252;
    --gold-dark: #9E7A1F;
    --temple-red: #B71C1C;
    --temple-maroon: #7B1A2C;
    --temple-cream: #FFFDF5;
    --temple-ivory: #FFFFFF;
    --sacred-green: #2E7D32;
    --lotus-pink: #D81B60;
    --jasmine-white: #FFFDF5;
    --deep-brown: #3E2723;
    --copper: #B87333;
    --vermillion: #E23D28;
    --turmeric: #F9A825;
    --sandal: #D2B48C;
    --dark-bg: #1A0505;
    --text-dark: #2C1810;
    --text-light: #FFFDF5;
    --white: #FFFFFF;
    --off-white: #FFF9F0;
    --light-gold-bg: #FFF8E8;
    --shadow-gold: rgba(197, 150, 44, 0.3);
    --shadow-saffron: rgba(255, 111, 0, 0.3);
    --shadow-red: rgba(183, 28, 28, 0.2);
    --gradient-temple: linear-gradient(135deg, #B71C1C 0%, #D32F2F 50%, #C5962C 100%);
    --gradient-gold: linear-gradient(135deg, #9E7A1F 0%, #C5962C 50%, #E8C252 100%);
    --gradient-sacred: linear-gradient(135deg, #7B1A2C 0%, #B71C1C 30%, #C5962C 100%);
    --gradient-saffron: linear-gradient(135deg, #E65100 0%, #FF6F00 50%, #FFA040 100%);
    --gradient-festive: linear-gradient(135deg, #FFFFFF 0%, #FFF8E8 50%, #FFFDF5 100%);
}

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

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
}

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

.section {
    padding: 100px 0;
    position: relative;
}

/* ============================================
   LOADER - Om Symbol Entry
   ============================================ */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #7B1A2C 0%, #B71C1C 40%, #C5962C 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-mandala {
    position: relative;
    width: 150px;
    height: 150px;
}

.mandala-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 2px solid var(--gold);
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 150px;
    height: 150px;
    animation: mandala-spin 3s linear infinite;
    border-style: dashed;
}

.ring-2 {
    width: 120px;
    height: 120px;
    animation: mandala-spin 2.5s linear infinite reverse;
    border-color: var(--saffron);
}

.ring-3 {
    width: 90px;
    height: 90px;
    animation: mandala-spin 2s linear infinite;
    border-style: dotted;
    border-color: var(--gold-light);
}

.loader-om {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: var(--gold);
    font-family: 'Noto Serif Devanagari', serif;
    animation: om-pulse 1.5s ease-in-out infinite;
}

.loader-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    object-fit: contain;
    animation: om-pulse 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 15px var(--shadow-gold)) brightness(1.2);
}

.loader-text {
    margin-top: 30px;
    color: var(--gold-light);
    font-family: 'Cinzel', serif;
    font-size: 14px;
    letter-spacing: 4px;
    animation: fade-pulse 2s ease-in-out infinite;
}

@keyframes mandala-spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes om-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

@keyframes fade-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ============================================
   FLOATING PARTICLES - Diya Sparks
   ============================================ */
.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, var(--gold-light), var(--saffron));
    border-radius: 50%;
    animation: float-particle linear infinite;
    opacity: 0;
    box-shadow: 0 0 6px var(--gold), 0 0 12px var(--saffron-light);
}

@keyframes float-particle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

/* ============================================
   NAVIGATION - Temple Entrance Style
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.navbar.scrolled {
    background: linear-gradient(135deg, rgba(123, 26, 44, 0.97), rgba(183, 28, 28, 0.95));
    padding: 8px 0;
    box-shadow: 0 4px 30px var(--shadow-red), 0 1px 0 rgba(197, 150, 44, 0.3);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-icon {
    height: 75px;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 75px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)) brightness(1.15) contrast(1.1);
    transition: all 0.3s ease;
}

.navbar.scrolled .logo-img {
    height: 58px;
}

.logo-img:hover {
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4)) brightness(1.25) contrast(1.1);
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--temple-maroon);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
}

.navbar.scrolled .nav-link {
    color: var(--temple-cream);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: var(--saffron);
}

.navbar.scrolled .nav-link:hover {
    color: var(--gold);
}

.gita-link {
    background: var(--gradient-saffron);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    color: white !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gita-link::after {
    display: none;
}

.gita-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px var(--shadow-saffron);
}

.gita-icon {
    font-family: 'Noto Serif Devanagari', serif;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--temple-maroon);
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-toggle span {
    background: var(--gold);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION - Grand Temple Entrance
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFAF2 40%, #FFF5E6 70%, #FFEDCC 100%);
}

/* Temple Skyline */
.temple-skyline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.skyline-svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 400px;
    animation: skyline-fade 2s ease-out;
}

@keyframes skyline-fade {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Logo */
.hero-logo-wrapper {
    margin-bottom: 15px;
}

.hero-logo-img {
    height: 220px;
    width: auto;
    filter: drop-shadow(0 10px 40px rgba(197, 150, 44, 0.3)) drop-shadow(0 4px 15px rgba(183, 28, 28, 0.15));
    animation: hero-logo-float 4s ease-in-out infinite;
}

@keyframes hero-logo-float {
    0% { transform: translateY(0) scale(1); filter: drop-shadow(0 10px 40px rgba(197, 150, 44, 0.3)) drop-shadow(0 4px 15px rgba(183, 28, 28, 0.15)); }
    50% { transform: translateY(-12px) scale(1.03); filter: drop-shadow(0 20px 50px rgba(197, 150, 44, 0.4)) drop-shadow(0 8px 25px rgba(183, 28, 28, 0.2)); }
    100% { transform: translateY(0) scale(1); filter: drop-shadow(0 10px 40px rgba(197, 150, 44, 0.3)) drop-shadow(0 4px 15px rgba(183, 28, 28, 0.15)); }
}

.hero-bg-layers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.temple-silhouette {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background:
        /* Center Gopuram */
        linear-gradient(to right, transparent 42%, var(--temple-maroon) 42%, var(--temple-maroon) 58%, transparent 58%) no-repeat bottom center / 100% 60%,
        /* Gopuram Tiers */
        linear-gradient(to right, transparent 44%, rgba(109, 27, 42, 0.8) 44%, rgba(109, 27, 42, 0.8) 56%, transparent 56%) no-repeat bottom center / 100% 70%,
        linear-gradient(to right, transparent 46%, rgba(109, 27, 42, 0.6) 46%, rgba(109, 27, 42, 0.6) 54%, transparent 54%) no-repeat bottom center / 100% 80%,
        linear-gradient(to right, transparent 48%, rgba(109, 27, 42, 0.4) 48%, rgba(109, 27, 42, 0.4) 52%, transparent 52%) no-repeat bottom center / 100% 90%;
    opacity: 0.3;
}

.hero-mandala-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background:
        radial-gradient(circle, transparent 30%, rgba(212, 160, 23, 0.03) 31%, transparent 32%),
        radial-gradient(circle, transparent 45%, rgba(212, 160, 23, 0.03) 46%, transparent 47%),
        radial-gradient(circle, transparent 60%, rgba(212, 160, 23, 0.03) 61%, transparent 62%),
        radial-gradient(circle, transparent 75%, rgba(212, 160, 23, 0.02) 76%, transparent 77%);
    animation: mandala-rotate 60s linear infinite;
    opacity: 0.5;
}

@keyframes mandala-rotate {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.floating-petals .petal {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--lotus-pink);
    border-radius: 50% 0 50% 0;
    opacity: 0.4;
    animation: petal-fall linear infinite;
}

@keyframes petal-fall {
    0% { transform: translateY(-10vh) rotate(0deg) translateX(0); opacity: 0; }
    10% { opacity: 0.5; }
    100% { transform: translateY(110vh) rotate(720deg) translateX(100px); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 20px 80px;
    max-width: 900px;
}

.hero-decorative-top {
    margin-bottom: 20px;
}

.kolam-pattern {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border: 2px solid var(--gold);
    border-radius: 50%;
    position: relative;
    animation: kolam-spin 20s linear infinite;
    opacity: 0.6;
}

.kolam-pattern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 56px;
    height: 56px;
    border: 1.5px solid var(--gold-light);
    border-radius: 50%;
}

.kolam-pattern::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 1px solid var(--gold);
    border-radius: 50%;
}

@keyframes kolam-spin {
    to { transform: rotate(360deg); }
}

.hero-om {
    font-size: 60px;
    color: var(--gold);
    font-family: 'Noto Serif Devanagari', serif;
    margin-bottom: 15px;
    text-shadow: 0 0 30px var(--shadow-gold);
}

.hero-title {
    margin-bottom: 25px;
}

.title-sanskrit {
    display: block;
    font-family: 'Noto Serif Devanagari', serif;
    font-size: 16px;
    color: var(--temple-red);
    letter-spacing: 3px;
    margin-bottom: 15px;
    opacity: 0.7;
}

.title-main {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 900;
    letter-spacing: 12px;
    line-height: 1.1;
    background: linear-gradient(135deg, #7B1A2C 0%, #B71C1C 30%, #C5962C 70%, #9E7A1F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-tagline {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: clamp(11px, 1.8vw, 14px);
    color: var(--gold-dark);
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-top: 10px;
    font-weight: 400;
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: #4A3728;
    margin-bottom: 15px;
    font-weight: 300;
    line-height: 1.6;
}

.hero-subtitle strong {
    color: var(--temple-red);
    font-weight: 700;
}

/* Hero Tamil Slogan */
.hero-tamil-slogan {
    margin-bottom: 10px;
}

.hero-tamil-text {
    font-size: clamp(14px, 2vw, 18px);
    color: var(--temple-red);
    font-weight: 500;
    letter-spacing: 3px;
    margin-bottom: 3px;
    opacity: 0.85;
}

.hero-tamil-meaning {
    font-size: 12px;
    color: var(--gold-dark);
    font-style: italic;
    letter-spacing: 1px;
}

.hero-description {
    max-width: 600px;
    margin: 0 auto 35px;
}

.hero-description p {
    color: #6B5744;
    font-size: 15px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-saffron);
    color: white;
    box-shadow: 0 8px 30px var(--shadow-saffron);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px var(--shadow-saffron);
}

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

.btn-secondary:hover {
    background: var(--gold);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--shadow-gold);
}

.btn-gita {
    background: var(--gradient-temple);
    color: white;
    padding: 16px 40px;
    font-size: 15px;
    box-shadow: 0 8px 30px rgba(198, 40, 40, 0.3);
}

.btn-gita:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(198, 40, 40, 0.4);
}

.btn-shop {
    background: var(--gradient-temple);
    color: white;
    box-shadow: 0 8px 30px var(--shadow-red);
}

.btn-shop:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px var(--shadow-red);
}

.btn-secondary-light {
    background: transparent;
    color: var(--temple-maroon);
    border: 2px solid var(--gold);
}

.btn-secondary-light:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--shadow-gold);
}

.btn-submit {
    background: var(--gradient-saffron);
    color: white;
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 15px;
    box-shadow: 0 8px 30px var(--shadow-saffron);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px var(--shadow-saffron);
}

/* Diya Row */
.hero-diya-row {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.diya-lamp {
    width: 30px;
    height: 20px;
    background: var(--gradient-gold);
    border-radius: 0 0 50% 50%;
    position: relative;
    box-shadow: 0 5px 15px var(--shadow-gold);
}

.diya-flame {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 18px;
    background: radial-gradient(ellipse at bottom, #FF6F00, #FFD700, transparent);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: flame-flicker 0.8s ease-in-out infinite alternate;
    box-shadow: 0 0 15px #FFD700, 0 0 30px rgba(255, 165, 0, 0.4);
}

@keyframes flame-flicker {
    0% { transform: translateX(-50%) scaleY(1) scaleX(1) rotate(-2deg); }
    25% { transform: translateX(-50%) scaleY(1.1) scaleX(0.9) rotate(1deg); }
    50% { transform: translateX(-50%) scaleY(0.95) scaleX(1.05) rotate(-1deg); }
    75% { transform: translateX(-50%) scaleY(1.05) scaleX(0.95) rotate(2deg); }
    100% { transform: translateX(-50%) scaleY(1) scaleX(1) rotate(-1deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid var(--gold);
    border-radius: 15px;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--gold);
    border-radius: 2px;
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 25px; opacity: 0.3; }
}

/* ============================================
   TEMPLE BORDER / DIVIDERS
   ============================================ */
.temple-border {
    height: 40px;
    background: var(--gradient-temple);
    position: relative;
    overflow: hidden;
}

.border-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent 0px,
        transparent 15px,
        rgba(212, 160, 23, 0.3) 15px,
        rgba(212, 160, 23, 0.3) 17px,
        transparent 17px,
        transparent 30px
    );
    animation: border-scroll 10s linear infinite;
}

@keyframes border-scroll {
    to { transform: translateX(-50%); }
}

.rangoli-divider {
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--temple-ivory);
}

.rangoli-pattern {
    width: 100px;
    height: 100px;
    position: relative;
}

.rangoli-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid var(--saffron);
    border-radius: 50%;
    animation: rangoli-pulse 3s ease-in-out infinite;
}

.rangoli-pattern::after {
    content: '❋';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: var(--saffron);
    animation: rangoli-spin 15s linear infinite;
}

@keyframes rangoli-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

@keyframes rangoli-spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Temple Pillar Divider */
.temple-pillar-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    background: var(--temple-ivory);
    gap: 40px;
}

.pillar {
    width: 20px;
    height: 120px;
    background: var(--gradient-gold);
    border-radius: 3px;
    position: relative;
    box-shadow: 0 4px 15px var(--shadow-gold);
}

.pillar::before,
.pillar::after {
    content: '';
    position: absolute;
    left: -5px;
    width: 30px;
    height: 12px;
    background: var(--gold);
    border-radius: 3px;
}

.pillar::before { top: -6px; }
.pillar::after { bottom: -6px; }

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

.pillar-lamp {
    width: 50px;
    height: 35px;
    background: var(--gradient-gold);
    border-radius: 0 0 50% 50%;
    position: relative;
    box-shadow: 0 5px 20px var(--shadow-gold);
}

.pillar-flame {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 25px;
    background: radial-gradient(ellipse at bottom, #FF6F00, #FFD700, transparent);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: flame-flicker 0.8s ease-in-out infinite alternate;
    box-shadow: 0 0 20px #FFD700, 0 0 40px rgba(255, 165, 0, 0.4);
}

/* Lotus Divider */
.lotus-divider {
    padding: 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--temple-ivory);
}

.lotus-flower {
    width: 80px;
    height: 80px;
    position: relative;
    animation: lotus-bloom 4s ease-in-out infinite;
}

.lotus-petal {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25px;
    height: 40px;
    background: var(--lotus-pink);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    transform-origin: bottom center;
    opacity: 0.7;
}

.lotus-petal.p1 { transform: translate(-50%, -100%) rotate(0deg); }
.lotus-petal.p2 { transform: translate(-50%, -100%) rotate(45deg); }
.lotus-petal.p3 { transform: translate(-50%, -100%) rotate(90deg); }
.lotus-petal.p4 { transform: translate(-50%, -100%) rotate(135deg); }
.lotus-petal.p5 { transform: translate(-50%, -100%) rotate(180deg); }
.lotus-petal.p6 { transform: translate(-50%, -100%) rotate(225deg); }
.lotus-petal.p7 { transform: translate(-50%, -100%) rotate(270deg); }
.lotus-petal.p8 { transform: translate(-50%, -100%) rotate(315deg); }

.lotus-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--turmeric);
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 10px var(--turmeric);
}

@keyframes lotus-bloom {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* Bell Divider */
.bell-divider {
    padding: 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--temple-ivory);
}

.temple-bell {
    position: relative;
    animation: bell-swing 3s ease-in-out infinite;
    transform-origin: top center;
}

.bell-body {
    width: 40px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 0 0 50% 50%;
    position: relative;
    box-shadow: 0 5px 20px var(--shadow-gold);
}

.bell-body::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 20px;
    background: var(--gold);
    border-radius: 5px 5px 0 0;
}

.bell-clapper {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: var(--gold-dark);
    border-radius: 50%;
}

@keyframes bell-swing {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    color: var(--temple-maroon);
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.section-divider::before,
.section-divider::after {
    content: '';
    width: 80px;
    height: 1px;
    background: var(--gradient-gold);
}

.divider-diya {
    font-size: 20px;
    animation: diya-glow 2s ease-in-out infinite;
}

@keyframes diya-glow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.section-subtitle {
    font-size: 16px;
    color: var(--gold-dark);
    font-style: italic;
}

.section-mandala-bg {
    position: absolute;
    top: 0;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--white);
}

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

.about-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(212, 160, 23, 0.1);
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(212, 160, 23, 0.15);
}

.about-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient-temple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px var(--shadow-red);
}

.btn-svg-icon {
    flex-shrink: 0;
}

.btn-om {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: 18px;
}

.about-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: var(--temple-maroon);
    margin-bottom: 15px;
}

.about-card p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

/* About Story Box */
.about-story {
    max-width: 850px;
    margin: 0 auto;
}

.story-border {
    position: relative;
    padding: 50px;
    background: white;
    border-radius: 15px;
    border: 2px solid var(--gold);
    box-shadow: 0 10px 40px rgba(212, 160, 23, 0.1);
}

.story-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: var(--saffron);
    border-style: solid;
}

.story-corner.top-left { top: -2px; left: -2px; border-width: 4px 0 0 4px; border-radius: 5px 0 0 0; }
.story-corner.top-right { top: -2px; right: -2px; border-width: 4px 4px 0 0; border-radius: 0 5px 0 0; }
.story-corner.bottom-left { bottom: -2px; left: -2px; border-width: 0 0 4px 4px; border-radius: 0 0 0 5px; }
.story-corner.bottom-right { bottom: -2px; right: -2px; border-width: 0 4px 4px 0; border-radius: 0 0 5px 0; }

.story-content .verse-sanskrit {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: 16px;
    color: var(--saffron);
    text-align: center;
    margin-bottom: 20px;
    opacity: 0.9;
}

.story-content p {
    font-size: 15px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 15px;
}

.story-content p:last-child {
    margin-bottom: 0;
}

.story-content strong {
    color: var(--temple-maroon);
}

.story-content em {
    color: var(--saffron-dark);
    font-style: italic;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products {
    background: linear-gradient(180deg, var(--off-white) 0%, var(--light-gold-bg) 100%);
}

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

.product-card {
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.5s ease;
    border: 1px solid rgba(212, 160, 23, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 160, 23, 0.2);
}

.product-image {
    height: 200px;
    background: linear-gradient(135deg, #7B1A2C 0%, #B71C1C 40%, #C5962C 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-emoji-icon {
    font-size: 70px;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    transition: transform 0.5s ease;
    line-height: 1.2;
}

.product-svg-icon {
    transition: transform 0.5s ease;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
}

.product-svg-icon svg {
    width: 80px;
    height: 80px;
}

[data-category="fruits"] .product-emoji-icon {
    font-size: 40px;
    letter-spacing: 5px;
}

.product-card:hover .product-emoji-icon,
.product-card:hover .product-svg-icon {
    transform: scale(1.15);
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    transform: translateY(100%);
    transition: transform 0.4s ease;
    text-align: center;
}

.product-card:hover .product-overlay {
    transform: translateY(0);
}

.product-overlay a,
.product-overlay span {
    color: var(--gold);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    padding: 8px 24px;
    border: 1.5px solid var(--gold);
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.product-overlay a:hover {
    background: var(--gold);
    color: var(--dark-bg);
    box-shadow: 0 4px 15px var(--shadow-gold);
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: var(--temple-maroon);
    margin-bottom: 12px;
}

.product-info p {
    font-size: 13px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 4px 12px;
    background: var(--jasmine-white);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: 20px;
    font-size: 11px;
    color: var(--saffron-dark);
    font-weight: 500;
}

/* ============================================
   HERITAGE SECTION
   ============================================ */
.heritage {
    background: var(--white);
}

.heritage-content {
    margin-bottom: 60px;
}

.heritage-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    min-height: 250px;
    display: flex;
    align-items: flex-end;
    transition: all 0.5s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.heritage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.heritage-card.large {
    min-height: 350px;
    margin-bottom: 30px;
}

.heritage-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
    overflow: hidden;
}

.heritage-card:hover .heritage-card-bg {
    transform: scale(1.02);
}

.heritage-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.heritage-card:hover .heritage-img {
    transform: scale(1.08);
    filter: brightness(0.9);
}

.temple-bg {
    background: linear-gradient(135deg, #B71C1C 0%, #D32F2F 30%, #C5962C 70%, #E8C252 100%);
}

.murugan-bg {
    background: linear-gradient(135deg, #1565C0 0%, #1976D2 30%, #42A5F5 60%, #E8C252 100%);
}

.venkateshwara-bg {
    background: linear-gradient(135deg, #E65100 0%, #F57C00 30%, #FFB300 60%, #FFD54F 100%);
}

.jasmine-bg {
    background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 30%, #43A047 60%, #A5D6A7 100%);
}

.culture-bg {
    background: linear-gradient(135deg, #B71C1C 0%, #D32F2F 30%, #FF6F00 60%, #FFD54F 100%);
}

.heritage-card-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    background: linear-gradient(transparent 0%, rgba(0,0,0,0.3) 20%, rgba(0,0,0,0.75) 50%, rgba(0,0,0,0.85) 100%);
    width: 100%;
}

.heritage-card-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 10px;
}

.heritage-card-content p {
    font-size: 14px;
    color: rgba(255, 248, 231, 0.9);
    line-height: 1.7;
}

.heritage-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Stats */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(212, 160, 23, 0.1);
    transition: all 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 160, 23, 0.15);
}

.stat-icon {
    font-size: 30px;
    margin-bottom: 10px;
}

.stat-number {
    font-family: 'Cinzel', serif;
    font-size: 42px;
    font-weight: 900;
    color: var(--saffron);
    display: inline;
}

.stat-suffix {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--saffron);
    display: inline;
}

.stat-label {
    font-size: 13px;
    color: #777;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   EXPORTS SECTION
   ============================================ */
.exports {
    background: linear-gradient(180deg, var(--off-white), var(--light-gold-bg));
}

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

.export-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 26px;
    color: var(--temple-maroon);
    margin-bottom: 15px;
}

.export-info p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.export-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.export-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #444;
}

.feature-icon {
    font-size: 18px;
}

.export-map {
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-decoration {
    width: 100%;
    min-height: 350px;
    background: linear-gradient(135deg, #7B1A2C 0%, #B71C1C 40%, #C5962C 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.map-center-india {
    text-align: center;
    z-index: 2;
}

.india-label {
    display: block;
    font-size: 24px;
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 0 0 20px var(--shadow-gold);
}

.city-label {
    display: block;
    font-size: 12px;
    color: var(--gold-light);
    letter-spacing: 2px;
}

.export-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.export-line {
    position: absolute;
    color: rgba(212, 160, 23, 0.6);
    font-size: 11px;
    letter-spacing: 1px;
    animation: line-pulse 3s ease-in-out infinite;
}

.export-line::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold);
}

.line-1 { top: 15%; right: 15%; }
.line-2 { top: 20%; left: 15%; }
.line-3 { top: 50%; right: 10%; }
.line-4 { bottom: 25%; right: 20%; }
.line-5 { bottom: 10%; right: 25%; }
.line-6 { bottom: 20%; left: 15%; }

.line-1::before { top: 100%; left: 0; }
.line-2::before { top: 100%; right: 0; }
.line-3::before { left: -15px; top: 50%; }
.line-4::before { top: -10px; left: 0; }
.line-5::before { top: -10px; left: 50%; }
.line-6::before { top: 100%; right: 0; }

@keyframes line-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ============================================
   GITA BANNER
   ============================================ */
.gita-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, #7B1A2C 0%, #B71C1C 40%, #C5962C 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.gita-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(212, 160, 23, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 111, 0, 0.05) 0%, transparent 50%);
}

.gita-banner-content {
    position: relative;
    z-index: 2;
}

.gita-book-icon {
    font-size: 50px;
    margin-bottom: 20px;
    animation: book-float 3s ease-in-out infinite;
}

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

.gita-banner h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(24px, 4vw, 36px);
    color: var(--gold);
    margin-bottom: 25px;
    letter-spacing: 3px;
}

.gita-verse-preview {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: 20px;
    color: var(--gold-light);
    line-height: 1.8;
    margin-bottom: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gita-translation {
    font-size: 15px;
    color: rgba(255, 248, 231, 0.8);
    font-style: italic;
    margin-bottom: 35px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border: 1px solid rgba(212, 160, 23, 0.1);
    transition: all 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 160, 23, 0.15);
    border-color: var(--gold);
}

.contact-icon {
    font-size: 30px;
    margin-bottom: 12px;
}

.contact-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    color: var(--temple-maroon);
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
}

.contact-card a {
    color: var(--saffron);
    font-weight: 500;
}

.contact-card a:hover {
    color: var(--saffron-dark);
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    border: 1px solid rgba(212, 160, 23, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-sanskrit {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: 16px;
    color: var(--saffron);
    margin-bottom: 5px;
}

.form-header p {
    font-size: 12px;
    color: #999;
    font-style: italic;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--temple-ivory);
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--saffron);
    box-shadow: 0 0 0 3px var(--shadow-saffron);
}

.form-group label {
    position: absolute;
    top: -8px;
    left: 15px;
    background: white;
    padding: 0 5px;
    font-size: 11px;
    color: var(--saffron);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-group input:focus + label,
.form-group textarea:focus + label {
    opacity: 1;
}

.form-group select {
    cursor: pointer;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(135deg, #7B1A2C 0%, #B71C1C 40%, #C5962C 100%);
    color: var(--temple-cream);
    position: relative;
}

.footer-temple-top {
    height: 40px;
    background: var(--gradient-temple);
    position: relative;
    overflow: hidden;
}

.footer-temple-top::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent 0px,
        transparent 20px,
        rgba(212, 160, 23, 0.2) 20px,
        rgba(212, 160, 23, 0.2) 22px
    );
    animation: border-scroll 15s linear infinite;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding: 60px 0 40px;
}

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

.footer-logo-img {
    height: 120px;
    width: auto;
    filter: brightness(1.3) drop-shadow(0 2px 10px rgba(0,0,0,0.3));
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    filter: brightness(1.5) drop-shadow(0 2px 15px rgba(0,0,0,0.4));
    transform: scale(1.05);
}

.footer-desc {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 248, 231, 0.7);
}

.footer-links-group h4 {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

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

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

.footer-links-group a {
    font-size: 13px;
    color: rgba(255, 248, 231, 0.7);
    transition: all 0.3s ease;
}

.footer-links-group a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact-list li {
    font-size: 12px;
    color: rgba(255, 248, 231, 0.7);
    line-height: 1.6;
}

.footer-contact-list a {
    color: var(--gold-light);
}

.footer-contact-list a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(212, 160, 23, 0.2);
    padding: 30px 0;
    text-align: center;
}

.footer-verse {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: 16px;
    color: var(--gold);
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-verse em {
    font-size: 12px;
    color: var(--gold-light);
    opacity: 0.8;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 248, 231, 0.5);
    margin-bottom: 5px;
}

.footer-tagline {
    font-size: 11px;
    color: rgba(255, 248, 231, 0.4);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-saffron);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    box-shadow: 0 5px 20px var(--shadow-saffron);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-saffron);
}

/* ============================================
   ANIMATIONS - Scroll Reveal
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll:nth-child(2) { transition-delay: 0.15s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.45s; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, #7B1A2C, #B71C1C);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 20px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links .nav-link {
        color: var(--temple-cream);
    }

    .nav-links .nav-link:hover {
        color: var(--gold);
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .exports-content {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

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

    .contact-info {
        grid-template-columns: 1fr;
    }

    .hero-diya-row {
        gap: 25px;
    }

    .story-border {
        padding: 30px;
    }

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

    .export-features {
        grid-template-columns: 1fr;
    }

    .gita-link {
        display: none;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .hero-content {
        padding: 100px 15px 60px;
    }

    .hero-diya-row {
        gap: 15px;
    }

    .diya-lamp {
        width: 22px;
        height: 15px;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .stats-row {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .stat-number {
        font-size: 32px;
    }
}

/* ============================================
   SPECIAL EFFECTS
   ============================================ */

/* Gold shimmer text effect */
@keyframes gold-shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.gold-shimmer {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold), var(--gold-light), var(--gold-dark));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gold-shimmer 3s linear infinite;
}

/* Incense smoke effect */
@keyframes smoke-rise {
    0% { transform: translateY(0) scaleX(1); opacity: 0.5; }
    50% { transform: translateY(-50px) scaleX(1.5); opacity: 0.3; }
    100% { transform: translateY(-100px) scaleX(2); opacity: 0; }
}

/* Aarti circular motion */
@keyframes aarti-motion {
    0% { transform: rotate(0deg) translateX(20px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(20px) rotate(-360deg); }
}

/* ============================================
   HERO TEMPLE SKYLINE ANIMATIONS
   ============================================ */
.skyline-svg g {
    animation: temple-breathe 6s ease-in-out infinite;
}

.skyline-svg g:nth-child(1) { animation-delay: 0s; }
.skyline-svg g:nth-child(2) { animation-delay: 0.5s; }
.skyline-svg g:nth-child(3) { animation-delay: 1s; }
.skyline-svg g:nth-child(4) { animation-delay: 1.5s; }
.skyline-svg g:nth-child(5) { animation-delay: 2s; }

@keyframes temple-breathe {
    0%, 100% { opacity: 0.06; }
    50% { opacity: 0.1; }
}

/* ============================================
   ADDITIONAL ENHANCEMENTS
   ============================================ */

/* Decorative line under hero logo */
.hero-logo-wrapper::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--gradient-gold);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Product card shop button appears smoothly */
.product-card:hover .product-overlay a {
    animation: btn-pop 0.4s ease forwards;
}

@keyframes btn-pop {
    from { transform: translateY(10px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ============================================
   FLOATING VEL (MURUGAN SPEAR) PARTICLES
   ============================================ */
.vel-particle {
    position: absolute;
    pointer-events: none;
    opacity: 0;
    animation: vel-float linear infinite;
}

.vel-particle svg {
    filter: drop-shadow(0 0 8px rgba(197, 150, 44, 0.5));
}

@keyframes vel-float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    5% { opacity: 0.5; }
    50% { opacity: 0.35; }
    95% { opacity: 0.3; }
    100% {
        transform: translateY(-10vh) rotate(360deg);
        opacity: 0;
    }
}

/* ============================================
   FEATURED STORE PRODUCTS SECTION
   ============================================ */
.store-products {
    background: linear-gradient(180deg, var(--light-gold-bg) 0%, var(--white) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.store-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.store-product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border: 1px solid rgba(212, 160, 23, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.store-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 45px rgba(212, 160, 23, 0.18);
    border-color: rgba(212, 160, 23, 0.25);
}

.store-product-img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background: linear-gradient(135deg, #FFF8E8, #FFFDF5);
    padding: 15px;
    transition: transform 0.5s ease;
}

.store-product-card:hover .store-product-img {
    transform: scale(1.08);
}

.store-product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gradient-temple);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 2;
}

.store-product-body {
    padding: 18px;
}

.store-product-body h4 {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    color: var(--temple-maroon);
    margin-bottom: 8px;
    line-height: 1.4;
    min-height: 40px;
}

.store-product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.store-price-current {
    font-size: 18px;
    font-weight: 700;
    color: var(--saffron-dark);
    font-family: 'Poppins', sans-serif;
}

.store-price-original {
    font-size: 13px;
    color: #aaa;
    text-decoration: line-through;
}

.store-product-btn {
    display: block;
    text-align: center;
    padding: 10px 20px;
    background: var(--gradient-saffron);
    color: white;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-saffron);
}

.store-product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-saffron);
}

.store-cta-row {
    text-align: center;
}

.store-cta-row .btn {
    font-size: 15px;
    padding: 16px 45px;
}

/* Tamil Slogan Banner */
.tamil-slogan {
    text-align: center;
    padding: 25px 20px;
    background: linear-gradient(135deg, #FFF8E8, #FFFDF5, #FFF8E8);
    font-family: 'Noto Serif Devanagari', serif;
    font-size: 18px;
    color: var(--temple-maroon);
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.tamil-slogan::before,
.tamil-slogan::after {
    content: '✦';
    color: var(--gold);
    margin: 0 15px;
    font-size: 14px;
}

.tamil-slogan .slogan-meaning {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: var(--gold-dark);
    font-style: italic;
    margin-top: 5px;
    letter-spacing: 1px;
}

/* ============================================
   RESPONSIVE - STORE PRODUCTS
   ============================================ */
@media (max-width: 992px) {
    .store-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .store-products-grid {
        grid-template-columns: 1fr;
    }
    .hero-logo-img {
        height: 160px;
    }
    .tamil-slogan {
        font-size: 15px;
    }
}

/* ============================================
   MOUSE HOVER INTERACTIVE EFFECTS
   ============================================ */

/* Ripple Click Effect */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, rgba(212, 160, 23, 0.3) 40%, transparent 70%);
    transform: scale(0);
    animation: ripple-expand 0.6s ease-out forwards;
    pointer-events: none;
    z-index: 10;
}

@keyframes ripple-expand {
    to {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Gold Cursor Sparkle (Hero Section) */
.cursor-sparkle {
    position: fixed;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #FFD700, #C5962C, transparent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    animation: sparkle-fade 0.8s ease-out forwards;
    box-shadow: 0 0 6px #FFD700, 0 0 12px rgba(197, 150, 44, 0.4);
}

@keyframes sparkle-fade {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 1;
    }
    100% {
        transform: scale(0) translate(var(--drift-x, 10px), var(--drift-y, -20px));
        opacity: 0;
    }
}

/* Logo Hover Sparkle Burst */
.logo-sparkle {
    position: fixed;
    width: 6px;
    height: 6px;
    background: #FFD700;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    animation: sparkle-burst 0.7s ease-out forwards;
    box-shadow: 0 0 8px #FFD700, 0 0 15px rgba(255, 215, 0, 0.5);
}

@keyframes sparkle-burst {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(
            calc(cos(var(--angle)) * var(--distance)),
            calc(sin(var(--angle)) * var(--distance))
        ) scale(0);
        opacity: 0;
    }
}

/* Section Icon Hover Spin */
@keyframes icon-spin-bounce {
    0% { transform: scale(1) rotate(0deg); }
    30% { transform: scale(1.2) rotate(15deg); }
    60% { transform: scale(1.1) rotate(-10deg); }
    100% { transform: scale(1) rotate(0deg); }
}

.section-icon {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.section-icon:hover {
    transform: scale(1.15);
}

/* Nav Link Hover Wave */
.nav-hover-wave::after {
    width: 100% !important;
    animation: nav-wave 0.4s ease;
}

@keyframes nav-wave {
    0% { width: 0; transform: scaleX(0); }
    50% { transform: scaleX(1.2); }
    100% { width: 100%; transform: scaleX(1); }
}

/* Tamil Slogan Glow on Hover */
.tamil-slogan {
    transition: all 0.4s ease;
    cursor: default;
}

.tamil-slogan.slogan-glow {
    background: linear-gradient(135deg, #FFF3D6, #FFFDF5, #FFF3D6);
    color: var(--temple-red);
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(197, 150, 44, 0.2);
}

.tamil-slogan.slogan-glow::before,
.tamil-slogan.slogan-glow::after {
    color: var(--saffron);
    transform: scale(1.3);
}

/* Stat Item Hover Glow */
.stat-item {
    cursor: default;
}

.stat-item:hover .stat-number {
    text-shadow: 0 0 20px rgba(255, 111, 0, 0.4);
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    animation: icon-spin-bounce 0.6s ease;
}

/* Heritage Card Content Hover Slide */
.heritage-card-content {
    transition: padding 0.4s ease;
}

.heritage-card:hover .heritage-card-content {
    padding-bottom: 40px;
}

.heritage-card:hover .heritage-card-content h3 {
    text-shadow: 0 0 15px rgba(197, 150, 44, 0.5);
}

/* Store Product Card Image Shine Sweep */
.store-product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 100%
    );
    transform: skewX(-15deg);
    transition: left 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.store-product-card:hover::after {
    left: 130%;
}

/* Contact Card Icon Bounce */
.contact-card:hover .contact-icon {
    animation: icon-spin-bounce 0.5s ease;
}

/* About Card Icon Pulse */
.about-card:hover .about-card-icon {
    animation: about-icon-pulse 0.5s ease;
    box-shadow: 0 12px 35px var(--shadow-red), 0 0 30px rgba(183, 28, 28, 0.15);
}

@keyframes about-icon-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* Diya Flame Enhanced Hover (CSS part) */
.diya-flame {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hero Logo Glow on Hover */
.hero-logo-img {
    cursor: pointer;
    transition: filter 0.3s ease;
}

.hero-logo-img:hover {
    filter: drop-shadow(0 15px 50px rgba(197, 150, 44, 0.5)) drop-shadow(0 8px 30px rgba(183, 28, 28, 0.25)) brightness(1.08) !important;
}

/* Product Tag Hover */
.tag {
    transition: all 0.3s ease;
    cursor: default;
}

.tag:hover {
    background: var(--gradient-saffron);
    color: white;
    border-color: var(--saffron);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-saffron);
}

/* Footer Link Hover Arrow */
.footer-links-group a {
    position: relative;
}

.footer-links-group a::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 5px solid var(--gold);
    margin-right: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links-group a:hover::before {
    opacity: 1;
    margin-right: 8px;
}

/* Scroll Arrow Hover */
.scroll-indicator {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.scroll-indicator:hover {
    transform: translateX(-50%) scale(1.15);
}

.scroll-indicator:hover .scroll-arrow {
    border-color: var(--saffron);
    box-shadow: 0 0 15px var(--shadow-saffron);
}

/* Back to Top Button Hover Spin */
.back-to-top:hover svg {
    animation: top-arrow-bounce 0.5s ease;
}

@keyframes top-arrow-bounce {
    0% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(2px); }
    100% { transform: translateY(0); }
}

/* Form Input Focus Glow */
.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(197, 150, 44, 0.1);
}

/* Gita Banner Book Hover */
.gita-book-icon:hover {
    animation: book-wiggle 0.5s ease;
    cursor: pointer;
}

@keyframes book-wiggle {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(-8deg); }
    50% { transform: rotate(8deg); }
    75% { transform: rotate(-4deg); }
    100% { transform: rotate(0deg); }
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.lang-switcher {
    position: relative;
    margin-left: 15px;
    z-index: 1001;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: transparent;
    border: 1.5px solid var(--gold);
    border-radius: 20px;
    color: var(--temple-maroon);
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-current:hover {
    background: rgba(197, 150, 44, 0.1);
}

.navbar.scrolled .lang-current {
    color: var(--gold);
    border-color: var(--gold);
}

.lang-arrow {
    transition: transform 0.25s ease;
}

.lang-dropdown.open ~ .lang-current .lang-arrow,
.lang-switcher:has(.lang-dropdown.open) .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border: 1px solid rgba(197, 150, 44, 0.3);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: 1001;
    min-width: 140px;
}

.lang-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 18px;
    border: none;
    background: none;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: var(--text-dark);
    cursor: pointer;
    transition: background 0.2s;
    text-align: left;
}

.lang-option:hover {
    background: var(--light-gold-bg);
}

.lang-option.active {
    background: var(--light-gold-bg);
    color: var(--temple-maroon);
    font-weight: 600;
}

.lang-option.active::after {
    content: '✓';
    margin-left: auto;
    color: var(--saffron);
    font-size: 14px;
}

/* ============================================
   REGIONAL LANGUAGE FONT OVERRIDES
   ============================================ */
html[lang="ta"] body {
    font-family: 'Noto Sans Tamil', 'Poppins', sans-serif;
}

html[lang="te"] body {
    font-family: 'Noto Sans Telugu', 'Poppins', sans-serif;
}

html[lang="kn"] body {
    font-family: 'Noto Sans Kannada', 'Poppins', sans-serif;
}

/* Section titles in regional languages */
html[lang="ta"] .section-title,
html[lang="te"] .section-title,
html[lang="kn"] .section-title {
    letter-spacing: 1px;
}

html[lang="ta"] .title-main,
html[lang="te"] .title-main,
html[lang="kn"] .title-main {
    letter-spacing: 4px;
}

/* Nav links in regional languages need slightly more space */
html[lang="ta"] .nav-link,
html[lang="te"] .nav-link,
html[lang="kn"] .nav-link {
    font-size: 12px;
    letter-spacing: 0.5px;
}

/* ============================================
   LANGUAGE SWITCHER - RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .lang-switcher {
        position: fixed;
        top: 18px;
        right: 60px;
        z-index: 1001;
        margin-left: 0;
    }

    .navbar.scrolled .lang-switcher {
        top: 10px;
    }
}

@media (max-width: 480px) {
    .lang-switcher {
        right: 55px;
    }

    .lang-current {
        padding: 5px 10px;
        font-size: 11px;
    }
}
