:root {
    /* Mysta-Inspired Color Palette */
    --primary-color: #1a1a3e;
    /* Dark Navy Blue */
    --primary-dark: #0f0f2a;
    --primary-light: #2d2d5e;
    --secondary-color: #D4AF37;
    /* Elegant Gold */
    --secondary-dark: #B8941F;
    --secondary-light: #FFD700;
    --accent-color: #CD853F;
    /* Warm Orange/Brown */
    --accent-dark: #A0522D;
    --accent-light: #DEB887;

    /* Celestial Gradients - Mysta Style */
    --gradient-cosmic: linear-gradient(135deg, #1a1a3e 0%, #2d2d5e 50%, #1a1a3e 100%);
    --gradient-celestial: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #D4AF37 100%);
    --gradient-mystical: linear-gradient(135deg, #CD853F 0%, #DEB887 50%, #CD853F 100%);
    --gradient-starlight: linear-gradient(135deg, #1a1a3e 0%, #2d2d5e 25%, #1a1a3e 50%, #2d2d5e 75%, #1a1a3e 100%);

    /* Background Colors - Light Beige Theme */
    --bg-color: #FAF0E6;
    /* Light Beige */
    --bg-alt: #FFFFFF;
    --bg-dark: #1a1a3e;
    /* Dark Navy for dark sections */
    --text-color: #2D3436;
    --text-light: #636E72;
    --text-dark: #FFFFFF;
    /* White text for dark backgrounds */
    --white: #FFFFFF;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 5rem;

    /* Typography */
    --font-family: 'Outfit', 'Inter', sans-serif;
    --font-size-sm: 0.9rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2.5rem;
    --font-size-3xl: 3.5rem;

    /* Shadows & Radius */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 25px rgba(26, 26, 64, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;

    /* Transitions */
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    background-image: linear-gradient(rgba(250, 240, 230, 0.95), rgba(250, 240, 230, 0.95)), url('assets/bg-content-section-astro.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
}

h1 {
    font-size: var(--font-size-3xl);
    color: var(--text-color);
    font-weight: 800;
}

.hero-slide h1 {
    color: var(--text-dark);
}

h2 {
    font-size: var(--font-size-2xl);
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: var(--radius-full);
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
}

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

ul {
    list-style: none;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-2xl) 0;
}

.section-alt {
    background-color: var(--bg-alt);
    background-image: url('assets/bg-content-section-astro.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: repeat;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(250, 240, 230, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-image {
    height: 60px;
    width: auto;
    display: block;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: var(--primary-color);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .logo-image {
        height: 40px;
    }

    .logo-text {
        font-size: 1.1rem;
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-link {
    font-weight: 500;
    color: var(--text-color);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

/* Mystical Astrological Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(205, 133, 63, 0.4), 0 0 30px rgba(205, 133, 63, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.btn-primary::after {
    content: '✨';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    animation: sparkle 2s ease-in-out infinite;
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(205, 133, 63, 0.6), 0 0 50px rgba(205, 133, 63, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4), 0 0 30px rgba(212, 175, 55, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
}

.btn-secondary::after {
    content: '⭐';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    animation: rotate-star 3s linear infinite;
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6), 0 0 50px rgba(212, 175, 55, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    position: relative;
}

.btn-outline::after {
    content: '🌙';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
}

.btn-outline:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(205, 133, 63, 0.4), 0 0 40px rgba(205, 133, 63, 0.3);
}

.hero-slide .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.hero-slide .btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 0;
    background: var(--bg-dark);
    /* background-image: linear-gradient(rgba(26, 26, 62, 0.6), rgba(26, 26, 62, 0.6)), url('assets/bg-content-section-astro.png'); */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: repeat;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(205, 133, 63, 0.1) 50%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    animation: cosmic-glow 4s ease-in-out infinite;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide:nth-child(1) {
    background-image: linear-gradient(rgba(26, 26, 62, 0.65), rgba(26, 26, 62, 0.65)), url('assets/bg-content-section-astro.png');
    background-repeat: repeat;
}

.hero-slide:nth-child(2) {
    background-image: linear-gradient(rgba(26, 26, 62, 0.65), rgba(26, 26, 62, 0.65)), url('assets/bg-content-section-astro.png');
    background-repeat: repeat;
}

.hero-slide:nth-child(3) {
    background-image: linear-gradient(rgba(26, 26, 62, 0.65), rgba(26, 26, 62, 0.65)), url('assets/bg-content-section-astro.png');
    background-repeat: repeat;
}

/* Maha Avtar Baba Section */
.maha-avtar-section {
    background: var(--bg-color);
    background-image: url('assets/bg-content-section-astro.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: repeat;
    position: relative;
    overflow: hidden;
}

.maha-avtar-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(250, 240, 230, 0.95) 0%, rgba(250, 240, 230, 0.9) 100%);
    z-index: 0;
}

.maha-avtar-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-2xl);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.maha-avtar-image-container {
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.image-frame {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid var(--secondary-color);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5), 
                0 0 60px rgba(212, 175, 55, 0.3),
                inset 0 0 30px rgba(212, 175, 55, 0.2);
    animation: float 4s ease-in-out infinite;
    background: var(--bg-dark);
}

.maha-avtar-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

.image-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, rgba(205, 133, 63, 0.2) 50%, transparent 70%);
    animation: pulse-glow 3s ease-in-out infinite;
    z-index: -1;
}

.maha-avtar-text {
    flex: 1 1 500px;
    text-align: left;
}

.maha-avtar-text .section-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.maha-avtar-text h2 {
    font-size: var(--font-size-2xl);
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
}

.maha-avtar-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: var(--radius-full);
}

.maha-avtar-subtitle {
    font-size: var(--font-size-lg);
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.maha-avtar-description {
    font-size: var(--font-size-base);
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.maha-avtar-description strong {
    color: var(--primary-color);
    font-weight: 700;
}

.maha-avtar-cta {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
}

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

@media (max-width: 768px) {
    .maha-avtar-content {
        flex-direction: column;
        gap: var(--spacing-xl);
        text-align: center;
    }

    .maha-avtar-image-container {
        max-width: 300px;
    }

    .maha-avtar-text {
        text-align: center;
        flex: 1 1 auto;
    }

    .maha-avtar-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .maha-avtar-cta {
        justify-content: center;
    }

    .maha-avtar-section {
        background-attachment: scroll;
    }
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(205, 133, 63, 0.1) 50%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    animation: cosmic-glow 4s ease-in-out infinite;
}

.hero-slide:nth-child(2)::before {
    background: radial-gradient(circle, rgba(205, 133, 63, 0.15) 0%, rgba(212, 175, 55, 0.1) 50%, rgba(0, 0, 0, 0) 70%);
    animation-delay: 1s;
}

.hero-slide:nth-child(3)::before {
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(205, 133, 63, 0.1) 50%, rgba(0, 0, 0, 0) 70%);
    animation-delay: 2s;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

.hero-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    animation: float 3s ease-in-out infinite;
    display: inline-block;
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-md);
    color: var(--secondary-color);
    font-weight: 600;
}

.hero-slide .hero-subtitle {
    color: var(--secondary-color);
}

.hero-description {
    font-size: var(--font-size-base);
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
    color: var(--text-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-slide .hero-description {
    color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
}

/* Carousel Navigation Buttons */
.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(212, 175, 55, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--spacing-sm);
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.indicator.active {
    background: var(--secondary-color);
    width: 30px;
    border-radius: var(--radius-full);
    border-color: var(--secondary-color);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.indicator:hover {
    background: var(--secondary-light);
    transform: scale(1.2);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.card {
    background: var(--bg-alt);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(205, 133, 63, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.service-icon img {
    width: 50%;
    height: auto;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

/* Zodiac */
.zodiac-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.zodiac-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
}

.zodiac-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(205, 133, 63, 0.05));
}

.zodiac-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xs);
}

.zodiac-name {
    font-weight: 700;
    color: var(--primary-color);
}

.zodiac-dates {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.testimonial-card {
    position: relative;
}

.testimonial-quote {
    font-size: 4rem;
    color: var(--secondary-color);
    opacity: 0.2;
    position: absolute;
    top: 0;
    left: var(--spacing-md);
    font-family: serif;
}

.testimonial-text {
    position: relative;
    z-index: 1;
    font-style: italic;
    margin-bottom: var(--spacing-md);
}

.testimonial-author {
    font-weight: 700;
    color: var(--accent-color);
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: var(--spacing-xl) auto 0;
}

.faq-item {
    margin-bottom: var(--spacing-sm);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: var(--spacing-md);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer-content {
    padding: 0 var(--spacing-md) var(--spacing-md);
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

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

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

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

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(205, 133, 63, 0.1));
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    margin: 0 auto var(--spacing-sm);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    background-image: linear-gradient(rgba(26, 26, 62, 0.8), rgba(26, 26, 62, 0.8)), url('assets/bg-dark.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: repeat;
    color: #e0e0e0;
    padding: var(--spacing-2xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer h3 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
    font-size: 1.2rem;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #888;
}

/* Mystical Animations */
@keyframes sparkle {

    0%,
    100% {
        opacity: 0.8;
        transform: translateY(-50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.2);
    }
}

@keyframes rotate-star {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }

    100% {
        transform: translateY(-50%) rotate(360deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

@keyframes cosmic-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3), 0 0 40px rgba(205, 133, 63, 0.2);
        opacity: 0.8;
    }

    50% {
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.5), 0 0 60px rgba(205, 133, 63, 0.4);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-color);
        flex-direction: column;
        padding: var(--spacing-xl);
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero {
        min-height: 80vh;
        background-attachment: scroll;
    }

    .hero-carousel {
        height: 80vh;
    }

    .hero-slide {
        padding: 100px 0 50px;
    }

    .section-alt {
        background-attachment: scroll;
    }

    .footer {
        background-attachment: scroll;
    }

    .hero-icon {
        font-size: 3rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 0.95rem;
        padding: 0 var(--spacing-md);
    }

    .carousel-prev,
    .carousel-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }

    .carousel-indicators {
        bottom: 20px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .indicator.active {
        width: 25px;
    }

    .btn::after {
        display: none;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}