/* CORRECTED ROOT BLOCK */
:root {
    --gold: #D4AF37;
    --gold-accent: #d4af37;
    --gold-light: #f9f5eb;
    --gold-gradient: linear-gradient(to right, #E5C35D, #B38B26);
    --purple-deep: #612278;
    --purple-dark: #3a104b;
    --cream-bg: #FFF8E7;
    --text-gray: #475569;
    --text-dark: #2A1A1A;
    --white: #ffffff;
}
        
        /* Smooth Scroll Fixes */
        html.lenis, html.lenis body { height: auto; }
        .lenis.lenis-smooth { scroll-behavior: auto !important; }
        .lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
        .lenis.lenis-stopped { overflow: hidden; }
        .lenis.lenis-scrolling iframe { pointer-events: none; }
        /* --- Variables & Reset --- */


/* Optimized Global Reset */
html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

*, *:before, *:after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--cream-bg);
    color: var(--text-dark);
}
/* --- NEW LOGO STYLES --- */

.logo {
    display: flex;
    align-items: center;
    gap: 15px; /* Adds space between image and text */
    text-decoration: none; /* Removes underline if it's a link */
}

.brand-info {
    display: flex;
    flex-direction: column; /* This is the key fix */
    justify-content: center;
}

/* Main Name: SWARNALAGNA */
.brand-name {
    font-family: 'Cinzel', serif !important; /* Forces the clean Roman look */
    font-weight: 700;
    font-size: 1.5rem; /* Adjust size here */
    letter-spacing: 1px;
    color: #ffffff;
    line-height: 1;
    display: flex;
    flex-direction: column; /* Stacks 'Matrimony' below on mobile if needed */
}
/* Styling for the Elite Tagline */
.elite-tagline {
    font-family: 'Manrope', sans-serif;
    font-size: 0.6rem;
    color: var(--gold-accent); /* Uses your gold theme color */
    text-transform: uppercase;
    letter-spacing: 1.8px; /* Adds premium feel */
    margin-top: 4px; /* Space between brand name and tagline */
    font-weight: 600;
    opacity: 0.9;
}

/* Sub Name: MATRIMONY */
.gold-text {
    font-family: 'Manrope', sans-serif !important; /* Clean modern font */
    color: var(--gold);
    font-weight: 600;
    font-size: 0.5em; /* Smaller relative to Swarnalagna */
    letter-spacing: 4px; /* Wide spacing for luxury feel */
    text-transform: uppercase;
    display: block;
    margin-top: 2px;
}



/* --- RESPONSIVE TWEAK --- */
@media (min-width: 768px) {
    .brand-name {
        flex-direction: row; /* Side by side on Desktop */
        align-items: baseline;
    }
    
    .gold-text {
        font-size: 0.8em; 
        margin-left: 8px; /* Space between words */
        margin-top: 0;
    }
}

/* --- 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.2rem; color: var(--gold); margin-bottom: 10px; }
.sanskrit-vibe1 {font-family: 'Prata', serif; font-size: 1.4rem; 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 (Swarnalagna 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; }
/* Error Message Styling */
.error-msg {
    color: #ff6b6b; /* Soft Red color */
    font-size: 0.75rem;
    margin-top: 5px;
    margin-left: 10px;
    font-weight: 600;
    display: none; /* Hidden by default */
}

/* Style for the input when it has an error */
.pill-input.input-error {
    border: 1px solid #ff6b6b;
    box-shadow: 0 0 5px rgba(255, 107, 107, 0.5);
}

.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); margin-bottom: 25px;}
.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 */
}

/* Update this class in your CSS */
.concierge-wrapper {
    display: flex;
    align-items: center;
    justify-content: center; /* Changed from space-between to center */
    gap: 80px; /* Increased gap slightly for better spacing */
    max-width: 1100px; /* Optional: Limits width so it stays compact */
    margin: 0 auto; /* Ensures the wrapper itself is centered */
}

