/* =============================================
   PANDIT SHRI HIT KAPIL VAIDH JI - PREMIUM WEBSITE
   Dark Spiritual Theme with Gold Accents
   ============================================= */

/* ===== CSS VARIABLES ===== */
:root {
    --gold: #D4AF37;
    --gold-light: #F5D272;
    --gold-dark: #A8922A;
    --deep-purple: #1A0A2E;
    --mid-purple: #2D1B4E;
    --navy: #0A0E2A;
    --dark-bg: #050814;
    --card-bg: rgba(26, 10, 46, 0.7);
    --card-border: rgba(212, 175, 55, 0.25);
    --text-primary: #F0E6FF;
    --text-secondary: rgba(240, 230, 255, 0.7);
    --text-muted: rgba(240, 230, 255, 0.45);
    --white: #FFFFFF;
    --glow: rgba(212, 175, 55, 0.4);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Outfit', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 100px 0; }

/* ===== PARTICLES ===== */
.particles {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 0; overflow: hidden;
}
.particle {
    position: absolute; border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.8), transparent);
    animation: floatParticle linear infinite;
}
@keyframes floatParticle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 0.5; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
/* Fallback - if JS fails, elements should still be visible */
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; }
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; border-radius: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #1a0a00; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.5px;
    border: none; cursor: pointer;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    transition: var(--transition); position: relative; overflow: hidden;
}
.btn-primary::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    opacity: 0; transition: opacity 0.3s;
}
.btn-primary::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg); animation: shineSweep 4s infinite;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(212, 175, 55, 0.8); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary span { position: relative; z-index: 1; }
.btn-primary.small { padding: 10px 22px; font-size: 0.85rem; }
.btn-primary.full-width { width: 100%; justify-content: center; }

.btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 32px; border-radius: 50px;
    background: transparent; color: var(--gold);
    font-weight: 600; font-size: 0.95rem;
    border: 2px solid var(--gold); cursor: pointer;
    transition: var(--transition);
}
.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    transform: translateY(-3px);
}

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 70px; }
.section-tag {
    display: inline-block; padding: 6px 20px; border-radius: 50px;
    background: rgba(212, 175, 55, 0.1); border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold); font-size: 0.8rem; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; margin-bottom: 20px;
}
.section-title { color: var(--text-primary); margin-bottom: 20px; }
.section-title em { color: var(--gold); font-style: italic; }
.section-desc { color: var(--text-secondary); font-size: 1.05rem; }
.gold-divider {
    width: 80px; height: 3px; margin: 20px 0;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 2px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 15px 0; transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(5, 8, 20, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 20px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 14px; }
.om-symbol {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem; color: var(--gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    font-weight: 700; letter-spacing: -1px;
    animation: goldPulse 2.5s infinite alternate;
}
.om-symbol.large { font-size: 3rem; }
.logo-text { display: flex; flex-direction: column; }
.logo-main { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 700; color: var(--gold); }
.logo-sub { font-size: 0.65rem; color: var(--text-muted); letter-spacing: 1px; }
.nav-links { display: flex; align-items: center; gap: 5px; }
.nav-links li a {
    padding: 8px 14px; border-radius: 6px;
    color: var(--text-secondary); font-size: 0.9rem; font-weight: 500;
    transition: var(--transition);
}
.nav-links li a:hover { color: var(--gold); background: rgba(212, 175, 55, 0.08); }
.nav-links li a.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #1a0a00; font-weight: 700; padding: 9px 20px;
    border-radius: 50px; box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}
.nav-links li a.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gold); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh; position: relative; display: flex;
    align-items: center; justify-content: center; text-align: center;
    overflow: hidden; background: var(--dark-bg);
}
.hero-bg-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(45, 27, 78, 0.8) 0%, rgba(5, 8, 20, 0.95) 70%);
    z-index: 1;
}
.mandala-ring {
    position: absolute; border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.15);
    animation: rotateSlow linear infinite;
}
.ring1 { width: 600px; height: 600px; animation-duration: 40s; }
.ring2 { width: 850px; height: 850px; animation-duration: 60s; animation-direction: reverse; border-color: rgba(212, 175, 55, 0.08); }
.ring3 { width: 1100px; height: 1100px; animation-duration: 80s; border-color: rgba(212, 175, 55, 0.05); }
@keyframes rotateSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.hero-content { position: relative; z-index: 2; max-width: 900px; padding: 120px 20px 60px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 24px; border-radius: 50px;
    background: rgba(212, 175, 55, 0.1); border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--gold); font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 30px;
}
.star { color: var(--gold); }
.devanagari-title {
    display: inline-block; font-family: 'Noto Sans Devanagari', 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 4vw, 2.8rem); font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 12px; text-shadow: none;
    line-height: 1.4; padding: 0.1em 0;
}
.english-title {
    display: block; font-size: clamp(1rem, 2.5vw, 1.5rem); color: var(--text-secondary);
    font-style: italic; font-weight: 400;
}
.hero-subtitle {
    color: var(--gold); font-size: 1rem; letter-spacing: 2px;
    text-transform: uppercase; margin: 20px 0 15px; font-weight: 500;
}
.hero-desc { color: var(--text-secondary); font-size: 1.1rem; margin-bottom: 40px; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }

