:root {
    /* Color Palette */
    --color-bg-pure: #FFFFFF;
    --color-bg-offwhite: #FAFAFA;
    --color-text-main: #111111;
    --color-text-muted: #555555;
    --color-gold-metallic: #D4AF37;
    --color-gold-light: #F3E5AB;
    --color-gold-dark: #AA8B2C;
    --color-gold-glow: rgba(212, 175, 55, 0.4);
    
    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Layout */
    --nav-height: 80px;
    --section-padding: 100px 0;
    --border-radius-card: 16px;
    --border-radius-btn: 30px;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: initial; /* Lenis handles smooth scroll */
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-pure);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

/* Background Pattern & Particles */
.fixed-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: radial-gradient(var(--color-gold-glow) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.1;
    z-index: -2;
    pointer-events: none;
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    background-color: var(--color-gold-metallic);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 10s infinite ease-in-out alternate;
}

@keyframes float {
    0% { transform: translateY(0) scale(1); opacity: 0.2; }
    100% { transform: translateY(-100px) scale(1.5); opacity: 0.5; }
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: var(--section-padding);
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.gold-divider {
    height: 2px;
    width: 60px;
    background: linear-gradient(90deg, var(--color-gold-light), var(--color-gold-metallic), var(--color-gold-dark));
    margin: 1.5rem 0;
    border-radius: 2px;
}

.gold-divider.center {
    margin: 1.5rem auto;
}

.thin-gold-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--color-gold-metallic), transparent);
    margin: 2rem 0;
    opacity: 0.5;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border-radius: var(--border-radius-btn);
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold-metallic));
    color: #fff;
    box-shadow: 0 4px 15px var(--color-gold-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--color-gold-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text-main);
    border: 1px solid var(--color-gold-metallic);
}

.btn-secondary:hover {
    background: var(--color-gold-glow);
    color: var(--color-text-main);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.glowing-btn {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.glowing-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}
.glowing-btn:hover::after {
    opacity: 0.3;
    animation: rotateGlow 3s linear infinite;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--border-radius-card);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    height: 100px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1400px;
        margin: 10px 10px 10px 10px;
    padding: 20px 20px 20px 20px;
}

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

.logo-img {
    height: 140px;
    width: auto;
    border-radius: 50%;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--color-gold-dark);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold-metallic);
    transition: var(--transition-smooth);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-gold-dark);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--color-text-main), var(--color-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
}

.glowing-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--color-gold-glow) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
}

.zodiac-wheel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: rotate 60s linear infinite;
}

.zodiac-wheel img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    mix-blend-mode: multiply;
    filter: sepia(1) hue-rotate(5deg) saturate(2);
}

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

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.float-icon {
    position: absolute;
    color: var(--color-gold-metallic);
    filter: drop-shadow(0 0 10px var(--color-gold-glow));
}

.float-1 { top: 10%; left: 10%; animation: floatItem 6s infinite ease-in-out alternate; }
.float-2 { top: 20%; right: 10%; animation: floatItem 7s infinite ease-in-out alternate-reverse; }
.float-3 { bottom: 10%; right: 20%; animation: floatItem 5s infinite ease-in-out alternate; }

@keyframes floatItem {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-20px) rotate(15deg); }
}

/* Split Layout Generic */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-layout.alternate .crystal-content {
    order: 1;
}

.split-layout.alternate .crystal-image-wrapper {
    order: 2;
}

/* About Section */
.about {
    background-color: var(--color-bg-offwhite);
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-card);
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-card);
    display: block;
    transition: transform 0.8s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

.image-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 50px rgba(212, 175, 55, 0.2);
    border-radius: var(--border-radius-card);
    pointer-events: none;
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-text-main);
}

.founder-name {
    font-size: 1.5rem;
    color: var(--color-gold-dark);
    margin-bottom: 1rem;
}

.about-text {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.expertise-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.expertise-grid span {
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-gold-dark);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Services Section */
.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius-card);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, transparent, rgba(212, 175, 55, 0.05));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05), 0 0 20px var(--color-gold-glow);
    border-color: rgba(212, 175, 55, 0.4);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    color: var(--color-gold-metallic);
    width: 32px;
    height: 32px;
    margin-bottom: 1rem;
}

