/* ========================================
   RAJALAKSHMI ASTRO GURU - PREMIUM CSS
   ======================================== */

:root {
    --primary-dark: #0f0419;
    --secondary-dark: #1a0933;
    --tertiary-dark: #2d1b4e;
    --gold: #d4af37;
    --gold-light: #e8c547;
    --gold-dark: #aa8c2a;
    --purple: #9d4edd;
    --purple-light: #c77dff;
    --white: #ffffff;
    --text-light: #e8e8e8;
    --text-muted: #b0b0b0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.3);
    --shadow-purple: 0 0 30px rgba(157, 78, 221, 0.2);
}

/* ========================================
   GLOBAL STYLES
   ======================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 50%, var(--tertiary-dark) 100%);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><style>.star {fill: rgba(212, 175, 55, 0.03);}</style></defs><circle class="star" cx="100" cy="50" r="1.5"/><circle class="star" cx="300" cy="100" r="1"/><circle class="star" cx="500" cy="150" r="1.5"/><circle class="star" cx="700" cy="80" r="1"/><circle class="star" cx="900" cy="120" r="1.5"/><circle class="star" cx="1100" cy="70" r="1"/></svg>') repeat;
    pointer-events: none;
    z-index: 1;
}

/* ========================================
   CUSTOM SCROLLBAR
   ======================================== */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

p {
    font-size: 1.05rem;
    color: var(--text-light);
}

.gold-text {
    color: var(--gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--primary-dark);
    border: none;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    color: var(--primary-dark);
    text-decoration: none;
}

.btn-gold:active {
    transform: translateY(-1px);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--primary-dark);
    box-shadow: var(--shadow-glow);
    transform: translateY(-3px);
}

/* ========================================
   NAVBAR
   ======================================== */

.navbar-custom {
    background: rgba(15, 4, 25, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    padding: 1rem 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar-custom.scrolled {
    padding: 0.5rem 0;
    background: rgba(15, 4, 25, 0.85);
}

.brand-logo {
    height: 50px;
    width: auto;
    margin-right: 15px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.brand-text {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    position: relative;
    margin: 0 10px;
    transition: var(--transition);
}

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

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

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

.navbar-toggler {
    border-color: var(--gold) !important;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 50%, var(--tertiary-dark) 100%);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(157, 78, 221, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
    z-index: 2;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.stars::before,
.stars::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #d4af37, rgba(212, 175, 55, 0)),
        radial-gradient(2px 2px at 60px 70px, #e8c547, rgba(232, 197, 71, 0)),
        radial-gradient(1px 1px at 50px 50px, var(--gold), rgba(212, 175, 55, 0)),
        radial-gradient(1px 1px at 130px 80px, #e8c547, rgba(232, 197, 71, 0)),
        radial-gradient(2px 2px at 90px 10px, var(--gold), rgba(212, 175, 55, 0));
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: twinkle 5s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

.floating-particles::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    filter: blur(40px);
}

.floating-particles::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
    filter: blur(50px);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-20px) translateX(10px); }
    50% { transform: translateY(-40px) translateX(-10px); }
    75% { transform: translateY(-20px) translateX(10px); }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-icon {
    font-size: 80px;
    color: var(--gold);
    margin-bottom: 30px;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
        transform: scale(1);
    }
    50% { 
        text-shadow: 0 0 40px rgba(212, 175, 55, 0.8);
        transform: scale(1.05);
    }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    letter-spacing: 2px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    min-width: 200px;
    font-size: 1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s ease-in-out infinite;
    z-index: 10;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.scroll-indicator span {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--gold);
    border-radius: 13px;
    position: relative;
    padding: 5px 0;
}

.wheel {
    width: 2px;
    height: 6px;
    background: var(--gold);
    border-radius: 1px;
    position: absolute;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    animation: scroll 1.5s ease-in-out infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

/* ========================================
   GLASS CARD EFFECT
   ======================================== */

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

/* ========================================
   SECTION STYLES
   ======================================== */

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

/* Why Choose Us Section */

.why-choose-section {
    background: linear-gradient(135deg, rgba(45, 27, 78, 0.5) 0%, rgba(26, 9, 51, 0.5) 100%);
}

.premium-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-icon {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(157, 78, 221, 0.1));
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.glass-card:hover .card-icon {
    transform: scale(1.1) rotateY(10deg);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.card-title {
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.card-description {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* Approach Section */

.approach-section {
    background: linear-gradient(135deg, rgba(26, 9, 51, 0.3) 0%, rgba(45, 27, 78, 0.3) 100%);
}

.approach-image img {
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.2));
    transition: var(--transition);
}

.approach-image:hover img {
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.4));
    transform: scale(1.02);
}

.approach-point {
    display: flex;
    gap: 20px;
    transition: var(--transition);
}

.point-icon {
    font-size: 2rem;
    color: var(--gold);
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(157, 78, 221, 0.1));
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.approach-point:hover .point-icon {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    transform: scale(1.1);
}

.point-content h5 {
    color: var(--gold);
    margin-bottom: 5px;
    font-family: 'Cinzel', serif;
}

.point-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* Services Section */

.services-section {
    background: linear-gradient(135deg, rgba(45, 27, 78, 0.3) 0%, rgba(26, 9, 51, 0.3) 100%);
}

.service-card {
    position: relative;
    height: 100%;
}

.service-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 15px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotateY(20deg);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
}

.service-title {
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.service-description {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-meta {
    margin: 15px 0;
    padding: 10px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.duration {
    color: var(--gold);
    font-size: 0.95rem;
    font-weight: 500;
}

.service-card .btn {
    margin-top: auto;
}

/* About Section */

.about-section {
    background: linear-gradient(135deg, rgba(26, 9, 51, 0.3) 0%, rgba(45, 27, 78, 0.3) 100%);
}

.about-image img {
    border: 2px solid rgba(212, 175, 55, 0.2);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.2));
    transition: var(--transition);
}

.about-image:hover img {
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.4));
    transform: scale(1.02);
}