.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 */
}

        /* --- NEW LOGO CSS --- */
        /* Add this to make sure your new logo image fits nicely in the navbar */
        .logo-img {
            height: 80px; /* Adjust height to fit navbar */
            width: auto;
            margin-right: 10px;
            border-radius: 5px; /* Optional: Soft rounded corners */
        }
        
        /* Adjust brand name font size if Swarnalagna is too long on mobile */
        @media (max-width: 450px) {
            .brand-name { font-size: 1.1rem; }
            .logo-img { height: 35px; }
        }
        #star-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
        }

        /* Glassmorphism Utilities */
        .glass-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
        }

        .text-gradient-gold {
            background: linear-gradient(to right, #bf953f, #cdc782ff, #b38728, #ccc579ff, #aa771c);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .astro-ring {
            position: absolute;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            top: 50%;
            left: 50%;
            pointer-events: none;
        }
                /* --- Main Section Styling --- */
        .premium-service-section {
            background: linear-gradient(135deg, #fffbf2 0%, #fff 100%);
            padding: 80px 20px;
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .content-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);; /* Split 50/50 */
            gap: 60px;
            align-items: center;
        }

        /* --- Left Side: Visuals --- */
        .visual-container {
            position: relative;
        }

        .main-image {
            width: 100%;
            height: 550px;
            object-fit: cover;
            border-radius: 20px 20px 0 20px; /* Unique shape */
            box-shadow: 20px 20px 0px rgba(212, 175, 55, 0.2); /* Offset shadow effect */
            z-index: 2;
            position: relative;
        }

        /* Floating Badge on Image */
        .trust-badge {
            position: absolute;
            bottom: 30px;
            right: -20px;
            background: var(--white);
            padding: 15px 25px;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            gap: 15px;
            z-index: 3;
            border-left: 4px solid var(--gold-accent);
        }

        .badge-text div:first-child {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--purple-deep);
        }
        .badge-text div:last-child {
            font-size: 0.85rem;
            color: var(--text-gray);
            text-transform: uppercase;
        }

        /* --- Right Side: Content --- */
        .text-container {
            display: flex;
            flex-direction: column;
        }

        .section-label {
            color: var(--gold-accent);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.8rem;
            margin-bottom: 15px;
        }

        .main-title {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            line-height: 1.1;
            color: var(--purple-deep);
            margin-bottom: 25px;
        }

        .service-intro {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 1px solid #e2e8f0;
        }

        .service-logo {
            width: 70px;
            height: 70px;
        }

        .service-name {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--purple-deep);
        }

        .service-desc {
            font-size: 1.7rem;
            color: var(--text-gray);
            line-height: 1.6;
        }
        /* --- Text Fading Animation --- */
.fade-text {
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    opacity: 1;
    transform: translateY(0px);
}

.fade-text.hide-text {
    opacity: 0;
    transform: translateY(10px); /* Moves down slightly while fading out */
}

        /* Modern Grid Features */
       
        .feature-box {
            background: var(--white);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid #f0f0f0;
            transition: transform 0.3s ease;
        }

        .feature-box:hover {
            transform: translateY(-5px);
            border-color: var(--gold-accent);
        }

        .feature-icon {
            color: var(--gold-accent);
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .feature-title {
            font-weight: 700;
            color: var(--purple-deep);
            margin-bottom: 5px;
            display: block;
        }

        .feature-sub {
            font-size: 0.9rem;
            color: var(--text-gray);
        }

        /* CTA Area */
        .action-area {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .primary-btn {
            background-color: var(--purple-deep);
            color: var(--white);
            padding: 16px 40px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s;
            display: inline-block;
        }

        .primary-btn:hover {
            background-color: var(--gold-accent);
        }

        /* Bottom Strip Partners */
        .partners-strip {
            margin-top: 40px;
        }
        
        .partners-label {
            font-size: 0.8rem;
            font-weight: 600;
            color: #94a3b8;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .partners-icons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .p-item {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-gray);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .p-dot {
            width: 6px;
            height: 6px;
            background-color: var(--gold-accent);
            border-radius: 50%;
        }

        /* --- Responsive --- */
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr; /* Stack vertically */
                gap: 40px;
            }
            
            .visual-container {
                order: -1; /* Image Top */
            }

            .main-image {
                height: 400px;
            }
            
            .trust-badge {
                right: 20px; /* Keep inside screen */
            }
            
            .main-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 600px) {
            .features-grid {
                grid-template-columns: 1fr; /* 1 Column grid */
            }
            
            .action-area {
                flex-direction: column;
                align-items: stretch;
            }
            
            .primary-btn {
                text-align: center;
            }
        }
                /* Section Styling */
