.elementor-428 .elementor-element.elementor-element-a8cefc3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-428 .elementor-element.elementor-element-8dbf852{--display:flex;}/* Start custom CSS for html, class: .elementor-element-7f95ad8 *//* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Poppins:wght@300;400;500&display=swap');

/* ================= THEME VARIABLES (GOLD EDITION) ================= */
:root {
    /* Backgrounds */
    --midnight-blue: #050A19; /* Very Dark Blue */
    --card-bg: rgba(20, 30, 60, 0.6);
    
    /* The Ultimate Gold Gradient */
    --gold-gradient: linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    
    /* Solid Gold for Body Text (Readable) */
    --soft-gold: #F3E5AB; /* Vanilla Gold */
    --bright-gold: #FFD700;
}

/* Global Reset for Smooth Text */
body {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* ================= PAGE WRAPPER ================= */
.golden-page-wrapper {
    background-color: var(--midnight-blue);
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
    padding-bottom: 80px;
}

/* Background Mandala */
.midnight-bg {
    position: absolute; width: 100%; height: 100%; top: 0; left: 0;
    z-index: 0; pointer-events: none;
}

.golden-mandala {
    position: absolute; top: 50%; left: 50%;
    width: 800px; height: 800px;
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    animation: spinGold 100s linear infinite;
    background: radial-gradient(circle, transparent 60%, rgba(255, 215, 0, 0.03) 80%);
}

@keyframes spinGold { 100% { transform: translate(-50%, -50%) rotate(360deg); } }

/* ================= TYPOGRAPHY & GOLD EFFECTS ================= */

/* 1. Shiny Title (Animation) */
.shiny-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 700;
    margin: 0;
    background: var(--gold-gradient);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shineText 4s linear infinite;
    filter: drop-shadow(0 0 10px rgba(191, 149, 63, 0.3));
}

.shiny-text {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 600;
    background: var(--gold-gradient);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shineText 6s linear infinite;
}

.shiny-text-small {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: var(--bright-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes shineText { to { background-position: 200% center; } }

/* 2. Soft Body Gold (Readable) */
.body-gold {
    color: var(--soft-gold);
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin: 0;
}

.gold-subtitle {
    margin-top: 20px;
    color: var(--soft-gold);
    font-size: 1.2rem;
    line-height: 1.8;
}

.sanskrit-shloka {
    font-family: 'Cinzel', serif;
    color: var(--bright-gold);
    font-size: 1.5rem;
    display: block;
    margin-bottom: 10px;
}

/* ================= HEADER ================= */
.gold-header {
    text-align: center;
    padding: 100px 20px 50px;
    position: relative;
    z-index: 2;
}

.namaste-icon {
    font-size: 3.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 25px;
    animation: float 3s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

.gold-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* ================= GOLDEN CARDS ================= */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.royal-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    text-decoration: none;
    transition: 0.4s ease;
    backdrop-filter: blur(10px);
}

.royal-card:hover:not(.no-hover) {
    transform: translateY(-8px);
    border-color: var(--bright-gold);
    box-shadow: 0 0 30px rgba(191, 149, 63, 0.2);
}

.icon-halo {
    width: 60px; height: 60px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: var(--bright-gold);
    transition: 0.5s;
}

.royal-card:hover .icon-halo {
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 20px var(--bright-gold);
    transform: rotate(15deg);
}

.link-gold {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--bright-gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-top: 15px;
    transition: 0.3s;
}
.royal-card:hover .link-gold { gap: 12px; text-shadow: 0 0 5px var(--bright-gold); }

/* ================= NOTICE SECTION ================= */
.gold-notice {
    background: linear-gradient(90deg, rgba(255,215,0,0.05), transparent);
    border-left: 3px solid var(--bright-gold);
    padding: 25px;
    border-radius: 0 10px 10px 0;
    display: flex; gap: 20px; align-items: flex-start;
    margin-bottom: 80px;
}
.notice-icon { color: var(--bright-gold); font-size: 2rem; }

/* ================= FAQ SECTION ================= */
.gold-faq-section { max-width: 850px; margin: 0 auto; }

.faq-main-title { margin-bottom: 50px; text-align: center; display: block; }

.faq-box {
    margin-bottom: 15px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,215,0,0.1);
    border-radius: 8px;
    transition: 0.3s;
}

.faq-box.active {
    background: rgba(0,0,0,0.4);
    border-color: var(--bright-gold);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
}

.faq-btn {
    width: 100%;
    padding: 20px 25px;
    background: transparent; border: none;
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer;
}

.btn-text {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: #F1F5F9; /* Keeping question slightly white for contrast */
    text-align: left;
    transition: 0.3s;
}

.faq-box.active .btn-text { color: var(--bright-gold); text-shadow: 0 0 5px rgba(255,215,0,0.5); }

.gold-plus { color: var(--bright-gold); font-size: 1rem; transition: 0.3s; }
.faq-box.active .gold-plus i { transform: rotate(180deg); }

.faq-ans {
    max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
}

.faq-ans p {
    padding: 0 25px 25px;
    border-top: 1px solid rgba(255,215,0,0.1);
    padding-top: 15px;
}

/* Mobile */
@media (max-width: 768px) {
    .shiny-title { font-size: 2.5rem; }
    .gold-notice { flex-direction: column; }
}/* End custom CSS */