:root {
    --gold: #D4AF37;
    --indigo: #0C1631;
    --white: #F8F5E7;
    --navy: #080D1B;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
    font-family: 'Lora', serif; 
    line-height: 1.7; 
    color: var(--white); 
    background: var(--indigo);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ========== ANIMATIONS ========== */
@keyframes fadeIn { 
    from { opacity: 0; transform: translateY(30px); } 
    to { opacity: 1; transform: translateY(0); } 
}

@keyframes fadeInDown { 
    from { opacity: 0; transform: translateY(-40px); } 
    to { opacity: 1; transform: translateY(0); } 
}

@keyframes fadeInUp { 
    from { opacity: 0; transform: translateY(40px); } 
    to { opacity: 1; transform: translateY(0); } 
}

@keyframes floatGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
        transform: translateY(0);
    }
    50% { 
        filter: drop-shadow(0 0 35px rgba(212, 175, 55, 0.7));
        transform: translateY(-8px);
    }
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shimmer {
    0%, 100% { 
        color: var(--gold); 
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.5); 
    }
    50% { 
        color: #FFD700; 
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.8); 
    }
}

@keyframes glow { 
    0%, 100% { filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3)); } 
    50% { filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.7)); } 
}

/* ========== HEADER & MENU ========== */
.header { position: fixed; top: 0; right: 0; z-index: 100; padding: 1.5rem; }
.menu-btn { background: var(--gold); border: none; color: var(--navy); width: 50px; height: 50px; border-radius: 2px; cursor: pointer; box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 6px; transition: all 0.3s; }
.menu-btn:hover { transform: scale(1.05); }
.hamburger-line { width: 24px; height: 3px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }

.menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(8, 13, 27, 0.7); z-index: 150; display: none; pointer-events: none; }
.menu-overlay.active { display: block; pointer-events: auto; }

.menu-sidebar { 
    position: fixed; top: 0; right: -100%; width: 100%; max-width: 320px; height: 100vh; 
    background: linear-gradient(135deg, var(--navy), var(--indigo)); 
    z-index: 160; transition: right 0.4s ease; overflow-y: auto; 
    padding: 80px 2rem 2rem;
    border-left: 1px solid rgba(212, 175, 55, 0.2);
}
.menu-sidebar.open { right: 0; }

.menu-close { position: absolute; top: 20px; right: 20px; background: none; border: none; color: var(--gold); font-size: 2rem; cursor: pointer; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; }

.menu-items { display: flex; flex-direction: column; gap: 0; }
.menu-items a { display: flex; align-items: center; gap: 0.8rem; color: var(--white); text-decoration: none; padding: 0.7rem 0; font-size: 0.85rem; border-bottom: 1px solid rgba(212, 175, 55, 0.15); cursor: pointer; transition: all 0.3s; }
.menu-items a:hover { color: var(--gold); }

.menu-icon { 
    width: 16px; 
    height: 16px; 
    min-width: 16px; 
    filter: drop-shadow(0 0 2px rgba(212, 175, 55, 0.5)); 
    transition: all 0.3s; 
}
.menu-items a:hover .menu-icon { 
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.8)); 
}

.contact-section { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(212, 175, 55, 0.3); }
.contact-link { display: flex; align-items: center; gap: 0.8rem; color: var(--white); text-decoration: none; padding: 0.6rem 0; font-size: 0.8rem; transition: all 0.3s; }
.contact-link:hover { color: var(--gold); }
.contact-link:hover .menu-icon { 
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.8)); 
}

/* ========== HERO SECTION ========== */
.hero { 
    min-height: 100vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    background: linear-gradient(135deg, var(--navy), var(--indigo));
    text-align: center; 
    padding: 2rem; 
    position: relative; 
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: 
        radial-gradient(circle, transparent 20%, var(--gold) 21%, var(--gold) 22%, transparent 23%, transparent 30%, var(--gold) 31%, var(--gold) 32%, transparent 33%, transparent 40%, var(--gold) 41%, var(--gold) 42%, transparent 43%, transparent 50%, var(--gold) 51%, var(--gold) 52%, transparent 53%),
        radial-gradient(circle, transparent 20%, var(--gold) 21%, var(--gold) 22%, transparent 23%, transparent 30%, var(--gold) 31%, var(--gold) 32%, transparent 33%, transparent 40%, var(--gold) 41%, var(--gold) 42%, transparent 43%, transparent 50%, var(--gold) 51%, var(--gold) 52%, transparent 53%);
    background-size: 80px 80px;
    background-position: 0 0;
    opacity: 0.08;
    z-index: 1;
    animation: rotateSlow 60s linear infinite;
    pointer-events: none;
}

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

