/* VedicFeed Marriage Prediction Tool - Style Sheet */

:root {
    --primary: #f26622;
    --primary-hover: #d94d0e;
    --primary-light: #fff0e6;
    --secondary: #4f46e5;
    --secondary-hover: #4338ca;
    --accent: #f59e0b;
    --accent-light: #fef3c7;
    --bg-main: #faf9f6;
    --card-bg: #ffffff;
    --dark: #0f172a;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border: #f1f5f9;
    --border-highlight: #ffd8c2;
    --shadow-sm: 0 2px 4px rgba(242, 102, 34, 0.04);
    --shadow-md: 0 10px 25px -5px rgba(242, 102, 34, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 20px 30px -10px rgba(242, 102, 34, 0.12);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --font-heading: 'Philosopher', 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 600px) {
    .container {
        padding: 0 14px;
    }
}

/* Header */
.vf-header, .vaya-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-highlight);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(242, 102, 34, 0.25);
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.brand-tag {
    font-size: 11px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--primary-light);
    color: var(--primary);
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

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

.lang-switch-btn {
    background: #fff;
    border: 1px solid var(--border-highlight);
    padding: 6px 14px;
    border-radius: 20px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.lang-switch-btn:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
    padding: 40px 0 20px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    border: 1px solid var(--border-highlight);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 42px;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 14px;
    font-weight: 700;
}

.hero-title span {
    color: var(--primary);
    background: none;
    -webkit-text-fill-color: initial;
}

.hero-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto 30px;
    font-weight: 400;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 30px;
    }
    .hero-subtitle {
        font-size: 15px;
    }
}

/* Main Form Card */
.form-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-highlight);
    padding: 36px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
}

.form-header {
    margin-bottom: 28px;
    text-align: center;
}

.form-header h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--dark);
    margin-bottom: 6px;
}

.form-header p {
    color: var(--text-muted);
    font-size: 14px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-card {
        padding: 24px 18px;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-control, .form-select {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-main);
    background-color: #fff;
    transition: all 0.2s ease;
}

.form-control:focus, .form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.1);
}

.date-inputs, .time-inputs {
    display: flex;
    gap: 10px;
}

.date-inputs select, .time-inputs select {
    flex: 1;
}

.autocomplete-container {
    position: relative;
}

.autocomplete-items {
    position: absolute;
    border: 1px solid var(--border-highlight);
    border-top: none;
    z-index: 99;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    box-shadow: var(--shadow-md);
    max-height: 220px;
    overflow-y: auto;
}

.autocomplete-item {
    padding: 10px 14px;
    cursor: pointer;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}

.autocomplete-item:hover, .autocomplete-active {
    background-color: var(--primary-light);
    color: var(--primary-hover);
    font-weight: 500;
}

/* Submit Button */
.btn-submit {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: #fff;
    border: none;
    padding: 16px 28px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 10px 20px -5px rgba(242, 102, 34, 0.35);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px -5px rgba(242, 102, 34, 0.45);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Report Results Dashboard */
.results-dashboard {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

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

.results-header-card {
    background: linear-gradient(135deg, #0f172a, #1e1b4b);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.user-meta-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 20px;
}

.user-meta-info h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: #ffd1d9;
}

.user-meta-details {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #cbd5e1;
    flex-wrap: wrap;
}

.action-buttons {
    display: flex;
    gap: 12px;
}

.btn-action {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 8px 16px;
    border-radius: 20px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-action:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #fff;
}

/* Key Marriage Age Prediction Box */
.prediction-highlight-card {
    background: linear-gradient(135deg, #fff, #fff1f2);
    border: 2px solid var(--border-highlight);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
    align-items: center;
}

@media (max-width: 768px) {
    .prediction-highlight-card {
        grid-template-columns: 1fr;
    }
}

.timing-big-box {
    text-align: center;
    background: #fff;
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px dashed var(--primary);
}

.timing-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 8px;
}

.timing-age-val {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.timing-year-val {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary);
}

.score-progress-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.score-row {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 15px;
}

.progress-bar-bg {
    height: 12px;
    background: #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 6px;
    transition: width 1s ease-in-out;
}

/* Analysis Grid Layout */
.analysis-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

@media (max-width: 850px) {
    .analysis-grid {
        grid-template-columns: 1fr;
    }
}

.card-box {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.card-box-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-light);
}

.card-box-header i {
    color: var(--primary);
}

.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #f8fafc;
    border-radius: var(--radius-sm);
    font-size: 14px;
}

