/* ==========================================================================
   Acharya Pandit Vishnu Tiwari Ji - Divine Vedic Theme Design System
   ========================================================================== */

:root {
    --maroon-deep: #4A0810;
    --maroon-primary: #6E121E;
    --maroon-dark: #38040B;
    --crimson-sacred: #9E1B28;
    
    --gold-primary: #D4AF37;
    --gold-light: #F7D070;
    --gold-dark: #AA820A;
    --gold-foil: linear-gradient(135deg, #FFE89C 0%, #D4AF37 50%, #9E7D1C 100%);
    --gold-shine: linear-gradient(90deg, transparent, rgba(255, 232, 156, 0.4), transparent);
    
    --saffron-sacred: #FF6F00;
    --saffron-light: #FF9E40;
    --vermilion: #E63946;
    
    --bg-cream: #FAF6ED;
    --bg-cream-card: #FFFDF8;
    --bg-warm-light: #F4ECE0;
    
    --text-dark: #2A1810;
    --text-muted: #665044;
    --text-light: #FBF7EE;
    
    --font-heading: 'Yatra One', 'Rozha One', 'Martel', serif;
    --font-body: 'Tiro Devanagari Hindi', 'Poppins', sans-serif;
    
    --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.25);
    --shadow-maroon: 0 12px 35px rgba(56, 4, 11, 0.25);
    --shadow-card: 0 8px 24px rgba(74, 8, 16, 0.08);
    
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background-image: radial-gradient(rgba(212, 175, 55, 0.06) 1px, transparent 1px);
    background-size: 24px 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--maroon-primary);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.section-padding {
    padding: 90px 0;
}

.bg-cream-pattern {
    background-color: #F6EFE3;
    background-image: radial-gradient(#E8D7BE 1.5px, transparent 1.5px);
    background-size: 30px 30px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    white-space: nowrap;
}

.btn-lg {
    padding: 15px 36px;
    font-size: 1.15rem;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.95rem;
}

.btn-block {
    width: 100%;
}

.btn-gold {
    background: var(--gold-foil);
    color: var(--maroon-dark);
    box-shadow: var(--shadow-gold);
    border: 1px solid #FFE89C;
}

.btn-gold:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
    filter: brightness(1.08);
}

.btn-maroon {
    background-color: var(--maroon-primary);
    color: #FFFDF8;
    border: 1px solid var(--gold-primary);
    box-shadow: var(--shadow-maroon);
}

.btn-maroon:hover {
    background-color: var(--maroon-deep);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(74, 8, 16, 0.35);
    color: var(--gold-light);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #FFFFFF;
    border: 1px solid #86EFAC;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.35);
}

.btn-outline-maroon {
    background: transparent;
    color: var(--maroon-primary);
    border: 2px solid var(--maroon-primary);
}

.btn-outline-maroon:hover {
    background: var(--maroon-primary);
    color: var(--gold-light);
    transform: translateY(-2px);
}

