:root {
    --primary-gold: #FFD700;
    --primary-orange: #FFA500;
    --deep-purple: #301934;
    --text-light: #f5f5f5;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: #0f0f0f;
    /* Fallback */
    color: var(--text-light);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Backgrounds */
#starsCanvas,
#coinsCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

#starsCanvas {
    z-index: -1;
}

/* Header Info Styles */
.header-info {
    text-align: left;
}

.header-info .logo {
    display: block;
    margin-bottom: 5px;
}

.header-titles {
    font-size: 0.85rem;
    color: #ddd;
    font-weight: 300;
    letter-spacing: 0.5px;
}

#coinsCanvas {
    z-index: 9999;
    /* On top of everything or behind? Let's try heavily transparent or behind content but in front of bg */
    z-index: 0;
    /* Behind glass cards (z-index of glass-nav is 1000) */
}

.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/bg.jpg') no-repeat center center/cover;
    opacity: 0.3;
    /* Adjust opacity to make text readable */
    z-index: -2;
    filter: contrast(1.1) brightness(0.8);
}

/* Glassmorphism Utilities */
.glass-nav,
.glass-card,
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 15px;
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-radius: 0 0 15px 15px;
    border-top: none;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-container {
    position: relative;
    display: inline-block;
}

.logo-img {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-gold);
}

.scanner-icon-link {
    display: flex;
    align-items: center;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.nav-icon {
    margin-right: 8px;
    /* Space between icon and text */
}

.scanner-btn-icon {
    height: 40px;
    width: 40px;
    border-radius: 8px;
    /* Slightly rounded square for the card icon look */
    border: 2px solid var(--primary-gold);
    object-fit: cover;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.scanner-icon-link:hover {
    transform: scale(1.1);
}

.scanner-icon-link:hover .scanner-btn-icon {
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}



.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-gold);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    padding: 3rem;
    margin-top: 60px;
    /* Offset nav */
    background: rgba(0, 0, 0, 0.3);
    /* Slightly darker for readability */
}

h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-gold), #fff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.chakra-container {
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.chakra-img {
    width: 200px;
    /* Adjust size as needed */
    height: auto;
    border-radius: 50%;
    /* Circle if it fits, or rounded rect */
    box-shadow: 0 0 30px var(--primary-gold);
    animation: pulseGlow 4s infinite alternate;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

@keyframes pulseGlow {
    from {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        transform: scale(1);
    }

    to {
        box-shadow: 0 0 50px rgba(255, 215, 0, 0.6);
        transform: scale(1.05);
    }
}

/* Sparkling Effect */
.chakra-container::before,
.chakra-container::after,
.logo-container::before,
.logo-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 140%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.8;
}

.chakra-container::before,
.logo-container::before {
    background-image:
        radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.9) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.8) 2px, transparent 2px),
        radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.9) 1px, transparent 1px),
        radial-gradient(circle at 90% 90%, rgba(255, 215, 0, 0.8) 2px, transparent 2px),
        radial-gradient(circle at 50% 5%, white 1.5px, transparent 1.5px),
        radial-gradient(circle at 5% 50%, gold 1.5px, transparent 1.5px),
        /* NEW SPARKLES */
        radial-gradient(circle at 15% 15%, white 1px, transparent 1px),
        radial-gradient(circle at 85% 85%, gold 1px, transparent 1px),
        radial-gradient(circle at 25% 75%, white 1.5px, transparent 1.5px),
        radial-gradient(circle at 75% 25%, gold 1.5px, transparent 1.5px),
        radial-gradient(circle at 50% 95%, white 1px, transparent 1px),
        radial-gradient(circle at 95% 50%, gold 1px, transparent 1px),
        radial-gradient(circle at 10% 40%, white 1px, transparent 1px),
        radial-gradient(circle at 40% 10%, gold 1px, transparent 1px),
        radial-gradient(circle at 60% 90%, white 1px, transparent 1px),
        radial-gradient(circle at 90% 60%, gold 1px, transparent 1px),
        radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.8) 1px, transparent 1px),
        radial-gradient(circle at 65% 65%, rgba(255, 215, 0, 0.8) 1.5px, transparent 1.5px),
        radial-gradient(circle at 5% 90%, white 1px, transparent 1px),
        radial-gradient(circle at 90% 5%, gold 1px, transparent 1px);
    animation: sparkleTwinkle 3s infinite ease-in-out alternate;
}

