/* ============================================================
   Digital Mission — Shared Styles (Enhanced)
   ============================================================ */
:root {
    /* Sanatan Palette */
    --saffron: #FF9933;
    /* Kesariya */
    --sandal-cream: #F8E7C2;
    /* Sandalwood Cream */
    --temple-white: #FFF8EE;
    /* Temple White */
    --kumkum-red: #C1272D;
    /* Kumkum Red */
    --marigold-gold: #E6A817;
    /* Marigold Gold */
    --tulsi-green: #6B8E23;
    /* Tulsi Green */
    --copper: #B65A3C;
    /* Copper / Terracotta */
    --ivory: #FFFBF5;
    /* Soft Ivory */

    /* Semantic Variables */
    --primary: var(--saffron);
    --primary-dark: var(--kumkum-red);
    --accent: var(--marigold-gold);
    --bg-light: var(--ivory);
    --bg-cream: var(--sandal-cream);
    --text-main: #3E2723;
    /* Deep Earthy Brown */
    --text-heading: #5D1F1A;
    /* Sacred Maroon Brown */
    --text-muted: #795548;
    /* Muted Earthy Brown */

    --saffron-gradient: linear-gradient(135deg, var(--saffron), #FF7722);
    --gold-gradient: linear-gradient(135deg, var(--marigold-gold), #D4AF37);
    --sacred-gradient: linear-gradient(135deg, #FF8C00, #E65100);

    --glass-bg: rgba(255, 250, 240, 0.85);
    --glass-border: rgba(230, 168, 23, 0.2);

    --shadow-soft: 0 10px 30px rgba(62, 39, 35, 0.08);
    --shadow-medium: 0 15px 45px rgba(62, 39, 35, 0.12);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-light);
    background-image:
        radial-gradient(at 0% 0%, rgba(255, 153, 51, 0.03) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(230, 168, 23, 0.03) 0px, transparent 50%);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: var(--text-heading);
    font-weight: 700;
}

.hindi-text {
    font-family: 'Noto Sans Devanagari', 'Tiro Devanagari Hindi', sans-serif;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(.22, .61, .36, 1), transform 0.7s cubic-bezier(.22, .61, .36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ============================================================
   Navigation
   ============================================================ */
.dm-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 20px rgba(62, 39, 35, 0.05);
}

.dm-nav-back {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: var(--sandal-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kumkum-red);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(.22, .61, .36, 1);
    border: 1px solid rgba(193, 39, 45, 0.1);
}

.dm-nav-back:hover {
    background: var(--saffron);
    color: white;
    transform: translateX(-3px);
}

.dm-nav-back:active {
    transform: scale(0.9);
    background: rgba(255, 255, 255, 0.35);
}

.dm-nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dm-nav-logo {
    font-size: 22px;
}

.dm-nav-title {
    color: var(--text-heading);
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.dm-nav-links {
    margin-left: auto;
    display: flex;
    gap: 6px;
}

.dm-nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    transition: all 0.3s;
}

.dm-nav-link.active,
.dm-nav-link:hover {
    background: var(--saffron);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 153, 51, 0.3);
}

@media (max-width: 640px) {
    .dm-nav {
        padding: 10px 14px;
        gap: 8px;
    }
    .dm-nav-back {
        width: 34px;
        height: 34px;
        border-radius: 10px;
        flex-shrink: 0;
    }
    .dm-nav-brand {
        gap: 6px;
        min-width: 0;
        flex: 1;
    }
    .dm-nav-logo {
        font-size: 20px;
        flex-shrink: 0;
    }
    .dm-nav-title {
        font-size: 15px;
        font-weight: 700;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .dm-nav-links {
        display: none;
    }
    .dm-lang-picker {
        padding: 2px;
        gap: 2px;
        flex-shrink: 0;
    }
    .dm-lang-btn {
        padding: 4px 10px;
        font-size: 11px;
    }
}

/* Mobile Bottom Nav */
.dm-mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--ivory);
    z-index: 100;
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
    box-shadow: 0 -4px 20px rgba(62, 39, 35, 0.08);
    justify-content: space-around;
    border-top: 1px solid var(--glass-border);
}

@media (max-width: 640px) {
    .dm-mobile-nav {
        display: flex;
    }
}

.dm-mobile-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    transition: color 0.2s;
}