.btn-link {
    background: none;
    border: none;
    color: var(--maroon-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

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

/* Hanging Garland & Bell Animation Bar */
.garland-top-decor {
    position: relative;
    width: 100%;
    height: 12px;
    background: linear-gradient(90deg, #FF6F00 0%, #FFB300 25%, #E63946 50%, #FFB300 75%, #FF6F00 100%);
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    z-index: 1001;
}

.hanging-bells-container {
    position: absolute;
    top: 100%;
    width: 100%;
    display: flex;
    justify-content: space-around;
    pointer-events: none;
}

.bell {
    color: var(--gold-primary);
    font-size: 1.3rem;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
    animation: bellSwing 3s ease-in-out infinite alternate;
}

.bell-center-left { animation-delay: 0.5s; }
.bell-center-right { animation-delay: 1s; }
.bell-right { animation-delay: 1.5s; }

@keyframes bellSwing {
    0% { transform: rotate(-10deg); }
    100% { transform: rotate(10deg); }
}

/* Top Announcement Bar */
.top-announcement {
    background: var(--maroon-dark);
    color: var(--gold-light);
    padding: 8px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--gold-primary);
}

.top-announcement-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.invocation-badge {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: #FFFDF8;
    letter-spacing: 0.5px;
}

.top-contacts {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-phone, .top-whatsapp {
    color: var(--gold-light);
    font-weight: 500;
}

.top-phone:hover, .top-whatsapp:hover {
    color: #FFFFFF;
    text-shadow: 0 0 8px rgba(255,255,255,0.5);
}

.divider {
    color: rgba(212, 175, 55, 0.4);
}

/* Header & Navbar */
.main-header {
    position: sticky;
    top: 0;
    background: rgba(255, 253, 248, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--gold-primary);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: var(--transition-smooth);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
}

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

.brand-symbol {
    width: 48px;
    height: 48px;
    background: var(--maroon-primary);
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
}

.om-logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--maroon-primary);
    letter-spacing: 0.3px;
}

.brand-subtitle {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    position: relative;
    padding: 6px 0;
}

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

.nav-link:hover, .nav-link.active {
    color: var(--maroon-primary);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.audio-toggle-btn {
    background: var(--bg-warm-light);
    border: 1px solid var(--gold-primary);
    color: var(--maroon-primary);
    padding: 8px 14px;
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
}

.audio-toggle-btn:hover {
    background: var(--maroon-primary);
    color: var(--gold-light);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--maroon-primary);
    cursor: pointer;
}

/* Mobile Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: var(--bg-cream-card);
    z-index: 2000;
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
    padding: 30px 24px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.mobile-nav-drawer.open {
    right: 0;
}

.mobile-nav-close {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--maroon-primary);
    cursor: pointer;
}

.mobile-nav-header {
    text-align: center;
    margin: 20px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gold-primary);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--text-dark);
    display: block;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(180deg, #FBF6EB 0%, #F5E8D3 100%);
    padding: 70px 0 90px;
    overflow: hidden;
    border-bottom: 3px solid var(--gold-primary);
}

.floating-diyas-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.diya {
    position: absolute;
    font-size: 2rem;
    opacity: 0.25;
    animation: floatDiya 6s ease-in-out infinite alternate;
}

.diya-1 { top: 10%; left: 5%; animation-delay: 0s; }
.diya-2 { top: 60%; left: 8%; animation-delay: 2s; }
.diya-3 { top: 20%; right: 6%; animation-delay: 1s; }
.diya-4 { top: 75%; right: 10%; animation-delay: 3s; }

@keyframes floatDiya {
    0% { transform: translateY(0) rotate(-5deg); }
    100% { transform: translateY(-20px) rotate(5deg); }
}

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

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

/* Pandit Ji Mandap Frame Portrait */
.hero-mandap-frame {
    background: var(--maroon-primary);
    border: 4px solid var(--gold-primary);
    border-radius: 200px 200px 24px 24px;
    padding: 16px;
    box-shadow: var(--shadow-maroon);
    position: relative;
    text-align: center;
}

.arch-top-decor {
    width: 60px;
    height: 60px;
    margin: -35px auto 10px;
    background: var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--maroon-dark);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.arch-top-decor::before {
    content: '🕉️';
    font-size: 1.6rem;
}

.photo-wrapper {
    position: relative;
    border-radius: 180px 180px 16px 16px;
    overflow: hidden;
    border: 3px solid var(--gold-light);
    background: #000;
}

.pandit-portrait {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: top center;
    transition: var(--transition-smooth);
}

.pandit-portrait:hover {
    transform: scale(1.03);
}

.portrait-name-card {
    background: rgba(56, 4, 11, 0.95);
    border-top: 2px solid var(--gold-primary);
    padding: 16px 12px;
    margin-top: 12px;
    border-radius: 12px;
}

.hero-pandit-name {
    font-family: var(--font-heading);
    color: var(--gold-light);
    font-size: 1.45rem;
    margin-bottom: 4px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.hero-pandit-tag {
    color: #FFFDF8;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.experience-badge {
    display: inline-block;
    background: var(--gold-foil);
    color: var(--maroon-dark);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;

}

/* Hero Content Right */
.sloka-banner {
    background: rgba(110, 18, 30, 0.08);
    border: 1px stroke var(--gold-primary);
    border-left: 4px solid var(--maroon-primary);
    border-right: 4px solid var(--maroon-primary);
    padding: 10px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.sloka-text {
    font-family: var(--font-heading);
    color: var(--maroon-primary);
    font-size: 1.05rem;
    font-weight: 700;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--maroon-primary);
    color: var(--gold-light);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid var(--gold-primary);
}

.hero-main-title {
    font-size: 2.75rem;
    color: var(--maroon-dark);
    margin-bottom: 20px;
    line-height: 1.25;
}

.gold-gradient-text {
    background: var(--maroon-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom: 3px solid var(--gold-primary);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    max-width: 680px;
}

.hero-highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.highlight-item {
    background: var(--bg-cream-card);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.highlight-icon {
    width: 42px;
    height: 42px;
    background: var(--maroon-primary);
    color: var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.highlight-text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--maroon-primary);
}

.highlight-text span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 20px;
}

.poster-preview-strip {
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

/* Section Header Titles */
.section-subtitle {
    font-family: var(--font-heading);
    color: var(--saffron-sacred);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 6px;
}

.section-title {
    font-size: 2.4rem;
    color: var(--maroon-dark);
    margin-bottom: 12px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 16px;
}

.gold-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 15px 0 40px;
    color: var(--gold-primary);
    font-size: 1.3rem;
}

.gold-divider::before, .gold-divider::after {
    content: '';
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

/* About Section */
.about-card-container {
    background: var(--bg-cream-card);
    border: 2px solid var(--gold-primary);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-card);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.about-text-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.about-lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.about-features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.about-feature {
    display: flex;
    gap: 14px;
}

.feature-bullet {
    width: 28px;
    height: 28px;
    background: var(--maroon-primary);
    color: var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 4px;
}

.about-feature h4 {
    font-size: 1.15rem;
    margin-bottom: 2px;
}

.about-feature p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.contact-strip-inline {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    background: var(--bg-warm-light);
    padding: 16px 20px;
    border-radius: 12px;
    border-left: 4px solid var(--gold-primary);
}

.contact-pill {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-pill i {
    font-size: 1.4rem;
    color: var(--maroon-primary);
}

.contact-pill .label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.contact-pill .val {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--maroon-dark);
}

.yajna-hero-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid var(--gold-primary);
    box-shadow: var(--shadow-maroon);
}

.yajna-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.yajna-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(56, 4, 11, 0.95) 100%);
    padding: 24px 20px 16px;
    color: #FFFFFF;
}