.hero-stats {
    display: flex; align-items: center; justify-content: center;
    gap: 0; background: rgba(26, 10, 46, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2); border-radius: 16px;
    padding: 30px 40px; backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4); flex-wrap: wrap;
}
.stat-item { text-align: center; padding: 0 30px; }
.stat-num {
    display: block; font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem; font-weight: 700; color: var(--gold);
    line-height: 1;
}
.stat-suffix { font-size: 1.5rem; color: var(--gold); }
.stat-label { display: block; font-size: 0.75rem; color: var(--text-muted); letter-spacing: 1px; margin-top: 6px; text-transform: uppercase; }
.stat-divider { width: 1px; height: 50px; background: rgba(212, 175, 55, 0.3); flex-shrink: 0; }

.hero-scroll-indicator {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    color: var(--text-muted); font-size: 0.75rem; z-index: 2; letter-spacing: 2px;
    animation: bounce 2s ease-in-out infinite;
}
.scroll-mouse {
    width: 24px; height: 38px; border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 12px; display: flex; justify-content: center; padding-top: 6px;
}
.scroll-dot { width: 4px; height: 8px; background: var(--gold); border-radius: 2px; animation: scrollDown 1.5s ease-in-out infinite; }
@keyframes scrollDown { 0%, 100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(8px); opacity: 0.3; } }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-8px); } }

/* ===== MARQUEE ===== */
.marquee-strip {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-dark));
    padding: 16px 0; overflow: hidden; position: relative; z-index: 5;
}
.marquee-content {
    display: flex; gap: 40px; white-space: nowrap;
    animation: marquee 30s linear infinite;
    font-weight: 700; color: #1a0a00; font-size: 0.85rem; letter-spacing: 1.5px; text-transform: uppercase;
}
.sep { color: rgba(26, 10, 0, 0.5); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== ABOUT ===== */
.about { background: linear-gradient(180deg, var(--dark-bg) 0%, var(--deep-purple) 50%, var(--dark-bg) 100%); position: relative; }
.about::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(45, 27, 78, 0.4) 0%, transparent 70%);
    pointer-events: none;
}
.about-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center; }
.about-image-col { position: relative; }
.about-img-wrapper {
    position: relative; display: inline-block; width: 100%;
    padding: 20px;
}
.img-glow-ring {
    position: absolute; inset: 0;
    border-radius: 20px;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    pointer-events: none;
}
.about-img {
    width: 100%; height: 400px;
    object-fit: cover; object-position: top center;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.5s ease;
}
.about-img:hover { transform: scale(1.02); }
.about-badge-float {
    position: absolute; bottom: -15px; right: 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #1a0a00; padding: 10px 20px; border-radius: 50px;
    font-weight: 700; font-size: 0.8rem; letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}
