/* 
   ==========================================================================
   ACHARYA BANGALORE PANDIT - PREMIUM BRAND DESIGN SYSTEM
   ========================================================================== 
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-dark: #080612;
    --primary: #FF730C;
    --primary-rgb: 255, 115, 12;
    --primary-grad: linear-gradient(135deg, #FF371E 0%, #FF730C 100%);
    --gold: #FFB703;
    --gold-rgb: 255, 183, 3;
    --crimson: #D90429;
    --text-white: #ffffff;
    --text-muted: #a0aec0;
    --glass-bg: rgba(8, 6, 18, 0.75);
    --glass-border: rgba(255, 183, 3, 0.15);
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Smooth page interactions */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}


/* Universal box-sizing reset */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Base body styling */
body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-dark);
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}


/* Remove number input spinners for cleaner phone fields */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}

/* ==========================================================================
   FULL-WIDTH PREMIUM STICKY HEADER — REDESIGNED
   ========================================================================== */
#global-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
}

.premium-header {
    background: rgba(8, 6, 18, 0.0);
    transition: var(--transition-smooth);
}

/* ── TOP INFO BAR ─────────────────────────────────────────────── */
.header-top-bar {
    background: rgba(255, 183, 3, 0.06);
    border-bottom: 1px solid rgba(255, 183, 3, 0.1);
    padding: 6px 0;
    backdrop-filter: blur(10px);
}

.header-top-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top-left,
.header-top-right {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.header-top-left i,
.header-top-right i {
    color: var(--gold);
    margin-right: 4px;
}

.header-top-right a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}
.header-top-right a:hover { color: var(--gold); }

/* ── MAIN HEADER BAR ──────────────────────────────────────────── */
.header-main-bar {
    background: rgba(8, 6, 18, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 183, 3, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    padding: 10px 0;
}

.header-main-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 40px;
}

/* ── LOGO ─────────────────────────────────────────────────────── */
.brand-logo-wrapper {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
    flex-shrink: 0;
}

.brand-logo-img {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(255, 115, 12, 0.35));
    transition: var(--transition-smooth);
}
.brand-logo-wrapper:hover .brand-logo-img {
    transform: scale(1.06) rotate(-2deg);
}

.brand-logo-texts {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: -0.3px;
    background: linear-gradient(135deg, #ffffff 20%, var(--gold) 65%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-logo-sub {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(255, 183, 3, 0.7);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    -webkit-text-fill-color: rgba(255, 183, 3, 0.7);
}

/* ── DESKTOP NAV ──────────────────────────────────────────────── */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 10px;
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-link i {
    font-size: 0.95rem;
    color: var(--gold);
}

.nav-link:hover,
.nav-dropdown-wrap:hover > .nav-link,
.nav-dropdown-wrap:hover > button.nav-link {
    color: #fff;
    background: rgba(255, 183, 3, 0.08);
}

.nav-link.active {
    color: var(--gold);
    background: rgba(255, 183, 3, 0.1);
}

.nav-arrow {
    font-size: 0.75rem !important;
    color: rgba(255,255,255,0.5) !important;
    transition: transform 0.3s ease !important;
}

/* ── MEGA DROPDOWN ────────────────────────────────────────────── */
.nav-dropdown-wrap {
    position: relative;
}

.mega-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    width: 720px;
    background: rgba(10, 8, 22, 0.97);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 183, 3, 0.15);
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255,183,3,0.05);
    padding: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 9999;
    overflow: hidden;
}

.nav-dropdown-wrap:hover .mega-dropdown,
.nav-dropdown-wrap:focus-within .mega-dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-wrap:hover .nav-arrow {
    transform: rotate(180deg);
}

.mega-dropdown-inner {
    display: flex;
    flex-direction: column;
}

.mega-header {
    padding: 22px 28px 16px;
    border-bottom: 1px solid rgba(255, 183, 3, 0.08);
    background: linear-gradient(135deg, rgba(255,115,12,0.06) 0%, transparent 100%);
}

.mega-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-white);
    margin: 0 0 4px 0;
}

.mega-header p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

.mega-puja-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 20px 20px 10px;
    gap: 6px;
}

.mega-puja-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
    border: 1px solid transparent;
}