.yajna-card-overlay h4 {
    color: var(--gold-light);
    font-size: 1.3rem;
}

/* Services Grid (हमारी सेवाएँ) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-cream-card);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: 0 16px 35px rgba(74, 8, 16, 0.15);
}

.featured-service-card {
    border: 3px solid var(--gold-primary);
    background: linear-gradient(180deg, #FFFDF8 0%, #FDF4E3 100%);
}

.service-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--maroon-dark);
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.service-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--maroon-primary);
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid var(--gold-primary);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.badge-gold {
    background: var(--gold-foil);
    color: var(--maroon-dark);
    border-color: #FFF;
}

.service-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-title {
    font-size: 1.45rem;
    margin-bottom: 10px;
    color: var(--maroon-primary);
}

.service-text {
    font-size: 0.98rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    flex-grow: 1;
}

.service-highlights {
    margin-bottom: 20px;
    padding-top: 12px;
    border-top: 1px dashed rgba(212, 175, 55, 0.5);
}

.service-highlights li {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-highlights i {
    color: var(--saffron-sacred);
}

/* Specialties Frame Section (विशेष सेवाएँ from poster) */
.specialties-outer-frame {
    background: var(--maroon-primary);
    border: 4px solid var(--gold-primary);
    border-radius: 24px;
    padding: 45px;
    color: #FFFDF8;
    box-shadow: var(--shadow-maroon);
    position: relative;
    background-image: radial-gradient(rgba(212, 175, 55, 0.12) 2px, transparent 2px);
    background-size: 24px 24px;
}

.specialties-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.specialties-main-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: var(--gold-light);
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.flower-icon {
    font-size: 1.6rem;
    color: var(--gold-primary);
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 35px;
}

.specialty-card {
    background: rgba(56, 4, 11, 0.7);
    border: 1px solid var(--gold-primary);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 18px;
    transition: var(--transition-smooth);
}

.specialty-card:hover {
    background: rgba(56, 4, 11, 0.9);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.specialty-icon-box {
    width: 54px;
    height: 54px;
    background: var(--gold-foil);
    color: var(--maroon-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.specialty-content h3 {
    color: var(--gold-light);
    font-size: 1.25rem;
    margin-bottom: 6px;
}

.specialty-content p {
    font-size: 0.95rem;
    color: #F4ECE0;
}

.specialties-contact-box {
    background: var(--gold-foil);
    border-radius: 16px;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--maroon-dark);
    flex-wrap: wrap;
    gap: 20px;
}

.specialties-contact-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-big-icon {
    font-size: 2.2rem;
    color: var(--maroon-dark);
}

.specialties-contact-left h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--maroon-dark);
}

.specialties-contact-right {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-num-btn {
    background: var(--maroon-primary);
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.contact-num-btn:hover {
    background: var(--maroon-dark);
    color: #FFF;
    transform: scale(1.04);
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-cream-card);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-card);
    position: relative;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-4px);
}

