:root {
    --primary-color: #4E1A0F;        /* Sandalwood Teakwood */
    --primary-hover: #350F08;
    --divine-vermillion: #D45B12;   /* Pure Saffron/Vermillion */
    --divine-vermillion-hover: #B2460B;
    --accent-gold: #E8B840;         /* Temple Brass Gold */
    --accent-gold-light: #F7D57B;   /* Radiant Light Gold */
    --accent-gold-dark: #C49625;
    --text-dark: #2A1713;           /* Dark Sandalwood Charcoal */
    --text-light: #FDFBF8;          /* Sacred White */
    --text-muted: #7A6966;          /* Muted Dust */
    --bg-light: #FDFBF8;            /* Temple Marble White */
    --bg-dark: #1E0B07;             /* Inner Sanctum Obsidian */
    --parchment-bg: #FAF3E0;        /* Holy Scripture Parchment */
    --parchment-border: #D1B894;
    --border-glass: rgba(232, 184, 64, 0.2);
    --bg-glass: rgba(253, 251, 248, 0.9);
    --font-heading: 'Cinzel', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-divine: 0 15px 35px -10px rgba(78, 26, 15, 0.12);
    --shadow-divine-hover: 0 25px 45px -10px rgba(212, 91, 18, 0.22);
}

/* Watercolor & Premium Modern Styles (from reference designs) */
.watercolor-bg {
    background: radial-gradient(circle at 10% 20%, rgba(247, 245, 240, 0.75) 0%, rgba(253, 251, 248, 1) 90%),
                radial-gradient(circle at 90% 80%, rgba(232, 184, 64, 0.07) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(212, 91, 18, 0.04) 0%, transparent 60%);
    position: relative;
}

.premium-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white !important;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 14px 28px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(78, 26, 15, 0.15);
}

.premium-btn::after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
    box-shadow: 0 0 6px var(--accent-gold-light);
}

.premium-btn:hover {
    background-color: var(--divine-vermillion);
    border-color: var(--divine-vermillion);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 91, 18, 0.35);
}

.premium-btn:hover::after {
    background-color: white;
    box-shadow: 0 0 8px white;
}

.premium-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--primary-color) !important;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 14px 28px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    gap: 12px;
}

.premium-btn-outline::after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--primary-color);
    transition: var(--transition-smooth);
}

.premium-btn-outline:hover {
    background-color: var(--primary-color);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(78, 26, 15, 0.25);
}

.premium-btn-outline:hover::after {
    background-color: var(--accent-gold);
    box-shadow: 0 0 6px var(--accent-gold-light);
}

/* Custom Scrollbar styled as Saffron/Sandalwood */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--divine-vermillion), var(--accent-gold));
    border-radius: 5px;
    border: 2px solid var(--bg-light);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    position: relative;
}

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

/* Temple Archway Frame (Jharokha Style) */
.temple-arch {
    border-radius: 50% 50% 20px 20px / 25% 25% 20px 20px;
    border: 3px solid var(--accent-gold);
    position: relative;
    overflow: hidden;
    background: white;
}

.temple-arch::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid var(--accent-gold-light);
    border-radius: inherit;
    pointer-events: none;
    z-index: 2;
}

/* Scripture Parchment Scroll Sheet */
.scripture-scroll {
    background-color: var(--parchment-bg);
    border: 2px dashed var(--parchment-border);
    border-radius: 12px;
    padding: 30px;
    box-shadow: inset 0 0 50px rgba(78, 26, 15, 0.06), var(--shadow-divine);
    position: relative;
}

.scripture-scroll::before {
    content: '❖';
    color: var(--divine-vermillion);
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
}

.scripture-scroll::after {
    content: '❖';
    color: var(--divine-vermillion);
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
}

/* Divine Halo Aura Backlight */
.divine-aura {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 153, 51, 0.25) 0%, rgba(255, 153, 51, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* Floating Actions Alert */
.fixed-btn {
    position: fixed;
    top: 50%;
    right: 20px;
    display: flex;
    flex-direction: column;
    transform: translateY(-50%);
    gap: 15px;
    z-index: 999;
}

.fixed-btn a {
    width: 48px;
    height: 48px;
    background: var(--bg-glass);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-divine);
    backdrop-filter: blur(10px);
}