.about-social { margin-top: 30px; }
.social-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 24px; border-radius: 50px;
    background: rgba(225, 48, 108, 0.15); border: 1px solid rgba(225, 48, 108, 0.4);
    color: #E1306C; font-weight: 600; font-size: 0.85rem;
    transition: var(--transition);
}
.social-btn:hover { background: rgba(225, 48, 108, 0.25); transform: translateY(-2px); }
.about-lead {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 1rem; color: var(--gold); margin-bottom: 16px; line-height: 1.8;
}
.about-text { color: var(--text-secondary); margin-bottom: 16px; font-size: 1rem; }
.expertise-grid { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 30px; }
.expertise-chip {
    padding: 7px 18px; border-radius: 50px;
    background: rgba(212, 175, 55, 0.1); border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.5px;
    transition: var(--transition);
}
.expertise-chip:hover { background: rgba(212, 175, 55, 0.2); transform: translateY(-2px); }

/* ===== SERVICES ===== */
.services {
    background: var(--dark-bg);
    background-image: radial-gradient(ellipse at 80% 20%, rgba(45, 27, 78, 0.3) 0%, transparent 60%);
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.service-card {
    background: rgba(26, 10, 46, 0.7); border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 20px; padding: 36px 28px;
    position: relative; overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    cursor: pointer; box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0); transition: transform 0.4s ease;
}
.service-card:hover { transform: translateY(-10px) scale(1.02); border-color: rgba(212, 175, 55, 0.8); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(212, 175, 55, 0.2); z-index: 10; }
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured {
    background: linear-gradient(135deg, rgba(45, 27, 78, 0.9), rgba(26, 10, 46, 0.95));
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.1);
}
.featured-badge {
    position: absolute; top: 18px; right: 18px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #1a0a00; padding: 4px 12px; border-radius: 50px;
    font-size: 0.7rem; font-weight: 800; letter-spacing: 1px;
}
.service-icon-wrap { margin-bottom: 20px; }
.service-icon { font-size: 2.5rem; filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3)); }
.service-card h3 { color: var(--text-primary); margin-bottom: 12px; }
.service-card.featured h3 { color: var(--gold); }
.service-card p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 18px; }
.service-features { margin-bottom: 24px; display: flex; flex-direction: column; gap: 6px; }
.service-features li {
    color: var(--text-muted); font-size: 0.8rem;
    display: flex; align-items: center; gap: 8px;
}
.service-features li::before { content: '✦'; color: var(--gold); font-size: 0.6rem; flex-shrink: 0; }
.service-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 22px; border-radius: 50px;
    background: rgba(212, 175, 55, 0.1); border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold); font-size: 0.85rem; font-weight: 600;
    transition: var(--transition);
}
.service-btn:hover { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #1a0a00; transform: translateY(-2px); box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4); }
.service-card.featured .service-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #1a0a00;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}
.service-card.featured .service-btn:hover { box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5); }

/* ===== KATHA SECTION ===== */
.katha-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--deep-purple) 50%, var(--dark-bg) 100%);
    position: relative; overflow: hidden;
}
.katha-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}
.katha-card {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: center; margin-bottom: 80px; position: relative; z-index: 1;
}
.katha-card.reverse { direction: rtl; }
.katha-card.reverse > * { direction: ltr; }
.katha-image-wrap {
    position: relative; border-radius: 20px; overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
.katha-img { width: 100%; height: auto; display: block; transition: transform 0.6s ease; }
.katha-image-wrap:hover .katha-img { transform: scale(1.05); }
.katha-img-badge {
    position: absolute; top: 20px; left: 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #1a0a00; padding: 8px 20px; border-radius: 50px;
    font-weight: 700; font-size: 0.85rem;
}
.katha-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-style: italic; color: var(--gold);
    border-left: 3px solid var(--gold); padding-left: 20px;
    margin-bottom: 24px; line-height: 1.8;
}
.katha-content h3 { color: var(--text-primary); margin-bottom: 16px; }
.katha-content p { color: var(--text-secondary); margin-bottom: 14px; }
.katha-details { display: flex; gap: 16px; margin: 24px 0; flex-wrap: wrap; }
.katha-detail-item {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 18px; border-radius: 50px;
    background: rgba(212, 175, 55, 0.1); border: 1px solid rgba(212, 175, 55, 0.3);
    font-size: 0.85rem; color: var(--text-secondary);
}

