/* --- Variables & Reset --- */
:root {
    --gold: #D4AF37;
    --gold-gradient: linear-gradient(to right, #E5C35D, #B38B26);
    --purple-deep: #612278;
    --purple-dark: #3a104b;
    --cream-bg: #FFF8E7;
    --text-dark: #2A1A1A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--cream-bg);
    color: var(--text-dark);
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, transparent 100%);
}

.logo {
    color: #fff;
    font-family: 'Cinzel Decorative', cursive;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gold-text { color: var(--gold); }

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.nav-links a:hover { color: var(--gold); }
.divider { color: var(--gold); margin: 0 10px; }

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slider-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%; z-index: -1;
}

.slide-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
    z-index: 1;
}

.slide {
    position: absolute;
    width: 100%; height: 100%;
    background-size: cover; background-position: center;
    opacity: 0; animation: zoomLoop 18s infinite;
}

.slide1 { background-image: url('https://i.pinimg.com/1200x/06/48/90/0648900f03ca9da684f9fc1ef7d11772.jpg'); animation-delay: 0s; }
.slide2 { background-image: url('https://pbs.twimg.com/media/DkH377EUwAEIrQH?format=jpg&name=large'); animation-delay:6s;}
.slide3 { background-image: url('https://i.pinimg.com/736x/14/1a/b9/141ab924bf99b570df4d835c51670d33.jpg'); animation-delay: 12s; }

@keyframes zoomLoop {
    0% { opacity: 0; transform: scale(1); }
    8% { opacity: 1; } 33% { opacity: 1; }
    41% { opacity: 0; transform: scale(1.1); }
    100% { opacity: 0; transform: scale(1); }
}

/* --- Hero Content --- */
.hero-content {
    position: relative; z-index: 2;
    width: 90%; max-width: 1200px;
    display: flex; justify-content: space-between; align-items: center;
}

.hero-text { color: white; max-width: 500px; }
.sanskrit-vibe { font-family: 'Cinzel Decorative', cursive; font-size: 3.5rem; color: var(--gold); margin-bottom: 10px; }
.hero-text h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 15px; }

.scroll-indicator {
    margin-top: 50px; display: flex; align-items: center; gap: 15px;
    font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; opacity: 0.8;
}
.scroll-indicator .line { width: 60px; height: 1px; background: var(--gold); }

/* --- PREMIUM PURPLE FORM STYLE (Kankanam Look) --- */
.form-wrapper { perspective: 1000px; }

.form-card.purple-theme {
    background: linear-gradient(135deg, #611C75, #4a1458); /* Deep Purple Gradient */
    padding: 40px 35px;
    width: 400px;
    border-radius: 40px; /* High Border Radius */
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.1);
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
}

.infinity-icon {
    font-size: 2.5rem; color: var(--gold); margin-bottom: 5px; font-weight: 300; line-height: 1;
}

.gold-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.input-group { margin-bottom: 15px; text-align: left; }

.gold-label {
    display: block;
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 6px;
    text-transform: uppercase;
    font-family: 'Cinzel', serif;
}

.pill-input {
    width: 100%;
    padding: 12px 20px;
    border-radius: 50px; /* Pill Shape */
    background-color: rgba(0, 0, 0, 0.25); /* Dark transparent bg */
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.95rem;
    outline: none;
    transition: 0.3s;
}

.pill-input:focus {
    border-color: var(--gold);
    background-color: rgba(0, 0, 0, 0.4);
}

/* Dropdown specific */
.pill-input option { background-color: #4a1458; color: white; }

/* Split Mobile Input */
.split-input { display: flex; gap: 10px; }
.pill-input.code { width: 70px; text-align: center; }

/* Gold Button */
.gold-btn {
    width: 100%;
    padding: 15px;
    border-radius: 50px;
    border: none;
    background: var(--gold-gradient);
    color: #3e124a; /* Dark text on gold */
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.2s;
}

.gold-btn:hover { transform: scale(1.03); }

.light-text { color: rgba(255,255,255,0.6); font-size: 0.75rem; margin-top: 20px; }
.gold-link { color: var(--gold); text-decoration: none; }

/* --- Info Section --- */
.info-section { background-color: var(--cream-bg); padding: 100px 20px; text-align: center; }
.container { max-width: 1200px; margin: 0 auto; }
.section-title { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--purple-deep); }
.section-subtitle { font-family: 'Playfair Display', serif;  color: black; margin-bottom: 20px; }