.info-label {
    font-weight: 500;
    color: var(--text-muted);
}

.info-value {
    font-weight: 600;
    color: var(--dark);
}

.badge-tag {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.badge-positive {
    background: #dcfce7;
    color: #166534;
}

.badge-warning {
    background: #fef3c7;
    color: #92400e;
}

.badge-danger {
    background: #fee2e2;
    color: #991b1b;
}

/* Astrological Charts Section */
.charts-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .charts-container {
        grid-template-columns: 1fr;
    }
}

.chart-card {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.chart-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 14px;
}

.chart-svg-wrapper {
    max-width: 320px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-sm);
    padding: 8px;
}

/* Spouse Traits Section */
.spouse-traits-card {
    background: linear-gradient(135deg, #fff, #f8fafc);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 28px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.traits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 16px;
}

@media (max-width: 768px) {
    .traits-grid {
        grid-template-columns: 1fr;
    }
}

.trait-box {
    background: #fff;
    padding: 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    text-align: center;
}

.trait-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 18px;
}

.trait-title {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.trait-desc {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
}

/* Remedies Section */
.remedies-section {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-highlight);
    padding: 28px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.remedy-item {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.remedy-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.remedy-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.remedy-content h4 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 4px;
}

.remedy-content p {
    font-size: 14px;
    color: var(--text-muted);
}

/* SEO Article Section */
.seo-article {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 40px;
    margin-top: 40px;
    margin-bottom: 50px;
    box-shadow: var(--shadow-sm);
}

.seo-article h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--dark);
    margin-top: 24px;
    margin-bottom: 12px;
}

.seo-article h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--secondary);
    margin-top: 18px;
    margin-bottom: 10px;
}

.seo-article p {
    font-size: 15px;
    color: var(--text-main);
    margin-bottom: 16px;
    line-height: 1.7;
}

.seo-article ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

.seo-article li {
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--text-main);
}

/* FAQ Accordion */
.faq-container {
    margin-top: 24px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 16px 20px;
    background: #f8fafc;
    border: none;
    text-align: left;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 16px 20px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    display: none;
    border-top: 1px solid var(--border);
    background: #fff;
}

.faq-item.active .faq-answer {
    display: block;
}

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

/* Footer */
.vaya-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 40px 0 20px;
    border-top: 1px solid #1e293b;
    font-size: 14px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #1e293b;
}

.footer-brand {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
}

/* Print Styles */
@media print {
    .vaya-header, .form-card, .seo-article, .vaya-footer, .action-buttons, .hero-section {
        display: none !important;
    }

    body {
        background: #fff !important;
        color: #000 !important;
    }

    .results-dashboard {
        display: block !important;
    }

    .results-header-card {
        background: none !important;
        color: #000 !important;
        border: 1px solid #ccc;
        box-shadow: none !important;
    }

    .user-meta-info h2 {
        color: #000 !important;
    }

    .prediction-highlight-card, .card-box, .spouse-traits-card, .remedies-section, .chart-card {
        box-shadow: none !important;
        border: 1px solid #999 !important;
        break-inside: avoid;
    }
}

/* Header & Dropdown Styles (Matched 100% with Kundali Page) */
.top-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.vf-main-logo {
    height: 28px !important;
    width: auto;
    object-fit: contain;
    display: block;
}
.vf-footer-logo {
    height: 28px !important;
    width: auto;
    object-fit: contain;
    margin-bottom: 10px;
    display: block;
}
.toolbar-area {
    display: flex;
    align-items: center;
    gap: 25px;
}
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 15px;
    font-weight: 500;
}
.vf-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,.12);
    min-width: 190px;
    border-radius: 4px;
    padding: 8px 0;
    z-index: 2000;
}
.vf-dropdown-menu a {
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    color: #171717;
    text-decoration: none;
    font-weight: 500;
}
.vf-dropdown-menu a:hover { background:#f5f5f5; color:#f26622; }
.vf-dropdown:hover .vf-dropdown-menu { display: block; }

.desktop-search-box {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: #fff;
    padding: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,.1);
    border-radius: 8px;
    min-width: 280px;
    margin-top: 15px;
    z-index: 3000;
    border: 1px solid #eee;
}

