/* ═══════════════════════════════════════════════
   TEMPLE THEME — COMPLETE STYLESHEET
   Palette: Deep Maroon, Warm Gold, Cream, Saffron
═══════════════════════════════════════════════ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@300;400;600;800&family=Poppins:wght@300;400;600&family=Playfair+Display:ital,wght@0,600;1,400&display=swap');

:root {
    --maroon-deep:   #2c0a0a;
    --maroon-mid:    #5a1010;
    --maroon-light:  #8b2020;
    --gold:          #c8960c;
    --gold-light:    #e8b84b;
    --gold-pale:     #f5d98b;
    --saffron:       #d2611a;
    --cream:         #fdf6e3;
    --cream-dark:    #f0e0c0;
    --text-dark:     #2c1a00;
    --text-mid:      #4a2c00;
    --text-light:    #fff8ee;
    --shadow:        rgba(44,10,10,0.5);
}

/* ─── RESET ─── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

body {
    font-family: 'Mukta', 'Poppins', sans-serif;
    background: var(--maroon-deep);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.7;
}

/* ─── SCROLL REVEAL ─── */
.fade-in-up {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-in-up.visible { opacity:1; transform:translateY(0); }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }

/* ─── ANTI-GRAVITY ─── */
.anti-gravity { animation: levitate 5s ease-in-out infinite; }
@keyframes levitate {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-14px); }
}