.mega-puja-card:hover {
    background: rgba(255, 183, 3, 0.07);
    border-color: rgba(255, 183, 3, 0.15);
    transform: translateX(2px);
}

.mpuja-icon {
    font-size: 1.4rem;
    line-height: 1;
    flex-shrink: 0;
}

.mpuja-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.3;
    transition: color 0.2s;
}

.mega-puja-card:hover .mpuja-name {
    color: var(--gold);
}

.mega-footer-strip {
    padding: 14px 28px 18px;
    border-top: 1px solid rgba(255, 183, 3, 0.08);
    display: flex;
    justify-content: flex-end;
}

.mega-view-all {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.3px;
    transition: gap 0.25s ease;
}
.mega-view-all:hover { gap: 10px; }
.mega-view-all i { font-size: 0.78rem; }

/* ── HEADER RIGHT CTA ─────────────────────────────────────────── */
.header-cta-area {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.call-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 16px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-smooth);
}
.call-badge:hover {
    background: rgba(255, 183, 3, 0.08);
    border-color: rgba(255, 183, 3, 0.25);
    transform: translateY(-1px);
}

.call-badge-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary-grad);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 0.85rem;
    animation: pulseCall 2s infinite;
}

.call-badge-info span { display: block; }
.call-badge-info .badge-lbl {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
}
.call-badge-info .badge-val {
    font-size: 0.9rem;
    color: var(--text-white);
    font-weight: 700;
}

/* ── BOOK NOW BUTTON ──────────────────────────────────────────── */
.btn-book-now {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FF371E 0%, #FF730C 50%, #FFB703 100%);
    background-size: 200% 200%;
    color: #ffffff !important;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 0.88rem;
    padding: 11px 24px;
    border-radius: 50px;
    box-shadow: 0 6px 24px rgba(255, 55, 30, 0.35);
    transition: all 0.35s ease;
    white-space: nowrap;
    letter-spacing: 0.3px;
    animation: gradShift 4s ease infinite;
    border: none;
    cursor: pointer;
}
.btn-book-now i { font-size: 0.9rem; }
.btn-book-now:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 12px 32px rgba(255, 55, 30, 0.5);
}

/* Deprecated alias kept for compatibility */
.btn-header-book {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-grad);
    color: #ffffff !important;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 0.88rem;
    padding: 11px 24px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(255, 55, 30, 0.3);
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}
.btn-header-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 55, 30, 0.5);
}

@keyframes gradShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ── ANIMATED BURGER ──────────────────────────────────────────── */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: rgba(255, 183, 3, 0.08);
    border: 1px solid rgba(255, 183, 3, 0.15);
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease;
}
.mobile-nav-toggle:hover { background: rgba(255, 183, 3, 0.15); }

.burger-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ── BACKDROP ─────────────────────────────────────────────────── */
.mobile-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 99998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.mobile-drawer-backdrop.active {
    opacity: 1;
    pointer-events: all;
}

/* ── MOBILE DRAWER — PREMIUM WHITE NATIVE APP STYLE ───────────── */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(360px, 100vw);
    height: 100dvh;
    height: 100vh;
    background: #ffffff;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.35);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow-y: auto;
    overscroll-behavior: contain;
}
.mobile-drawer.active { right: 0; }

/* Scrollbar */
.mobile-drawer::-webkit-scrollbar { width: 4px; }
.mobile-drawer::-webkit-scrollbar-track { background: transparent; }
.mobile-drawer::-webkit-scrollbar-thumb { background: rgba(255,115,12,0.2); border-radius: 10px; }
.mobile-drawer::-webkit-scrollbar-thumb:hover { background: rgba(255,115,12,0.4); }

/* ── Drawer Header (Gradient Brand) ── */
.mob-drawer-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px 16px;
    background: linear-gradient(135deg, #FF371E 0%, #FF730C 60%, #FFB703 100%);
    flex-shrink: 0;
}

.mob-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mob-brand img {
    height: 38px;
    width: auto;
    border-radius: 8px;
    background: rgba(255,255,255,0.18);
    padding: 3px;
    object-fit: contain;
}

.mob-brand span {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}

.mob-close-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.45);
    background: rgba(255,255,255,0.18);
    color: #ffffff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}
.mob-close-btn:hover {
    background: rgba(255,255,255,0.35);
    transform: rotate(90deg);
}