.features-grid { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.feature-card {
    background: #fff; padding: 40px; width: 300px; border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-top: 3px solid var(--gold);
    transition: transform 0.3s;
}
.feature-card:hover { transform: translateY(-10px); }
.icon { font-size: 2.5rem; margin-bottom: 20px; }

/* Responsive */
@media (max-width: 900px) {
    .hero-content { flex-direction: column; text-align: center; gap: 40px; margin-top: 80px; }
    .hero-text { max-width: 100%; }
    .scroll-indicator { justify-content: center; margin-top: 30px; }
    .form-card.purple-theme { width: 100%; max-width: 350px; }
}
/* --- ASSISTED SERVICE (Royal Concierge) --- */
.concierge-section {
    padding: 100px 20px;
    background-color: #fff; /* Clean white to contrast with cream/purple */
}

.concierge-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.concierge-content { flex: 1; }

.badge-pill {
    display: inline-block;
    background: var(--purple-deep);
    color: #fff;
    font-size: 0.7rem;
    padding: 5px 15px;
    border-radius: 20px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 700;
}

.gold-heading {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.sub-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.concierge-list { list-style: none; margin-bottom: 40px; }
.concierge-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.gold-check {
    color: var(--gold);
    font-size: 1.5rem;
    line-height: 1;
}

.list-text strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--purple-dark);
    margin-bottom: 4px;
}
.list-text span { font-size: 0.9rem; color: #777; }

.btn-outline-gold {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid var(--gold);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: #fff;
}

/* Image Frame Styling */
.concierge-image { flex: 1; display: flex; justify-content: flex-end; }
.image-frame {
    position: relative;
    width: 400px;
    height: 500px;
}
.image-frame img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 200px 200px 0 0; /* Arch shape */
    position: relative;
    z-index: 2;
}
.decorative-border {
    position: absolute;
    top: 20px; right: -20px;
    width: 100%; height: 100%;
    border: 2px solid var(--gold);
    border-radius: 200px 200px 0 0;
    z-index: 1;
}

/* --- ASTRO SECTION (Deep Purple) --- */
.astro-section {
    background-color: var(--purple-dark);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    color: #fff;
}

/* Starry Background Effect */
.astro-bg-pattern {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(#ffffff 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.1;
    pointer-events: none;
}

.astro-grid {
    display: flex;
    align-items: center;
    gap: 80px;
}

.astro-visual { flex: 1; position: relative; }

.astro-img {
    width: 100%;
    max-width: 400px;
    border-radius: 50%;
    border: 10px solid rgba(255,255,255,0.05);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.2); /* Gold glow */
}

.astro-content { flex: 1; }

.sanskrit-title {
    font-family: 'Cinzel Decorative', cursive;
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.modern-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 25px;
    line-height: 1.1;
}

.astro-desc {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.astro-features {
    display: flex; gap: 30px; margin-bottom: 40px;
}

.af-item {
    text-align: center;
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 10px;
    min-width: 100px;
    border: 1px solid rgba(255,255,255,0.1);
}
.af-icon { font-size: 1.8rem; margin-bottom: 10px; display: block; }
.af-item span { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); }

/* Responsive adjustments */
@media (max-width: 900px) {
    .concierge-wrapper, .astro-grid { flex-direction: column; text-align: center; }
    .concierge-image { justify-content: center; margin-top: 40px; }
    .concierge-list li { flex-direction: column; gap: 10px; }
    .decorative-border { display: none; } /* Simplify on mobile */
    .astro-grid { flex-direction: column-reverse; } /* Image on top for astro? or bottom? Let's keep content first on mobile usually, but here visual is nice */
}
/* --- PREMIUM STATS SECTION --- */
.stats-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

/* Optional: Subtle background pattern */
.stats-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(#D4AF37 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.1;
    pointer-events: none;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-card {
    background: #fff;
    padding: 40px 30px;
    width: 300px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08); /* Soft shadow */
    border: 1px solid rgba(212, 175, 55, 0.2); /* Faint gold border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
}

.stat-card:hover {
    transform: translateY(-10px); /* Lifts up on hover */
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.25); /* Gold glow shadow */
    border-color: var(--gold);
}

.icon-box {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--gold);
    /* Create a gold circle behind icon */
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    transition: 0.3s;
}

.stat-card:hover .icon-box {
    background: var(--gold-gradient);
    color: #fff;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    /* Gradient Text */
    background: linear-gradient(45deg, #2A1A1A, #612278);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-desc {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .stats-section { padding: 50px 20px; }
    .stat-card { width: 100%; margin-bottom: 20px; }
}
/* --- TESTIMONIALS CSS --- */
.testimonials-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.testimonial-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

/* IMPORTANT: Slide Visibility Logic */
.testimonial-slide {
    display: none; /* Hide all slides by default */
    animation: fadeIn 0.6s ease;
}

.testimonial-slide.active-slide {
    display: block !important; /* Force show the active one */
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Card Styling */
.testimonial-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
    min-height: 250px;
}

.t-content { flex: 1; }
.quote-icon { font-size: 2rem; color: #D4AF37; display: block; margin-bottom: 10px; }
.t-text { font-size: 1.1rem; color: #444; font-style: italic; line-height: 1.6; }
.t-author h4 { color: #612278; margin-top: 15px; margin-bottom: 2px; }
.t-image img { width: 150px; height: 150px; object-fit: cover; border-radius: 20px; }


/* Buttons */
.nav-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: #fff; border: none; width: 45px; height: 45px;
    border-radius: 50%; box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    color: #612278; font-size: 1.2rem; cursor: pointer; z-index: 10;
}
.nav-btn:hover { background: #D4AF37; color: #fff; }
.prev-btn { left: -60px; }
.next-btn { right: -60px; }

/* Avatars */
.avatar-row { margin-top: 40px; display: flex; justify-content: center; gap: 15px; }
.nav-avatar {
    width: 50px; height: 50px; border-radius: 50%; object-fit: cover;
    border: 2px solid #fff; box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    cursor: pointer; opacity: 0.6; transition: 0.3s;
}
.nav-avatar.active-avatar { transform: scale(1.2); border-color: #D4AF37; opacity: 1; }

/* Mobile */
@media (max-width: 900px) {
    .testimonial-card { flex-direction: column-reverse; text-align: center; }
    .nav-btn { display: none; } /* Hide arrows on mobile */
}