@media(max-width:900px){
    #main-header nav { display:none !important; }
    #vfMenuBtn { display:block !important; }
    .desktop-search-box { display: none !important; }
    .no-mobile { display: none !important; }
}

/* AI Astrologer Exit Intent Modal */
.ai-exit-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(6px);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.ai-exit-overlay.active {
    display: flex;
}
.ai-exit-modal {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 28px;
    max-width: 460px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes modalPop {
    from { opacity: 0; transform: scale(0.85); }
    to { opacity: 1; transform: scale(1); }
}
.ai-exit-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 24px;
    color: #64748b;
    cursor: pointer;
    line-height: 1;
}
.ai-exit-icon img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(242, 102, 34, 0.3);
    margin-bottom: 12px;
}
.ai-exit-modal h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}
.ai-exit-modal p {
    font-size: 14px;
    color: #475569;
    margin-bottom: 18px;
    line-height: 1.5;
}
.ai-exit-chips-label {
    font-size: 12px;
    font-weight: 600;
    color: #f26622;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}
.ai-exit-chips {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}
.ai-chip-item {
    background: #fff0e6;
    color: #f26622;
    border: 1px solid #ffd8c2;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    text-align: left;
}
.ai-chip-item:hover {
    background: #f26622;
    color: #ffffff;
}
.ai-exit-btn {
    display: block;
    background: linear-gradient(135deg, #f26622, #d94d0e);
    color: #ffffff;
    padding: 13px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(242, 102, 34, 0.35);
    transition: transform 0.2s;
}
.ai-exit-btn:hover {
    transform: translateY(-2px);
}
.ai-exit-skip {
    display: inline-block;
    margin-top: 14px;
    font-size: 13px;
    color: #94a3b8;
    cursor: pointer;
}

/* Main Footer Styles (Matched 100% with Kundali Page) */
.main-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 50px 0 25px;
    margin-top: 60px;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand p {
    font-size: 14px;
    color: #94a3b8;
    margin: 10px 0 15px;
    max-width: 320px;
    line-height: 1.5;
}
.footer-icons {
    display: flex;
    gap: 12px;
}
.footer-icons a {
    width: 36px;
    height: 36px;
    background: #1e293b;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
}
.footer-icons a:hover {
    background: #f26622;
    transform: translateY(-2px);
}
.footer-links-col h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}
.footer-links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links-col li {
    margin-bottom: 10px;
}
.footer-links-col a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}
.footer-links-col a:hover {
    color: #f26622;
}
.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #64748b;
}
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Mobile Ultra-Sleek & Comprehensive Responsiveness (600px, 480px, 360px) */
@media (max-width: 600px) {
    .container {
        padding: 0 12px;
    }
    
    .vf-main-logo {
        height: 23px !important;
    }
    .vf-footer-logo {
        height: 24px !important;
    }
    
    /* Compact Hero Section */
    .hero-section {
        padding: 16px 0 8px;
    }
    .hero-title {
        font-size: 22px;
        line-height: 1.25;
        margin-bottom: 6px;
    }
    .hero-subtitle {
        font-size: 13px;
        line-height: 1.4;
        margin-bottom: 14px;
        padding: 0 2px;
    }

    /* Compact Form Card */
    .form-card {
        padding: 16px 12px;
        margin-bottom: 20px;
        border-radius: 14px;
    }
    .form-header {
        margin-bottom: 14px;
    }
    .form-header h2 {
        font-size: 18px;
        margin-bottom: 3px;
    }
    .form-header p {
        font-size: 12px;
    }

    .form-grid {
        gap: 10px;
    }
    .form-group label {
        font-size: 12.5px;
        gap: 5px;
    }
    .form-control, .form-select {
        padding: 9px 10px;
        font-size: 13.5px;
        border-radius: 8px;
    }
    .date-inputs, .time-inputs {
        display: flex;
        gap: 4px;
    }
    .date-inputs select, .time-inputs select {
        min-width: 0;
        flex: 1;
        padding: 8px 4px;
        font-size: 12.5px;
        text-overflow: ellipsis;
    }

    .btn-submit {
        padding: 12px 16px;
        font-size: 15px;
        margin-top: 6px;
        border-radius: 22px;
    }

    /* Compact Results Dashboard */
    .results-header-card {
        padding: 14px 12px;
        border-radius: 14px;
    }
    .user-meta-summary {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .action-buttons {
        width: 100%;
        display: flex;
        gap: 8px;
    }
    .action-buttons .btn-action {
        flex: 1;
        justify-content: center;
        text-align: center;
        padding: 7px 8px;
        font-size: 11.5px;
    }
    .user-meta-info h2 {
        font-size: 19px;
    }
    .user-meta-details {
        font-size: 12px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .highlight-card {
        padding: 10px 12px;
        gap: 10px;
    }
    .card-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
        flex-shrink: 0;
    }
    .card-label {
        font-size: 11px;
    }
    .card-value {
        font-size: 18px;
    }

    .report-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .report-section {
        padding: 12px 10px;
        border-radius: 12px;
    }
    .section-title {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .astro-table td {
        padding: 7px 8px;
        font-size: 12px;
    }
    .info-label {
        font-size: 12px;
        font-weight: 600;
    }
    .info-value {
        font-size: 12px;
    }

    .spouse-traits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    .trait-card {
        padding: 8px 6px;
        border-radius: 8px;
    }
    .trait-label {
        font-size: 10px;
        margin-bottom: 2px;
    }
    .trait-val {
        font-size: 11.5px;
        line-height: 1.25;
        word-break: break-word;
    }

    .charts-wrapper {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .svg-chart-container {
        max-width: 240px;
        margin: 0 auto;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .svg-chart-container svg {
        max-width: 100%;
        height: auto;
    }

    /* SEO Article Compact Styling */
    .seo-article {
        padding: 14px 10px;
        margin-top: 24px;
        border-radius: 12px;
    }
    .seo-article h2 {
        font-size: 17px;
    }
    .seo-article h3 {
        font-size: 14.5px;
    }
    .seo-article p, .seo-article li {
        font-size: 12.5px;
        line-height: 1.45;
    }
    .faq-question {
        padding: 10px;
        font-size: 13px;
    }
    .faq-answer {
        padding: 10px;
        font-size: 12.5px;
    }

    /* Footer Responsive */
    .main-footer {
        padding: 24px 0 12px;
        margin-top: 24px;
    }
    .footer-brand p {
        font-size: 12px;
    }
    .footer-links-col h4 {
        font-size: 14.5px;
        margin-bottom: 10px;
    }
    .footer-links-col li {
        margin-bottom: 6px;
    }
    .footer-links-col a {
        font-size: 12.5px;
    }
}

/* Floating AI Astrologer Widget Styles (High-Conversion Signup & CTA) */
.vf-astro-float-bar {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background: linear-gradient(135deg, #ffffff 0%, #fff7ed 100%);
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(242, 102, 34, 0.18), 0 4px 12px rgba(0,0,0,0.08);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1.5px solid #ffd8c2;
    max-width: 410px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    animation: vfFloatSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.vf-float-close-btn {
    position: absolute;
    top: -8px;
    right: -6px;
    width: 22px;
    height: 22px;
    background: #1e293b;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.vf-float-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.vf-float-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 2px solid #f26622;
}

.vf-pulse-online-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: #22c55e;
    border: 2px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: vfPulseOnline 1.6s infinite;
}

@keyframes vfPulseOnline {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.vf-float-info {
    flex: 1;
    min-width: 0;
}

.vf-float-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vf-float-rating {
    background: #fef3c7;
    color: #d97706;
    font-size: 10.5px;
    font-weight: 800;
    padding: 1px 6px;
    border-radius: 10px;
    border: 1px solid #fde68a;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.vf-float-sub {
    font-size: 11px;
    font-weight: 600;
    color: #475569;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 2px;
}

.vf-float-btn {
    background: linear-gradient(135deg, #f26622 0%, #d94d0e 100%);
    color: #ffffff !important;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 800;
    text-decoration: none;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(242, 102, 34, 0.35);
    transition: all 0.2s ease;
    letter-spacing: 0.2px;
}

.vf-float-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 18px rgba(242, 102, 34, 0.45);
    background: linear-gradient(135deg, #d94d0e 0%, #c23d02 100%);
}

/* Mobile Responsiveness for Floating Bar & Exit Modal (<= 480px) */
@media (max-width: 480px) {
    .vf-astro-float-bar {
        bottom: 8px !important;
        left: 8px !important;
        right: 8px !important;
        max-width: none !important;
        width: auto !important;
        padding: 6px 10px !important;
        gap: 6px !important;
        border-radius: 10px !important;
    }
    .vf-float-avatar {
        width: 30px !important;
        height: 30px !important;
    }
    .vf-float-title {
        font-size: 11.5px !important;
    }
    .vf-float-sub {
        font-size: 9.5px !important;
    }
    .vf-float-btn {
        padding: 4px 10px !important;
        font-size: 10.5px !important;
        border-radius: 14px !important;
    }
    .vf-float-close-btn {
        top: -6px !important;
        right: -4px !important;
        width: 18px !important;
        height: 18px !important;
        font-size: 11px !important;
    }

    /* Exit Modal Mobile Fit */
    .ai-exit-modal {
        padding: 20px 14px 16px;
        border-radius: 14px;
    }
    .ai-exit-modal h3 {
        font-size: 17px;
    }
    .ai-exit-modal p {
        font-size: 12.5px;
        margin-bottom: 12px;
    }
    .ai-chip-item {
        padding: 8px 10px;
        font-size: 12px;
    }
    .ai-exit-btn {
        padding: 11px;
        font-size: 13.5px;
        border-radius: 10px;
    }
}

/* Astrologer Consultation Cards Section (Talk / Chat with Astrologer Promo) */
.vf-astrologers-section {
    margin-top: 35px;
    margin-bottom: 35px;
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 24px;
    border: 1px solid #ffd8c2;
    box-shadow: 0 10px 30px rgba(242, 102, 34, 0.06);
}

.vf-astrologer-header {
    text-align: center;
    margin-bottom: 24px;
}

.vf-astrologer-header h2 {
    font-size: 22px;
    font-weight: 700;
    color: #171717;
    margin-bottom: 6px;
}

.vf-astrologer-header p {
    font-size: 14px;
    color: #64748b;
    max-width: 680px;
    margin: 0 auto;
}

.vf-astrologers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}

.vf-astro-card {
    background: #ffffff;
    border: 1.5px solid #e5e7eb;
    border-radius: 18px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.vf-astro-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(242, 102, 34, 0.12);
    border-color: #ffd8c2;
}

.vf-astro-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vf-astro-avatar-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
}

.vf-astro-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #22c55e;
    padding: 2px;
    background: #ffffff;
}

.vf-online-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #22c55e;
    border: 2px solid #ffffff;
    border-radius: 50%;
}

.vf-badge-top-choice {
    background: #fef08a;
    color: #92400e;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.3px;
    padding: 2px 7px;
    border-radius: 8px;
    margin-top: 5px;
    text-transform: uppercase;
    line-height: 1.2;
    white-space: nowrap;
}

.vf-astro-mid {
    flex: 1;
    padding-left: 14px;
    padding-right: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vf-astro-name-row {
    display: flex;
    align-items: center;
    gap: 5px;
}

.vf-astro-name {
    font-size: 16px;
    font-weight: 700;
    color: #171717;
    margin: 0;
    line-height: 1.2;
}

.vf-verified-icon {
    color: #22c55e;
    font-size: 14px;
}

.vf-astro-lang, .vf-astro-exp {
    font-size: 12.5px;
    color: #64748b;
    margin-top: 2px;
}

.vf-astro-rating-row {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
    font-size: 12px;
}

.vf-astro-star {
    color: #f59e0b;
}

.vf-astro-score {
    font-weight: 700;
    color: #1f2937;
}

.vf-astro-dot {
    color: #a8a29e;
}

.vf-astro-orders {
    color: #64748b;
}

.vf-astro-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    flex-shrink: 0;
    gap: 8px;
}

.vf-astro-price {
    font-size: 16px;
    font-weight: 700;
    color: #171717;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}

.vf-price-old {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 500;
}

.vf-price-free {
    color: #16a34a;
    font-weight: 800;
    font-size: 15px;
}

.vf-free-offer-badge {
    background: #dcfce7;
    color: #15803d;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 6px;
    text-transform: uppercase;
    white-space: nowrap;
    border: 1px solid #bbf7d0;
}

.vf-price-unit {
    font-size: 12.5px;
    font-weight: 500;
    color: #4b5563;
}

.vf-astro-chat-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #22c55e;
    color: #22c55e;
    background: #ffffff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.vf-astro-chat-btn:hover {
    background: #22c55e;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.3);
}

@media (max-width: 600px) {
    .vf-astrologers-section {
        padding: 16px 10px;
        margin-top: 20px;
        margin-bottom: 20px;
        border-radius: 14px;
    }
    .vf-astrologer-header h2 {
        font-size: 17px;
    }
    .vf-astrologer-header p {
        font-size: 12px;
    }
    .vf-astrologers-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .vf-astro-card {
        padding: 10px 12px;
        gap: 6px;
        border-radius: 14px;
        box-sizing: border-box;
    }
    .vf-astro-left {
        min-width: 50px;
        flex-shrink: 0;
    }
    .vf-astro-avatar-wrapper {
        width: 46px;
        height: 46px;
    }
    .vf-badge-top-choice {
        font-size: 8px;
        padding: 1px 5px;
        margin-top: 3px;
    }
    .vf-astro-mid {
        padding-left: 6px;
        padding-right: 4px;
        min-width: 0;
    }
    .vf-astro-name-row {
        gap: 4px;
        align-items: center;
    }
    .vf-astro-name {
        font-size: 14px;
        line-height: 1.2;
        font-weight: 700;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .vf-verified-icon {
        font-size: 13px;
        flex-shrink: 0;
    }
    .vf-astro-lang, .vf-astro-exp {
        font-size: 11px;
        margin-top: 1px;
        color: #64748b;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .vf-astro-rating-row {
        font-size: 11px;
        margin-top: 2px;
    }
    .vf-astro-right {
        flex-shrink: 0;
        align-items: flex-end;
        gap: 3px;
        min-width: 75px;
    }
    .vf-free-offer-badge {
        font-size: 8px;
        padding: 1px 5px;
        letter-spacing: 0.1px;
    }
    .vf-astro-price {
        font-size: 14px;
    }
    .vf-price-old {
        font-size: 11px;
    }
    .vf-price-free {
        font-size: 13.5px;
    }
    .vf-astro-chat-btn {
        padding: 4px 14px;
        font-size: 12px;
        border-radius: 16px;
        margin-top: 2px;
    }
}

/* --- AEO & AIO TECHNICAL SEO STYLES --- */
.aeo-quick-answer-card {
    background: linear-gradient(135deg, #fff7ed 0%, #ffffff 50%, #faf5ff 100%);
    border: 1.5px solid #fed7aa;
    border-radius: var(--radius-md);
    padding: 22px 26px;
    margin: 25px 0 35px;
    box-shadow: 0 10px 25px -5px rgba(242, 102, 34, 0.08);
    position: relative;
    overflow: hidden;
}

.aeo-quick-answer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #f26622, #4f46e5);
}

.aeo-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff0e6;
    color: #f26622;
    border: 1px solid #ffd8c2;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.aeo-answer-text {
    font-size: 15.5px;
    line-height: 1.7;
    color: #1e293b;
    font-weight: 500;
}

.aeo-answer-text strong {
    color: #0f172a;
    background: rgba(242, 102, 34, 0.08);
    padding: 1px 4px;
    border-radius: 4px;
}

/* Key Takeaways Card */
.key-takeaways-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #4f46e5;
    border-radius: var(--radius-md);
    padding: 24px 28px;
    margin: 30px 0;
    box-shadow: var(--shadow-sm);
}

.key-takeaways-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: #0f172a;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.key-takeaways-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px 24px;
}

.key-takeaways-list li {
    font-size: 14.5px;
    color: #334155;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.key-takeaways-list li i {
    color: #f26622;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Table of Contents (Collapsible - Closed by Default) */
.toc-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 16px 24px;
    margin: 30px 0 40px;
    transition: all 0.3s ease;
}

.toc-header-btn {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    color: #0f172a;
    padding: 4px 0;
    text-align: left;
}

.toc-header-btn span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.toc-chevron-icon {
    font-size: 15px;
    color: #f26622;
    transition: transform 0.3s ease;
}

.toc-card.active .toc-chevron-icon {
    transform: rotate(180deg);
}

.toc-content {
    display: none;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #e2e8f0;
    animation: vfFadeIn 0.3s ease;
}

.toc-card.active .toc-content {
    display: block;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 8px 16px;
}

.toc-list a {
    color: #4f46e5;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    transition: color 0.2s ease;
}

.toc-list a:hover {
    color: #f26622;
    text-decoration: underline;
}

.toc-list a i {
    font-size: 11px;
    color: #94a3b8;
}

/* Educational Article Styles */
.seo-article {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-top: 40px;
    margin-bottom: 50px;
    box-shadow: var(--shadow-md);
}

.seo-article h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: #0f172a;
    margin: 34px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f1f5f9;
    line-height: 1.3;
}

