:root {
    --cosmic-bg: #0B001A;
    --cosmic-purple-dark: #120029;
    --cosmic-purple-light: #2A085C;
    --gold: #D4AF37;
    --gold-light: #FFDF73;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-white: #ffffff;
    --text-muted: #b3a5c4;
}

body {
    background-color: var(--cosmic-bg);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .brand-font {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

/* Cosmic Background Gradient */
.cosmic-gradient {
    background: radial-gradient(circle at 50% 50%, var(--cosmic-purple-light) 0%, var(--cosmic-bg) 80%);
}

.cosmic-banner {
    background: linear-gradient(135deg, var(--cosmic-purple-dark) 0%, #1c003d 100%);
    border-bottom: 2px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.cosmic-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='1' fill='%23ffffff' fill-opacity='0.2'/%3E%3C/svg%3E");
    opacity: 0.8;
    pointer-events: none;
}

/* Glassmorphism elements */
.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.glass-panel:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 32px 0 rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

/* Golden buttons & highlights */
.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, #b89324 100%);
    color: #0b001a !important;
    font-weight: 700;
    border: none;
    border-radius: 30px;
    box-shadow: 0 4px 15px var(--gold-glow);
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    transform: scale(1.03);
}

.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold) !important;
    background: transparent;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: #0b001a !important;
    box-shadow: 0 4px 15px var(--gold-glow);
}

.text-gold {
    color: var(--gold-light) !important;
}

.glow-text {
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Navbar */
.navbar-astro {
    background: rgba(11, 0, 26, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
}

.nav-link {
    color: var(--text-white) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold-light) !important;
}

/* Zodiac circles */
.zodiac-wheel-btn {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: 2px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.75rem;
}

.zodiac-wheel-btn:hover, .zodiac-wheel-btn.active {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-light);
    transform: scale(1.1);
}

.zodiac-icon {
    font-size: 1.5rem;
    margin-bottom: 2px;
}

/* Testimonial slider */
.video-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 220px;
    background: #000;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b001a;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 0 15px var(--gold);
    transition: all 0.3s ease;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--gold-light);
}

/* Footer */
footer {
    background: #060010;
    border-top: 2px solid var(--gold);
}

/* Input Fields styling */
.form-control-astro {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-white) !important;
    border-radius: 10px;
    padding: 12px 20px;
}

.form-control-astro::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
    opacity: 1;
}

.form-control-astro:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
    outline: none;
}

select.form-control-astro option {
    background-color: var(--cosmic-purple-dark);
    color: var(--text-white);
}

.text-muted, .text-body-secondary {
    color: var(--text-muted) !important;
}

/* Kundali Chart Generator Styles */
.kundali-chart {
    border: 3px solid var(--gold);
    background: #14072b;
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
}

/* Custom alignment for dashboard cards */
.dashboard-card {
    border-left: 4px solid var(--gold) !important;
}

.badge-pending {
    background-color: #ffc107;
    color: #000;
}

.badge-confirmed {
    background-color: #0dcaf0;
    color: #000;
}

.badge-completed {
    background-color: #198754;
    color: #fff;
}

.badge-cancelled {
    background-color: #dc3545;
    color: #fff;
}

.hover-gold-link:hover {
    background-color: var(--cosmic-purple-light) !important;
    color: var(--gold-light) !important;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--gold-light) !important;
}

.bg-gold {
    background-color: var(--gold) !important;
    color: #0b001a !important;
}