/* ── Quick Contact Strip ── */
.mob-quick-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 14px 16px;
    background: #f8f9fb;
    border-bottom: 1px solid #eef0f5;
    flex-shrink: 0;
}

.mob-qc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 14px;
    border-radius: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 0.82rem;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #fff !important;
}
.mob-qc-call {
    background: linear-gradient(135deg, #FF371E, #FF730C);
    box-shadow: 0 4px 15px rgba(255,55,30,0.3);
}
.mob-qc-wa {
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 4px 15px rgba(37,211,102,0.25);
}
.mob-qc-btn:hover { transform: translateY(-1px); filter: brightness(1.1); color: #fff !important; }

/* ── Section Labels & Wrappers ── */
.mob-nav-section {
    padding: 16px 16px 8px;
    flex-shrink: 0;
}

.mob-section-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 10px 4px;
}

/* ── Nav Items — Full-Width Row Style ── */
.mob-nav-grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mob-nav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 16px;
    border-radius: 14px;
    text-decoration: none;
    background: #f8f9fb;
    border: 1.5px solid #eef0f5;
    transition: all 0.22s ease;
    position: relative;
    overflow: visible;
}

.mob-nav-item:hover,
.mob-nav-item.active {
    background: linear-gradient(135deg, #fff7f0 0%, #fff3e0 100%);
    border-color: rgba(255, 115, 12, 0.3);
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(255, 115, 12, 0.1);
}

.mob-item-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.22s ease;
    z-index: 1;
}
.mob-nav-item:hover .mob-item-icon { transform: scale(1.1); }

