:root {
    --saffron: #D05E2D;
    --saffron-dark: #A54B24;
    --saffron-light: #E67C52;
    --gold: #FFD700;
    --gold-dark: #D4AF37;
    --white: #FFFFFF;
    --cream: #FFF8F0;
    --dark: #2C1810;
    --light-dark: #3E2723;
    --gray: #666666;
    --light-gray: #E8E6E1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Spiritual Background Elements */
.spiritual-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(208, 94, 45, 0.05) 0px, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.05) 0px, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.03) 0px, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Animated Om Symbols */
.floating-om {
    position: fixed;
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 3rem;
    color: rgba(208, 94, 45, 0.08);
    animation: floatOm 20s infinite linear;
    pointer-events: none;
    z-index: -1;
}

@keyframes floatOm {
    0% { transform: translateY(0px) rotate(0deg) scale(1); }
    25% { transform: translateY(-100px) rotate(90deg) scale(1.1); }
    50% { transform: translateY(0px) rotate(180deg) scale(1); }
    75% { transform: translateY(100px) rotate(270deg) scale(0.9); }
    100% { transform: translateY(0px) rotate(360deg) scale(1); }
}

/* ========== HEADER STYLES ========== */
.spiritual-header {
    position: fixed;
       background-color: #e2cfbe !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 30px rgba(208, 94, 45, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    padding: 0;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    height: 60px;
    transition: height 0.3s ease;
}

.logo-image {
    height: 80px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 3px 5px rgba(208, 94, 45, 0.2));
}

.logo-image:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--dark) !important;
    font-weight: 500;
    padding: 8px 15px !important;
    margin: 0 5px;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--saffron) !important;
    background: rgba(208, 94, 45, 0.05);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--saffron), var(--gold));
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 70%;
}

.language-dropdown .dropdown-toggle {
    background: rgba(208, 94, 45, 0.08);
    border-radius: 50px;
    padding: 8px 15px !important;
}

.language-dropdown .dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(208, 94, 45, 0.15);
    border-radius: 15px;
    overflow: hidden;
}

.dropdown-item {
    padding: 10px 20px;
    transition: all 0.2s ease;
}

.dropdown-item.active, .dropdown-item:hover {
    background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dark) 100%);
    color: var(--white) !important;
}

.header-cta-btn {
    background: linear-gradient(135deg, var(--gold) 0%, var(--saffron) 100%);
    color: var(--dark);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(208, 94, 45, 0.3);
    white-space: nowrap;
}

.header-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(208, 94, 45, 0.4);
    color: var(--dark);
}

.navbar-toggler {
    border: none;
    color: var(--saffron);
    font-size: 1.5rem;
    padding: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Carousel Banner */
.spiritual-carousel {
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    margin-top: 90px; /* Space for fixed header */
}

.carousel-item {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(208, 94, 45, 0.85) 0%, 
        rgba(165, 75, 36, 0.75) 50%, 
        rgba(44, 24, 16, 0.8) 100%);
}

.carousel-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.mantra-text {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    font-weight: 600;
}

.spiritual-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(50px);
    line-height: 1.1;
}

.tagline {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--cream);
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0;
    transform: translateY(30px);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-button {
    background: linear-gradient(135deg, var(--gold) 0%, var(--saffron) 100%);
    color: var(--dark);
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.2rem);
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(208, 94, 45, 0.4);
    opacity: 0;
    transform: scale(0.9);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-button:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 40px rgba(208, 94, 45, 0.6);
    color: var(--dark);
}

/* Features Section */
.spiritual-features {
    padding: clamp(60px, 10vw, 120px) 0;
    position: relative;
    background: var(--white);
}

.section-header {
    text-align: center !important;
    margin-bottom: clamp(40px, 8vw, 80px);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--saffron), var(--gold));
    border-radius: 2px;
}