.hero-om {
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.6;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease-out;
}

.hero-title { 
    font-family: 'Cinzel', serif; 
    font-size: clamp(4rem, 10vw, 7rem); 
    font-weight: 700; 
    letter-spacing: 8px; 
    margin-bottom: 0.3rem; 
    color: var(--gold);
    animation: shimmer 3s ease-in-out infinite, fadeInDown 1.2s ease-out;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.hero-sanskrit {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: rgba(212, 175, 55, 0.85);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-subtitle { 
    font-family: 'Cormorant Garamond', serif; 
    font-size: clamp(1.1rem, 2.5vw, 1.8rem); 
    font-style: italic; 
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.hero-desc { 
    font-size: 1.05rem; 
    line-height: 1.9; 
    margin-bottom: 2.5rem; 
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.4s backwards;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-group { 
    display: flex; 
    gap: 1.5rem; 
    justify-content: center; 
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

.btn { 
    padding: 14px 36px; 
    border: 2px solid var(--gold); 
    background: transparent; 
    color: var(--gold); 
    font-family: 'Cinzel', serif; 
    font-size: 0.95rem; 
    letter-spacing: 1.5px; 
    cursor: pointer; 
    text-decoration: none;
    display: inline-block; 
    border-radius: 2px; 
    transition: all 0.4s; 
    z-index: 5; 
    position: relative;
}

.btn:hover { 
    background: var(--gold); 
    color: var(--navy);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
    transform: translateY(-3px);
}

.btn:active { transform: scale(0.98); }

.hero-accent {
    position: absolute;
    font-size: 12rem;
    opacity: 0.03;
    z-index: 1;
    font-family: 'Cinzel', serif;
    letter-spacing: 20px;
    pointer-events: none;
}

.accent-top-left { top: 5%; left: 5%; }
.accent-bottom-right { bottom: 5%; right: 5%; }

/* ========== CHAKRA EXPLORER SECTION ========== */
#chakraExplorerSection {
    background: linear-gradient(135deg, rgba(12, 22, 49, 0.8), rgba(26, 45, 92, 0.6));
    padding: 2.5rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    animation: fadeInDown 0.5s ease-out;
}

.chakra-explorer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.chakra-explorer-title {
    text-align: center;
    margin-bottom: 2rem;
}

.chakra-explorer-title h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.chakra-explorer-title p {
    color: rgba(212, 175, 55, 0.8);
    font-style: italic;
    font-size: 0.95rem;
}

#chakraPreviewGrid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.chakra-preview-item {
    cursor: pointer;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.chakra-preview-item:hover {
    transform: scale(1.1) translateY(-5px);
}

.chakra-preview-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.3);
    animation: chakra-pulse 2s ease-in-out infinite;
}

.chakra-preview-item:hover .chakra-preview-circle {
    box-shadow: 0 0 25px currentColor;
}

@keyframes chakra-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 0 15px 5px rgba(212, 175, 55, 0.15); }
}

.chakra-preview-number {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    color: inherit;
}

.chakra-preview-name {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
}

#chakraModalDetail {
    display: none;
    flex-direction: column;
    width: 100%;
    animation: fadeIn 0.4s ease-out;
}

.chakra-modal-content {
    background: linear-gradient(135deg, var(--navy), var(--indigo));
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 4px;
    max-width: 900px;
    margin: 0 auto;
    padding: 2.5rem;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.chakra-modal-content::-webkit-scrollbar {
    width: 8px;
}

.chakra-modal-content::-webkit-scrollbar-track {
    background: rgba(212, 175, 55, 0.05);
}

.chakra-modal-content::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 4px;
}

.chakra-modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.5);
}

.chakra-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.8rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.chakra-modal-close:hover {
    transform: scale(1.2);
    color: #FFD700;
}