.seo-article h2:first-of-type {
    margin-top: 0;
}

.seo-article h3 {
    font-family: var(--font-heading);
    font-size: 21px;
    color: #1e293b;
    margin: 24px 0 12px;
}

.seo-article p {
    font-size: 15.5px;
    line-height: 1.75;
    color: #334155;
    margin-bottom: 16px;
}

.seo-article ul, .seo-article ol {
    margin: 16px 0 24px 20px;
}

.seo-article li {
    font-size: 15px;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 8px;
}

/* Callout Highlight Boxes */
.callout-box {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-left: 4px solid #16a34a;
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin: 20px 0;
}

.callout-box h4 {
    font-size: 15px;
    font-weight: 700;
    color: #15803d;
    margin-bottom: 6px;
}

.callout-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #166534;
    margin: 0;
}

/* SEO Data Table */
.seo-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 24px 0 32px;
    border-radius: var(--radius-md);
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
    background: #ffffff;
}

.seo-table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
    text-align: left;
    font-size: 14.5px;
}

.seo-table th {
    background: #f8fafc;
    color: #475569;
    font-weight: 700;
    padding: 12px 18px;
    border-bottom: 2px solid #e2e8f0;
    text-transform: uppercase;
    font-size: 12.5px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.seo-table td {
    padding: 14px 18px;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
    vertical-align: top;
    line-height: 1.6;
}

.seo-table tr:nth-child(even) {
    background: #fafafa;
}

.seo-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .seo-article {
        padding: 22px 14px;
        border-radius: 14px;
    }
    .seo-article h2 {
        font-size: 20px;
        margin: 24px 0 12px;
    }
    .seo-article h3 {
        font-size: 17px;
        margin: 18px 0 10px;
    }
    .seo-article p, .seo-article li {
        font-size: 14px;
        line-height: 1.65;
    }
    .key-takeaways-card, .toc-card {
        padding: 16px;
    }
    .key-takeaways-list, .toc-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .seo-table th, .seo-table td {
        padding: 10px 12px;
        font-size: 13px;
    }
    .seo-table {
        min-width: 580px;
    }
    .aeo-quick-answer-card {
        padding: 16px 18px;
    }
    .aeo-answer-text {
        font-size: 14.5px;
    }
}

