:root {
    --saffron: #FF6B00;
    --saffron-light: #FF8C38;
    --deep-red: #B22222;
    --gold: #D4A017;
    --gold-light: #F0C040;
    --maroon: #6B0F1A;
    --cream: #FDF6EC;
    --dark: #1A0A00;
    --text: #3D2B1F;
    --muted: #7A6050;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
}

/* ── NAV ── */
.navbar-custom {
    background: var(--maroon);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.navbar-custom .brand {
    font-family: 'Tiro Devanagari Sanskrit', serif;
    color: var(--gold-light);
    font-size: 1.25rem;
    text-decoration: none;
    line-height: 1.2;
}

.navbar-custom .brand small {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    letter-spacing: 0.05em;
}

.navbar-custom .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 6px 14px !important;
    transition: color 0.2s;
}

.navbar-custom .nav-link:hover {
    color: var(--gold-light) !important;
}

.navbar-custom .nav-cta {
    background: var(--saffron);
    color: white !important;
    border-radius: 50px;
    padding: 6px 18px !important;
    font-weight: 600;
}

.navbar-custom .nav-cta:hover {
    background: var(--saffron-light);
    color: white !important;
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
    filter: invert(1);
}

/* ── HERO ── */
.hero {
    background: linear-gradient(160deg, var(--maroon) 0%, #3D0A10 40%, #1A0500 100%);
    min-height: 88vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4A017' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero::after {
    content: '🕉';
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 400px;
    opacity: 0.04;
    line-height: 1;
}

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

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 160, 23, 0.15);
    border: 1px solid rgba(212, 160, 23, 0.35);
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 22px;
}

.hero h1 {
    font-family: 'Tiro Devanagari Sanskrit', serif;
    font-size: clamp(2rem, 5vw, 3.6rem);
    color: white;
    line-height: 1.2;
    margin-bottom: 10px;
}

.hero h1 span {
    color: var(--gold-light);
}

.hero .subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    margin-bottom: 24px;
}

.hero p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-saffron {
    background: var(--saffron);
    color: white;
    border: none;
    padding: 13px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s;
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.btn-saffron:hover {
    background: var(--saffron-light);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255, 107, 0, 0.45);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold-light);
    border: 1.5px solid var(--gold-light);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s;
}

.btn-outline-gold:hover {
    background: var(--gold-light);
    color: var(--dark);
}

.hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.hero-stat-num {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 4px;
}

.hero-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrap img {
    border-radius: 20px;
    max-height: 500px;
    object-fit: cover;
    position: relative;
    z-index: 2;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.hero-ring {
    position: absolute;
    width: 110%;
    height: 110%;
    border: 2px dashed rgba(212, 160, 23, 0.25);
    border-radius: 50%;
    animation: spin 30s linear infinite;
}

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

/* ── DIVIDER ── */
.section-divider {
    text-align: center;
    padding: 8px 0;
    color: var(--gold);
    letter-spacing: 0.4em;
    font-size: 1.2rem;
    opacity: 0.6;
}

/* ── SECTION HEADINGS ── */
.section-tag {
    display: inline-block;
    background: rgba(255, 107, 0, 0.1);
    color: var(--saffron);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.section-heading {
    font-family: 'Tiro Devanagari Sanskrit', serif;
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    color: var(--maroon);
    margin-bottom: 12px;
    line-height: 1.25;
}

.section-subtext {
    color: var(--muted);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

/* ── CALL BANNER ── */
.call-banner {
    background: linear-gradient(135deg, var(--maroon) 0%, #8B0000 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    color: white;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.call-banner::before {
    content: '📿';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 5rem;
    opacity: 0.08;
}

.call-banner::after {
    content: '📿';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 5rem;
    opacity: 0.08;
}

.call-banner h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.call-number {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--saffron);
    font-size: 1.6rem;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

.call-number:hover {
    transform: scale(1.03);
    color: var(--saffron);
}

.call-note {
    margin-top: 12px;
    font-size: 0.88rem;
    opacity: 0.75;
}

/* ── PUJA CARDS ── */
.puja-section {
    padding: 80px 0;
    background: white;
}

.puja-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(107, 15, 26, 0.08);
    height: 100%;
    transition: transform 0.25s, box-shadow 0.25s;
    background: white;
}

.puja-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(107, 15, 26, 0.16);
}

.puja-card .card-img-top {
    height: 170px;
    object-fit: cover;
}

.puja-card .card-body {
    padding: 18px 18px 10px;
}

.puja-card .card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--maroon);
    margin-bottom: 8px;
}