.service-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Why Choose Us */
.why-us {
    background-color: var(--color-bg-offwhite);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: var(--border-radius-card);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border-left: 4px solid var(--color-gold-metallic);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.feature-icon {
    color: var(--color-gold-metallic);
    width: 28px;
    height: 28px;
}

.feature-card h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
}

/* Courses */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.course-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-smooth);
}

.course-item i {
    color: var(--color-gold-metallic);
}

.course-item:hover {
    border-color: var(--color-gold-metallic);
    background: rgba(212, 175, 55, 0.02);
}

/* Nirvaana Crystals */
.crystals {
    background: linear-gradient(180deg, var(--color-bg-offwhite) 0%, var(--color-bg-pure) 100%);
}

.crystal-subtitle {
    font-size: 1.3rem;
    color: var(--color-gold-dark);
    margin-bottom: 1.5rem;
}

.crystal-list {
    margin: 1.5rem 0;
}

.crystal-list li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 25px;
    color: var(--color-text-muted);
}

.crystal-list li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.9rem;
}

.crystal-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-card);
    transition: var(--transition-smooth);
}

.crystal-image-wrapper:hover .crystal-image {
    transform: scale(1.03);
    filter: brightness(1.1);
}

/* Testimonials */
.testimonials {
    background-color: var(--color-bg-offwhite);
}

.testimonial-carousel {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.testimonial-card {
    max-width: 600px;
    padding: 3rem;
    text-align: center;
}

.stars {
    margin-bottom: 1.5rem;
}

.gold-star {
    color: var(--color-gold-metallic);
    fill: var(--color-gold-metallic);
    width: 20px;
    height: 20px;
}

.review-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.client-name {
    font-weight: 600;
    color: var(--color-gold-dark);
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

/* FAQ */
.faq-accordion {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.faq-btn {
    width: 100%;
    padding: 1.5rem;
    background: #fff;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: var(--font-heading);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.faq-btn:hover {
    background: rgba(212, 175, 55, 0.05);
}

.faq-btn i {
    color: var(--color-gold-metallic);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-btn i {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    transition: max-height 0.4s ease;
}

.faq-content p {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-text-muted);
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--color-bg-pure);
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--color-gold-glow) 0%, transparent 60%);
    z-index: 0;
}

.cta-content-wrapper {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

/* Contact Section */
.contact {
    background-color: var(--color-bg-offwhite);
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
}

.contact-icon {
    color: var(--color-gold-metallic);
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.contact-card h4 {
    margin-bottom: 0.5rem;
}

.contact-card p a {
    color: var(--color-text-muted);
}

.contact-card p a:hover {
    color: var(--color-gold-dark);
}

.contact-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.map-wrapper {
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: var(--border-radius-card);
}

.map-placeholder {
    text-align: center;
    color: var(--color-text-muted);
}

.map-icon {
    width: 48px;
    height: 48px;
    color: rgba(212, 175, 55, 0.5);
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: #fff;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo .logo-img {
    height: 150px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--color-text-main);
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--color-gold-metallic);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--color-bg-offwhite);
    color: var(--color-gold-dark);
    transition: var(--transition-smooth);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.social-icons a:hover {
    background: var(--color-gold-metallic);
    color: #fff;
    transform: translateY(-3px);
}

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

.designed-with {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--color-gold-dark);
    margin-top: 0.5rem;
    display: inline-block;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title { font-size: 3rem; }
    .hero-container, .split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-content {
        text-align: center;
        order: 2;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-visual {
        order: 1;
    }
    .split-layout.alternate .crystal-content {
        order: 2;
    }
    .split-layout.alternate .crystal-image-wrapper {
        order: 1;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .nav-links, .nav-btn {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    /* Mobile Menu Implementation via JS classes */
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        align-items: center;
    }
    
    .hero-title { font-size: 2.5rem; }
    
    .visual-wrapper {
        width: 300px;
        height: 300px;
    }
    
    .glowing-orb {
        width: 220px;
        height: 220px;
    }
    
    .section-title { font-size: 2rem; }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }
    .visual-wrapper {
        width: 250px;
        height: 250px;
    }
    .expertise-grid {
        justify-content: center;
    }
}