.chakra-container::after,
.logo-container::after {
    background-image:
        radial-gradient(circle at 30% 90%, rgba(255, 255, 255, 0.9) 1.5px, transparent 1.5px),
        radial-gradient(circle at 70% 5%, rgba(255, 215, 0, 0.8) 2px, transparent 2px),
        radial-gradient(circle at 95% 40%, white 1px, transparent 1px),
        radial-gradient(circle at 40% 95%, gold 1px, transparent 1px),
        /* NEW SPARKLES */
        radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.9) 1px, transparent 1px),
        radial-gradient(circle at 90% 90%, rgba(255, 215, 0, 0.8) 2px, transparent 2px),
        radial-gradient(circle at 20% 80%, white 1.5px, transparent 1.5px),
        radial-gradient(circle at 80% 20%, gold 1.5px, transparent 1.5px),
        radial-gradient(circle at 50% 10%, white 1px, transparent 1px),
        radial-gradient(circle at 60% 50%, gold 1px, transparent 1px),
        radial-gradient(circle at 15% 60%, white 1px, transparent 1px),
        radial-gradient(circle at 60% 15%, gold 1px, transparent 1px),
        radial-gradient(circle at 45% 85%, white 1px, transparent 1px),
        radial-gradient(circle at 85% 45%, gold 1px, transparent 1px),
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.8) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255, 215, 0, 0.8) 1.5px, transparent 1.5px),
        radial-gradient(circle at 5% 25%, white 1px, transparent 1px),
        radial-gradient(circle at 25% 5%, gold 1px, transparent 1px);
    animation: sparkleTwinkle 2.5s infinite ease-in-out alternate-reverse;
}

@keyframes sparkleTwinkle {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.6;
    }
}

.tagline {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin: 1rem 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    padding: 0.5rem;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.subtitle {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.badge {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--primary-gold);
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.badge:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.2);
    color: #fff;
    text-shadow: 0 0 5px var(--primary-gold);
}

.badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.badge:hover::before {
    left: 100%;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, var(--primary-gold), var(--primary-orange));
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 165, 0, 0.4);
}

/* Content Sections */
.content-section {
    padding: 5rem 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-gold);
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s;
}

.about-card:hover {
    transform: translateY(-10px);
}

.icon-gold {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

/* Services */
.service-row {
    margin-bottom: 2rem;
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.service-row h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.feature-list {
    list-style: none;
    margin-top: 1rem;
}

.feature-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: '◇';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
}

/* Tools Section */
.tools-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.tool-card {
    width: 300px;
    padding: 2.5rem;
    text-align: center;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
}

.tool-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-orange);
}

.tool-btn {
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.tool-btn:hover {
    background: var(--primary-gold);
    color: #000;
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    border-color: var(--primary-gold);
}

/* Form */
.contact-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
}

.contact-sub {
    text-align: center;
    margin-bottom: 2rem;
    color: #ccc;
}

/* Contact Columns Layout */
.contact-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.scanner-column {
    flex: 1;
    display: flex;
    justify-content: center;
}

.form-column {
    flex: 1.5;
}

/* Scanner Card */
.scanner-card {
    padding: 3rem 1.5rem;
    /* Added generous top/bottom spacing */
    text-align: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.qr-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.qr-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scanner-img {
    width: 200px;
    height: 200px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
}

.scanner-img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
}

.scanner-text {
    margin-top: 1rem;
    color: #fff;
    font-weight: 400;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

/* Date Time Row */
.form-row {
    display: flex;
    gap: 1rem;
}

.half-width {
    flex: 1;
}

.input-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-gold);
    font-size: 0.9rem;
    margin-left: 5px;
}

/* Date Time Input Styling */
input[type="date"],
input[type="time"] {
    color-scheme: dark;
    /* Allow calendar dropdown to be dark mode if supported */
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-columns {
        flex-direction: column;
    }

    .contact-wrapper {
        padding: 1.5rem;
    }
}