/* ══════════════════════════════
   NAVIGATION BAR
══════════════════════════════ */
.navbar {
    position: sticky; top: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 40px;
    height: 64px;
    background: linear-gradient(90deg, #1a0404 0%, #3b0808 50%, #1a0404 100%);
    border-bottom: 2px solid var(--gold);
    box-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.nav-mantra {
    font-size: 1rem; font-weight: 700; color: var(--gold-light);
    letter-spacing: 1.5px;
    text-shadow: 0 0 10px rgba(200,150,12,0.5);
}

.nav-links { display: flex; gap: 8px; }

.nav-link {
    text-decoration: none;
    color: var(--cream-dark);
    font-size: 1rem; font-weight: 600;
    padding: 8px 22px;
    border-radius: 30px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    display: flex; align-items: center; gap: 7px;
}
.nav-link:hover,
.nav-link.active {
    background: var(--gold);
    color: var(--maroon-deep);
    border-color: var(--gold);
    box-shadow: 0 0 18px rgba(200,150,12,0.4);
}

/* ══════════════════════════════
   HOME PAGE — HERO
══════════════════════════════ */
.hero {
    min-height: 88vh;
    position: relative;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    background:
        linear-gradient(160deg, rgba(44,10,10,0.96) 0%, rgba(90,16,16,0.9) 50%, rgba(44,10,10,0.97) 100%),
        url('https://images.unsplash.com/photo-1609766418204-94aae0ecfdfc?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
    padding: 80px 20px;
    overflow: hidden;
}

/* Decorative horizontal border lines */
.hero-decor { position: absolute; left: 0; width: 100%; height: 6px; }
.top-border {
    top: 62px;
    background: linear-gradient(90deg, transparent, var(--gold), #f5c842, var(--gold), transparent);
}
.bottom-border {
    bottom: 0;
    background: linear-gradient(90deg, transparent, var(--gold), #f5c842, var(--gold), transparent);
}

.hero-content { position: relative; z-index: 2; max-width: 860px; }

.hero-tag {
    font-size: 1.1rem; letter-spacing: 3px;
    color: var(--gold-light);
    margin-bottom: 18px;
    text-shadow: 0 0 15px rgba(200,150,12,0.6);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem; font-weight: 700;
    color: var(--cream);
    line-height: 1.25;
    margin-bottom: 10px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}
.hero-title span {
    background: linear-gradient(45deg, var(--gold), var(--gold-pale), var(--gold));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-size: 200%;
    animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
    0%{background-position:0%} 100%{background-position:200%}
}

.hero-sub {
    font-size: 1.5rem; color: var(--gold-light);
    margin-bottom: 15px; font-style: italic;
}

.hero-desc {
    font-size: 1.15rem; color: rgba(255,240,200,0.85);
    max-width: 700px; margin: 0 auto 35px;
}

.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-primary {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 14px 34px;
    background: linear-gradient(135deg, var(--gold), var(--saffron));
    color: #fff; text-decoration: none;
    font-size: 1.1rem; font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 6px 25px rgba(200,150,12,0.45);
    transition: all 0.3s ease;
    border: none; cursor: pointer; font-family: inherit;
}
.btn-primary:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(200,150,12,0.6); }

.btn-secondary {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 14px 34px;
    background: transparent;
    color: var(--gold-light); text-decoration: none;
    font-size: 1.1rem; font-weight: 600;
    border-radius: 50px;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
}
.btn-secondary:hover { background: var(--gold); color: var(--maroon-deep); transform: translateY(-4px); }

.mt-20 { margin-top: 25px; }

/* ══════════════════════════════
   NOTICE STRIP
══════════════════════════════ */
.notice-strip {
    display: flex; align-items: center;
    background: linear-gradient(90deg, #3b1000, #7a2800, #3b1000);
    border-top: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
    overflow: hidden; height: 46px;
}
.notice-label {
    flex-shrink: 0;
    background: var(--gold);
    color: var(--maroon-deep);
    font-weight: 800; font-size: 0.9rem;
    padding: 0 18px;
    height: 100%;
    display: flex; align-items: center;
    white-space: nowrap;
}
.marquee-wrap { flex: 1; overflow: hidden; }
.marquee-inner {
    display: inline-flex; gap: 80px;
    animation: marqueeScroll 22s linear infinite;
    white-space: nowrap;
    padding-left: 40px;
    font-size: 1rem; font-weight: 600; color: var(--gold-pale);
}
@keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ══════════════════════════════
   HOME — ABOUT SECTION
══════════════════════════════ */
.about-section {
    padding: 90px 20px;
    background:
        linear-gradient(180deg, var(--maroon-deep) 0%, #1a0505 50%, var(--maroon-deep) 100%);
    position: relative;
}

/* Decorative section header */
.section-header {
    display: flex; align-items: center;
    gap: 20px; justify-content: center;
    margin-bottom: 60px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem; color: var(--gold-light);
    white-space: nowrap;
    text-shadow: 0 0 20px rgba(200,150,12,0.3);
}
.decor-line {
    flex: 1; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    max-width: 220px;
}

.about-container {
    display: flex; gap: 60px; align-items: flex-start;
    max-width: 1200px; margin: 0 auto;
}

/* Image Column */
.about-img-col { flex-shrink: 0; width: 320px; }

.pandit-img-frame {
    width: 300px; height: 360px;
    border-radius: 16px; overflow: hidden;
    border: 3px solid var(--gold);
    box-shadow: 0 0 40px rgba(200,150,12,0.3), 0 15px 40px var(--shadow);
    position: relative;
}
.pandit-img-frame img { width:100%; height:100%; object-fit:cover; }
.img-glow {
    position: absolute; inset:0;
    background: linear-gradient(to top, rgba(44,10,10,0.6) 0%, transparent 60%);
}

/* Contact Card */
.contact-card {
    margin-top: 25px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(200,150,12,0.3);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
}
.contact-title { color: var(--gold-light); font-weight: 700; margin-bottom: 12px; font-size: 1rem; }
.contact-num {
    display: block; text-decoration: none;
    color: var(--cream); font-size: 1.1rem; font-weight: 600;
    margin-bottom: 8px;
    transition: color 0.2s;
}
.contact-num:hover { color: var(--gold-light); }

.social-row { display: flex; gap: 10px; justify-content: center; margin-top: 14px; }
.s-btn {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; font-size: 1.1rem;
    transition: all 0.3s ease; border: 1px solid rgba(255,255,255,0.15);
}
.s-btn.yt { color:#ff4444; background:rgba(255,0,0,0.1); }
.s-btn.ig { color:#ec4899; background:rgba(236,72,153,0.1); }
.s-btn.fb { color:#60a5fa; background:rgba(59,130,246,0.1); }
.s-btn.wa { color:#25d366; background:rgba(37,211,102,0.1); border-color:rgba(37,211,102,0.3); }
.s-btn:hover { transform:translateY(-4px) scale(1.1); }
.s-btn.yt:hover { background:#ff0000; color:#fff; }
.s-btn.ig:hover { background:#ec4899; color:#fff; }
.s-btn.fb:hover { background:#3b82f6; color:#fff; }
.s-btn.wa:hover { background:#25d366; color:#fff; }

/* Text Column */
.about-text-col { flex: 1; }

.about-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--saffron));
    color: #fff;
    font-size: 0.85rem; font-weight: 700; letter-spacing: 2px;
    padding: 4px 16px; border-radius: 30px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.pandit-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem; color: var(--gold-light);
    line-height: 1.3; margin-bottom: 10px;
}

.pandit-subtitle {
    font-size: 1.05rem; color: rgba(255,240,200,0.7);
    margin-bottom: 22px; line-height: 1.6;
}

.info-badges {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-bottom: 25px;
}
.badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(200,150,12,0.1);
    border: 1px solid rgba(200,150,12,0.35);
    color: var(--gold-pale);
    padding: 7px 16px; border-radius: 30px;
    font-size: 0.95rem; font-weight: 600;
}
.badge i { color: var(--gold); }

.pandit-desc {
    font-size: 1.08rem; color: rgba(255,240,210,0.85);
    margin-bottom: 18px; line-height: 1.9;
}
.pandit-desc strong { color: var(--gold-light); }

.specialties { margin-bottom: 10px; }
.specialties h4 {
    color: var(--gold-light); font-size: 1.1rem;
    margin-bottom: 14px; border-left: 3px solid var(--gold);
    padding-left: 12px;
}
.spec-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.spec-item {
    display: flex; align-items: center; gap: 9px;
    font-size: 1rem; color: rgba(255,240,200,0.85);
}
.spec-item i { color: var(--gold); font-size: 0.9rem; }

/* ══════════════════════════════
   HOME — STATS SECTION
══════════════════════════════ */
.stats-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #3b0808 0%, #5a1010 50%, #3b0808 100%);
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
}
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 20px; max-width: 1000px; margin: 0 auto;
    text-align: center;
}
.stat-card {
    padding: 30px 15px;
    border-right: 1px solid rgba(200,150,12,0.25);
}
.stat-card:last-child { border-right: none; }
.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem; color: var(--gold-light);
    font-weight: 700; line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(200,150,12,0.4);
}
.stat-label { font-size: 1rem; color: rgba(255,240,200,0.75); font-weight: 600; }

/* ══════════════════════════════
   SERVICES PAGE — PAGE HERO
══════════════════════════════ */
.page-hero {
    position: relative; overflow: hidden;
    padding: 80px 20px 70px;
    text-align: center;
    background:
        linear-gradient(160deg, rgba(44,10,10,0.97) 0%, rgba(90,16,16,0.92) 100%),
        url('https://images.unsplash.com/photo-1609766418204-94aae0ecfdfc?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
    border-bottom: 3px solid var(--gold);
}
.page-hero::after {
    content: '';
    position: absolute; bottom: -2px; left: 0; right: 0;
    height: 6px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold-pale), var(--gold), transparent);
}
.page-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem; color: var(--cream);
    margin: 10px 0;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.page-hero-sub { font-size: 1.15rem; color: rgba(255,240,200,0.75); margin-top: 10px; }

/* ══════════════════════════════
   SERVICES PAGE — SERVICES LIST
   (2 per row, horizontal card)
══════════════════════════════ */
.services-section {
    padding: 60px 20px 80px;
    background: linear-gradient(180deg, var(--maroon-deep) 0%, #1a0505 100%);
}
.services-container {
    max-width: 1100px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

/* Horizontal Service Row Card */
.service-row {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 22px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(200,150,12,0.2);
    border-left: 4px solid var(--gold);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.35s ease;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.service-row:hover {
    background: rgba(200,150,12,0.08);
    border-color: var(--gold-light);
    transform: translateY(-5px) translateX(4px);
    box-shadow: 0 12px 35px rgba(200,150,12,0.2), 0 0 0 1px rgba(200,150,12,0.15);
}

.service-icon-box {
    font-size: 2.4rem;
    width: 60px; height: 60px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(200,150,12,0.1);
    border-radius: 14px;
    border: 1px solid rgba(200,150,12,0.25);
    transition: transform 0.3s ease;
}
.service-row:hover .service-icon-box { transform: scale(1.1) rotate(-5deg); }

.service-text { flex: 1; min-width: 0; }
.service-text h3 {
    font-size: 1.05rem; font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 5px; line-height: 1.4;
}
.service-text p { font-size: 0.9rem; color: rgba(255,240,200,0.65); line-height: 1.5; }

.service-action { flex-shrink: 0; }
.book-btn {
    display: inline-flex; align-items: center; gap: 7px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff; border: none;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 0.92rem; font-weight: 700; font-family: inherit;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37,211,102,0.35);
    white-space: nowrap;
    transition: all 0.3s ease;
}
.book-btn:hover { transform:scale(1.06); box-shadow:0 6px 20px rgba(37,211,102,0.55); }

/* ══════════════════════════════
   BOOKING MODAL
══════════════════════════════ */
.modal-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.88);
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center; justify-content: center;
    padding: 20px;
}
.modal-overlay.active { display: flex; }

.modal-box {
    background: linear-gradient(160deg, #2c0a0a 0%, #1a0404 100%);
    width: 100%; max-width: 620px;
    border-radius: 22px;
    border: 1px solid rgba(200,150,12,0.45);
    box-shadow: 0 30px 80px rgba(0,0,0,0.8), 0 0 40px rgba(200,150,12,0.1);
    padding: 40px 35px;
    position: relative;
    max-height: 90vh; overflow-y: auto;
    animation: popIn 0.4s cubic-bezier(0.175,0.885,0.32,1.275);
}
@keyframes popIn {
    0%   { opacity:0; transform:scale(0.85) translateY(30px); }
    100% { opacity:1; transform:scale(1) translateY(0); }
}

.modal-close {
    position: absolute; top: 16px; right: 20px;
    background: rgba(200,150,12,0.15);
    border: 1px solid rgba(200,150,12,0.3);
    color: var(--gold-light); cursor: pointer;
    width: 36px; height: 36px; border-radius: 50%;
    font-size: 1rem; display: flex; align-items: center; justify-content: center;
    transition: all 0.2s ease;
}
.modal-close:hover { background: var(--gold); color: var(--maroon-deep); transform: rotate(90deg); }

.modal-header { text-align: center; margin-bottom: 28px; }
.modal-om { font-size: 2.5rem; margin-bottom: 8px; }
.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem; color: var(--gold-light);
    margin-bottom: 10px;
}
.modal-service-name {
    display: inline-block;
    background: rgba(200,150,12,0.12);
    border: 1px solid rgba(200,150,12,0.35);
    color: var(--gold-pale);
    font-size: 1.05rem; font-weight: 700;
    padding: 8px 20px; border-radius: 30px;
}

/* Form */
.booking-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; }
.form-group.full-width { grid-column: span 2; }
.form-group label {
    font-size: 0.88rem; font-weight: 700;
    color: var(--gold-light); margin-bottom: 6px;
    display: flex; align-items: center; gap: 6px;
}
.form-group input,
.form-group textarea {
    background: rgba(80,0,0,0.35);
    border: 1px solid rgba(200,150,12,0.25);
    border-radius: 10px;
    padding: 12px 14px;
    color: #fff; font-family: inherit; font-size: 1rem;
    transition: all 0.3s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,240,200,0.3); }
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(100,10,10,0.5);
    box-shadow: 0 0 12px rgba(200,150,12,0.25);
}

.whatsapp-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%; padding: 16px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff; border: none; border-radius: 50px;
    font-size: 1.15rem; font-weight: 800; font-family: inherit;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(37,211,102,0.4);
    transition: all 0.3s ease;
    margin-top: 6px;
}
.whatsapp-btn:hover { transform: scale(1.03); box-shadow: 0 10px 35px rgba(37,211,102,0.6); }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
    background: linear-gradient(0deg, #080000, #1a0404);
    border-top: 2px solid rgba(200,150,12,0.4);
    text-align: center;
}
.footer-top {
    padding: 40px 20px 20px;
}
.footer-mantra {
    font-size: 1.05rem; color: var(--gold-light);
    font-style: italic; margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(200,150,12,0.3);
}
.footer-name {
    font-size: 1.1rem; font-weight: 700;
    color: var(--cream); margin-bottom: 8px;
}
.footer-addr { color: rgba(255,240,200,0.55); font-size: 0.95rem; }
.footer-addr i { color: var(--gold); margin-right: 6px; }
.footer-bottom {
    padding: 14px;
    border-top: 1px solid rgba(200,150,12,0.15);
    color: rgba(255,240,200,0.4); font-size: 0.9rem;
}
.developed-by {
    margin-top: 6px;
    font-size: 0.85rem;
    color: rgba(200,150,12,0.5);
    letter-spacing: 0.5px;
}
.developed-by strong {
    color: var(--gold-light);
}
.dev-insta {
    color: #e1306c;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.dev-insta:hover {
    color: #f77737;
    text-shadow: 0 0 10px rgba(225,48,108,0.6);
}

/* Admin nav link subtle style */
.nav-admin { font-size: 0.85rem; opacity: 0.6; }
.nav-admin:hover, .nav-admin.active { opacity: 1; }

/* ══════════════════════════════
   GALLERY SECTION
══════════════════════════════ */
.gallery-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #1a0505, var(--maroon-deep));
    max-width: 1200px;
    margin: 0 auto;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 22px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.gallery-item {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(200,150,12,0.25);
    background: rgba(0,0,0,0.3);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}
.gallery-item:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(200,150,12,0.2);
}
.gallery-item img,
.gallery-item video,
.gallery-item iframe {
    width: 100%; height: 220px;
    object-fit: cover; display: block;
    background: #000;
}
.gallery-caption {
    padding: 12px 16px;
    font-size: 0.95rem;
    color: var(--gold-pale);
    font-weight: 600;
}
.gallery-empty {
    text-align: center;
    color: rgba(255,240,200,0.4);
    font-style: italic;
    grid-column: 1 / -1;
    padding: 40px;
}

/* ══════════════════════════════
   GOOGLE MAPS SECTION
══════════════════════════════ */
.map-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--maroon-deep), #1a0505);
    max-width: 1200px;
    margin: 0 auto;
}
.map-container {
    max-width: 1100px;
    margin: 0 auto;
}
.map-container iframe {
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    border: 2px solid rgba(200,150,12,0.3) !important;
}
.map-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 22px;
    padding: 20px 25px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(200,150,12,0.2);
    border-radius: 14px;
    flex-wrap: wrap;
}
.map-info-card {
    display: flex; align-items: center; gap: 16px;
}
.map-info-card i {
    font-size: 2rem; color: var(--gold);
}
.map-info-card h4 { color: var(--gold-light); font-size: 1.1rem; }
.map-info-card p { color: rgba(255,240,200,0.65); font-size: 0.95rem; }
.map-btn { white-space: nowrap; }