.chakra-modal-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.chakra-modal-img {
    width: 260px;
    height: auto;
    border-radius: 4px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.chakra-modal-info h3 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.chakra-modal-info p {
    color: rgba(212, 175, 55, 0.85);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.chakra-modal-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.chakra-detail-box {
    background: rgba(212, 175, 55, 0.08);
    padding: 1.5rem;
    border-left: 4px solid var(--gold);
    border-radius: 2px;
    transition: all 0.3s;
}

.chakra-detail-box:hover {
    background: rgba(212, 175, 55, 0.12);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
}

.chakra-detail-box h4 {
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.chakra-detail-box p {
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.6;
    margin: 0;
}

.chakra-modal-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-chakra-consult,
.btn-chakra-close {
    flex: 1;
    min-width: 200px;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 2px;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 5;
    position: relative;
}

.btn-chakra-consult {
    background: linear-gradient(135deg, var(--gold), #E8C547);
    color: var(--navy);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-chakra-consult:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
}

.btn-chakra-consult:active {
    transform: translateY(-1px);
}

.btn-chakra-close {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-chakra-close:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.btn-chakra-close:active {
    transform: translateY(0);
}

/* ========== PORTAL CHAKRA DIRECTORY ========== */
.chakra-portal-directory {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.chakra-portal-card {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 1.5rem;
    border-radius: 2px;
    transition: all 0.4s;
}

.chakra-portal-card:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.12);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.12);
}

.chakra-portal-card img {
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 1rem;
}

.chakra-portal-card h4 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 1rem;
    margin: 1rem 0 0.3rem 0;
}

.chakra-portal-card p {
    font-size: 0.85rem;
    color: rgba(212, 175, 55, 0.8);
    margin-bottom: 0.5rem;
}

.chakra-portal-section {
    background: rgba(212, 175, 55, 0.05);
    padding: 1rem;
    border-left: 3px solid var(--gold);
    border-radius: 2px;
    margin: 0.8rem 0;
    font-size: 0.85rem;
}

.chakra-portal-section h5 {
    color: var(--gold);
    font-size: 0.8rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.chakra-portal-section p {
    font-size: 0.8rem;
    opacity: 0.85;
    margin: 0;
}

/* ========== SECTIONS ========== */
.section { padding: 80px 0; border-top: 1px solid rgba(212, 175, 55, 0.1); }
.section-title { font-family: 'Cinzel', serif; font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; letter-spacing: 2px; color: var(--gold); text-align: center; margin-bottom: 0.5rem; }
.section-title::after { content: ''; display: block; width: 60px; height: 1px; background: rgba(212, 175, 55, 0.4); margin: 1rem auto; }
.section-subtitle { text-align: center; font-size: 1rem; font-style: italic; color: rgba(212, 175, 55, 0.85); margin-bottom: 3rem; }

/* ========== ABOUT ========== */
.about { background: linear-gradient(135deg, rgba(12, 22, 49, 0.8), rgba(26, 45, 92, 0.6)); }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-img { border-radius: 4px; overflow: hidden; aspect-ratio: 1; background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1)); display: flex; align-items: center; justify-content: center; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-text h3 { font-family: 'Cinzel', serif; font-size: 1.5rem; color: var(--gold); margin-bottom: 1rem; }
.about-text p { margin-bottom: 1rem; opacity: 0.9; }

/* ========== HERITAGE ========== */
.heritage { background: linear-gradient(135deg, rgba(12, 22, 49, 0.9), rgba(26, 45, 92, 0.7)); }
.heritage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2.5rem; margin-top: 2rem; }
.heritage-card { background: rgba(26, 45, 92, 0.3); border: 1px solid rgba(212, 175, 55, 0.2); padding: 2.5rem 2rem; text-align: center; border-radius: 2px; transition: all 0.4s; }
.heritage-card:hover { border-color: var(--gold); transform: translateY(-8px); }
.heritage-icon { width: 120px; height: 120px; margin: 0 auto 1.5rem; animation: glow 4s ease-in-out infinite; display: flex; align-items: center; justify-content: center; }
.heritage-icon img { width: 100%; height: 100%; object-fit: contain; }
.heritage-card h3 { font-family: 'Cinzel', serif; color: var(--gold); margin-bottom: 1rem; font-size: 1.1rem; }
.heritage-card p { font-size: 0.95rem; opacity: 0.85; }

/* ========== SERVICES ========== */
.services { background: linear-gradient(135deg, rgba(26, 45, 92, 0.7), var(--indigo)); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; margin-top: 2rem; }
.service-card { background: rgba(212, 175, 55, 0.05); border: 1px solid rgba(212, 175, 55, 0.2); padding: 2rem; text-align: center; border-radius: 2px; transition: all 0.4s; }
.service-card:hover { background: rgba(212, 175, 55, 0.1); transform: translateY(-4px); border-color: var(--gold); }
.service-icon { width: 100px; height: 100px; margin-bottom: 1.5rem; animation: glow 4s ease-in-out infinite; display: flex; align-items: center; justify-content: center; }
.service-icon img { width: 100%; height: 100%; object-fit: contain; }
.service-card h3 { font-family: 'Cinzel', serif; color: var(--gold); margin-bottom: 0.8rem; font-size: 1.1rem; }
.service-card p { font-size: 0.9rem; opacity: 0.85; margin-bottom: 1rem; }
.service-price { font-family: 'Cinzel', serif; font-size: 0.95rem; color: rgba(212, 175, 55, 0.8); }

/* ========== CHAKRAS ========== */
.chakras { background: linear-gradient(135deg, var(--indigo), rgba(12, 22, 49, 0.9)); }
.chakra-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 2rem; }
.chakra-item { background: rgba(26, 45, 92, 0.3); border: 1px solid rgba(212, 175, 55, 0.2); border-radius: 2px; overflow: hidden; cursor: pointer; transition: all 0.4s; }
.chakra-item:hover { border-color: var(--gold); background: rgba(212, 175, 55, 0.08); }
.chakra-img { width: 100%; aspect-ratio: 1; background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1)); display: flex; align-items: center; justify-content: center; border-bottom: 1px solid rgba(212, 175, 55, 0.2); overflow: hidden; }
.chakra-img img { width: 100%; height: 100%; object-fit: cover; }
.chakra-content { padding: 1.5rem; }
.chakra-title { font-family: 'Cinzel', serif; font-size: 1.1rem; color: var(--gold); margin-bottom: 0.3rem; }
.chakra-sanskrit { font-family: 'Cormorant Garamond', serif; font-size: 0.9rem; font-style: italic; color: rgba(212, 175, 55, 0.7); margin-bottom: 1rem; }
.chakra-desc { font-size: 0.9rem; opacity: 0.85; line-height: 1.6; }