/* --- Services Section & Swiper Fixes --- */
.services-section {
    padding: 80px 20px; /* Added side padding for mobile */
    background-color: #f8fafc; /* Light distinct background */
    overflow: hidden;
}

/* Custom Container to replace missing Bootstrap container */
.custom-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

/* Swiper Wrapper Styling */
.swiper {
    width: 100%;
    padding: 20px 10px 60px 10px; /* Bottom padding for pagination */
}

.swiper-slide {
    height: auto; /* Allow slide to stretch */
    display: flex; /* Critical for equal height cards */
}

/* Card Alignment Fixes */
.premium-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    
    /* Flex settings to ensure equal height and footer alignment */
    display: flex;
    flex-direction: column;
    width: 100%; 
    height: 100%;
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.15);
    border-color: rgba(197, 160, 89, 0.4);
}

.card-img-wrapper {
    position: relative;
    height: 220px;
    width: 100%;
    overflow: hidden;
    flex-shrink: 0; /* Prevents image from shrinking */
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.premium-card:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Makes content fill the remaining space */
}

.vendor-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--purple-deep);
    margin-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    flex-grow: 1; /* Pushes the contact box to the bottom */
}

.service-list li {
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--text-gray);
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-list li::before {
    content: "•";
    color: var(--gold-accent);
    position: absolute;
    left: 5px;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1rem;
}

/* Contact Box Alignment */
.card-contact {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-top: auto; /* CRITICAL: Forces this box to the bottom */
    border: 1px dashed #cbd5e1;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--purple-deep);
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-row i {
    color: var(--gold-accent);
}

/* Navigation Buttons Position */
.swiper-button-next, .swiper-button-prev {
    color: var(--gold-accent);
    background: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}
.swiper-pagination-bullet-active {
    background-color: var(--gold-accent) !important;
}
        /* Mobile Adjustments */
        @media (max-width: 768px) {
            .section-title { font-size: 2rem; }
            .services-section { padding: 50px 0; }
        }
        
        .faq-section {
            max-width: 800px;
            margin: 40px auto;
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            padding: 40px;
            overflow: hidden;
        }

        /* Title Row Styling */
        .faq-title-row {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }

        .faq-icon {
            width: 45px;
            height: 45px;
            background: var(--matrimony-light);
            color: var(--matrimony-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 700;
        }

        .faq-title {
            font-size: 24px;
            font-weight: 600;
            color: var(--text-dark);
        }

        /* FAQ List Styling */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        /* The individual details row */
        .faq-row {
            border: 1px solid #eee;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .faq-row:hover {
            border-color: #ddd;
            background: #fafafa;
        }

        /* When the specific row is open */
        .faq-row[open] {
            border-color: var(--matrimony-primary);
            box-shadow: 0 4px 10px rgba(214, 51, 132, 0.1);
            background: #fff;
        }

        /* The clickable summary */
        .faq-summary {
            list-style: none; /* Hide default triangle */
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 500;
            color: var(--text-dark);
            cursor: pointer;
            font-size: 16px;
        }

        /* Remove default marker in Webkit browsers */
        .faq-summary::-webkit-details-marker {
            display: none;
        }

        /* The +/- toggle icon */
        .faq-toggle {
            font-size: 24px;
            font-weight: 300;
            color: var(--matrimony-primary);
            transition: transform 0.3s ease;
            line-height: 1;
        }

        /* Rotate toggle when open */
        .faq-row[open] .faq-toggle {
            transform: rotate(45deg); /* Turns + into x */
        }

        /* The answer text */
        .faq-detail {
            padding: 0 20px 20px 20px;
            color: var(--text-gray);
            line-height: 1.6;
            font-size: 14px;
            animation: fadeIn 0.4s ease;
        }

        /* Footer link */
        .faq-bottom-note {
            text-align: center;
            margin-top: 30px;
            font-size: 14px;
            color: var(--text-gray);
        }

        .highlight-link {
            color: var(--matrimony-primary);
            text-decoration: none;
            font-weight: 600;
        }
        
        .highlight-link:hover {
            text-decoration: underline;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-5px); }
            to { opacity: 1; transform: translateY(0); }
        }
        /* --- Premium Footer CSS --- */