.dm-mobile-link .material-symbols-outlined {
    font-size: 22px;
}

.dm-mobile-link.active {
    color: var(--primary-dark);
}

/* ============================================================
   Footer
   ============================================================ */
.dm-footer {
    background: var(--sandal-cream);
    background-image: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><path d="M20 0l2 18h18l-15 11 6 18-11-13-11 13 6-18-15-11h18z" fill="%23B65A3C" fill-opacity="0.03" fill-rule="evenodd"/></svg>');
    padding: 60px 24px;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

@media (max-width: 640px) {
    .dm-footer {
        padding-bottom: 80px;
    }
    .dm-footer-links {
        flex-wrap: wrap;
        gap: 12px 20px;
        justify-content: center;
    }
}

.dm-footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.dm-footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.dm-footer-logo {
    font-size: 28px;
}

.dm-footer-name {
    color: var(--kumkum-red);
    font-size: 22px;
    font-weight: 800;
}

.dm-footer-tagline {
    color: var(--text-muted);
    font-size: 14px;
    font-style: italic;
    margin-bottom: 24px;
}

.dm-footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.dm-footer-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.dm-footer-links a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.dm-footer-copyright {
    color: var(--text-muted);
    font-size: 12px;
    opacity: 0.7;
}

/* ============================================================
   PLANS PAGE
   ============================================================ */
.plans-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #6B1D2A 0%, #8B2E3B 40%, #A83C4A 100%);
    padding: 80px 20px 60px;
    text-align: center;
}

.plans-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

/* Floating particles */
.plans-hero::before,
.plans-hero::after {
    content: '🙏';
    position: absolute;
    font-size: 30px;
    opacity: 0.15;
    animation: floatParticle 6s ease-in-out infinite;
}

.plans-hero::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.plans-hero::after {
    content: '🕉️';
    bottom: 15%;
    right: 8%;
    animation-delay: 3s;
    font-size: 36px;
}

@keyframes floatParticle {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.plans-hero-content {
    position: relative;
    z-index: 1;
    animation: heroSlideIn 0.8s ease both;
}

@keyframes heroSlideIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.plans-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 8px 18px;
    border-radius: 50px;
    color: white;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

.plans-hero-badge .material-symbols-outlined {
    font-size: 16px;
}

.plans-hero-title {
    color: white;
    font-size: 44px;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 10px;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
    animation: titlePop 0.6s 0.2s ease both;
}

@keyframes titlePop {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.plans-hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    font-weight: 500;
    font-style: italic;
}

.plans-hero-tagline {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Plans Section */
.plans-section {
    padding: 48px 20px;
    max-width: 1200px;
    margin: 0 auto;
    content-visibility: auto;
    contain-intrinsic-size: 1px 1000px;
}

.plans-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: start;
}

@media (max-width: 1100px) {
    .plans-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .plans-container {
        grid-template-columns: 1fr;
    }
}

/* Plan Card */
.plan-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(.22, .61, .36, 1), box-shadow 0.4s ease;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* Shimmer border on hover */
.plan-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    background: linear-gradient(135deg, transparent 30%, rgba(255, 152, 0, 0.3) 50%, transparent 70%);
    background-size: 200% 200%;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.plan-card:hover::before {
    opacity: 1;
    animation: shimmerBorder 2s linear infinite;
}

@keyframes shimmerBorder {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.plan-card>* {
    position: relative;
    z-index: 1;
}

/* Bookings card special glow */
.plan-bookings {
    border: 2px solid rgba(255, 152, 0, 0.2);
}

.plan-bookings:hover {
    border-color: rgba(255, 152, 0, 0.4);
    box-shadow: 0 20px 50px rgba(255, 109, 0, 0.15);
}

.plan-popular-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #C73E1D, #C9A84C);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 4px;
    animation: pulse-badge 2s infinite;
    z-index: 3;
}

.plan-popular-badge .material-symbols-outlined {
    font-size: 14px;
}

@keyframes pulse-badge {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 109, 0, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(255, 109, 0, 0);
    }
}