/* ===== GALLERY ===== */
.gallery-section {
    background: var(--dark-bg);
    background-image: radial-gradient(ellipse at 20% 80%, rgba(45, 27, 78, 0.3) 0%, transparent 60%);
}
.instagram-banner { margin-bottom: 40px; text-align: center; }
.instagram-link-banner {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 14px 30px; border-radius: 50px;
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.15), rgba(138, 58, 185, 0.15));
    border: 1px solid rgba(225, 48, 108, 0.4);
    color: #E1306C; font-weight: 600; font-size: 0.95rem;
    transition: var(--transition);
}
.instagram-link-banner:hover {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.25), rgba(138, 58, 185, 0.25));
    transform: translateY(-2px); box-shadow: 0 8px 30px rgba(225, 48, 108, 0.2);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 16px;
    grid-auto-flow: dense;
}
.gallery-item {
    position: relative; overflow: hidden; border-radius: 12px;
    cursor: pointer; border: 1px solid rgba(212, 175, 55, 0.1);
    aspect-ratio: 1 / 1;
}
.gallery-item.large { grid-column: span 2; grid-row: span 1; aspect-ratio: 2 / 1; }
.gallery-item.tall { grid-row: span 2; aspect-ratio: 1 / 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26, 10, 46, 0.9) 0%, transparent 60%);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 20px;
    opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label { color: var(--gold); font-weight: 600; font-size: 0.9rem; }

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed; inset: 0; background: rgba(0, 0, 0, 0.95);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    z-index: 9999; padding: 20px;
    opacity: 0; visibility: hidden; transition: var(--transition);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-img { max-width: 90vw; max-height: 80vh; object-fit: contain; border-radius: 12px; border: 1px solid rgba(212, 175, 55, 0.3); }
.lightbox-caption { color: var(--gold); margin-top: 16px; font-style: italic; }
.lightbox-close {
    position: absolute; top: 20px; right: 30px;
    background: rgba(212, 175, 55, 0.2); border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold); width: 44px; height: 44px; border-radius: 50%;
    font-size: 1.2rem; cursor: pointer; transition: var(--transition);
    display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { background: rgba(212, 175, 55, 0.4); transform: rotate(90deg); }

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(10, 14, 42, 0.8) 100%);
    position: relative;
}
.testimonials::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(45, 27, 78, 0.3) 0%, transparent 70%);
}
.testimonials-slider { position: relative; overflow: hidden; z-index: 1; }
.testimonials-track {
    display: flex; gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.testimonial-card {
    min-width: calc(33.333% - 16px); padding: 36px;
    background: var(--card-bg); border: 1px solid var(--card-border);
    border-radius: 20px; backdrop-filter: blur(10px);
    transition: var(--transition); flex-shrink: 0;
}
.testimonial-card:hover { transform: translateY(-5px); border-color: rgba(212, 175, 55, 0.4); }
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { color: var(--text-secondary); font-style: italic; margin-bottom: 24px; font-size: 0.95rem; line-height: 1.8; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
    width: 50px; height: 50px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex; align-items: center; justify-content: center;
    color: #1a0a00; font-weight: 800; font-size: 1.1rem;
}
.testimonial-author strong { display: block; color: var(--text-primary); font-size: 0.95rem; }
.testimonial-author span { color: var(--text-muted); font-size: 0.8rem; display: block; margin-top: 2px; }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 40px; }
.slider-btn {
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(212, 175, 55, 0.1); border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold); font-size: 1.5rem; cursor: pointer; transition: var(--transition);
    display: flex; align-items: center; justify-content: center;
}
.slider-btn:hover { background: rgba(212, 175, 55, 0.25); transform: scale(1.05); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(212, 175, 55, 0.3); cursor: pointer;
    transition: var(--transition); border: none;
}
.slider-dot.active { width: 24px; border-radius: 4px; background: var(--gold); }