/* ══════════════════════════════
   ADMIN PANEL
══════════════════════════════ */
/* Login Screen */
.admin-login {
    display: flex;
    align-items: center; justify-content: center;
    min-height: calc(100vh - 64px);
    padding: 20px;
    background: linear-gradient(160deg, var(--maroon-deep), #1a0505);
}
.login-box {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(200,150,12,0.3);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.login-icon { font-size: 3.5rem; margin-bottom: 16px; }
.login-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; color: var(--gold-light);
    margin-bottom: 8px;
}
.login-box > p { color: rgba(255,240,200,0.6); margin-bottom: 28px; }
.login-form {
    display: flex; flex-direction: column; gap: 14px;
}
.login-form input {
    background: rgba(80,0,0,0.4);
    border: 1px solid rgba(200,150,12,0.3);
    border-radius: 12px; padding: 14px 16px;
    color: #fff; font-size: 1.1rem; font-family: inherit;
    text-align: center;
}
.login-form input:focus {
    outline: none; border-color: var(--gold);
    box-shadow: 0 0 15px rgba(200,150,12,0.3);
}
.login-error { color: #ff6b6b; margin-top: 14px; font-weight: 600; }

/* Dashboard */
.admin-dashboard {
    padding: 30px 20px 80px;
    max-width: 900px;
    margin: 0 auto;
    background: var(--maroon-deep);
    min-height: calc(100vh - 64px);
}
.admin-header {
    text-align: center; margin-bottom: 30px;
    position: relative;
}
.admin-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem; color: var(--gold-light);
}
.admin-header p { color: rgba(255,240,200,0.6); margin-top: 6px; }
.btn-logout {
    position: absolute; top: 0; right: 0;
    background: rgba(255,80,80,0.15);
    border: 1px solid rgba(255,80,80,0.4);
    color: #ff6b6b;
    padding: 8px 18px; border-radius: 30px;
    cursor: pointer; font-family: inherit; font-weight: 600;
    transition: all 0.3s ease;
}
.btn-logout:hover {
    background: #ff4444; color: #fff;
}

/* Tabs */
.admin-tabs {
    display: flex; gap: 10px; margin-bottom: 28px;
    justify-content: center;
    flex-wrap: wrap;
}
.tab-btn {
    padding: 10px 24px; border-radius: 30px;
    border: 1px solid rgba(200,150,12,0.3);
    background: rgba(200,150,12,0.08);
    color: var(--gold-pale);
    cursor: pointer; font-family: inherit;
    font-weight: 600; font-size: 1rem;
    transition: all 0.3s ease;
    display: flex; align-items: center; gap: 8px;
}
.tab-btn:hover { border-color: var(--gold); }
.tab-btn.active {
    background: var(--gold);
    color: var(--maroon-deep);
    border-color: var(--gold);
    box-shadow: 0 0 18px rgba(200,150,12,0.35);
}

.tab-content { display: none; }
.tab-content.active { display: block; }

/* Admin Cards */
.admin-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(200,150,12,0.2);
    border-radius: 18px;
    padding: 28px;
    margin-bottom: 22px;
}
.admin-card h3 {
    color: var(--gold-light);
    font-size: 1.2rem;
    margin-bottom: 18px;
    display: flex; align-items: center; gap: 10px;
}
.admin-hint {
    color: rgba(255,240,200,0.5);
    font-size: 0.9rem; margin-bottom: 16px;
}