.fixed-btn a:hover {
    transform: translateX(-8px) scale(1.1);
    background: var(--divine-vermillion);
    border-color: var(--accent-gold-light);
}

.fixed-btn a img {
    width: 24px;
    height: 24px;
    transition: var(--transition-smooth);
}

.fixed-btn a:hover img {
    filter: brightness(0) invert(1);
}

/* Floating Actions Alert - Left (Diya / Bell Indicator) */
.fixed-left-decor {
    position: fixed;
    top: 20%;
    left: 20px;
    z-index: 999;
    pointer-events: none;
    opacity: 0.85;
    animation: sway 4s ease-in-out infinite alternate;
}

@keyframes sway {
    0% { transform: rotate(-3deg); }
    100% { transform: rotate(3deg); }
}

/* Header & Navbar */
nav {
    background: rgba(30, 11, 7, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 3px solid var(--accent-gold);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.nav-flex {
    width: 100%;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.menu {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 100%;
}

.nav-link {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 18px;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-gold-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    font-family: var(--font-heading);
}

.nav-link::before {
    content: '🔔';
    font-size: 10px;
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 18px;
    right: 18px;
    height: 4px;
    background-color: var(--divine-vermillion);
    transform: scaleX(0);
    transition: var(--transition-smooth);
    transform-origin: right;
    border-radius: 4px 4px 0 0;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link:hover,
.nav-link.active {
    color: white;
}

/* Saffron glowing donation btn */
.donation-btn {
    background: linear-gradient(135deg, var(--divine-vermillion) 0%, #B2460B 100%);
    color: white !important;
    border-radius: 30px;
    padding: 12px 28px !important;
    height: auto !important;
    align-self: center;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 4px 20px rgba(212, 91, 18, 0.4);
    font-weight: 800 !important;
}

.donation-btn::before {
    display: none;
}

.donation-btn::after {
    display: none;
}

.donation-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(212, 91, 18, 0.6);
    background: linear-gradient(135deg, #B2460B 0%, var(--divine-vermillion) 100%);
    border-color: var(--accent-gold-light);
}

.hamburger {
    display: none;
    font-size: 28px;
    color: var(--accent-gold);
    cursor: pointer;
    transition: var(--transition-smooth);
}

/* Floating Interactive Buttons with Glowing effects */
.baba-call-btn {
    position: fixed;
    left: 25px;
    bottom: 25px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    border: 2px solid white;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.5);
    transition: var(--transition-smooth);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.baba-call-btn:hover {
    transform: scale(1.1) translateY(-8px);
    box-shadow: 0 15px 35px rgba(76, 175, 80, 0.7);
}

.baba-whatsapp-btn {
    position: fixed;
    right: 25px;
    bottom: 25px;
    background: linear-gradient(135deg, #25D366, #075E54);
    color: white;
    border: 2px solid white;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    transition: var(--transition-smooth);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.baba-whatsapp-btn:hover {
    transform: scale(1.1) translateY(-8px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.7);
}

/* Saffron Glowing Appointment Button in center */
.baba-appointment-btn {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--divine-vermillion) 0%, var(--primary-color) 100%);
    color: white;
    border: 2px solid var(--accent-gold);
    border-radius: 50px;
    padding: 18px 40px;
    cursor: pointer;
    box-shadow: 0 10px 35px rgba(212, 91, 18, 0.5);
    transition: var(--transition-smooth);
    z-index: 1000;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.baba-appointment-btn:hover {
    transform: translateX(-50%) translateY(-6px);
    box-shadow: 0 15px 45px rgba(212, 91, 18, 0.7);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--divine-vermillion) 100%);
}

.baba-appointment-btn svg {
    fill: currentColor;
    transition: var(--transition-smooth);
}

.baba-appointment-btn:hover svg {
    transform: rotate(15deg) scale(1.1);
}

.baba-btn-icon {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

/* Popup Overlay & Modals */
.baba-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 11, 7, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.baba-popup-overlay.active {
    display: flex;
}

.baba-popup-form {
    background: var(--parchment-bg);
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    width: 90%;
    max-width: 580px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 3px double var(--accent-gold);
    transform: scale(0.9);
    opacity: 0;
    transition: var(--transition-smooth);
}

.baba-popup-overlay.active .baba-popup-form {
    transform: scale(1);
    opacity: 1;
}

.baba-popup-form h2 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 25px;
    text-align: center;
    font-size: 30px;
    letter-spacing: 1px;
    border-bottom: 2px dashed var(--parchment-border);
    padding-bottom: 15px;
}

.baba-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 36px;
    cursor: pointer;
    color: var(--primary-color);
    transition: var(--transition-smooth);
}

.baba-close-btn:hover {
    color: var(--divine-vermillion);
    transform: rotate(90deg);
}

/* Form Styling inside popup */
.baba-radio-section {
    margin-bottom: 25px;
    background: rgba(212, 91, 18, 0.08);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 5px solid var(--divine-vermillion);
}

.baba-radio-section h3 {
    margin: 0 0 12px 0;
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.baba-radio-group {
    display: flex;
    gap: 25px;
}

.baba-radio-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.baba-radio-item input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--divine-vermillion);
    cursor: pointer;
}

.baba-radio-item label {
    cursor: pointer;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 15px;
}

.baba-form-group {
    margin-bottom: 22px;
}

.baba-form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.baba-form-group input,
.baba-form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--parchment-border);
    border-radius: 10px;
    font-size: 15px;
    font-family: var(--font-body);
    background-color: white;
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.baba-form-group input:focus,
.baba-form-group textarea:focus {
    outline: none;
    border-color: var(--divine-vermillion);
    background-color: white;
    box-shadow: 0 0 10px rgba(212, 91, 18, 0.2);
}

.baba-form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.baba-submit-btn {
    background: linear-gradient(135deg, var(--divine-vermillion) 0%, var(--primary-color) 100%);
    color: white;
    border: 2px solid var(--accent-gold);
    border-radius: 30px;
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    width: 100%;
    transition: var(--transition-smooth);
    margin-top: 10px;
    box-shadow: 0 6px 20px rgba(212, 91, 18, 0.3);
    font-family: var(--font-heading);
}

.baba-submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(212, 91, 18, 0.5);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--divine-vermillion) 100%);
    border-color: var(--accent-gold-light);
}