.site-footer {
    background-color: var(--purple-deep);
    color: #e2e8f0;
    position: relative;
    padding: 80px 0 30px;
    font-family: 'Manrope', sans-serif;
    overflow: hidden;
    border-top: 4px solid var(--gold-accent);
}

/* Subtle pattern overlay */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(212, 175, 55, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    pointer-events: none;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr; /* Brand gets more space */
    gap: 40px;
    position: relative;
    z-index: 1;
}

/* Column Styling */
.footer-col h3 {
    color: var(--gold-accent);
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold-accent);
}

/* Brand Section */
.footer-brand p {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 0.95rem;
    max-width: 300px;
}

.brand-logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}
.brand-name .gold-text {
    font-weight: 400; 
}

/* Links List */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.footer-links a::before {
    content: '›';
    color: var(--gold-accent);
    margin-right: 8px;
    font-size: 1.2rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

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

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Social Icons (Premium Glass Effect) */
.social-group {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--gold-accent);
    color: var(--purple-deep);
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* Bottom Bar */
.footer-bottom {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
    color: #64748b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr; /* 2 Columns on tablet */
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr; /* 1 Column on mobile */
        text-align: center;
    }

    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-brand p {
        margin: 0 auto 25px auto;
    }
    
    .social-group {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
}
/* =========================================
   RESPONSIVE FIXES (Copy & Paste at bottom of CSS)
   ========================================= */

/* --- GLOBAL RESPONSIVE RESETS --- */
html, body {
    overflow-x: hidden; /* Prevents horizontal scrollbar */
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

/* =========================================
   1. MOBILE DEVICES (320px - 480px) 
   Covers: 320px, 375px, 380px, 425px
   ========================================= */
@media (max-width: 480px) {
    
    /* --- Navbar --- */
    .navbar {
        padding: 15px 20px;
        background: rgba(0,0,0,0.95); /* Solid dark bg for readability */
        flex-direction: column;
        gap: 15px;
    }
    
    .logo { font-size: 1.4rem; }
    .logo-img { height: 35px; }

    /* --- Hero Section --- */
    .hero-section {
        height: auto;          /* Disable fixed 100vh */
        min-height: 100vh;     /* Allow it to grow */
        padding: 120px 0 60px; /* Add top padding to clear fixed navbar */
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        width: 90%;
        gap: 40px;
    }

    .sanskrit-vibe { font-size: 2.5rem; }
    .sanskrit-vibe1 { font-size: 1.5rem; }
    .hero-text h2 { font-size: 1.8rem; }
    
    /* --- Form Card (Crucial Fix for 320px) --- */
    .form-card.purple-theme {
        width: 100% !important;
        max-width: 100%;
        padding: 30px 20px;
        border-radius: 25px;
    }
    
    .split-input { flex-direction: row; } /* Keep mobile code and number side-by-side */
    .pill-input.code { width: 30%; }
    .pill-input.number { width: 68%; }

    /* --- Concierge Section --- */
    .concierge-section { padding: 50px 20px; }
    
    .concierge-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .image-frame {
        width: 100%;
        height: 350px; /* Reduce height on mobile */
    }
    
    .decorative-border { display: none; } /* Remove decorative border on small screens */

    /* --- Stats Section --- */
    .stats-section { padding: 40px 20px; }
    .stat-card { width: 100%; margin-bottom: 15px; }

    /* --- Testimonials --- */
    .testimonial-card {
        padding: 20px;
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .t-image img {
        width: 100px;
        height: 100px;
        margin: 0 auto 20px;
    }

    .nav-btn { display: none; } /* Hide arrows on mobile, use swipe/dots */
    .avatar-row { gap: 10px; }
    .nav-avatar { width: 40px; height: 40px; }

    /* --- Premium Service Section --- */
    .premium-service-section { padding: 50px 20px; }
    .content-wrapper { display: flex; flex-direction: column; gap: 40px; }
    
    .main-image {
        height: 300px;
        border-radius: 20px;
        box-shadow: 10px 10px 0px rgba(212, 175, 55, 0.2);
    }

    .trust-badge {
        padding: 10px 15px;
        right: 10px;
        bottom: 20px;
    }
    .badge-text div:first-child { font-size: 1.2rem; }

    /* --- Footer --- */
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a { justify-content: center; }
    .social-group { justify-content: center; }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
}

/* =========================================
   2. TABLETS (481px - 768px)
   ========================================= */
@media (min-width: 481px) and (max-width: 768px) {
    
    .navbar { padding: 20px 30px; }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        margin-top: 100px;
    }
    
    .hero-text { margin-bottom: 40px; }

    .concierge-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .concierge-list li {
        justify-content: center;
        text-align: left;
    }
    
    .image-frame {
        width: 80%;
        margin: 0 auto;
    }

    .testimonial-card {
        flex-direction: column-reverse;
        text-align: center;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr; /* 2 columns */
        gap: 30px;
    }
    
    /* Make brand section span full width on tablet */
    .footer-brand { grid-column: 1 / -1; text-align: center; }
    .footer-brand p { margin: 0 auto 20px; }
}

/* =========================================
   3. LAPTOPS / SMALL DESKTOPS (769px - 1024px)
   ========================================= */
@media (min-width: 769px) and (max-width: 1024px) {
    
    .hero-content {
        width: 95%;
        justify-content: space-around;
    }
    
    .form-card.purple-theme { width: 350px; } /* Slightly smaller form */
    
    .concierge-wrapper { gap: 30px; }
    
    .image-frame {
        width: 350px;
        height: 450px;
    }

    /* Adjust swiper to show 2 cards instead of 3 if needed, 
       though Swiper config handles this mostly */
    
    .main-title { font-size: 2.5rem; }
}

/* =========================================
   4. LARGE SCREENS (1440px +)
   ========================================= */
@media (min-width: 1440px) {
    .container, .content-wrapper, .hero-content, .footer-container {
        max-width: 1400px; /* Allow wider layout on huge screens */
    }
    
    .hero-text h2 { font-size: 3.5rem; }
    .sanskrit-vibe { font-size: 3rem; }
    .sanskrit-vibe1 { font-size: 2rem; }
}



/* =========================================
   SPECIFIC COMPONENT FIXES (Apply to all sizes)
   ========================================= */

/* Fix Swiper Pagination overlapping content */
.swiper-pagination {
    bottom: 0px !important;
}
.swiper {
    padding-bottom: 50px !important;
}

/* Fix Flex wrapping in Astro Section */
.astro-grid {
    flex-wrap: wrap;
}

/* Ensure FAQ works on mobile */
.faq-section {
    width: 90%;
    margin: 40px auto;
    padding: 20px;
}
.faq-summary {
    font-size: 0.95rem;
    padding: 15px 10px;
}

/* Animation for the Banner Text Swap */
.fade-out-banner {
    opacity: 0;
    transform: translateY(10px);
}

/* Constant Floating effect for the Gold Branding */
@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

#hero-changing-text {
    color: var(--gold); /* Ensures it stays the Swarnalagna gold color */
}
/* This targets the container holding the main image on the right */
.relative.w-64.h-80 {
    width: 400px !important;  /* Increased from ~256px */
    height: 500px !important; /* Increased from ~320px */
}