.mob-item-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.97rem;
    font-weight: 700;
    color: #1a1a2e;
    flex: 1;
    z-index: 1;
}
.mob-nav-item.active .mob-item-label { color: #FF730C; }

.mob-item-arrow {
    color: #c8c8d8;
    font-size: 1rem;
    transition: transform 0.22s ease, color 0.22s ease;
    display: block !important;
    z-index: 1;
}
.mob-nav-item:hover .mob-item-arrow {
    transform: translateX(4px);
    color: #FF730C;
}

/* ── Puja Services Emoji Grid (4 cols) ── */
.mob-puja-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.mob-puja-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 11px 4px;
    border-radius: 12px;
    background: #f8f9fb;
    border: 1.5px solid #eef0f5;
    text-decoration: none;
    text-align: center;
    transition: all 0.22s ease;
}
.mob-puja-item:hover {
    background: linear-gradient(135deg, #fff7f0 0%, #fff3e0 100%);
    border-color: rgba(255, 115, 12, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 115, 12, 0.12);
}

.mob-puja-emoji {
    font-size: 1.5rem;
    line-height: 1;
}

.mob-puja-item span:last-child {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    color: #374151;
    line-height: 1.3;
}
.mob-puja-item:hover span:last-child { color: #FF730C; }

/* ── Book Now CTA — Sticky Footer ── */
.mob-book-cta {
    padding: 14px 16px 28px;
    background: #ffffff;
    border-top: 1px solid #eef0f5;
    margin-top: auto;
    flex-shrink: 0;
    position: sticky;
    bottom: 0;
}

.mob-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    border-radius: 14px;
    background: linear-gradient(135deg, #FF371E 0%, #FF730C 55%, #FFB703 100%);
    color: #fff !important;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 28px rgba(255, 115, 12, 0.45);
    transition: all 0.3s ease;
}
.mob-book-btn:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(255, 115, 12, 0.55);
    color: #fff !important;
}
.mob-book-btn i { font-size: 1.1rem; }

/* Keyframes */
@keyframes pulseCall {
    0%   { box-shadow: 0 0 0 0 rgba(255, 55, 30, 0.45); }
    70%  { box-shadow: 0 0 0 10px rgba(255, 55, 30, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 55, 30, 0); }
}


/* ==========================================================================
   WORLD-CLASS PREMIUM FOOTER
   ========================================================================== */
.premium-footer {
    background: linear-gradient(180deg, #07050e 0%, #030206 100%);
    color: var(--text-white);
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(255, 183, 3, 0.1);
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Decorative Glow Embers */
.premium-footer::before {
    content: '';
    position: absolute;
    top: -150px;
    left: 20%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 115, 12, 0.08) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(50px);
}

.footer-grid-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: justify;
}

.footer-social-row {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-social-link:hover {
    transform: translateY(-3px) scale(1.05);
}

.social-fb:hover { background: #3b5998; border-color: #3b5998; color: #fff; }
.social-ig:hover { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); border-color: transparent; color: #fff; }
.social-tw:hover { background: #1da1f2; border-color: #1da1f2; color: #fff; }
.social-yt:hover { background: #ff0000; border-color: #ff0000; color: #fff; }

.footer-h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold);
    position: relative;
    padding-bottom: 8px;
    display: inline-block;
}

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

.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu-item a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-menu-item a::before {
    content: '\f105';
    font-family: 'FontAwesome';
    font-size: 0.9rem;
    color: var(--primary);
    transition: var(--transition-smooth);
}

.footer-menu-item a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-contact-item i {
    color: var(--gold);
    font-size: 1.1rem;
    margin-top: 3px;
}

/* Footer Bottom copyright */
.footer-bottom {
    max-width: 1240px;
    margin: 50px auto 0 auto;
    padding: 30px 20px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.copyright-text a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
}

.copyright-text a:hover {
    text-decoration: underline;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-link {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-bottom-link:hover {
    color: var(--gold);
}

/* ==========================================================================
   SCROLL MOTION EFFECTS & TEXT REVEAL
   ========================================================================== */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-text.active {
    opacity: 1;
    transform: translateY(0);
}

/* Motion delay helpers */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* Elegant hover scale elements */
.scale-hover-card {
    transition: var(--transition-smooth);
}
.scale-hover-card:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Force sticky buttons text to white color explicitly */
.elite-engagement-bar .engagement-btn {
    color: #ffffff !important;
}

.elite-engagement-bar .engagement-btn span {
    color: #ffffff !important;
    font-weight: 800;
}

.elite-engagement-bar .engagement-btn svg {
    fill: #ffffff !important;
    color: #ffffff !important;
}

/* ==========================================================================
   MEDIA QUERIES FOR RESPONSIVE BEHAVIOR
   ========================================================================== */
@media (max-width: 1280px) {
    .header-top-bar { display: none; }
    .call-badge { display: none; }
    .header-main-inner { gap: 20px; }
}

@media (max-width: 1024px) {
    .desktop-nav, .header-contact { display: none !important; }
    .mobile-nav-toggle { display: flex !important; }
    .footer-grid-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .mega-dropdown { width: 98vw; left: 0; transform: translateX(0) translateY(0); }
}

@media (max-width: 768px) {
    .premium-header {
        background: #ffffff;
    }

    .header-main-bar {
        background: #ffffff;
        border-bottom: 1px solid rgba(17, 24, 39, 0.08);
        box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        padding: 8px 0;
    }

    .header-main-inner {
        min-height: 56px;
        justify-content: space-between;
    }

    .brand-logo-wrapper {
        min-width: 0;
        gap: 9px;
    }

    .brand-logo-img {
        height: 42px;
        filter: drop-shadow(0 3px 8px rgba(255, 115, 12, 0.18));
    }

    .brand-logo-sub {
        display: none !important;
    }

    .brand-logo-text {
        background: none;
        color: #111827;
        font-size: clamp(0.9rem, 4vw, 1.02rem) !important;
        letter-spacing: 0;
        line-height: 1;
        -webkit-text-fill-color: #111827;
        white-space: nowrap;
    }

    .btn-book-now {
        display: none !important;
    }

    .header-main-inner {
        padding: 0 16px;
        gap: 12px;
    }

    .header-cta-area {
        gap: 0;
    }

    .mobile-nav-toggle {
        width: 48px;
        height: 48px;
        gap: 5px;
        background: linear-gradient(180deg, #fff8f2 0%, #ffffff 100%);
        border: 1px solid rgba(255, 115, 12, 0.22);
        border-radius: 14px;
        box-shadow: 0 8px 18px rgba(255, 115, 12, 0.16), inset 0 0 0 1px rgba(255, 255, 255, 0.75);
        position: relative;
    }

    .mobile-nav-toggle::after {
        display: none;
    }

    .mobile-nav-toggle:hover,
    .mobile-nav-toggle:focus-visible {
        background: linear-gradient(180deg, #fff3e7 0%, #ffffff 100%);
        border-color: rgba(255, 115, 12, 0.36);
        box-shadow: 0 10px 22px rgba(255, 115, 12, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.85);
        outline: none;
    }

    #mobile-toggle-btn .burger-bar {
        display: block !important;
        width: 24px !important;
        min-width: 24px !important;
        height: 3px !important;
        min-height: 3px !important;
        flex: 0 0 3px !important;
        background: #070b18 !important;
        border-radius: 999px !important;
        box-shadow: 0 1px 0 rgba(255, 255, 255, 0.45), 0 2px 5px rgba(7, 11, 24, 0.25) !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 2 !important;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .mob-puja-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}


@media (max-width: 360px) {
    .mob-puja-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* ==========================================================================
   SACRED PUJA SERVICES GRID STYLING
   ========================================================================== */
.premium-puja-section {
    background: radial-gradient(circle at top, #0f0b24 0%, #080612 100%);
    padding: 80px 0;
    border-top: 1px solid rgba(255, 183, 3, 0.08);
    border-bottom: 1px solid rgba(255, 183, 3, 0.08);
    position: relative;
    overflow: hidden;
}

.premium-puja-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 115, 12, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.section-header-wrap {
    max-width: 800px;
    margin: 0 auto 50px auto;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section-sub-title {
    font-family: 'Outfit', sans-serif;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.section-main-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 40%, var(--gold) 80%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

.puja-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 30px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.puja-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 183, 3, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.puja-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 183, 3, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 183, 3, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

.puja-img-wrapper {
    height: 190px;
    position: relative;
    overflow: hidden;
}

.puja-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, transparent 0%, rgba(8, 6, 18, 0.9) 100%);
    z-index: 2;
}

.puja-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.details-overlay-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(8, 6, 18, 0.7);
    border: 1px solid rgba(255, 183, 3, 0.3);
    border-radius: 30px;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 12px;
    z-index: 3;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 4px;
}

.details-overlay-btn:hover {
    background: var(--primary-grad);
    border-color: transparent;
    color: #ffffff;
}

.puja-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    gap: 15px;
}

.puja-card-info h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    transition: var(--transition-smooth);
}

.puja-card:hover .puja-card-info h4 {
    color: var(--gold);
}

.puja-card-info p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.puja-card-actions {
    display: flex;
    gap: 10px;
}

.puja-action-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 10px 12px;
    border-radius: 8px;
    gap: 6px;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    color: #ffffff !important;
}

.puja-action-call {
    background: var(--primary-grad);
}

.puja-action-call:hover {
    filter: brightness(1.15);
    transform: translateY(-1px);
}

.puja-action-wa {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.puja-action-wa:hover {
    filter: brightness(1.15);
    transform: translateY(-1px);
}

.puja-action-btn i {
    font-size: 0.9rem;
}

/* ==========================================================================
   FORCE DISABLE & HIDE THE OLD WORDPRESS MORPH PLUGIN ELEMENTS
   ========================================================================== */
.morph-main-menu-button-wrapper,
.morph-header-bar,
.morph-logo-wrapper,
.morph-logo-wrapper-right,
.morph-heading-wrapper,
.morph-background-overlay,
.morph-menu-wrapper,
.morph-secondary-menu-button,
.morph-search-button,
.morph-search-close-wrapper,
.morph-main-background,
.taptap-search-button,
#bonfire-morph-css-css {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Ensure body does not have top padding pushed by the morph plugin */
body {
    padding-top: 0 !important;
}

/* Stunning 3-Column Info & Support Grid for Mobile Drawer */
.mob-more-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 2px;
}

.mob-more-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 6px;
    border-radius: 14px;
    background: #f8f9fb;
    border: 1.5px solid #eef0f5;
    text-decoration: none;
    text-align: center;
    transition: all 0.25s ease;
}

.mob-more-item:hover {
    background: linear-gradient(135deg, #fff7f0 0%, #fff3e0 100%);
    border-color: rgba(255, 115, 12, 0.25);
    transform: translateY(-2px);
}

.mob-more-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.95rem;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease;
}

.mob-more-item:hover .mob-more-icon {
    transform: scale(1.1);
}

.mob-more-item span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    color: #374151;
    line-height: 1.3;
}

.mob-more-item:hover span {
    color: #FF730C;
}