input,
select,
textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 8px;
    font-family: var(--font-body);
}

/* Fix for Select Dropdown readability */
select option {
    background-color: #1a1a1a;
    /* Dark background */
    color: #fff;
    /* White Text */
    padding: 10px;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary-gold);
    border: none;
    border-radius: 8px;
    color: #000;
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #e6c200;
}

footer {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.8);
    font-size: 0.9rem;
    color: #888;
}

/* Animations */
.fade-in {
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.slide-up {
    animation: slideUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modal */
/* Innovative Modal Design */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* Prevent scrolling during open */
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    /* Stronger blur */
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    /* For 3D effects */
}

/* Modal Content / Card */
.modal-content {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.8));
    border: 1px solid rgba(255, 215, 0, 0.5);
    width: 90%;
    max-width: 900px;
    /* Wider for layout */
    padding: 3rem;
    position: relative;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.15),
        inset 0 0 20px rgba(255, 215, 0, 0.05);

    /* Animation - 3D Flip Open */
    animation: modal3DOpen 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    transform-style: preserve-3d;
    transform: rotateX(90deg) scale(0.5);
    /* Start state */
    opacity: 0;
}

@keyframes modal3DOpen {
    0% {
        opacity: 0;
        transform: rotateX(-30deg) scale(0.5) translateY(100px);
    }

    100% {
        opacity: 1;
        transform: rotateX(0deg) scale(1) translateY(0);
    }
}

/* Close Button - Floating & Glowing */
.close-modal {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--primary-gold);
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 0 15px var(--primary-gold);
    transition: all 0.3s ease;
    z-index: 10;
}

.close-modal:hover {
    transform: rotate(90deg) scale(1.1);
    background: #fff;
    color: var(--primary-orange);
    box-shadow: 0 0 25px #fff;
}

/* Inner Layout of Modal */
.healer-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
    text-align: left;
}

.healer-text {
    flex: 1;
}

.healer-intro {
    font-size: 1.2rem;
    font-style: italic;
    color: #fff;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--primary-gold);
    padding-left: 1rem;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.1), transparent);
}

.healer-list {
    list-style: none;
}

.healer-list li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: slideInRight 0.5s ease forwards;
}

/* Stagger list animations */
.healer-list li:nth-child(1) {
    animation-delay: 0.3s;
}

.healer-list li:nth-child(2) {
    animation-delay: 0.4s;
}

.healer-list li:nth-child(3) {
    animation-delay: 0.5s;
}

.healer-list li:nth-child(4) {
    animation-delay: 0.6s;
}

.healer-list li:nth-child(5) {
    animation-delay: 0.7s;
}

.healer-list li:nth-child(6) {
    animation-delay: 0.8s;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.healer-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.healer-image-container {
    flex: 1;
    position: relative;
}

.mind-img {
    width: 100%;
    max-width: 350px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.5s;
}

.healer-image-container:hover .mind-img {
    transform: scale(1.05) rotate(2deg);
}

/* Mobile Responsive for Modal */
/* Mobile Responsive Styles */
@media (max-width: 768px) {

    /* Navbar Adjustment */
    .glass-nav {
        padding: 1rem 1.5rem;
    }

    /* Modal Mobile Adjustments */
    .healer-layout {
        flex-direction: column-reverse;
        gap: 1.5rem;
    }

    .close-modal {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }

    .modal-content {
        padding: 1.5rem;
        width: 95%;
    }

    .healer-intro {
        font-size: 1rem;
    }

    .healer-title {
        font-size: 1.8rem;
    }

    /* Typography Checks */
    .logo {
        font-size: 1.2rem;
    }

    h1 {
        font-size: 2rem;
    }

    /* Helper Classes */
    .desktop-only {
        display: none;
    }

    .hamburger {
        display: block;
    }

    /* Mobile Menu Overlay */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        z-index: 1000;
        display: flex;
        gap: 2.5rem;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.5s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-links.active li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-links.active li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-links.active li:nth-child(5) {
        transition-delay: 0.5s;
    }

    .nav-links.active li:nth-child(6) {
        transition-delay: 0.6s;
    }
}

/* Animated Tagline Styles */
.animated-tagline {
    border: none;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

    /* Golden Gradient Text Effect */
    background: linear-gradient(to right,
            #bf953f 0%,
            #fcf6ba 20%,
            #b38728 40%,
            #fbf5b7 60%,
            #aa771c 80%,
            #bf953f 100%);
    background-size: 200% auto;

    /* Text Clip */
    color: transparent;
    /* Make text transparent so background shows through */
    -webkit-background-clip: text;
    background-clip: text;

    animation: shineText 4s linear infinite;
    padding: 1rem 0;
    filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.3));

    /* Ensure we override previous box styling */
    box-shadow: none;
}