/* ===== CONTACT ===== */
.contact-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--deep-purple) 50%, var(--dark-bg) 100%);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info h3 { color: var(--gold); font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; margin-bottom: 30px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 30px; }
.contact-item {
    display: flex; align-items: flex-start; gap: 18px;
    padding: 18px 20px; border-radius: 14px;
    background: rgba(212, 175, 55, 0.05); border: 1px solid rgba(212, 175, 55, 0.15);
    transition: var(--transition);
}
.contact-item:hover { border-color: rgba(212, 175, 55, 0.35); background: rgba(212, 175, 55, 0.1); }
.contact-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-item strong { display: block; color: var(--gold); font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.contact-item a, .contact-item span { color: var(--text-secondary); font-size: 0.95rem; display: block; }
.contact-item a:hover { color: var(--gold); }
.contact-quote blockquote {
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    color: var(--gold); font-size: 1.3rem; text-align: center;
    padding: 24px; border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 14px; background: rgba(212, 175, 55, 0.05); margin-bottom: 24px;
}
.contact-quote small { display: block; color: var(--text-muted); font-size: 0.85rem; font-style: normal; margin-top: 8px; }
.contact-img { width: 100%; border-radius: 14px; border: 1px solid rgba(212, 175, 55, 0.2); }
.contact-form-wrap {
    background: var(--card-bg); border: 1px solid var(--card-border);
    border-radius: 24px; padding: 40px; backdrop-filter: blur(10px);
}
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { color: var(--text-secondary); font-size: 0.85rem; font-weight: 500; letter-spacing: 0.5px; }
.required { color: var(--gold); }
.form-group input, .form-group select, .form-group textarea {
    background: rgba(212, 175, 55, 0.05); border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px; padding: 13px 18px; color: var(--text-primary);
    font-size: 0.95rem; transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: rgba(212, 175, 55, 0.6); background: rgba(212, 175, 55, 0.08);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}
.form-group select option { background: var(--deep-purple); color: var(--text-primary); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success { text-align: center; padding: 40px; }
.success-icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h3 { color: var(--gold); font-size: 1.8rem; margin-bottom: 10px; }
.form-success p { color: var(--text-secondary); }

/* ===== FOOTER ===== */
.footer { background: #020510; border-top: 1px solid rgba(212, 175, 55, 0.15); }
.footer-top { padding: 80px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; }
.footer-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.footer-logo strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--gold); }
.footer-logo span { font-size: 0.7rem; color: var(--text-muted); }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; flex-wrap: wrap; }
.social-icon-footer {
    padding: 8px 16px; border-radius: 8px; font-size: 0.8rem; font-weight: 600;
    background: rgba(212, 175, 55, 0.1); border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold); transition: var(--transition);
}
.social-icon-footer:hover { background: rgba(212, 175, 55, 0.2); }
.footer-links-col h4, .footer-contact-col h4 {
    color: var(--gold); font-size: 0.85rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col ul li a { color: var(--text-muted); font-size: 0.9rem; transition: var(--transition); }
.footer-links-col ul li a:hover { color: var(--gold); padding-left: 5px; }
.footer-contact-col p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 10px; }
.footer-contact-col a { color: var(--text-muted); transition: var(--transition); }
.footer-contact-col a:hover { color: var(--gold); }
.footer-cta { margin-top: 20px; }
.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.1); padding: 24px 0;
    text-align: center;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 6px; }
.footer-mantra { color: rgba(212, 175, 55, 0.5) !important; font-style: italic; letter-spacing: 2px; }

/* ===== FLOATING BUTTONS ===== */
.floating-whatsapp, .floating-call {
    position: fixed; width: 58px; height: 58px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    z-index: 999; transition: var(--transition); cursor: pointer;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}
.floating-whatsapp {
    bottom: 100px; right: 24px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}