/* --- KUNDALI LOADER MODAL STYLES --- */
.vf-loader-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.vf-loader-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 36px 30px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #fed7aa;
}

.vf-spinner-ring {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    border: 4px solid #fff0e6;
    border-top: 4px solid #f26622;
    border-radius: 50%;
    animation: vfSpinRing 1s linear infinite;
}

@keyframes vfSpinRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.vf-loader-title {
    font-family: var(--font-heading);
    font-size: 22px;
    color: #0f172a;
    margin-bottom: 8px;
}

.vf-loader-step-text {
    font-size: 14.5px;
    color: #f26622;
    font-weight: 600;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.vf-loader-progress-bar {
    height: 8px;
    background: #f1f5f9;
    border-radius: 10px;
    overflow: hidden;
}

.vf-loader-progress-fill {
    height: 100%;
    background: linear-gradient(to right, #f26622, #4f46e5);
    border-radius: 10px;
    transition: width 0.3s ease;
}

/* --- WHATSAPP SHARE BUTTON --- */
.btn-whatsapp {
    background: #25d366 !important;
    color: #ffffff !important;
    border-color: #22c55e !important;
}

.btn-whatsapp:hover {
    background: #16a34a !important;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

/* --- PEAK MARRIAGE TIMELINE CARD STYLES --- */
.vf-timeline-card {
    background: #ffffff;
    border: 1px solid #fed7aa;
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin-top: 20px;
    box-shadow: var(--shadow-sm);
}

.vf-timeline-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 10px;
}

.vf-timeline-header h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vf-timeline-badge {
    background: #fff0e6;
    color: #f26622;
    font-size: 11.5px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    border: 1px solid #ffd8c2;
}

.vf-timeline-bars {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.vf-timeline-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.vf-timeline-period {
    font-size: 13.5px;
    font-weight: 700;
    color: #334155;
    min-width: 155px;
    flex-shrink: 0;
}

.vf-timeline-bar-bg {
    flex: 1;
    height: 24px;
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.vf-timeline-bar-fill {
    height: 100%;
    background: linear-gradient(to right, #f26622, #f59e0b);
    border-radius: 12px;
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
    transition: width 0.8s ease;
}

.vf-timeline-bar-fill.secondary-fill {
    background: linear-gradient(to right, #4f46e5, #818cf8);
}

/* --- AI ASTROLOGER CALLOUT BANNER --- */
.vf-ai-callout-banner {
    background: linear-gradient(135deg, #fff7ed 0%, #ffffff 60%, #faf5ff 100%);
    border: 1.5px solid #fed7aa;
    border-radius: var(--radius-md);
    padding: 18px 22px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 8px 20px -4px rgba(242, 102, 34, 0.12);
}

.vf-callout-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.vf-callout-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f26622;
    display: block;
}

.vf-pulse-online-sm {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    background: #22c55e;
    border: 2px solid #ffffff;
    border-radius: 50%;
    animation: vfPulseOnline 1.6s infinite;
}

.vf-callout-content {
    flex: 1;
    min-width: 0;
}

.vf-callout-content h4 {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.vf-callout-content p {
    font-size: 13px;
    color: #475569;
    line-height: 1.4;
    margin: 0;
}

.vf-callout-btn {
    background: linear-gradient(135deg, #f26622 0%, #d94d0e 100%);
    color: #ffffff !important;
    padding: 9px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(242, 102, 34, 0.3);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.vf-callout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(242, 102, 34, 0.4);
}

@media (max-width: 600px) {
    .vf-ai-callout-banner {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }
    .vf-callout-btn {
        width: 100%;
        text-align: center;
    }
    .vf-timeline-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    .vf-timeline-period {
        min-width: 0;
    }
    .vf-timeline-bar-bg {
        width: 100%;
    }
}

/* --- LOCKED PREMIUM INSIGHTS CARD STYLES --- */
.vf-locked-insights-card {
    background: linear-gradient(135deg, #ffffff 0%, #fff7ed 50%, #fff1f2 100%);
    border: 2px dashed #f26622;
    border-radius: var(--radius-md);
    padding: 22px 24px;
    margin-top: 20px;
    box-shadow: 0 10px 25px -5px rgba(242, 102, 34, 0.15);
}

.vf-locked-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.vf-locked-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vf-locked-title h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: #0f172a;
    margin-bottom: 2px;
}

.vf-locked-title p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

.vf-free-unlock-badge {
    background: #f26622;
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(242, 102, 34, 0.3);
}

.vf-locked-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin-bottom: 20px;
}

.vf-locked-item {
    background: #ffffff;
    border: 1px solid #fed7aa;
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vf-locked-label {
    font-size: 12.5px;
    font-weight: 700;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 6px;
}

.vf-blur-box {
    position: relative;
    background: #f8fafc;
    border-radius: 8px;
    padding: 10px 12px;
    text-align: center;
    overflow: hidden;
    user-select: none;
}

.vf-blur-text {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    filter: blur(6px);
    opacity: 0.5;
    letter-spacing: 2px;
}

.vf-lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 247, 237, 0.85);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 800;
    color: #d97706;
}

.vf-locked-cta-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.vf-unlock-btn {
    width: 100%;
    max-width: 460px;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: #ffffff !important;
    padding: 13px 24px;
    border-radius: 28px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.35);
    transition: all 0.25s ease;
}

.vf-unlock-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(22, 163, 74, 0.45);
    background: linear-gradient(135deg, #15803d 0%, #166534 100%);
}

.vf-cta-subtext {
    font-size: 12px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
}

@media (max-width: 600px) {
    .vf-locked-insights-card {
        padding: 16px 14px;
    }
    .vf-unlock-btn {
        font-size: 13.5px;
        padding: 12px 16px;
    }
}