/* ========== TESTIMONIALS ========== */
.testimonials { background: linear-gradient(135deg, rgba(12, 22, 49, 0.9), rgba(26, 45, 92, 0.7)); }
.testimonial-card { background: rgba(212, 175, 55, 0.08); border: 1px solid rgba(212, 175, 55, 0.25); padding: 2.5rem; border-radius: 2px; max-width: 700px; margin: 2rem auto; }
.testimonial-header { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 1.5rem; }
.testimonial-avatar { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; border: 2px solid rgba(212, 175, 55, 0.4); flex-shrink: 0; background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.1)); display: flex; align-items: center; justify-content: center; }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-author h4 { font-family: 'Cinzel', serif; color: var(--gold); font-size: 1rem; }
.testimonial-author p { font-size: 0.85rem; color: rgba(212, 175, 55, 0.8); }
.testimonial-text { font-size: 1rem; line-height: 1.8; font-style: italic; }

/* ========== YANTRA ========== */
.yantra { background: linear-gradient(135deg, var(--indigo), rgba(12, 22, 49, 0.9)); }
.yantra-intro { max-width: 700px; margin: 0 auto 3rem; text-align: center; }
.yantra-card { background: rgba(212, 175, 55, 0.08); border: 1px solid rgba(212, 175, 55, 0.25); max-width: 650px; margin: 2rem auto; padding: 2.5rem; border-radius: 2px; }
.yantra-card h3 { font-family: 'Cinzel', serif; color: var(--gold); margin-bottom: 1.5rem; text-align: center; }
.yantra-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; }
.form-group label { color: var(--gold); font-family: 'Cinzel', serif; font-size: 0.85rem; margin-bottom: 0.7rem; text-transform: uppercase; letter-spacing: 1px; }
.form-group input { padding: 1rem 1.2rem; background: rgba(8, 13, 27, 0.6); border: 2px solid rgba(212, 175, 55, 0.3); color: var(--white); font-family: 'Lora', serif; border-radius: 2px; font-size: 1.1rem; transition: all 0.3s; }
.form-group input::placeholder { color: rgba(212, 175, 55, 0.5); }
.form-group input:focus { outline: none; border-color: var(--gold); background: rgba(8, 13, 27, 0.8); box-shadow: 0 0 15px rgba(212, 175, 55, 0.2); }