/* Success Message */
.baba-success-message {
    position: fixed;
    top: 25px;
    right: 25px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    padding: 20px 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 3000;
    font-size: 16px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(-25px);
    transition: var(--transition-smooth);
    display: none;
    border: 2px solid white;
}

.baba-success-message.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Footer Section redesigned as Temple arch silhouette */
footer {
    background-color: var(--bg-dark);
    padding: 100px 0 40px 0;
    color: #E6D5C3;
    position: relative;
    border-top: 5px solid var(--accent-gold);
}

footer::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 15px;
    background-image: radial-gradient(circle at 15px 0, transparent 12px, var(--accent-gold) 13px);
    background-size: 30px 15px;
    z-index: 5;
}

footer .flex-col {
    display: flex;
    gap: 50px;
    align-items: center;
    border-bottom: 1px dashed rgba(230, 213, 195, 0.15);
    padding-bottom: 50px;
    margin-bottom: 50px;
}

footer .flex-col .items {
    flex: 1.2;
}

footer .flex-col .items h3 {
    font-family: var(--font-heading);
    font-size: 52px;
    color: var(--accent-gold-light);
    margin: 0 0 15px 0;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

footer .flex-col .items p {
    font-size: 16px;
    line-height: 1.8;
    color: #DAC5B0;
    margin: 0;
}

footer .footer-img {
    width: 100%;
    height: 340px;
    border-radius: 50% 50% 15px 15px / 30% 30% 15px 15px; /* Arch frame */
    overflow: hidden;
    border: 3px solid var(--accent-gold);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

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

footer .footer-img img:hover {
    transform: scale(1.05);
}

footer .footer-flex {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.5fr;
    gap: 60px;
}

footer .footer-flex .footer-col p {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--accent-gold);
    margin: 0 0 25px 0;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

footer .footer-flex .footer-col:first-child p.p {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.8;
    color: #CBB49B;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

footer .footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

footer .footer-col ul li {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

footer .footer-col ul li a {
    color: #E6D5C3;
    font-size: 15px;
}

footer .footer-col ul li a:hover {
    color: var(--accent-gold-light);
    transform: translateX(8px);
}

footer .footer-col svg {
    fill: var(--accent-gold);
    flex-shrink: 0;
}

.bottom-footer {
    border-top: 1px dashed rgba(230, 213, 195, 0.15);
    margin-top: 60px;
    padding-top: 30px;
}

.bottom-footer p {
    text-align: center;
    font-size: 14px;
    color: #CBB49B;
    margin: 0;
}

/* Devotional Video Slider Section */
.video-slider {
    background-color: var(--parchment-bg);
    padding: 80px 0;
    border-top: 4px solid var(--accent-gold);
    border-bottom: 4px solid var(--accent-gold);
    box-shadow: inset 0 0 40px rgba(0,0,0,0.05);
}

.video-slider .slider-header,
.video-slider .flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    border-bottom: 2px dashed var(--parchment-border);
    padding-bottom: 15px;
}

.video-slider h2,
.video-slider .flex h2,
.video-slider .slider-header h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: 1px;
}

.video-slider p,
.video-slider .flex p,
.video-slider .slider-header p {
    font-weight: 700;
    color: var(--divine-vermillion);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 14px;
    margin: 0;
}

.swiper {
    width: 100%;
    min-height: 160px;
    padding: 20px 0 50px 0;
}

.swiper-slide {
    border-radius: 50% 50% 12px 12px / 20% 20% 12px 12px; /* Jharokha shape arches */
    overflow: hidden;
    box-shadow: var(--shadow-divine);
    transition: var(--transition-smooth);
    border: 3px solid var(--accent-gold);
    background: #000;
}

.swiper-slide:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold-light);
    box-shadow: var(--shadow-divine-hover);
}