.stars {
    color: var(--saffron-sacred);
    margin-bottom: 14px;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding-top: 16px;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    background: var(--maroon-primary);
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviewer-name {
    font-size: 1.1rem;
    color: var(--maroon-primary);
}

.reviewer-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Booking Interactive Section */
.booking-section {
    background: var(--maroon-dark);
    color: #FFFDF8;
    border-top: 3px solid var(--gold-primary);
    border-bottom: 3px solid var(--gold-primary);
}

.booking-wrapper {
    background: rgba(110, 18, 30, 0.4);
    border: 2px solid var(--gold-primary);
    border-radius: 24px;
    padding: 45px;
}

.booking-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.badge-accent {
    background: var(--gold-foil);
    color: var(--maroon-dark);
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 14px;
}

.booking-left h2 {
    color: var(--gold-light);
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.booking-left p {
    font-size: 1.1rem;
    color: #F4ECE0;
    margin-bottom: 30px;
}

.booking-contact-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.b-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(56, 4, 11, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 14px 20px;
    border-radius: 12px;
}

.b-item i {
    font-size: 1.4rem;
    color: var(--gold-primary);
}

.b-item span {
    display: block;
    font-size: 0.85rem;
    color: #DDD;
}

.b-item strong {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--gold-light);
}

/* Booking Form Styling */
.booking-form {
    background: var(--bg-cream-card);
    padding: 32px;
    border-radius: 18px;
    color: var(--text-dark);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.form-title {
    text-align: center;
    font-size: 1.6rem;
    color: var(--maroon-primary);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--gold-primary);
    padding-bottom: 10px;
}

.form-group {
    margin-bottom: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--maroon-primary);
    margin-bottom: 6px;
    font-weight: 600;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #D1C4B2;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: #FFF;
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--gold-dark);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25);
}

/* Footer Tagline Strip */
.footer-tagline-strip {
    background: var(--maroon-primary);
    color: var(--gold-light);
    padding: 24px 0;
    border-top: 2px solid var(--gold-primary);
    border-bottom: 2px solid var(--gold-primary);
}

.poster-tagline-text {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    letter-spacing: 0.5px;
}

/* Footer */
.main-footer {
    background: #250307;
    color: #E6DAD1;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand-title {
    color: var(--gold-light);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 0.95rem;
    margin-bottom: 16px;
    color: #C0B0A3;
}

.footer-god-quote {
    font-family: var(--font-heading);
    color: var(--gold-primary);
    font-size: 1.1rem;
    line-height: 1.6;
}

.footer-heading {
    color: var(--gold-light);
    font-size: 1.2rem;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 8px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold-primary);
}

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

.footer-links a {
    color: #C0B0A3;
    font-size: 0.95rem;
}

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

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.footer-contact-item i {
    color: var(--gold-primary);
    font-size: 1.2rem;
}

.footer-contact-item span {
    display: block;
    font-size: 0.8rem;
    color: #999;
}

.footer-contact-item a {
    font-family: var(--font-heading);
    color: var(--gold-light);
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 20px;
    font-size: 0.9rem;
    color: #998B80;
}

/* Floating Bar for Mobile */
.floating-quick-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--maroon-dark);
    border-top: 2px solid var(--gold-primary);
    z-index: 1000;
    padding: 8px 12px;
}

.floating-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
}

.call-btn {
    background: var(--gold-foil);
    color: var(--maroon-dark);
}

.whatsapp-btn {
    background: #25D366;
    color: #FFF;
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: var(--bg-cream-card);
    border: 3px solid var(--gold-primary);
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    padding: 30px;
    position: relative;
    box-shadow: var(--shadow-maroon);
    max-height: 90vh;
    overflow-y: auto;
}

.poster-modal-content {
    max-width: 700px;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--maroon-primary);
    cursor: pointer;
}

.modal-header {
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--gold-primary);
    padding-bottom: 12px;
}

.modal-header h3 {
    font-size: 1.5rem;
}

.full-poster-img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 12px;
    border: 2px solid var(--gold-primary);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-mandap-frame {
        max-width: 380px;
        margin: 0 auto;
    }
    
    .hero-description {
        margin: 0 auto 28px;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .specialties-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav, .header-actions .btn {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-main-title {
        font-size: 2rem;
    }
    
    .hero-highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-quick-bar {
        display: flex;
        gap: 10px;
    }
    
    body {
        padding-bottom: 60px;
    }
}