.floating-call {
    bottom: 30px; right: 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #1a0a00;
}
.floating-whatsapp:hover, .floating-call:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}
.floating-tooltip {
    position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
    background: rgba(5, 8, 20, 0.9); color: var(--text-primary);
    padding: 6px 14px; border-radius: 8px; font-size: 0.8rem; white-space: nowrap;
    border: 1px solid rgba(212, 175, 55, 0.2);
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.floating-whatsapp:hover .floating-tooltip,
.floating-call:hover .floating-tooltip { opacity: 1; }

/* ===== REAL GALLERY GRID - ONLY REAL PHOTOS ===== */
.gallery-grid-real {
    columns: 3 320px;
    column-gap: 20px;
    width: 100%;
}

/* Default item */
.gallery-item-real {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    cursor: pointer;
    border: 2px solid rgba(212, 175, 55, 0.45);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.12), 0 4px 20px rgba(0,0,0,0.4);
    transition: all 0.4s ease;
    display: block;
}
.gallery-item-real:hover {
    border-color: rgba(212, 175, 55, 0.9);
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.35), 0 8px 30px rgba(0,0,0,0.5);
    transform: translateY(-4px);
    z-index: 2;
}
.gallery-item-real img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.55s ease;
}
.gallery-item-real:hover img { transform: scale(1.07); }

.gallery-item-real .gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26, 10, 46, 0.92) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
    display: flex; flex-direction: column;
    justify-content: flex-end; align-items: flex-start;
    padding: 18px 16px;
    opacity: 0; transition: opacity 0.35s;
    gap: 4px;
}
.gallery-item-real:hover .gallery-overlay { opacity: 1; }

.real-tag-small {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #1a0a00; padding: 3px 10px; border-radius: 20px;
    font-size: 0.65rem; font-weight: 800; letter-spacing: 0.5px;
}

/* gold glow pulse on real photos */
@keyframes goldPulse {
    0%, 100% { box-shadow: 0 0 15px rgba(212,175,55,0.12), 0 4px 20px rgba(0,0,0,0.4); }
    50% { box-shadow: 0 0 30px rgba(212,175,55,0.25), 0 4px 20px rgba(0,0,0,0.4); }
}
.gallery-item-real { animation: goldPulse 3s ease-in-out infinite; }
.gallery-item-real:hover { animation: none; }

/* About poster image */
.about-poster-wrap {
    margin-top: 18px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    position: relative;
}
.about-poster-img { width: 100%; display: block; transition: transform 0.5s ease; }
.about-poster-wrap:hover .about-poster-img { transform: scale(1.03); }

.real-photos-label { text-align: center; margin-bottom: 22px; }
.real-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 24px; border-radius: 50px;
    background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(212,175,55,0.05));
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: var(--gold); font-size: 0.85rem; font-weight: 700; letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { gap: 50px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .gallery-grid-real { columns: 2; }
}

@media (max-width: 768px) {
    .hero-content { padding: 100px 15px 40px; }
    .floating-whatsapp, .floating-call { width: 48px; height: 48px; right: 16px; }
    .floating-whatsapp { bottom: 80px; }
    .floating-call { bottom: 20px; }
    .floating-tooltip { display: none; }
    .section-pad { padding: 70px 0; }
    .nav-links { 
        position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
        background: rgba(5, 8, 20, 0.98); backdrop-filter: blur(20px);
        flex-direction: column; padding: 80px 30px 40px; gap: 8px;
        transition: right 0.4s ease; border-left: 1px solid rgba(212, 175, 55, 0.2);
        z-index: 999;
    }
    .nav-links.open { right: 0; }
    .hamburger { display: flex; z-index: 1000; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .katha-card { grid-template-columns: 1fr; gap: 30px; direction: ltr !important; }
    .katha-img { height: auto; }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item.large, .gallery-item.tall { grid-column: span 1; grid-row: span 1; aspect-ratio: 1 / 1; }
    .testimonial-card { min-width: 100%; padding: 24px 20px; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form { grid-template-columns: 1fr; }
    .hero-stats { padding: 20px; gap: 0; }
    .stat-item { padding: 10px 15px; }
    .stat-num { font-size: 1.8rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .mandala-ring { display: none; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
    .stat-divider { display: none; }
    .hero-stats { flex-direction: row; flex-wrap: wrap; justify-content: center; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-grid-real { columns: 1; }
}

/* ===== PREMIUM ANIMATIONS ===== */
@keyframes shineSweep {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}
@keyframes goldPulse {
    0% { text-shadow: 0 0 15px rgba(212, 175, 55, 0.5); }
    100% { text-shadow: 0 0 35px rgba(212, 175, 55, 1), 0 0 10px rgba(255, 255, 255, 0.5); }
}
