/* ============================================================
   NIRMALA ASTROLOGY - Main Stylesheet
   Color Theme: Deep Red #B22222, Gold #FFD700, Dark Space #0a0a1a
   Font: Poppins
   ============================================================ */

/* ==================== ROOT VARIABLES ==================== */
:root {
    --primary: #B22222;
    --primary-dark: #8B1A1A;
    --primary-light: #DC3545;
    --gold: #FFD700;
    --gold-dark: #DAA520;
    --gold-light: #FFE44D;
    --dark-bg: #0a0a1a;
    --dark-bg-2: #0f0f2a;
    --dark-card: rgba(20, 10, 40, 0.85);
    --glass-bg: rgba(15, 15, 42, 0.7);
    --glass-border: rgba(255, 215, 0, 0.15);
    --text-light: #ffffff;
    --text-muted: #b0a8c0;
    --text-cream: #e0d5c7;
    --cream: #F5DEB3;
    --shadow-glow: 0 0 30px rgba(178, 34, 34, 0.15);
    --shadow-gold: 0 0 20px rgba(255, 215, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 16px;
    --border-radius-sm: 8px;
}

/* ==================== GLOBAL RESET ==================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}
::selection { background: var(--gold); color: var(--dark-bg); }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark-bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; }

/* ==================== UTILITY CLASSES ==================== */
.text-gold { color: var(--gold) !important; }
.text-cream { color: var(--cream) !important; }
.text-light-muted { color: var(--text-muted) !important; }
.bg-gold { background-color: var(--gold) !important; }
.border-gold-subtle { border-color: rgba(255, 215, 0, 0.1) !important; }
.section-dark { background: var(--dark-bg); }
.section-darker { background: var(--dark-bg-2); }

/* ==================== BUTTONS ==================== */
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark-bg) !important;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    padding: 10px 28px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--dark-bg) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}
.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold) !important;
    border-radius: 50px;
    padding: 10px 28px;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    background: transparent;
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--dark-bg) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}
.btn-red {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff !important;
    border: none;
    border-radius: 50px;
    padding: 10px 28px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-red:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(178, 34, 34, 0.4);
}

/* ==================== GLASSMORPHISM ==================== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-glow);
    transition: var(--transition);
}
.glass-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: var(--shadow-glow), var(--shadow-gold);
}
.glass-input {
    background: rgba(10, 10, 26, 0.6) !important;
    border: 1px solid rgba(255, 215, 0, 0.2) !important;
    color: #fff !important;
    border-radius: var(--border-radius-sm);
    padding: 10px 16px;
    transition: var(--transition);
}
.glass-input:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.15) !important;
    background: rgba(10, 10, 26, 0.8) !important;
    outline: none;
}
.glass-input::placeholder { color: var(--text-muted) !important; }
.glass-input-group {
    background: rgba(10, 10, 26, 0.6);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-right: none;
    color: var(--gold);
    border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
}

/* ==================== NAVBAR ==================== */
#mainNavbar {
    background: rgba(10, 10, 26, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    padding: 8px 0;
    transition: var(--transition);
}
#mainNavbar.scrolled {
    padding: 4px 0;
    background: rgba(10, 10, 26, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.brand-logo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: contain;
}
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.brand-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.5px;
}
.brand-tagline {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}
#mainNavbar .nav-link {
    color: var(--text-cream) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 14px !important;
    position: relative;
    transition: var(--transition);
}
#mainNavbar .nav-link:hover,
#mainNavbar .nav-link.active {
    color: var(--gold) !important;
}
#mainNavbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}
#mainNavbar .nav-link:hover::after,
#mainNavbar .nav-link.active::after {
    width: 60%;
}
#mainNavbar .dropdown-menu {
    background: rgba(15, 15, 42, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 12px;
    padding: 8px;
    margin-top: 8px;
}
#mainNavbar .dropdown-item {
    color: var(--text-cream);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.85rem;
    transition: var(--transition);
}
#mainNavbar .dropdown-item:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold);
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a0a2e 30%, #0a0a1a 60%, #1a0a0a 100%);
    overflow: hidden;
}
.hero-particles {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10,10,26,0.7) 70%);
    z-index: 1;
}
.hero-content { position: relative; }
.hero-badge {
    background: rgba(255, 215, 0, 0.15);
    color: var(--gold);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 215, 0, 0.3);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.2);
}
.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
}
.hero-stats h3 {
    font-size: 2rem;
    font-weight: 700;
}
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}
.hero-scroll-indicator a {
    color: var(--gold);
    font-size: 1.5rem;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Floating Planets in Hero */
.hero-planet {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    z-index: 1;
    animation: float-planet 20s infinite linear;
}
.hero-planet-1 {
    width: 120px; height: 120px;
    background: radial-gradient(circle at 30% 30%, #B22222, #8B1A1A);
    top: 15%; right: 10%;
    animation-duration: 25s;
}
.hero-planet-2 {
    width: 60px; height: 60px;
    background: radial-gradient(circle at 30% 30%, #FFD700, #DAA520);
    bottom: 25%; left: 8%;
    animation-duration: 18s;
}
.hero-planet-3 {
    width: 80px; height: 80px;
    background: radial-gradient(circle at 30% 30%, #4B0082, #2a004a);
    top: 60%; right: 20%;
    animation-duration: 22s;
}
@keyframes float-planet {
    0% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(0) rotate(180deg); }
    75% { transform: translateY(20px) rotate(270deg); }
    100% { transform: translateY(0) rotate(360deg); }
}

/* ==================== SECTION HEADING ==================== */
.section-heading { margin-bottom: 40px; }
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}
.heading-line {
    text-align: center;
    margin-top: 15px;
}
.heading-line span {
    display: inline-block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold), var(--primary));
    border-radius: 2px;
}