.lang-tabs {
    border-bottom-color: rgba(212, 175, 55, 0.2) !important;
}

.lang-tabs .nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.lang-tabs .nav-link.active {
    color: var(--gold) !important;
    background: transparent !important;
    border-bottom-color: var(--gold) !important;
}

.lang-tabs .nav-link:hover {
    color: var(--gold) !important;
}

.about-text {
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.stats-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    padding: 30px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.stat-item {
    flex: 1;
    min-width: 120px;
    text-align: center;
}

.stat-number {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials Section */

.testimonials-section {
    background: linear-gradient(135deg, rgba(45, 27, 78, 0.3) 0%, rgba(26, 9, 51, 0.3) 100%);
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.testimonials-wrapper {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
}

.testimonials-wrapper::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    position: relative;
}

@media (max-width: 992px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        flex: 0 0 100%;
    }
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-avatar {
    font-size: 3rem;
    color: var(--gold);
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    color: var(--white);
    margin: 0 0 5px 0;
    font-family: 'Cinzel', serif;
}

.testimonial-city {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.testimonial-service {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0;
}

.testimonial-rating {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testimonial-rating i {
    margin-right: 3px;
}

.testimonial-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.testimonial-quote {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 2rem;
    color: rgba(212, 175, 55, 0.1);
    font-family: 'Cinzel', serif;
}

.carousel-controls {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.carousel-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: transparent;
    color: var(--gold);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-btn:hover {
    background: var(--gold);
    color: var(--primary-dark);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* CTA Section */

.cta-section {
    position: relative;
    padding: 80px 20px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--tertiary-dark) 0%, var(--secondary-dark) 100%);
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(157, 78, 221, 0.1) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 20px;
    color: var(--white);
}

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

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 180px;
}

/* Booking Section */

.booking-section {
    background: linear-gradient(135deg, rgba(26, 9, 51, 0.3) 0%, rgba(45, 27, 78, 0.3) 100%);
}

.booking-form-container {
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.15);
}

.form-label {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.form-control-gold,
.form-select-gold {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.2);
    color: var(--text-light);
    transition: var(--transition);
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
}

.form-control-gold:focus,
.form-select-gold:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    color: var(--text-light);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.form-control-gold::placeholder {
    color: var(--text-muted);
}

.form-select-gold option {
    background: var(--secondary-dark);
    color: var(--text-light);
}

/* Footer */

.footer-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--text-muted);
}