.section-subtitle {
    color: var(--gray);
    font-size: clamp(1rem, 2vw, 1.3rem);
    max-width: 800px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    border-radius: 25px;
    padding: clamp(30px, 5vw, 50px) clamp(20px, 4vw, 40px);
    height: 100%;
    box-shadow: 0 20px 50px rgba(208, 94, 45, 0.08);
    border: 2px solid transparent;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(60px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--saffron), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.feature-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 30px 70px rgba(208, 94, 45, 0.15);
    border-color: var(--saffron);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon-wrapper {
    width: clamp(80px, 15vw, 120px);
    height: clamp(80px, 15vw, 120px);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto clamp(20px, 4vw, 35px);
    position: relative;
    box-shadow: 0 15px 35px rgba(208, 94, 45, 0.2);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 20px 40px rgba(208, 94, 45, 0.3);
}

.feature-icon {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.5rem);
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.feature-title {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: clamp(15px, 3vw, 20px);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.feature-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--saffron);
    transition: width 0.3s ease;
}

.feature-card:hover .feature-title::after {
    width: 100%;
}

.feature-desc {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: clamp(20px, 4vw, 30px);
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
}

.feature-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    color: var(--gray);
    font-size: clamp(0.8rem, 1.2vw, 0.9rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Process Section */
.process-section {
    padding: clamp(60px, 10vw, 120px) 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.process-container {
    position: relative;
}

.process-step {
    margin-bottom: clamp(40px, 8vw, 80px);
    position: relative;
    opacity: 0;
    transform: translateY(50px);
}

.process-step::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 30px;
    width: 3px;
    height: calc(100% + 40px);
    background: linear-gradient(to bottom, var(--saffron), var(--gold));
    opacity: 0.3;
}

.process-step:last-child::before {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--saffron) 0%, var(--gold) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(208, 94, 45, 0.3);
    position: relative;
    z-index: 2;
}

.step-content {
    background: var(--white);
    padding: clamp(25px, 4vw, 40px);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(208, 94, 45, 0.1);
    position: relative;
    margin-left: 30px;
}

.step-content h3 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    margin-bottom: 15px;
    font-weight: 700;
}

.step-content p {
    color: var(--gray);
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    line-height: 1.8;
}

/* Divine Community */
.community-section {
    padding: clamp(60px, 10vw, 100px) 0;
    background: linear-gradient(135deg, 
        rgba(208, 94, 45, 0.95) 0%, 
        rgba(165, 75, 36, 0.9) 50%, 
        rgba(44, 24, 16, 0.85) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.community-header {
    text-align: center;
    margin-bottom: clamp(40px, 8vw, 60px);
}

.community-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.community-subtitle {
    color: var(--cream);
    font-size: clamp(1rem, 2vw, 1.3rem);
    max-width: 700px;
    margin: 0 auto;
}

.community-stat {
    text-align: center;
    padding: clamp(25px, 4vw, 40px) clamp(20px, 3vw, 30px);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    margin-bottom: 30px;
}

.community-stat:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--gold);
    margin-bottom: 25px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.community-stat .stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
}

.community-stat .stat-label {
    color: var(--cream);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    text-transform: none;
    letter-spacing: 1px;
}

/* Testimonials Section */
.testimonials-section {
    padding: clamp(60px, 10vw, 120px) 0;
    background: var(--white);
}

.testimonial-card {
    background: var(--white);
    border-radius: 25px;
    padding: clamp(25px, 4vw, 40px);
    box-shadow: 0 20px 50px rgba(208, 94, 45, 0.08);
    border-left: 5px solid var(--saffron);
    margin-bottom: 30px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(50px);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(208, 94, 45, 0.15);
}

.testimonial-text {
    color: var(--gray);
    font-style: italic;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--saffron);
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--saffron), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
}

.author-info h4 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: clamp(60px, 10vw, 120px) 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-gray) 100%);
}