/* Admin Form */
.admin-form { display: flex; flex-direction: column; gap: 14px; }
.admin-form-row {
    display: flex; gap: 14px;
}
.admin-input-group {
    flex: 1; display: flex; flex-direction: column;
}
.admin-input-group.full { width: 100%; }
.admin-input-group label {
    font-size: 0.88rem; font-weight: 700;
    color: var(--gold-light); margin-bottom: 6px;
}
.admin-input-group input,
.admin-input-group textarea {
    background: rgba(80,0,0,0.35);
    border: 1px solid rgba(200,150,12,0.25);
    border-radius: 10px; padding: 11px 14px;
    color: #fff; font-family: inherit; font-size: 1rem;
    transition: all 0.3s;
}
.admin-input-group input:focus,
.admin-input-group textarea:focus {
    outline: none; border-color: var(--gold);
    box-shadow: 0 0 10px rgba(200,150,12,0.25);
}

/* Admin Items List */
.admin-items-list { display: flex; flex-direction: column; gap: 12px; }
.admin-item {
    display: flex; align-items: center; gap: 16px;
    padding: 14px;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(200,150,12,0.15);
    border-radius: 12px;
    transition: all 0.3s;
}
.admin-item:hover { border-color: rgba(200,150,12,0.4); }
.admin-thumb {
    width: 80px; height: 55px;
    object-fit: cover; border-radius: 8px;
    border: 1px solid rgba(200,150,12,0.2);
}
.video-thumb { width: 100px; }
.admin-item-emoji {
    font-size: 2rem; width: 50px; text-align: center; flex-shrink: 0;
}
.admin-item-info {
    flex: 1; min-width: 0;
}
.admin-item-info strong {
    display: block; color: var(--cream);
    font-size: 0.95rem;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.admin-item-info small {
    color: rgba(255,240,200,0.4); font-size: 0.8rem;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    display: block;
}
.admin-delete-btn {
    background: rgba(255,80,80,0.12);
    border: 1px solid rgba(255,80,80,0.3);
    color: #ff6b6b;
    width: 38px; height: 38px;
    border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}
.admin-delete-btn:hover { background: #ff4444; color: #fff; }

.admin-empty {
    text-align: center;
    color: rgba(255,240,200,0.35);
    padding: 25px; font-style: italic;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
    .about-container { flex-direction: column; align-items: center; }
    .about-img-col { width: 100%; display: flex; flex-direction: column; align-items: center; }
    .about-text-col { text-align: center; }
    .info-badges { justify-content: center; }
    .spec-grid { max-width: 400px; margin: 0 auto; }
    .section-header { gap: 12px; }
    .decor-line { max-width: 100px; }
}
@media (max-width: 768px) {
    .navbar { padding: 0 16px; }
    .nav-mantra { font-size: 0.8rem; }
    .hero-title { font-size: 2.5rem; }
    .hero-sub   { font-size: 1.2rem; }
    .services-container { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-card { border-right: none; border-bottom: 1px solid rgba(200,150,12,0.2); }
    .form-row { grid-template-columns: 1fr; }
    .modal-box { padding: 28px 18px; }
    .page-hero-title { font-size: 2.3rem; }
    .section-title { font-size: 2.2rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .map-info { flex-direction: column; text-align: center; }
    .map-info-card { flex-direction: column; }
    .admin-form-row { flex-direction: column; }
    .btn-logout { position: static; margin-top: 12px; }
}
@media (max-width: 480px) {
    .hero-btns { flex-direction: column; align-items: center; }
    .service-row { flex-wrap: wrap; }
    .service-action { width: 100%; }
    .book-btn { width: 100%; justify-content: center; }
    .login-box { padding: 35px 20px; }
}