.swiper-slide .video-thumbnail {
    position: relative;
    width: 100%;
    max-width: 100%;
    cursor: pointer;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #000;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.swiper-pagination-bullet-active {
    background: var(--divine-vermillion) !important;
}

/* Hide mobile nav items by default on desktop */
.mobile-bottom-nav,
.mobile-bottom-sheet,
.bottom-sheet-overlay {
    display: none;
}

/* Mobile & Responsive Layouts */
@media (max-width: 992px) {
    footer .footer-flex {
        grid-template-columns: 1fr 1fr;
    }
    footer .footer-flex .footer-col:first-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-flex {
        justify-content: center;
        height: 65px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .hamburger {
        display: none !important;
    }
    
    .menu {
        display: none !important;
    }
    
    .nav-link {
        display: none !important;
    }
    
    .donation-btn {
        display: none !important;
    }
    
    /* Layout adjustments for mobile */
    body {
        padding-bottom: calc(75px + env(safe-area-inset-bottom)) !important;
    }
    
    /* Bottom Navigation Bar */
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 68px;
        background: rgba(30, 11, 7, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-top: 2px solid var(--accent-gold);
        justify-content: space-around;
        align-items: center;
        z-index: 1500;
        box-shadow: 0 -5px 25px rgba(30, 11, 7, 0.6);
        padding-bottom: env(safe-area-inset-bottom);
    }
    
    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #CBB49B;
        font-size: 11px;
        font-weight: 700;
        text-decoration: none;
        flex: 1;
        height: 100%;
        transition: var(--transition-smooth);
        letter-spacing: 0.5px;
        text-transform: uppercase;
        font-family: var(--font-heading);
    }
    
    .mobile-nav-item svg {
        width: 22px;
        height: 22px;
        fill: currentColor;
        margin-bottom: 4px;
        transition: var(--transition-smooth);
    }
    
    .mobile-nav-item.active {
        color: var(--accent-gold-light);
    }
    
    .mobile-nav-item.active svg {
        fill: var(--accent-gold-light);
        transform: translateY(-2px);
    }

    /* Raised Center FAB */
    .mobile-nav-item.fab-item {
        position: relative;
        overflow: visible;
        z-index: 1501;
    }
    
    .mobile-nav-fab {
        position: absolute;
        bottom: 12px;
        width: 58px;
        height: 58px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--divine-vermillion) 0%, var(--primary-color) 100%);
        border: 2px solid var(--accent-gold);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 20px rgba(212, 91, 18, 0.6);
        color: white;
        transition: var(--transition-smooth);
    }
    
    .mobile-nav-fab svg {
        width: 26px;
        height: 26px;
        fill: white;
        margin-bottom: 0;
    }
    
    .mobile-nav-fab:hover, .mobile-nav-fab:focus {
        transform: translateY(-4px) scale(1.05);
        box-shadow: 0 8px 25px rgba(212, 91, 18, 0.8);
    }
    
    /* Bottom Sheet Drawer */
    .mobile-bottom-sheet {
        display: block;
        position: fixed;
        bottom: -100%;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        border-top: 3px solid var(--accent-gold);
        border-radius: 20px 20px 0 0;
        z-index: 1600;
        transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        padding: 25px 20px calc(25px + env(safe-area-inset-bottom)) 20px;
        box-shadow: 0 -10px 40px rgba(0,0,0,0.6);
    }
    
    .mobile-bottom-sheet.active {
        bottom: 0;
    }
    
    .bottom-sheet-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        z-index: 1599;
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .bottom-sheet-overlay.active {
        display: block;
        opacity: 1;
    }
    
    .bottom-sheet-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px dashed rgba(232, 184, 64, 0.2);
        padding-bottom: 15px;
        margin-bottom: 20px;
    }
    
    .bottom-sheet-title {
        font-family: var(--font-heading);
        color: var(--accent-gold-light);
        font-size: 18px;
        margin: 0;
        letter-spacing: 1px;
    }
    
    .bottom-sheet-close {
        background: none;
        border: none;
        color: var(--accent-gold-light);
        font-size: 28px;
        cursor: pointer;
        line-height: 1;
        padding: 5px;
    }
    
    .bottom-sheet-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .bottom-sheet-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(232, 184, 64, 0.1);
        border-radius: 12px;
        padding: 15px 10px;
        color: #E6D5C3;
        font-size: 11px;
        text-align: center;
        font-weight: 700;
        transition: var(--transition-smooth);
        font-family: var(--font-heading);
    }
    
    .bottom-sheet-link svg {
        width: 22px;
        height: 22px;
        fill: var(--accent-gold);
        margin-bottom: 8px;
        transition: var(--transition-smooth);
    }
    
    .bottom-sheet-link:hover, .bottom-sheet-link.active {
        background: rgba(212, 91, 18, 0.1);
        border-color: var(--accent-gold);
        color: white;
    }
    
    .bottom-sheet-link:hover svg, .bottom-sheet-link.active svg {
        transform: scale(1.1);
        fill: var(--accent-gold-light);
    }
    
    .bottom-sheet-link.donation-sheet-btn {
        grid-column: span 3;
        background: linear-gradient(135deg, var(--divine-vermillion) 0%, #B2460B 100%);
        border: 2px solid var(--accent-gold);
        color: white;
        font-weight: 800;
        flex-direction: row;
        gap: 10px;
        padding: 12px;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .bottom-sheet-link.donation-sheet-btn svg {
        margin-bottom: 0;
        fill: white;
    }
    
    .bottom-sheet-socials {
        display: flex;
        justify-content: center;
        gap: 20px;
        border-top: 1px dashed rgba(232, 184, 64, 0.1);
        padding-top: 18px;
    }
    
    .bottom-sheet-socials a {
        width: 40px;
        height: 40px;
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(232, 184, 64, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition-smooth);
    }
    
    .bottom-sheet-socials a img {
        width: 20px;
        height: 20px;
    }
    
    .bottom-sheet-socials a:hover {
        background: var(--divine-vermillion);
        border-color: var(--accent-gold-light);
        transform: translateY(-3px);
    }
    
    footer .flex-col {
        flex-direction: column;
        text-align: center;
    }
    
    footer .footer-flex {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    footer .footer-flex .footer-col:first-child {
        grid-column: span 1;
        text-align: center;
    }
    
    footer .footer-flex .footer-col {
        text-align: center;
    }
    
    footer .footer-col ul li {
        justify-content: center;
    }
    
    .baba-call-btn, .baba-whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 85px !important;
        z-index: 1400;
    }
    
    .baba-call-btn {
        left: 15px;
    }
    
    .baba-whatsapp-btn {
        right: 15px;
    }
    
    .baba-appointment-btn {
        display: none !important;
    }
    
    .baba-popup-form {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .baba-radio-group {
        flex-direction: column;
        gap: 12px;
    }
    
    footer {
        padding: 60px 0 25px 0;
    }
    
    footer .flex-col .items h3 {
        font-size: 36px;
    }
}