.plan-header {
    padding: 28px 24px 20px;
    text-align: center;
    border-bottom: 1px solid #f5f5f5;
    background: linear-gradient(180deg, rgba(255, 248, 225, 0.3) 0%, transparent 100%);
}

.plan-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    margin: 0 auto 14px;
    background: linear-gradient(135deg, #FFF0DC, #F5DFC0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(.22, .61, .36, 1);
    box-shadow: 0 4px 12px rgba(230, 81, 0, 0.1);
}

.plan-card:hover .plan-icon-wrap {
    transform: scale(1.1) rotate(-5deg);
}

.plan-icon-wrap .material-symbols-outlined {
    font-size: 28px;
    color: #C73E1D;
}

.plan-icon-wrap.digital {
    background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
    box-shadow: 0 4px 12px rgba(21, 101, 192, 0.1);
}

.plan-icon-wrap.digital .material-symbols-outlined {
    color: #1565C0;
}

.plan-icon-wrap.bookings {
    background: linear-gradient(135deg, #F3E5F5, #E1BEE7);
    box-shadow: 0 4px 12px rgba(123, 31, 162, 0.1);
}

.plan-icon-wrap.bookings .material-symbols-outlined {
    color: #7B1FA2;
}

.plan-icon-wrap.complete {
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.1);
}

.plan-icon-wrap.complete .material-symbols-outlined {
    color: #2E7D32;
}

.plan-name {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-main);
}