/* ==================== ZODIAC CARDS ==================== */
.zodiac-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 24px 20px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.zodiac-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.05), transparent);
    transition: left 0.5s;
}
.zodiac-card:hover::before { left: 100%; }
.zodiac-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15), 0 0 20px rgba(178, 34, 34, 0.2);
}
.zodiac-icon-wrapper {
    width: 70px; height: 70px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, rgba(178,34,34,0.2), rgba(255,215,0,0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
}
.zodiac-icon { font-size: 1.8rem; color: var(--gold); }
.zodiac-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}
.zodiac-hindi {
    font-size: 0.8rem;
    color: var(--gold-dark);
    margin-bottom: 8px;
}
.zodiac-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.4;
}
.btn-know-more {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==================== SERVICE CARDS ==================== */
.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 30px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.12);
}
.service-icon {
    width: 70px; height: 70px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    transition: var(--transition);
}
.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
}
.service-card h5 { color: #fff; font-weight: 600; margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 0.9rem; }
.service-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==================== FEATURE CARDS ==================== */
.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    transition: var(--transition);
}
.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}
.feature-icon {
    width: 65px; height: 65px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(178,34,34,0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold);
}
.feature-card h5 { color: #fff; font-weight: 600; margin-bottom: 8px; font-size: 1rem; }
.feature-card p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 0; }

/* ==================== INFO CARDS ==================== */
.info-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 24px;
    transition: var(--transition);
}
.info-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.1);
}
.info-card i { color: var(--gold); font-size: 1.8rem; margin-bottom: 10px; display: block; }
.info-card h5 { color: #fff; font-weight: 600; font-size: 0.95rem; margin-bottom: 8px; }
.info-card p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 0; }