.puja-card .card-text {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.55;
}

.puja-card .card-footer {
    background: transparent;
    border-top: 1px solid rgba(107, 15, 26, 0.07);
    padding: 12px 18px;
}

.btn-puja {
    background: linear-gradient(135deg, var(--maroon), var(--deep-red));
    color: white;
    border: none;
    width: 100%;
    padding: 9px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: opacity 0.2s;
}

.btn-puja:hover {
    opacity: 0.88;
    color: white;
}

/* ── ABOUT ── */
.about-section {
    padding: 80px 0;
    background: var(--cream);
}

.about-highlight {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.about-highlight-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--saffron), var(--gold));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
    color: white;
}

.about-highlight h6 {
    font-weight: 600;
    margin: 0 0 3px;
    color: var(--maroon);
}

.about-highlight p {
    font-size: 0.88rem;
    color: var(--muted);
    margin: 0;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
    padding: 80px 0;
    background: var(--maroon);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 32px 28px;
    color: white;
    text-align: center;
}

.testimonial-card .stars {
    color: var(--gold-light);
    font-size: 1rem;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-size: 0.95rem;
    line-height: 1.75;
    opacity: 0.85;
    margin-bottom: 20px;
}

.testimonial-card h6 {
    font-weight: 700;
    margin: 0;
    color: var(--gold-light);
}

.testimonial-card small {
    opacity: 0.6;
    font-size: 0.8rem;
}

/* ── CONTACT STRIP ── */
.contact-strip {
    background: linear-gradient(135deg, var(--saffron) 0%, var(--deep-red) 100%);
    padding: 60px 0;
    text-align: center;
    color: white;
}

.contact-strip h2 {
    font-family: 'Tiro Devanagari Sanskrit', serif;
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-strip p {
    opacity: 0.88;
    margin-bottom: 28px;
}

/* ── FOOTER ── */
footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 48px 0 24px;
}

footer h5 {
    color: var(--gold-light);
    font-family: 'Tiro Devanagari Sanskrit', serif;
    font-size: 1.1rem;
    margin-bottom: 18px;
}

footer a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 8px;
}

footer a:hover {
    color: var(--gold-light);
}

footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 40px;
    padding-top: 20px;
    font-size: 0.82rem;
    text-align: center;
}

footer .footer-info {
    font-size: 0.88rem;
    line-height: 1.7;
}

footer .footer-info i {
    color: var(--saffron);
    margin-right: 8px;
}

/* ── WHATSAPP ── */
.whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.2s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    color: white;
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 60px 0 50px;
    }

    .hero-image-wrap {
        margin-top: 40px;
    }

    .hero-stats {
        gap: 20px;
    }
}


.puja-hero {
    background: linear-gradient(160deg, var(--maroon) 0%, #3D0A10 40%, #1A0500 100%);
    color: white;
    padding: 70px 0 50px;
    text-align: center;
}

.puja-hero .emoji-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

.puja-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.puja-hero .breadcrumb {
    justify-content: center;
    background: transparent;
}

.puja-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.puja-hero .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.95);
}

.puja-hero .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

.section-about {
    padding: 60px 0;
    background: #fff;
}

.section-about p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #444;
}

.benefits-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--saffron) 0%, var(--deep-red) 100%);

}

.benefit-card {
    background: white;
    border-radius: 12px;
    padding: 22px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 3px 15px rgba(110, 72, 170, 0.08);
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(110, 72, 170, 0.16);
}

.benefit-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(160deg, var(--maroon) 0%, #3D0A10 40%, #1A0500 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.benefit-card p {
    margin: 0;
    color: #333;
    font-size: 0.97rem;
    line-height: 1.5;
    font-weight: 500;
}

.includes-section {
    padding: 60px 0;
    background: white;
}

.include-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--saffron) 0%, var(--deep-red) 100%);
    border-radius: 10px;
    border-left: 4px solid #3D0A10;
    margin-bottom: 14px;
    transition: background 0.2s;
}


.include-item .num {
    width: 32px;
    height: 32px;
    background: linear-gradient(160deg, var(--maroon) 0%, #3D0A10 40%, #1A0500 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.include-item span {
    font-weight: 500;
    color: #ffffff;
}

.section-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-subtitle {
    margin-bottom: 40px;
}

.back-link {
    background: #290707;
    color: #fff;
    padding: 10px;
    display: inline-block;
    margin: 10px 0;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s;
}