.btn-calculate { width: 100%; padding: 1.2rem; background: linear-gradient(135deg, var(--gold), #E8C547); color: var(--navy); border: none; font-family: 'Cinzel', serif; font-weight: 600; cursor: pointer; border-radius: 2px; font-size: 1rem; transition: all 0.3s; z-index: 5; position: relative; }
.btn-calculate:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3); }
.btn-calculate:active { transform: translateY(0); }

.yantra-results { display: none; text-align: center; }
.yantra-number { font-family: 'Cinzel', serif; font-size: 3.5rem; color: var(--gold); margin: 0.5rem 0; }
.yantra-name { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-style: italic; color: rgba(212, 175, 55, 0.85); }
.yantra-viz { width: 180px; height: 180px; margin: 2rem auto; border-radius: 50%; border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; background: rgba(212, 175, 55, 0.03); animation: glow 4s ease-in-out infinite; }
.yantra-desc { text-align: left; margin: 2rem 0; padding: 1.5rem; background: rgba(212, 175, 55, 0.05); border-left: 3px solid var(--gold); border-radius: 2px; font-size: 0.95rem; }
.btn-group { display: flex; gap: 1rem; flex-direction: column; margin-top: 2rem; }
.btn-consult { background: linear-gradient(135deg, var(--gold), #E8C547); color: var(--navy); padding: 1.2rem 2rem; border: none; border-radius: 2px; font-family: 'Cinzel', serif; font-weight: 600; cursor: pointer; width: 100%; transition: all 0.3s; z-index: 5; position: relative; }
.btn-consult:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3); }
.btn-consult:active { transform: translateY(0); }
.btn-reset { padding: 0.8rem; background: transparent; border: 2px solid var(--gold); color: var(--gold); font-family: 'Cinzel', serif; cursor: pointer; border-radius: 2px; width: 100%; transition: all 0.3s; z-index: 5; position: relative; }
.btn-reset:hover { background: rgba(212, 175, 55, 0.1); }
.btn-reset:active { transform: scale(0.98); }

