﻿:root {
    --vs-primary: #3b7ddd;
    --vs-dark: #2c3e50;
    --vs-gold: #ffdb58;
    --vs-purple: #6f42c1;
    --vs-success: #198754;
    --vedic-blue: #3b7dd8;
    --vedic-blue-dark: #2a62b8;
    --vedic-gold: #ffdb58;
    --vedic-gold-hover: #ffd700;
    --navy-text: #003366;
    --text-dark: #1e293b;
    --text-muted: #64748b;
}

body {
    /* Applied Telugu Font Preference */
    font-family: 'Noto Sans Telugu', 'Inter', sans-serif;
    background-color: #f8f9fa;
    color: #495057;
}

/* Hero Section */
.pricing-hero {
    /* Deep Cosmic Gradient */
    background: radial-gradient(circle at 10% 20%, var(--vedic-blue) 0%, var(--vedic-blue-dark) 90%);
    color: white;
    padding: 100px 0 140px; /* Increased bottom padding for card overlap */
    overflow: hidden;
    /* Curved Bottom */
    border-bottom-right-radius: 50% 100px;
    border-bottom-left-radius: 50% 100px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
    /* Decorative Glow Orb 1 */
    .pricing-hero::before {
        content: '';
        position: absolute;
        top: -100px;
        left: -100px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(63, 94, 251, 0.4) 0%, rgba(0,0,0,0) 70%);
        border-radius: 50%;
        z-index: 0;
        animation: float 6s ease-in-out infinite;
    }

    /* Decorative Glow Orb 2 */
    .pricing-hero::after {
        content: '';
        position: absolute;
        bottom: 50px;
        right: -50px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(255, 219, 88, 0.15) 0%, rgba(0,0,0,0) 70%);
        border-radius: 50%;
        z-index: 0;
        animation: float 8s ease-in-out infinite reverse;
    }

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffdb58; /* Vedic Gold */
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hero-title {
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Gold Text Highlight */
.text-gold {
    color: #ffdb58;
    background: -webkit-linear-gradient(#ffdb58, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content {
    position: relative;
    z-index: 2; /* Ensures text is above background blobs */
}

/* Cards */
.pricing-card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    height: 100%;
    overflow: hidden;
    position: relative;
}

    .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    }

    /* Highlighted Card (Pro) */
    .pricing-card.popular {
        border: 2px solid var(--vs-primary);
        transform: scale(1.02); /* Slightly larger */
        z-index: 2;
    }

        .pricing-card.popular:hover {
            transform: scale(1.02) translateY(-10px);
        }

.card-header-custom {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--vs-dark);
}

.price-period {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 500;
}

.feature-list {
    padding: 30px;
}

    .feature-list ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .feature-list li {
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        font-size: 0.95rem;
        /* Increased line-height for Telugu readability */
        line-height: 1.6;
    }

    .feature-list i {
        margin-right: 10px;
        font-size: 1.1rem;
        flex-shrink: 0;
    }

.check-icon {
    color: var(--vs-success);
}

.cross-icon {
    color: #dee2e6;
}

/* Ribbons */
.ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    transform: rotate(45deg);
    background-color: var(--vs-primary);
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Buttons */
.btn-pricing {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-outline-custom {
    border: 2px solid #e9ecef;
    color: var(--vs-dark);
}

    .btn-outline-custom:hover {
        border-color: var(--vs-dark);
        background: var(--vs-dark);
        color: white;
    }

.btn-primary-custom {
    background-color: var(--vs-primary);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(59, 125, 221, 0.4);
}

    .btn-primary-custom:hover {
        background-color: #2a62b8;
        color: white;
    }

/* Directory Feature Section */
.directory-feature {
    background-color: #fff;
    padding: 60px 0;
    margin-top: 50px;
    border-radius: 20px;
    border: 1px solid #eef2f5;
}

.verified-badge-anim {
    animation: pulse 2s infinite;
}
/* FAQ Section Styling */
.faq-header {
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

    .faq-header::after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background: var(--vs-primary);
        margin: 15px auto 0;
        border-radius: 2px;
    }

.accordion-custom .accordion-item {
    border: none;
    background: #fff;
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .accordion-custom .accordion-item:hover {
        box-shadow: 0 8px 25px rgba(0,0,0,0.08);
        transform: translateY(-2px);
    }

.accordion-custom .accordion-button {
    font-weight: 600;
    color: var(--vs-dark);
    background-color: #fff;
    font-size: 1.05rem;
    padding: 20px 25px;
    box-shadow: none !important; /* Removes default blue glow */
}

    .accordion-custom .accordion-button:not(.collapsed) {
        color: var(--vs-primary);
        background-color: #fff; /* Keep white background even when open */
        box-shadow: inset 0 -1px 0 rgba(0,0,0,.125) !important;
    }

    /* Custom Icon styling (Optional: makes the arrow blue) */
    .accordion-custom .accordion-button::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233b7ddd'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }

/* Left Accent Border for active items */
.accordion-custom .accordion-item:has(.accordion-button:not(.collapsed)) {
    border-left: 5px solid var(--vs-primary);
}

.accordion-body {
    padding: 20px 25px 30px;
    color: #6c757d;
    line-height: 1.6;
}

/* Directory Section Styling */
.directory-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%); /* Deep Blue Gradient */
    color: white;
    border-radius: 24px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

    /* Background decorative circles */
    .directory-section::before {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 300px;
        height: 300px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
        z-index: 0;
    }

    .directory-section::after {
        content: '';
        position: absolute;
        bottom: -50px;
        left: -50px;
        width: 200px;
        height: 200px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
        z-index: 0;
    }

.directory-content {
    position: relative;
    z-index: 2;
}

/* The Floating Profile Card */
.mockup-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: rotate(2deg) translateX(10px); /* Slight tilt for 3D effect */
    transition: transform 0.3s ease;
    max-width: 320px;
    margin: 0 auto;
    color: #333;
}

    .mockup-card:hover {
        transform: rotate(0deg) scale(1.02);
    }

/* Feature Icons */
.feature-icon-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.25rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.bg-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}
/* --- CURRENCY SWITCHER STYLES (New Addition) --- */

.currency-wrapper {
    position: relative;
    display: inline-block;
    margin-left: 15px;
    vertical-align: middle;
}

/* The actual select element styled as a pill */
.currency-select {
    display: inline-block;
    background: white;
    color: var(--vedic-blue); /* Matches your existing blue variable */
    font-weight: 800;
    border: none;
    padding: 10px 40px 10px 20px; /* Extra padding right for arrow */
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-size: 1rem;
    line-height: 1.2;
}

    .currency-select:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    }

/* Custom Arrow Icon (using pseudo-element on wrapper) */
.currency-wrapper::after {
    content: '\f078'; /* FontAwesome Chevron Down */
    font-family: 'Font Awesome 6 Free', 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--vedic-blue);
    font-size: 0.8rem;
    pointer-events: none; /* Click passes through to select */
}
/* Clean "Not Included" Styling */
.feature-list li.feature-disabled {
    color: #adb5bd; /* Light Gray Text */
    font-size: 0.9rem;
}

    .feature-list li.feature-disabled i {
        color: #dee2e6; /* Very Faded Icon */
        font-size: 0.8rem;
        margin-right: 12px;
    }