.plan-price-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-label {
    font-size: 22px;
    font-weight: 900;
    background: var(--saffron-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-duration {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-badge-full {
    display: inline-block;
    background: #E8F5E9;
    color: #2E7D32;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.plan-body {
    padding: 20px 24px;
    flex: 1;
}

.plan-includes {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #F5FFF5;
    border: 1px solid #C8E6C9;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 13px;
    color: #2E7D32;
    font-weight: 500;
    margin-bottom: 16px;
}

.plan-includes .material-symbols-outlined {
    font-size: 18px;
    color: #43A047;
}

.plan-feature-group {
    margin-bottom: 16px;
}

.feature-group-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.feature-group-title .material-symbols-outlined {
    font-size: 20px;
    color: var(--primary);
}

.feature-list {
    list-style: none;
    padding-left: 28px;
}

.feature-list li {
    position: relative;
    font-size: 13px;
    color: var(--text-muted);
    padding: 3px 0;
    line-height: 1.5;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: -20px;
    color: #43A047;
    font-weight: 700;
    font-size: 12px;
}

.plan-cta {
    padding: 16px 24px 24px;
    margin-top: auto;
}

.plan-cta-btn {
    width: 100%;
    padding: 13px;
    border: none;
    border-radius: 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.35s cubic-bezier(.22, .61, .36, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.plan-cta-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.plan-cta-btn:hover::after {
    transform: translateX(100%);
}

.plan-cta-btn .material-symbols-outlined {
    font-size: 20px;
    transition: transform 0.3s;
}

.plan-cta-btn:hover .material-symbols-outlined {
    transform: translateX(3px);
}

.plan-cta-basic {
    background: #FFF3E0;
    color: #E65100;
}

.plan-cta-basic:hover {
    background: #FFE0B2;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(230, 81, 0, 0.15);
}

.plan-cta-digital {
    background: #E3F2FD;
    color: #1565C0;
}

.plan-cta-digital:hover {
    background: #BBDEFB;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(21, 101, 192, 0.15);
}

.plan-cta-bookings {
    background: var(--saffron-gradient);
    color: white;
    box-shadow: 0 4px 16px rgba(255, 109, 0, 0.3);
}

.plan-cta-bookings:hover {
    box-shadow: 0 8px 28px rgba(255, 109, 0, 0.45);
    transform: translateY(-3px);
}

.plan-cta-complete {
    background: var(--tulsi-green);
    color: white;
    opacity: 0.9;
}

.plan-cta-complete:hover {
    background: var(--tulsi-green);
    color: white;
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(107, 142, 35, 0.3);
}

/* Featured Temple Section */
.featured-section {
    background: var(--sandal-cream);
    padding: 60px 24px;
    border-top: 3px solid var(--marigold-gold);
}

.featured-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.featured-header {
    margin-bottom: 32px;
}

.featured-icon {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 8px;
}

.featured-header h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 6px;
}

.featured-header p {
    color: var(--text-muted);
    font-size: 14px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.pricing-card {
    background: var(--ivory);
    border-radius: 24px;
    padding: 32px 20px;
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--temple-white);
    transition: all 0.4s cubic-bezier(.22, .61, .36, 1);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-medium);
    border-color: var(--marigold-gold);
}

.pricing-card.popular {
    border-color: var(--marigold-gold);
    background: var(--temple-white);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.07) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: 05px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFC107, #FFD54F);
    color: #5D4037;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.pricing-period {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.pricing-amount {
    font-size: 34px;
    font-weight: 900;
    background: linear-gradient(135deg, #8B4513, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
    transition: transform 0.3s;
}

.pricing-card:hover .pricing-amount {
    transform: scale(1.05);
}

.pricing-note {
    font-size: 12px;
    color: var(--text-muted);
}

/* Notes Section */
.notes-section {
    padding: 30px 20px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.notes-container {
    background: var(--ivory);
    border-radius: 18px;
    padding: 24px 30px;
    border-left: 4px solid var(--saffron);
    box-shadow: var(--shadow-soft);
}

.notes-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.notes-header .material-symbols-outlined {
    color: var(--primary);
}

.notes-header h3 {
    font-size: 16px;
    font-weight: 700;
}

.notes-list {
    list-style: disc;
    padding-left: 20px;
}

.notes-list li {
    font-size: 13px;
    color: #5D4037;
    line-height: 1.6;
    margin-bottom: 4px;
}

/* ============================================================
   MISSION PAGE
   ============================================================ */
.mission-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--sandal-cream), var(--temple-white));
    padding: 80px 20px 60px;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-hero::before,
.mission-hero::after {
    content: '🕉️';
    position: absolute;
    font-size: 28px;
    opacity: 0.1;
    animation: floatParticle 8s ease-in-out infinite;
}

.mission-hero::before {
    top: 15%;
    left: 5%;
    animation-delay: 1s;
}

.mission-hero::after {
    content: '🏛️';
    bottom: 10%;
    right: 5%;
    animation-delay: 4s;
    font-size: 32px;
}

.mission-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.25) 0%, transparent 60%);
}

.mission-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(245, 230, 202, 0.9) 100%);
}

.mission-hero-content {
    position: relative;
    z-index: 1;
    animation: heroSlideIn 0.8s ease both;
}

.mission-sanskrit-top {
    font-family: 'Tiro Devanagari Hindi', serif;
    font-size: 14px;
    color: #8B4513;
    opacity: 0.7;
    margin-bottom: 20px;
    animation: fadeIn 1s 0.2s ease both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.7;
    }
}

.mission-om {
    font-family: 'Tiro Devanagari Hindi', 'Noto Sans Devanagari', serif;
    font-size: 72px;
    font-weight: 400;
    color: #D4AF37;
    text-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    margin-bottom: 10px;
    line-height: 1;
    display: inline-block;
    animation: omGlow 3s ease-in-out infinite, titlePop 0.8s 0.3s ease both;
}

@keyframes omGlow {

    0%,
    100% {
        text-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    }

    50% {
        text-shadow: 0 4px 30px rgba(212, 175, 55, 0.7), 0 0 60px rgba(212, 175, 55, 0.2);
    }
}

.mission-title-hindi {
    font-family: 'Noto Sans Devanagari', 'Tiro Devanagari Hindi', serif;
    font-size: 44px;
    font-weight: 800;
    color: #5D4037;
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    animation: titlePop 0.6s 0.4s ease both;
}