@keyframes shineText {
    to {
        background-position: 200% center;
    }
}

/* =========================================
   Innovative Vastu Feature Styles
   ========================================= */
.vastu-feature {
    background: linear-gradient(135deg, rgba(30, 10, 40, 0.8), rgba(0, 0, 0, 0.9)),
        url('assets/bg.jpg') center/cover no-repeat;
    background-blend-mode: overlay;
    padding: 3rem;
    margin: 3rem 0;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

/* Decorative background circle */
.vastu-feature::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.vastu-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.vastu-header h3 {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.spin-icon {
    animation: spinSlow 10s linear infinite;
    display: inline-block;
    color: var(--primary-orange);
}

@keyframes spinSlow {
    to {
        transform: rotate(360deg);
    }
}

.vastu-quote {
    font-size: 1.1rem;
    color: #ffd700;
    font-style: italic;
    opacity: 0.8;
}

.vastu-intro-block {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0;
    position: relative;
    z-index: 1;
}

/* Grid for 4 Main Benefit Cards */
.vastu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.vastu-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vastu-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
    transition: transform 0.4s;
}

.vastu-card:hover .card-icon {
    transform: scale(1.2) rotate(10deg);
}

.vastu-card h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.vastu-card p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.5;
}

/* Details Section */
.vastu-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.detail-block h4 {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    font-size: 1rem;
    color: #ddd;
}

.benefit-list li i {
    color: var(--primary-orange);
    margin-right: 15px;
    margin-top: 5px;
    font-size: 1.2rem;
}

.highlight-bg {
    background: rgba(255, 215, 0, 0.05);
    /* Subtle gold tint */
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-gold);
}

/* Mobile Responsiveness for Vastu Feature */
@media (max-width: 768px) {
    .vastu-feature {
        padding: 1.5rem;
    }

    .vastu-header h3 {
        font-size: 1.8rem;
    }

    .vastu-details {
        grid-template-columns: 1fr;
    }
}

/* Numerology Specific Theme Variation */
.numerology-feature {
    background: linear-gradient(135deg, rgba(10, 20, 40, 0.9), rgba(0, 0, 0, 0.95)),
        url('assets/bg.jpg') center/cover no-repeat;
    border-color: rgba(100, 200, 255, 0.2);
    /* Slight blue hint for variation */
}

.numerology-feature .vastu-quote {
    color: #add8e6;
    /* Light Blue quote */
}

.numerology-feature .vastu-card:hover {
    border-color: #add8e6;
    box-shadow: 0 10px 30px rgba(173, 216, 230, 0.15);
}

/* Holistic Healing Specific Theme Variation */
.healing-feature {
    background: linear-gradient(135deg, rgba(10, 30, 20, 0.9), rgba(0, 0, 0, 0.95)),
        url('assets/bg.jpg') center/cover no-repeat;
    border-color: rgba(100, 255, 100, 0.2);
    /* Nature/Green hint */
}

.healing-feature .vastu-quote {
    color: #98fb98;
    /* Pale Green quote */
}

.healing-feature .vastu-card:hover {
    border-color: #98fb98;
    box-shadow: 0 10px 30px rgba(152, 251, 152, 0.15);
}

.card-list {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
    padding-left: 0;
}

.card-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #ddd;
}

.card-list li::before {
    content: '🔹';
    position: absolute;
    left: 0;
    font-size: 0.8rem;
    color: var(--primary-gold);
}