/* ========== GALLERY ========== */
.gallery { background: linear-gradient(135deg, rgba(8, 13, 27, 0.9), var(--indigo)); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.gallery-item { aspect-ratio: 1; background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1)); border: 1px solid rgba(212, 175, 55, 0.15); border-radius: 2px; overflow: hidden; transition: all 0.4s; display: flex; align-items: center; justify-content: center; }
.gallery-item:hover { border-color: var(--gold); box-shadow: 0 0 20px rgba(212, 175, 55, 0.2); transform: scale(1.02); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* ========== CLOSING ========== */
.closing { background: linear-gradient(135deg, rgba(12, 22, 49, 0.95), var(--navy)); padding: 80px 0; text-align: center; }
.closing-quote { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-style: italic; color: var(--gold); margin-bottom: 2rem; }
.closing-text { font-size: 1rem; line-height: 1.8; opacity: 0.9; margin-bottom: 2.5rem; }
.closing-btn { background: linear-gradient(135deg, var(--gold), #E8C547); color: var(--navy); padding: 1.2rem 3rem; border: none; border-radius: 2px; font-family: 'Cinzel', serif; font-weight: 600; cursor: pointer; transition: all 0.3s; z-index: 5; position: relative; }
.closing-btn:hover { transform: translateY(-2px); }

/* ========== FOOTER ========== */
.footer { background: var(--navy); border-top: 1px solid rgba(212, 175, 55, 0.15); padding: 3rem 0; text-align: center; }
.footer-quote { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-style: italic; color: var(--gold); margin-bottom: 2rem; }

.footer-yantra {
    width: 100%;
    max-width: 400px;
    height: 200px;
    margin: 0 auto 2rem;
    display: block;
}

.mandala-left {
    animation: rotateMandalaLeft 45s linear infinite;
    transform-origin: 80px 100px;
}

.mandala-right {
    animation: rotateMandalaRight 45s linear infinite;
    transform-origin: 320px 100px;
}

@keyframes rotateMandalaLeft {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotateMandalaRight {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

.footer-credits {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.footer-credits a:hover {
    color: var(--gold) !important;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* ========== PORTAL STYLES ========== */
.portal-overlay { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(8, 13, 27, 0.95); 
    z-index: 200; 
    display: none; 
    align-items: center; 
    justify-content: center; 
    overflow-y: auto;
    padding: 2rem;
}

.portal-overlay.active { display: flex; }

.portal-container { 
    background: linear-gradient(135deg, var(--navy), var(--indigo)); 
    border: 1px solid rgba(212, 175, 55, 0.3); 
    border-radius: 4px; 
    width: 100%; 
    max-width: 900px; 
    max-height: 90vh; 
    overflow-y: auto; 
    padding: 2.5rem; 
    position: relative;
}

.portal-close { 
    position: absolute; 
    top: 20px; 
    right: 20px; 
    background: none; 
    border: none; 
    color: var(--gold); 
    font-size: 2rem; 
    cursor: pointer; 
    width: 40px; 
    height: 40px;
    z-index: 10;
}

.portal-login-box { 
    text-align: center; 
    max-width: 400px; 
    margin: 0 auto;
}

.portal-login-box h2 { 
    font-family: 'Cinzel', serif; 
    font-size: 2rem; 
    color: var(--gold); 
    margin-bottom: 1rem;
}

.portal-login-box p { 
    color: rgba(212, 175, 55, 0.85); 
    margin-bottom: 2rem;
}

.portal-input { 
    width: 100%; 
    padding: 1rem; 
    background: rgba(8, 13, 27, 0.6); 
    border: 2px solid rgba(212, 175, 55, 0.3); 
    color: var(--white); 
    font-family: 'Lora', serif; 
    border-radius: 2px; 
    font-size: 1rem; 
    margin-bottom: 1.5rem;
}

.portal-input:focus { 
    outline: none; 
    border-color: var(--gold); 
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.btn-portal-login { 
    width: 100%; 
    padding: 1rem; 
    background: linear-gradient(135deg, var(--gold), #E8C547); 
    color: var(--navy); 
    border: none; 
    font-family: 'Cinzel', serif; 
    font-weight: 600; 
    cursor: pointer; 
    border-radius: 2px; 
    transition: all 0.3s;
}

.btn-portal-login:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.portal-header { 
    border-bottom: 2px solid rgba(212, 175, 55, 0.2); 
    padding-bottom: 1.5rem; 
    margin-bottom: 2rem;
}

.portal-header h2 { 
    font-family: 'Cinzel', serif; 
    font-size: 1.8rem; 
    color: var(--gold); 
    margin-bottom: 1rem;
}

.portal-tabs { 
    display: flex; 
    gap: 1rem; 
    flex-wrap: wrap;
}

.portal-tab { 
    padding: 0.8rem 1.2rem; 
    background: transparent; 
    border: 2px solid rgba(212, 175, 55, 0.3); 
    color: var(--white); 
    font-family: 'Cinzel', serif; 
    font-size: 0.9rem; 
    cursor: pointer; 
    border-radius: 2px; 
    transition: all 0.3s;
}

.portal-tab:hover { 
    border-color: var(--gold); 
    color: var(--gold);
}

.portal-tab.active { 
    background: var(--gold); 
    border-color: var(--gold); 
    color: var(--navy);
}

.portal-tab-content { 
    display: none;
}

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

.portal-tab-content h3 { 
    font-family: 'Cinzel', serif; 
    font-size: 1.4rem; 
    color: var(--gold); 
    margin-bottom: 1.5rem;
}

.portal-section { 
    background: rgba(212, 175, 55, 0.05); 
    padding: 1.5rem; 
    margin-bottom: 1.5rem; 
    border-left: 3px solid var(--gold); 
    border-radius: 2px;
}

.portal-section h4 { 
    font-family: 'Cinzel', serif; 
    color: var(--gold); 
    margin-bottom: 0.8rem;
}

.portal-section p { 
    margin-bottom: 0.5rem; 
    opacity: 0.9;
}

.yantra-directory { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 1.5rem;
}

.yantra-portal-card { 
    background: rgba(212, 175, 55, 0.08); 
    border: 1px solid rgba(212, 175, 55, 0.2); 
    padding: 1.5rem; 
    border-radius: 2px;
}

.yantra-portal-header { 
    display: flex; 
    justify-content: space-between; 
    align-items: start; 
    margin-bottom: 1rem;
}

.yantra-portal-header h4 { 
    font-family: 'Cinzel', serif; 
    color: var(--gold); 
    flex: 1;
}

.yantra-chakra { 
    font-size: 0.8rem; 
    color: rgba(212, 175, 55, 0.7); 
    background: rgba(212, 175, 55, 0.1); 
    padding: 0.3rem 0.6rem; 
    border-radius: 2px;
}

.yantra-portal-body p { 
    font-size: 0.9rem; 
    margin-bottom: 0.5rem;
}

.pricing-table { 
    width: 100%; 
    border-collapse: collapse;
}

.pricing-table th { 
    background: rgba(212, 175, 55, 0.1); 
    border-bottom: 2px solid rgba(212, 175, 55, 0.3); 
    padding: 1rem; 
    text-align: left; 
    font-family: 'Cinzel', serif; 
    color: var(--gold);
}

.pricing-table td { 
    padding: 1rem; 
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.pricing-table tr:hover { 
    background: rgba(212, 175, 55, 0.05);
}

.offerings-list { 
    display: flex; 
    flex-direction: column; 
    gap: 1.5rem;
}

.offering-card { 
    background: rgba(212, 175, 55, 0.08); 
    border: 1px solid rgba(212, 175, 55, 0.2); 
    padding: 1.5rem; 
    border-radius: 2px;
}

.offering-card h4 { 
    font-family: 'Cinzel', serif; 
    color: var(--gold); 
    margin-bottom: 0.5rem;
}

.offering-card p { 
    margin-bottom: 0.8rem; 
    opacity: 0.9;
}

.offering-card strong { 
    color: var(--gold);
}

.protocol-content { 
    display: flex; 
    flex-direction: column; 
    gap: 2rem;
}

.protocol-step { 
    background: rgba(212, 175, 55, 0.08); 
    border-left: 4px solid var(--gold); 
    padding: 1.5rem; 
    border-radius: 2px;
}

.protocol-step h4 { 
    font-family: 'Cinzel', serif; 
    color: var(--gold); 
    margin-bottom: 1rem;
}

.protocol-step ul { 
    list-style: none; 
    padding-left: 1.5rem;
}

.protocol-step li { 
    margin-bottom: 0.6rem; 
    position: relative; 
    padding-left: 1rem;
}

.protocol-step li:before { 
    content: "▸"; 
    color: var(--gold); 
    position: absolute; 
    left: 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    #chakraPreviewGrid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.2rem;
    }
    
    .chakra-preview-circle {
        width: 85px;
        height: 85px;
    }
    
    .chakra-preview-number {
        font-size: 1.6rem;
    }
    
    .chakra-modal-img {
        width: 200px;
    }
}

@media (max-width: 768px) {
    #chakraExplorerSection {
        padding: 1.5rem 0;
    }
    
    .chakra-explorer-inner {
        padding: 0 16px;
    }
    
    .chakra-explorer-title h3 {
        font-size: 1.4rem;
    }
    
    #chakraPreviewGrid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .chakra-preview-circle {
        width: 70px;
        height: 70px;
    }
    
    .chakra-preview-number {
        font-size: 1.4rem;
    }
    
    .chakra-preview-name {
        font-size: 0.75rem;
    }
    
    .chakra-modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .chakra-modal-header {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .chakra-modal-img {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .chakra-modal-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .chakra-modal-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn-chakra-consult,
    .btn-chakra-close {
        width: 100%;
        min-width: unset;
    }
    
    .about-content { grid-template-columns: 1fr; }
    .about-img { height: auto; }
    .hero-title { font-size: 2.8rem; letter-spacing: 4px; }
    .hero-om { font-size: 3rem; }
    .btn { padding: 12px 28px; font-size: 0.9rem; }
    .btn-calculate, .btn-consult, .btn-reset { font-size: 0.95rem; padding: 1rem; }
    .menu-btn { width: 45px; height: 45px; }
    .portal-container { padding: 1.5rem; }
    .portal-tabs { gap: 0.5rem; }
    .portal-tab { padding: 0.6rem 1rem; font-size: 0.85rem; }
    .yantra-directory { grid-template-columns: 1fr; }
    .chakra-portal-directory { grid-template-columns: 1fr; }
    .hero::before { width: 400px; height: 400px; }
}

@media (max-width: 480px) {
    #chakraPreviewGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .chakra-preview-circle {
        width: 60px;
        height: 60px;
    }
    
    .chakra-preview-number {
        font-size: 1.2rem;
    }
}