.mission-subtitle-hindi {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 14px;
    color: #8B6914;
    background: rgba(139, 69, 19, 0.08);
    padding: 10px 20px;
    border-radius: 12px;
    display: inline-block;
    line-height: 1.6;
}

/* Mission Grid */
.mission-content {
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.mission-card {
    background: white;
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(.22, .61, .36, 1), box-shadow 0.4s ease, border-color 0.4s;
}

.mission-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 152, 0, 0.15);
}

.mission-card-full {
    grid-column: 1 / -1;
}

.mission-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    transition: transform 0.4s cubic-bezier(.22, .61, .36, 1), box-shadow 0.3s;
    box-shadow: 0 3px 10px rgba(230, 81, 0, 0.1);
}

.mission-card:hover .mission-card-icon {
    transform: scale(1.12) rotate(-5deg);
    box-shadow: 0 6px 16px rgba(230, 81, 0, 0.15);
}

.mission-card-icon .material-symbols-outlined {
    font-size: 26px;
    color: #E65100;
}

.mission-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #5D4037;
    margin-bottom: 12px;
}

.mission-card-list {
    list-style: none;
    padding: 0;
}

.mission-card-list li {
    position: relative;
    padding: 6px 0 6px 24px;
    font-size: 14px;
    color: #5D4037;
    line-height: 1.6;
}

.mission-card-list li::before {
    content: '•';
    position: absolute;
    left: 6px;
    color: var(--primary);
    font-weight: 900;
    font-size: 18px;
    line-height: 1.4;
}

/* Mission CTA */
.mission-cta-section {
    background: linear-gradient(135deg, #6B1D2A, #3D0F16);
    padding: 50px 20px;
    text-align: center;
}

.mission-cta-container {
    max-width: 600px;
    margin: 0 auto;
}

.mission-cta-container h2,
.mission-cta-section h2 {
    color: #FFD54F;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.5;
}

.mission-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--saffron-gradient);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(255, 109, 0, 0.4);
    transition: all 0.3s;
}

.mission-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 109, 0, 0.5);
}

.mission-cta-btn .material-symbols-outlined {
    font-size: 24px;
}

.about-divya-kripa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary-dark);
    border: 1px solid rgba(193, 39, 45, 0.18);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.about-divya-kripa-btn:hover {
    transform: translateY(-2px);
    background: #fff;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

.about-divya-kripa-btn .material-symbols-outlined {
    font-size: 22px;
    color: var(--primary);
}

/* ============================================================
   CONCLAVE PAGE
   ============================================================ */
.conclave-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #F5E6CA, #EDD9B5);
    padding: 60px 20px 50px;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.conclave-hero::before,
.conclave-hero::after {
    content: '🏛️';
    position: absolute;
    font-size: 26px;
    opacity: 0.1;
    animation: floatParticle 7s ease-in-out infinite;
}

.conclave-hero::before {
    top: 18%;
    right: 8%;
    animation-delay: 2s;
}

.conclave-hero::after {
    content: '🙏';
    bottom: 12%;
    left: 6%;
    animation-delay: 5s;
}

.conclave-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.3) 0%, transparent 60%);
}

.conclave-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(245, 230, 202, 0.95) 100%);
}

.conclave-hero-content {
    position: relative;
    z-index: 1;
    animation: heroSlideIn 0.8s ease both;
}

.conclave-title-hindi {
    font-family: 'Noto Sans Devanagari', 'Tiro Devanagari Hindi', serif;
    font-size: 46px;
    font-weight: 800;
    color: #5D4037;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.conclave-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 69, 19, 0.1);
    backdrop-filter: blur(6px);
    padding: 8px 20px;
    border-radius: 50px;
    color: #5D4037;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid rgba(139, 69, 19, 0.2);
}

.conclave-date-badge .material-symbols-outlined {
    font-size: 20px;
    color: #D4AF37;
}

/* Conclave Sections */
.conclave-section {
    padding: 40px 20px;
}

.conclave-section-alt {
    background: #FFF8E1;
}