.footer-brand {
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.footer-text {
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-title {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Cinzel', serif;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact i {
    color: var(--gold);
    font-size: 1.1rem;
}

.footer-contact a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-divider {
    height: 1px;
    background: rgba(212, 175, 55, 0.1);
    margin: 30px 0;
}

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

.social-links {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    color: var(--gold);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--primary-dark);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* ========================================
   FLOATING ELEMENTS
   ======================================== */

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #20c35a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 999;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 992px) {
    .navbar-collapse {
        background: rgba(15, 4, 25, 0.95);
        padding: 20px;
        border-radius: 10px;
        margin-top: 10px;
    }

    .nav-link {
        margin: 5px 0;
    }

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

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

    .stats-container {
        justify-content: space-around;
        gap: 20px;
    }

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

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

@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
        margin-top: 70px;
    }

    .scroll-indicator {
        display: none;
    }

    .glass-card {
        padding: 20px;
    }

    .approach-point {
        margin-bottom: 20px;
    }

    .floating-whatsapp {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 80px;
    }
}

@media (max-width: 576px) {
    :root {
        --shadow-glow: 0 0 15px rgba(212, 175, 55, 0.2);
    }

    .brand-logo {
        height: 40px;
    }

    .brand-text {
        font-size: 1.2rem;
    }

    .navbar {
        padding: 0.8rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .btn-gold,
    .btn-outline-gold {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .glass-card {
        padding: 15px;
    }

    .card-icon,
    .point-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .booking-form-container {
        padding: 20px !important;
    }

    .hero-buttons {
        gap: 10px;
    }

    .hero-buttons .btn {
        font-size: 0.85rem;
        padding: 10px 15px;
        min-width: auto;
        flex: 1;
    }

    .floating-whatsapp {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1.3rem;
    }

    .scroll-to-top {
        display: none;
    }

    .footer-copyright {
        text-align: center;
        margin-top: 15px;
    }

    .social-links {
        justify-content: center;
        margin-top: 15px;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.aos-init {
    opacity: 1 !important;
    visibility: visible !important;
}

[data-aos] {
    opacity: 1 !important;
    visibility: visible !important;
}

.aos-animate {
    animation: fadeInUp 0.8s ease forwards;
}

/* Success Message */

.success-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(15, 4, 25, 0.95);
    border: 2px solid var(--gold);
    border-radius: 15px;
    padding: 40px;
    max-width: 400px;
    text-align: center;
    z-index: 10000;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.3);
    animation: popupSlideIn 0.3s ease forwards;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.success-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
    animation: scaleIn 0.5s ease forwards;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.success-popup h3 {
    color: var(--gold);
    margin-bottom: 10px;
}

.success-popup p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ========================================
   BOOKING FORM ENHANCEMENTS
   ======================================== */

/* Pricing Display */
.pricing-display {
    transition: var(--transition);
    position: relative;
}

.pricing-display:hover {
    background: rgba(212, 175, 55, 0.15) !important;
    border-color: var(--gold) !important;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-check {
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
}

.form-check:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

.form-check-input {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    cursor: pointer;
    accent-color: var(--gold);
    transition: var(--transition);
}

.form-check-input:checked {
    background-color: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.form-check-input:hover {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.form-check-label {
    margin-bottom: 0;
    cursor: pointer;
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition);
    margin-left: 8px;
}

.form-check-label i {
    color: var(--gold);
    margin-right: 8px;
    font-size: 1rem;
}

.form-check:hover .form-check-label {
    color: var(--gold);
}

/* Procedure Info */
.procedure-info {
    transition: var(--transition);
    border-radius: 10px;
}

.procedure-info:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(157, 78, 221, 0.1) 100%) !important;
    border-color: var(--gold) !important;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.procedure-info h5 {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.procedure-info ol {
    list-style-position: inside;
}

.procedure-info li {
    margin-bottom: 12px;
    transition: var(--transition);
}

.procedure-info li strong {
    color: var(--gold);
}

.procedure-info li:hover {
    color: var(--gold);
    transform: translateX(5px);
}

/* Responsive Payment Methods */
@media (max-width: 768px) {
    .payment-methods {
        gap: 12px;
    }

    .form-check {
        padding: 10px 12px;
        font-size: 0.95rem;
    }

    .form-check-input {
        width: 18px;
        height: 18px;
    }

    .pricing-display h4 {
        font-size: 1.5rem;
    }

    .procedure-info {
        padding: 15px !important;
    }

    .procedure-info h5 {
        font-size: 1rem;
    }

    .procedure-info ol {
        padding-left: 15px;
    }

    .procedure-info li {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}