.faq-card {
    background: var(--white);
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 15px 40px rgba(208, 94, 45, 0.08);
    border-left: 5px solid var(--saffron);
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.faq-card:hover {
    box-shadow: 0 20px 50px rgba(208, 94, 45, 0.15);
}

.faq-question {
    background: var(--white);
    padding: clamp(20px, 3vw, 30px);
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    font-weight: 600;
    color: var(--saffron);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(90deg, rgba(208, 94, 45, 0.05), transparent);
}

.faq-answer {
    background: var(--white);
    padding: 0 clamp(20px, 3vw, 30px);
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer.show {
    padding: 0 clamp(20px, 3vw, 30px) clamp(20px, 3vw, 30px);
    max-height: 500px;
}

/* Call to Action Section */
.cta-section {
    padding: clamp(80px, 15vw, 150px) 0;
    background: linear-gradient(135deg, 
        rgba(208, 94, 45, 0.95) 0%, 
        rgba(165, 75, 36, 0.9) 100%), 
        url('img/WhatsApp Image 2025-12-18 at 16.05.20.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.cta-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: var(--cream);
    max-width: 800px;
    margin: 0 auto 3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* ========== FOOTER STYLES ========== */
.spiritual-footer {
    background: linear-gradient(135deg, var(--dark) 0%, var(--light-dark) 100%);
    color: var(--cream);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.spiritual-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--saffron), var(--gold));
}

.footer-logo {
    display: flex;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-logo i {
    color: var(--gold);
    font-size: 2.2rem;
    margin-right: 10px;
}

.footer-description {
    color: var(--light-gray);
    line-height: 1.8;
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-heading {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--saffron);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.temple-partners {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.temple-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--cream);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.temple-badge:hover {
    background: var(--saffron);
    transform: translateY(-3px);
}

.app-download {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.app-badge {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    padding: 12px 20px;
    border-radius: 12px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.app-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    color: var(--white);
}

.app-badge i {
    font-size: 1.8rem;
    color: var(--gold);
}

.app-badge div {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.app-badge small {
    font-size: 0.7rem;
    opacity: 0.8;
}

.app-badge strong {
    font-size: 1rem;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: var(--light-gray);
}

.contact-info a {
    color: var(--light-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--cream);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.social-icon:hover {
    background: var(--saffron);
    transform: translateY(-3px);
    color: var(--white);
}

.footer-bottom {
    color: var(--light-gray);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--saffron-light);
    text-decoration: underline;
}

/* Puja card hover effects */
.btn[style*="background-color: #FF6B35"]:hover {
    background-color: #e55a2b !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.card {
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* ========== RESPONSIVE DESIGN ========== */
/* Mobile First Approach - Fixed Media Queries */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    /* Keep desktop logo size for tablets */
    .logo-image {
        height: 90px; /* Increased from 50px for tablets */
    }
    
    .logo-wrapper {
        height: 70px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .logo-image {
        height: 95px; /* Larger for tablets */
    }
    
    .logo-wrapper {
        height: 75px;
    }
    
    .spiritual-carousel {
        height: 80vh;
        min-height: 500px;
        margin-top: 85px; /* Adjusted for larger logo */
    }
    
    .carousel-item {
        height: 80vh;
        min-height: 500px;
    }
    
    .carousel-content {
        padding-top: 40px;
    }
    
    .feature-card, .testimonial-card, .faq-card {
        margin-bottom: 30px;
    }
    
    .process-step::before {
        left: 25px;
    }
    
    .step-content {
        margin-left: 20px;
    }
    
    .community-stat {
        margin-bottom: 20px;
    }
    
    .header-cta-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .logo-image {
        height: 80px; /* Original desktop size */
    }
    
    .logo-wrapper {
        height: 80px;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .logo-image {
        height: 95px; /* Slightly larger for big screens */
    }
    
    .logo-wrapper {
        height: 85px;
    }
}

/* For very small screens (below 576px) - Mobile phones */
@media (max-width: 575.98px) {
    .logo-image {
        height: 85px !important; /* Increased from 40px for better visibility */
        max-width: 180px !important;
    }
    
    .logo-wrapper {
        height: 65px !important;
    }
    
    .spiritual-carousel {
        height: 70vh;
        min-height: 400px;
        margin-top: 75px; /* Adjusted for logo height */
    }
    
    .carousel-item {
        height: 70vh;
        min-height: 400px;
    }
    
    .mantra-text, .spiritual-heading, .tagline {
        text-align: center;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .feature-stats {
        flex-direction: column;
        gap: 5px;
    }
    
    .spiritual-header {
        padding: 10px 0;
    }
    
    .navbar-nav .nav-link {
        padding: 8px 10px !important;
        margin: 5px 0;
    }
    
    .footer-logo {
        font-size: 1.5rem;
    }
    
    .footer-logo i {
        font-size: 1.8rem;
    }
}

/* For extra small mobile devices (below 400px) */
@media (max-width: 399.98px) {
    .logo-image {
        height: 90px !important;
        max-width: 160px !important;
    }
    
    .logo-wrapper {
        height: 60px !important;
    }
    
    .spiritual-header {
        padding: 8px 0 !important;
    }
}





/* Chadhava Hero Section */
        .chadhava-hero {
            padding: 160px 0 80px;
            background: linear-gradient(135deg, 
                rgba(208, 94, 45, 0.9) 0%, 
                rgba(165, 75, 36, 0.85) 50%, 
                rgba(44, 24, 16, 0.9) 100%), 
                url('img/WhatsApp Image 2025-12-18 at 16.05.20.jpeg');
            background-size: cover;
            background-position: center;
            color: var(--white);
            margin-top: 80px;
            text-align: center;
        }
        
        .chadhava-hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }
        
        .chadhava-hero p {
            font-size: clamp(1rem, 2.5vw, 1.3rem);
            color: var(--cream);
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        
        /* Benefits Grid */
        .benefits-section {
            padding: 80px 0;
            background: var(--white);
        }
        
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        
        .benefit-card {
            background: var(--white);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(208, 94, 45, 0.08);
            border: 2px solid transparent;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(208, 94, 45, 0.15);
            border-color: var(--saffron);
        }
        
        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--saffron), var(--gold));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }
        
        .benefit-card:hover::before {
            transform: scaleX(1);
        }
        
        .benefit-icon {
            font-size: 2.5rem;
            color: var(--saffron);
            margin-bottom: 15px;
            display: inline-block;
        }
        
        .benefit-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            color: var(--dark);
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        /* Search Results Section */
        .search-results-section {
            padding: 80px 0;
            background: var(--cream);
        }
        
        .search-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .results-count {
            font-size: 1.1rem;
            color: var(--saffron);
            font-weight: 600;
        }
        
        .search-box {
            position: relative;
            max-width: 400px;
            width: 100%;
        }
        
        .search-box input {
            width: 100%;
            padding: 12px 20px 12px 45px;
            border: 2px solid var(--light-gray);
            border-radius: 50px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .search-box input:focus {
            outline: none;
            border-color: var(--saffron);
            box-shadow: 0 0 0 3px rgba(208, 94, 45, 0.1);
        }
        
        .search-box i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--saffron);
        }
        
        .puja-results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .puja-card {
            background: var(--white);
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(208, 94, 45, 0.08);
            border-left: 4px solid var(--saffron);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .puja-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(208, 94, 45, 0.15);
        }
        
        .puja-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            color: var(--dark);
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .puja-items {
            margin-bottom: 20px;
        }
        
        .puja-item {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            color: var(--gray);
        }
        
        .puja-item i {
            color: var(--saffron);
            margin-right: 10px;
            font-size: 0.9rem;
        }
        
        .puja-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid var(--light-gray);
        }
        
        .puja-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--saffron);
        }
        
        .book-now-btn {
            background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dark) 100%);
            color: var(--white);
            border: none;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .book-now-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(208, 94, 45, 0.3);
        }
        
        /* Guidance Section */
        .guidance-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dark) 100%);
            color: var(--white);
            text-align: center;
        }
        
        .guidance-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .guidance-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 1.5rem;
        }
        
        .guidance-text {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        .guidance-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .whatsapp-btn {
            background: #25D366;
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }
        
        .whatsapp-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
            color: white;
        }
        
        .call-btn {
            background: transparent;
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: 2px solid white;
            transition: all 0.3s ease;
        }
        
        .call-btn:hover {
            background: white;
            color: var(--saffron);
            transform: translateY(-3px);
        }
        

        

         :root {
            --saffron: #D05E2D;
            --saffron-dark: #A54B24;
            --saffron-light: #E67C52;
            --gold: #FFD700;
            --gold-dark: #D4AF37;
            --white: #FFFFFF;
            --cream: #FFF8F0;
            --dark: #2C1810;
            --light-dark: #3E2723;
            --gray: #666666;
            --light-gray: #E8E6E1;
            --success: #28a745;
            --warning: #ffc107;
            --danger: #dc3545;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark);
            background: var(--cream);
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        /* Spiritual Background Elements */
        .spiritual-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(208, 94, 45, 0.05) 0px, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.05) 0px, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.03) 0px, transparent 50%);
            pointer-events: none;
            z-index: -1;
        }
        
        /* Animated Om Symbols */
        .floating-om {
            position: fixed;
            font-family: 'Noto Sans Devanagari', sans-serif;
            font-size: 3rem;
            color: rgba(208, 94, 45, 0.08);
            animation: floatOm 20s infinite linear;
            pointer-events: none;
            z-index: -1;
        }
        
        @keyframes floatOm {
            0% { transform: translateY(0px) rotate(0deg) scale(1); }
            25% { transform: translateY(-100px) rotate(90deg) scale(1.1); }
            50% { transform: translateY(0px) rotate(180deg) scale(1); }
            75% { transform: translateY(100px) rotate(270deg) scale(0.9); }
            100% { transform: translateY(0px) rotate(360deg) scale(1); }
        }
        
        /* ========== HEADER STYLES ========== */
        .spiritual-header {
            background-color: #e2cfbe !important;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 30px rgba(208, 94, 45, 0.1);
            padding: 15px 0;
            transition: all 0.3s ease;
        }

        .navbar-brand {
            padding: 0;
        }

        .logo-wrapper {
            display: flex;
            align-items: center;
            height: 60px;
        }

        .logo-image {
            height: 80px;
            width: auto;
            max-width: 200px;
            object-fit: contain;
            transition: all 0.3s ease;
            filter: drop-shadow(0 3px 5px rgba(208, 94, 45, 0.2));
        }

        .logo-image:hover {
            transform: scale(1.05);
        }

        .navbar-nav .nav-link {
            color: var(--dark) !important;
            font-weight: 500;
            padding: 8px 15px !important;
            margin: 0 5px;
            border-radius: 50px;
            transition: all 0.3s ease;
            position: relative;
        }

        .navbar-nav .nav-link:hover {
            color: var(--saffron) !important;
            background: rgba(208, 94, 45, 0.05);
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--saffron), var(--gold));
            transition: width 0.3s ease;
        }

        .navbar-nav .nav-link:hover::after {
            width: 70%;
        }

        .language-dropdown .dropdown-toggle {
            background: rgba(208, 94, 45, 0.08);
            border-radius: 50px;
            padding: 8px 15px !important;
        }

        .language-dropdown .dropdown-menu {
            border: none;
            box-shadow: 0 10px 30px rgba(208, 94, 45, 0.15);
            border-radius: 15px;
            overflow: hidden;
        }

        .dropdown-item {
            padding: 10px 20px;
            transition: all 0.2s ease;
        }

        .dropdown-item.active, .dropdown-item:hover {
            background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dark) 100%);
            color: var(--white) !important;
        }

        .header-cta-btn {
            background: linear-gradient(135deg, var(--gold) 0%, var(--saffron) 100%);
            color: var(--dark);
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 25px rgba(208, 94, 45, 0.3);
            white-space: nowrap;
        }

        .header-cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(208, 94, 45, 0.4);
            color: var(--dark);
        }

        .navbar-toggler {
            border: none;
            color: var(--saffron);
            font-size: 1.5rem;
            padding: 8px;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        /* Hero Banner for Puja Page */
        .puja-hero {
            padding: 160px 0 80px;
            background: linear-gradient(135deg, 
                rgba(208, 94, 45, 0.9) 0%, 
                rgba(165, 75, 36, 0.85) 50%, 
                rgba(44, 24, 16, 0.9) 100%), 
                url('img/WhatsApp Image 2025-12-18 at 16.05.20 (1).jpeg');
            background-size: cover;
            background-position: center;
            color: var(--white);
            position: relative;
            margin-top: 80px;
        }
        
        .puja-hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }
        
        .puja-hero p {
            font-size: clamp(1rem, 2.5vw, 1.3rem);
            color: var(--cream);
            max-width: 700px;
            margin-bottom: 2rem;
        }
        
        .hero-stats {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
            margin-top: 40px;
        }
        
        .hero-stat {
            text-align: center;
        }
        
        .hero-stat-number {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            color: var(--gold);
            margin-bottom: 5px;
        }
        
        .hero-stat-label {
            font-size: 0.9rem;
            color: var(--cream);
            opacity: 0.9;
        }
        
        /* Search and Filter Section */
        .search-section {
            background: var(--white);
            padding: 50px 0;
            box-shadow: 0 10px 30px rgba(208, 94, 45, 0.08);
            position: relative;
            z-index: 10;
        }
        
        .search-box {
            background: var(--white);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 15px 40px rgba(208, 94, 45, 0.1);
            border: 2px solid rgba(208, 94, 45, 0.1);
        }
        
        .search-input {
            position: relative;
        }
        
        .search-input input {
            width: 100%;
            padding: 15px 20px 15px 50px;
            border: 2px solid var(--light-gray);
            border-radius: 50px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .search-input input:focus {
            outline: none;
            border-color: var(--saffron);
            box-shadow: 0 0 0 3px rgba(208, 94, 45, 0.1);
        }
        
        .search-input i {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--saffron);
            font-size: 1.2rem;
        }
        
        .filter-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
        }
        
        .filter-tag {
            background: rgba(208, 94, 45, 0.1);
            color: var(--saffron);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        
        .filter-tag:hover, .filter-tag.active {
            background: var(--saffron);
            color: var(--white);
        }
        
        /* Puja Categories */
        .puja-categories {
            padding: 80px 0;
            background: var(--cream);
        }
        
        .section-header {
            text-align: center !important;
            margin-bottom: 50px;
        }
        
        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 5vw, 3.5rem);
            background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dark) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--saffron), var(--gold));
            border-radius: 2px;
        }
        
        .section-subtitle {
            color: var(--gray);
            font-size: clamp(1rem, 2vw, 1.3rem);
            max-width: 800px;
            margin: 0 auto;
        }
        
        .category-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(208, 94, 45, 0.08);
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
            border: 2px solid transparent;
        }
        
        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(208, 94, 45, 0.15);
            border-color: var(--saffron);
        }
        
        .category-image {
            height: 200px;
            width: 100%;
            object-fit: cover;
        }
        
        .category-content {
            padding: 25px;
        }
        
        .category-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            color: var(--dark);
            margin-bottom: 10px;
            font-weight: 700;
        }
        
        .category-desc {
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 15px;
            line-height: 1.6;
        }
        
        .category-stats {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid var(--light-gray);
        }
        
        .category-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--saffron);
        }
        
        .category-offer {
            background: var(--success);
            color: var(--white);
            padding: 3px 10px;
            border-radius: 5px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        /* Featured Pujas */
        .featured-pujas {
            padding: 80px 0;
            background: var(--white);
        }
        
        .featured-puja-card {
            background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(208, 94, 45, 0.1);
            transition: all 0.4s ease;
            position: relative;
            border: 2px solid var(--saffron);
            height: 100%;
        }
        
        .featured-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(135deg, var(--gold) 0%, var(--saffron) 100%);
            color: var(--dark);
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 700;
            z-index: 2;
        }
        
        .featured-image {
            height: 250px;
            width: 100%;
            object-fit: cover;
        }
        
        .featured-content {
            padding: 30px;
        }
        
        .featured-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--dark);
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .featured-details {
            margin-bottom: 20px;
        }
        
        .featured-detail {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            color: var(--gray);
        }
        
        .featured-detail i {
            color: var(--saffron);
            margin-right: 10px;
            width: 20px;
        }
        
        .featured-price {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 25px;
            padding-top: 20px;
            border-top: 1px solid var(--light-gray);
        }
        
        .price-main {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--saffron);
        }
        
        .price-old {
            font-size: 1rem;
            color: var(--gray);
            text-decoration: line-through;
            margin-left: 10px;
        }
        
        .book-btn {
            background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dark) 100%);
            color: var(--white);
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .book-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(208, 94, 45, 0.3);
            color: var(--white);
        }
        
        /* How It Works */
        .process-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--cream) 0%, var(--light-gray) 100%);
        }
        
        .process-step {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .step-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dark) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--white);
            font-size: 2rem;
            box-shadow: 0 15px 30px rgba(208, 94, 45, 0.2);
        }
        
        .step-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            color: var(--dark);
            margin-bottom: 10px;
            font-weight: 700;
        }
        
        .step-content p {
            color: var(--gray);
            font-size: 0.95rem;
        }
        
        /* Why Choose Us */
        .why-choose {
            padding: 80px 0;
            background: var(--white);
        }
        
        .benefit-card {
            text-align: center;
            padding: 30px;
            background: var(--white);
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(208, 94, 45, 0.08);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(208, 94, 45, 0.15);
        }
        
        .benefit-icon {
            font-size: 3rem;
            color: var(--saffron);
            margin-bottom: 20px;
        }
        
        .benefit-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            color: var(--dark);
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .benefit-desc {
            color: var(--gray);
            font-size: 0.95rem;
        }
        
        /* Testimonials */
        .testimonials-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--cream) 0%, var(--light-gray) 100%);
        }
        
        .testimonial-card {
            background: var(--white);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 15px 40px rgba(208, 94, 45, 0.1);
            height: 100%;
            position: relative;
        }
        
        .testimonial-text {
            font-style: italic;
            color: var(--gray);
            margin-bottom: 20px;
            position: relative;
            padding-left: 20px;
        }
        
        .testimonial-text::before {
            content: '"';
            position: absolute;
            left: 0;
            top: -10px;
            font-size: 3rem;
            color: var(--saffron);
            opacity: 0.3;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--saffron), var(--gold));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 600;
            margin-right: 15px;
        }
        
        .author-info h4 {
            font-family: 'Playfair Display', serif;
            color: var(--dark);
            font-size: 1.1rem;
            margin-bottom: 5px;
        }
        
        .author-info p {
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background: var(--white);
        }
        
        .faq-card {
            background: var(--white);
            border-radius: 15px;
            margin-bottom: 15px;
            box-shadow: 0 10px 30px rgba(208, 94, 45, 0.08);
            border-left: 4px solid var(--saffron);
            overflow: hidden;
        }
        
        .faq-question {
            background: var(--white);
            padding: 20px;
            font-weight: 600;
            color: var(--dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background: linear-gradient(90deg, rgba(208, 94, 45, 0.05), transparent);
        }
        
        .faq-answer {
            background: var(--white);
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .faq-answer.show {
            padding: 0 20px 20px;
            max-height: 500px;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, 
                rgba(208, 94, 45, 0.95) 0%, 
                rgba(165, 75, 36, 0.9) 100%), 
                url('img/WhatsApp Image 2025-12-18 at 16.05.20.jpeg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: var(--white);
            text-align: center;
        }
        
        .cta-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 5vw, 3.5rem);
            color: var(--white);
            margin-bottom: 1.5rem;
        }
        
        .cta-subtitle {
            font-size: clamp(1rem, 2.5vw, 1.3rem);
            color: var(--cream);
            max-width: 800px;
            margin: 0 auto 3rem;
        }
        
        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .cta-btn-primary {
            background: linear-gradient(135deg, var(--gold) 0%, var(--saffron) 100%);
            color: var(--dark);
            padding: 18px 45px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            border: none;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .cta-btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(208, 94, 45, 0.4);
            color: var(--dark);
        }
        
        .cta-btn-secondary {
            background: transparent;
            color: var(--white);
            padding: 18px 45px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            border: 2px solid var(--white);
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .cta-btn-secondary:hover {
            background: var(--white);
            color: var(--saffron);
            transform: translateY(-5px);
        }
        
        /* ========== FOOTER STYLES ========== */
        .spiritual-footer {
            background: linear-gradient(135deg, var(--dark) 0%, var(--light-dark) 100%);
            color: var(--cream);
            padding: 80px 0 30px;
            position: relative;
            overflow: hidden;
        }

        .spiritual-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--saffron), var(--gold));
        }

        .footer-logo {
            display: flex;
            align-items: center;
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 20px;
        }

        .footer-logo i {
            color: var(--gold);
            font-size: 2.2rem;
            margin-right: 10px;
        }

        .footer-description {
            color: var(--light-gray);
            line-height: 1.8;
            font-size: 0.95rem;
            opacity: 0.9;
        }

        .footer-heading {
            color: var(--gold);
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
        }

        .footer-heading::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--saffron);
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--light-gray);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }

        .footer-links a:hover {
            color: var(--gold);
            transform: translateX(5px);
        }

        .temple-partners {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .temple-badge {
            background: rgba(255, 255, 255, 0.1);
            color: var(--cream);
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 0.8rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .temple-badge:hover {
            background: var(--saffron);
            transform: translateY(-3px);
        }

        .app-download {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .app-badge {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.08);
            padding: 12px 20px;
            border-radius: 12px;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .app-badge:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-3px);
            color: var(--white);
        }

        .app-badge i {
            font-size: 1.8rem;
            color: var(--gold);
        }

        .app-badge div {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .app-badge small {
            font-size: 0.7rem;
            opacity: 0.8;
        }

        .app-badge strong {
            font-size: 1rem;
        }

        .contact-info p {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            color: var(--light-gray);
        }

        .contact-info a {
            color: var(--light-gray);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .contact-info a:hover {
            color: var(--gold);
        }

        .footer-social {
            display: flex;
            gap: 15px;
        }

        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.08);
            color: var(--cream);
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .social-icon:hover {
            background: var(--saffron);
            transform: translateY(-3px);
            color: var(--white);
        }

        .footer-bottom {
            color: var(--light-gray);
            font-size: 0.9rem;
        }

        .footer-bottom a {
            color: var(--gold);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-bottom a:hover {
            color: var(--saffron-light);
            text-decoration: underline;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .puja-hero {
                padding: 120px 0 60px;
                margin-top: 70px;
            }
            
            .hero-stats {
                gap: 20px;
            }
            
            .search-box {
                padding: 20px;
            }
            
            .featured-puja-card, .category-card {
                margin-bottom: 30px;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-btn-primary, .cta-btn-secondary {
                width: 100%;
                justify-content: center;
            }
            
            .logo-image {
                height: 50px;
            }
            
            .logo-wrapper {
                height: 50px;
            }
            
            .header-cta-btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 576px) {
            .puja-hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .filter-tags {
                justify-content: center;
            }
            
            .featured-price {
                flex-direction: column;
                gap: 15px;
            }
            
            .book-btn {
                width: 100%;
            }
            
            .spiritual-header {
                padding: 10px 0;
            }
            
            .logo-image {
                height: 40px;
            }
            
            .logo-wrapper {
                height: 40px;
            }
            
            .navbar-nav .nav-link {
                padding: 8px 10px !important;
                margin: 5px 0;
            }
        }