.conclave-container {
    max-width: 800px;
    margin: 0 auto;
}

.conclave-section-title {
    font-size: 26px;
    font-weight: 800;
    color: #B71C1C;
    margin-bottom: 20px;
    text-align: center;
}

.conclave-text-block {
    background: white;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--gold);
}

.conclave-text-block p {
    font-size: 15px;
    line-height: 1.8;
    color: #3E2723;
}

/* Conclave Highlights */
.conclave-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.conclave-highlight-card {
    background: white;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.4s cubic-bezier(.22, .61, .36, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.conclave-highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.2);
}

.conclave-highlight-card .material-symbols-outlined {
    font-size: 44px;
    color: var(--gold);
    margin-bottom: 14px;
    transition: transform 0.4s cubic-bezier(.22, .61, .36, 1);
}

.conclave-highlight-card:hover .material-symbols-outlined {
    transform: scale(1.15) rotate(-8deg);
}

.conclave-highlight-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #5D4037;
    margin-bottom: 8px;
}

.conclave-highlight-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Conclave CTA */
.conclave-cta-section {
    background: linear-gradient(135deg, #3D0F16, #6B1D2A);
    padding: 50px 20px;
    text-align: center;
}

.conclave-cta-container {
    max-width: 650px;
    margin: 0 auto;
}

.conclave-cta-badge {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 213, 79, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.conclave-cta-badge .material-symbols-outlined {
    font-size: 28px;
    color: #FFD54F;
}

.conclave-cta-section h2 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 28px;
}

/* ============================================================
   Animations
   ============================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA glow */
.mission-cta-btn,
.plan-cta-bookings {
    position: relative;
}

.mission-cta-btn::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #C73E1D, #C9A84C, #C73E1D);
    background-size: 300% 300%;
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
    animation: gradientShift 3s ease infinite;
    filter: blur(8px);
}

.mission-cta-btn:hover::before {
    opacity: 1;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Conclave text block fade-in border */
.conclave-text-block {
    transition: border-color 0.4s, box-shadow 0.4s;
}

.conclave-text-block:hover {
    border-left-color: var(--primary);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

/* Feature list item hover */
.feature-list li {
    transition: transform 0.2s, color 0.2s;
}

.feature-list li:hover {
    transform: translateX(4px);
    color: var(--text-main);
}

.mission-card-list li {
    transition: transform 0.2s, color 0.2s;
}

.mission-card-list li:hover {
    transform: translateX(4px);
    color: #3E2723;
}

/* Responsive */
@media (max-width: 640px) {
    .plans-hero {
        padding: 50px 16px 40px;
    }

    .plans-hero-title {
        font-size: 30px;
    }

    .mission-title-hindi,
    .conclave-title-hindi {
        font-size: 32px;
    }

    .mission-om {
        font-size: 56px;
    }

    .plans-container {
        grid-template-columns: 1fr;
    }

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

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

    .conclave-highlights-grid {
        grid-template-columns: 1fr;
    }

    .conclave-section-title {
        font-size: 22px;
    }
}

@media (min-width: 641px) and (max-width: 1100px) {
    .conclave-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(199, 62, 29, 0.3);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(199, 62, 29, 0.5);
}

/* ============================================================
   Language Switcher
   ============================================================ */
.dm-lang-picker {
    margin-left: auto;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 3px;
    gap: 2px;
    box-shadow: 0 2px 10px rgba(62, 39, 35, 0.05);
    z-index: 101;
}

@media (min-width: 641px) {
    .dm-nav-links {
        margin-left: auto;
    }
    .dm-lang-picker {
        margin-left: 12px;
    }
}

.dm-lang-btn {
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(.22, .61, .36, 1);
    display: flex;
    align-items: center;
    gap: 4px;
}

.dm-lang-btn.active {
    background: var(--saffron-gradient);
    color: white;
    box-shadow: 0 2px 8px rgba(255, 153, 51, 0.3);
}

.dm-lang-btn:hover:not(.active) {
    color: var(--primary-dark);
    background: rgba(255, 153, 51, 0.1);
}