/* ==================== ASTRO INFO CARDS ==================== */
.astro-info-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    transition: var(--transition);
}
.astro-info-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}
.info-icon-large { font-size: 2.5rem; color: var(--gold); margin-bottom: 15px; }
.astro-info-card h5 { color: #fff; font-weight: 600; margin-bottom: 10px; }
.astro-info-card p { color: var(--text-muted); font-size: 0.85rem; }

/* ==================== ARTICLE CARDS ==================== */
.article-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}
.article-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}
.article-img-wrapper {
    height: 200px;
    overflow: hidden;
}
.article-img-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(178,34,34,0.3), rgba(255,215,0,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--gold);
    transition: var(--transition);
}
.article-card:hover .article-img-placeholder {
    transform: scale(1.05);
}
.article-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.article-title { color: #fff; font-weight: 600; margin: 8px 0; font-size: 1.05rem; }
.article-desc { color: var(--text-muted); font-size: 0.85rem; }

/* ==================== TESTIMONIALS ==================== */
.carousel-control-icon {
    width: 45px; height: 45px;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    transition: var(--transition);
}
.carousel-control-prev, .carousel-control-next {
    width: auto; opacity: 1; top: 50%; transform: translateY(-50%);
    bottom: auto;
}
.carousel-control-prev { left: -20px; }
.carousel-control-next { right: -20px; }
.testimonial-text { font-style: italic; line-height: 1.8; }
.testimonial-stars { font-size: 1.1rem; }
.author-avatar { font-size: 2.5rem; color: var(--gold); margin-bottom: 8px; }

/* ==================== FAQ ACCORDION ==================== */
.accordion-button {
    background: transparent !important;
    color: var(--text-cream) !important;
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: none !important;
    padding: 16px 20px;
}
.accordion-button:not(.collapsed) {
    color: var(--gold) !important;
    background: rgba(255, 215, 0, 0.05) !important;
}
.accordion-button::after { filter: invert(1) brightness(0.8); }
.accordion-button:not(.collapsed)::after { filter: invert(72%) sepia(68%) saturate(500%) hue-rotate(6deg) brightness(100%); }
.accordion-body { padding: 0 20px 16px; line-height: 1.8; }

/* ==================== CTA SECTION ==================== */
.cta-section {
    background: linear-gradient(135deg, rgba(178,34,34,0.3) 0%, rgba(10,10,26,0.95) 50%, rgba(255,215,0,0.1) 100%);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFD700' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}
.cta-section .container { position: relative; z-index: 1; }

/* ==================== FOOTER ==================== */
.site-footer {
    background: linear-gradient(180deg, var(--dark-bg-2), #050510);
    position: relative;
    padding-top: 20px;
}
.footer-logo { width: 60px; height: 60px; border-radius: 50%; }
.footer-heading {
    color: var(--gold);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 2px;
    background: var(--gold);
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.footer-contact li i { color: var(--gold); margin-top: 4px; min-width: 16px; }
.social-links { display: flex; gap: 10px; }
.social-icon {
    width: 40px; height: 40px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: var(--transition);
    font-size: 0.9rem;
}
.social-icon:hover {
    background: var(--gold);
    color: var(--dark-bg);
    transform: translateY(-3px);
}
.footer-divider { border-color: rgba(255, 215, 0, 0.1); }

/* ==================== PLACE SEARCH DROPDOWN ==================== */
.place-dropdown {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(15, 15, 42, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
    max-height: 250px;
    overflow-y: auto;
    z-index: 1050;
    display: none;
}
.place-dropdown.show { display: block; }
.place-item {
    padding: 10px 16px;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 215, 0, 0.05);
}
.place-item:hover { background: rgba(255, 215, 0, 0.1); }
.place-item-name { color: #fff; font-weight: 500; font-size: 0.9rem; }
.place-item-detail { color: var(--text-muted); font-size: 0.8rem; }

/* ==================== HOROSCOPE CARD ==================== */
.horoscope-card { border-left: 4px solid var(--gold); }
.horoscope-icon-large {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(178,34,34,0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* ==================== ZODIAC DETAIL PAGE ==================== */
.zodiac-detail-icon-wrapper {
    width: 120px; height: 120px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(178,34,34,0.2), rgba(255,215,0,0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 215, 0, 0.3);
    animation: pulse-glow 3s infinite;
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.2); }
    50% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.4); }
}
.zodiac-list-sidebar .list-group-item {
    background: transparent;
    color: var(--text-cream);
    font-size: 0.85rem;
    padding: 8px 12px;
}
.zodiac-list-sidebar .list-group-item:hover,
.zodiac-list-sidebar .list-group-item.active {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.2);
}

/* ==================== TOAST NOTIFICATIONS ==================== */
.toast {
    background: rgba(15, 15, 42, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    color: #fff;
}
.toast-success { border-left: 4px solid #28a745; }
.toast-error { border-left: 4px solid #dc3545; }

/* ==================== FORM STYLES ==================== */
.form-check-input:checked {
    background-color: var(--gold);
    border-color: var(--gold);
}
.form-label { font-size: 0.85rem; font-weight: 500; }
.validation-summary-errors { font-size: 0.85rem; }
.field-validation-error { font-size: 0.8rem; }

/* ==================== LOADING SPINNER ==================== */
.spinner-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 10, 26, 0.7);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
}
.spinner-circle {
    width: 50px; height: 50px;
    border: 4px solid transparent;
    border-top-color: var(--gold);
    border-right-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* ==================== STARS ANIMATION ==================== */
.stars {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    overflow: hidden;
}
.star {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    animation: twinkle var(--duration) infinite;
    opacity: 0;
}
@keyframes twinkle {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: var(--max-opacity); transform: scale(1); }
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1199px) {
    .hero-title { font-size: 3rem; }
}
@media (max-width: 991px) {
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1rem; }
    .section-title { font-size: 1.8rem; }
    .carousel-control-prev { left: 0; }
    .carousel-control-next { right: 0; }
    #mainNavbar .navbar-collapse {
        background: rgba(10, 10, 26, 0.98);
        border-radius: 12px;
        padding: 16px;
        margin-top: 10px;
        border: 1px solid rgba(255, 215, 0, 0.15);
    }
}
@media (max-width: 767px) {
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 0.9rem; }
    .hero-stats h3 { font-size: 1.4rem; }
    .section-title { font-size: 1.5rem; }
    .brand-tagline { display: none; }
    .hero-buttons .btn { display: block; width: 100%; margin-bottom: 10px; }
    .hero-planet { display: none; }
    .cta-section h2 { font-size: 1.5rem; }
}
@media (max-width: 575px) {
    .hero-title { font-size: 1.6rem; }
    .hero-badge { font-size: 0.7rem; padding: 4px 14px; }
    .section-title { font-size: 1.3rem; }
    .glass-card { padding: 20px 16px !important; }
    .btn-gold, .btn-outline-gold { font-size: 0.75rem; padding: 8px 18px; }
}