/* Prokerala-style Clean CSS Engine */
:root {
    --primary: #f26622;
    --primary-hover: #d95518;
    --secondary: #2c3e50;
    --bg-color: #f8f9fa;
    --white: #ffffff;
    --border: #e2e8f0;
    --text-main: #334155;
    --text-muted: #64748b;
    --table-header: #f1f5f9;
    --table-stripe: #fafafa;
    --radius: 8px;
    --font-heading: 'Roboto', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --header-bg: #ffffff;
    --footer-bg: #ffffff;
}

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

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

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

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

.d-flex {
    display: flex;
}

.justify-content-between {
    justify-content: space-between;
}

.align-items-center {
    align-items: center;
}

.gap-10 {
    gap: 10px;
}

.gap-20 {
    gap: 20px;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-1 {
    flex: 1;
}

.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 8px;
}

.mb-3 {
    margin-bottom: 16px;
}

.mb-4 {
    margin-bottom: 24px;
}

.mb-5 {
    margin-bottom: 40px;
}

.mt-4 {
    margin-top: 24px;
}

.mt-5 {
    margin-top: 40px;
}

.pb-3 {
    padding-bottom: 16px;
}

.border-bottom {
    border-bottom: 1px solid var(--border);
}

.text-muted {
    color: var(--text-muted);
}

/* Top Nav */
.top-nav {
    background: var(--white);
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    border-bottom: 3px solid var(--primary);
}

.top-header {
    background: var(--header-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toolbar-area {
    display: flex;
    gap: 15px;
    align-items: center;
}

.desktop-nav {
    display: flex;
    gap: 22px;
    align-items: center;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
}

/* Footer Section */
.main-footer {
    background: var(--footer-bg);
    border-top: 1px solid var(--border);
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-brand p {
    font-size: 13px;
    color: var(--text-muted);
    max-width: 240px;
}

.footer-icons {
    margin-top: 12px;
    display: flex;
    gap: 12px;
}

.footer-icons a {
    color: var(--text-muted);
    font-size: 18px;
    text-decoration: none;
    transition: 0.2s;
}

.footer-icons a:hover {
    color: var(--primary);
}

.footer-links-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
    border: none;
    padding: 0;
}

.footer-links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links-col a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
}

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

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.lang-select {
    padding: 8px 12px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-color);
    font-size: 0.95rem;
    font-weight: 500;
    outline: none;
    cursor: pointer;
}

.lang-select:focus {
    border-color: var(--primary);
}

/* Chat with Astrologer button in result bar */
.btn-chat {
    background: linear-gradient(135deg, #f26622, #e05a10);
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 2px 8px rgba(242,102,34,0.3);
}

.btn-chat:hover {
    background: linear-gradient(135deg, #d95518, #c04a08);
    box-shadow: 0 4px 14px rgba(242,102,34,0.45);
    transform: translateY(-1px);
    color: #fff;
}

/* Typography */
h2 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
    h2 { font-size: 1.4rem; }
}

h3 {
    font-size: 1.4rem;
    color: var(--secondary);
}

h4 {
    font-size: 1.2rem;
    color: var(--secondary);
    border-left: 4px solid var(--primary);
    padding-left: 10px;
}

h5 {
    font-size: 1.1rem;
    color: var(--secondary);
}

/* Card Style */
.card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border);
    padding: 30px;
}

@media (max-width: 480px) {
    .card {
        padding: 20px 15px;
    }
}

.card-title {
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    padding-bottom: 15px;
}

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

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

.form-group {
    position: relative;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-main);
}

/* Float standard labels on top of input border to match fieldset look */
.form-group>label[for] {
    position: absolute;
    top: -9px;
    left: 10px;
    background: var(--white);
    padding: 0 5px;
    font-size: 0.85rem;
    margin-bottom: 0;
    z-index: 2;
    color: var(--text-muted);
    font-weight: 600;
}

/* Fieldset styling matching standard inputs */
.custom-fieldset {
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0 14px 14px 14px;
    margin: 0;
    position: relative;
}

.custom-fieldset legend {
    width: auto;
    padding: 0 5px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1;
}

input[type="text"],
select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: 0.2s;
    background: var(--white);
}

/* Remove default padding from d-flex rows inside fieldset so they align nicely */
.custom-fieldset .input-row {
    padding-top: 5px;
}

input[type="text"]:focus,
select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(242, 102, 34, 0.1);
}

.radio-group {
    display: flex;
    gap: 20px;
    padding-top: 10px;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 400;
    cursor: pointer;
}

.time-unknown {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 var(--radius) var(--radius);
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover,
.autocomplete-active {
    background: var(--table-stripe);
    color: var(--primary);
}

/* Screen Reader Only Utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

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

.btn-secondary {
    background: var(--bg-color);
    color: var(--text-main);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: #e2e8f0;
}

.btn-large {
    padding: 12px 30px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 6px 15px;
    font-size: 0.9rem;
}

.btn-active {
    background: var(--secondary);
    color: var(--white);
}

.btn-inactive {
    background: transparent;
    color: var(--secondary);
    border: 1px solid var(--secondary);
}

.toggle-group {
    display: flex;
    border: 1px solid var(--secondary);
    border-radius: 4px;
    overflow: hidden;
}

.toggle-group button {
    border: none;
    border-radius: 0;
}

.toggle-group button.btn-inactive {
    border: none;
    border-left: 1px solid var(--border);
}

/* Tables */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table th,
.info-table td {
    padding: 12px 15px;
    border: 1px solid var(--border);
    font-size: 0.95rem;
}

.info-table th {
    background: var(--table-header);
    width: 20%;
    color: var(--secondary);
    font-weight: 500;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 10px 15px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    font-size: 0.95rem;
}

@media (max-width: 480px) {
    .data-table th,
    .data-table td {
        padding: 8px 6px;
        font-size: 0.82rem;
    }
}

.data-table th {
    background: var(--table-header);
    color: var(--secondary);
}

.data-table tbody tr:nth-child(even) {
    background: var(--table-stripe);
}

.data-table tbody tr.mahadasha-row {
    background-color: #fcece3;
    border-top: 2px solid var(--primary);
    transition: background-color 0.2s;
}

.data-table tbody tr.mahadasha-row:hover {
    background-color: #f7dac8;
}

.data-table tbody tr.antardasha-row {
    background-color: var(--white);
    color: var(--text-muted);
    transition: background-color 0.2s;
}

.data-table tbody tr.antardasha-row:hover {
    background-color: #f5f5f5;
}

.data-table tbody tr.antardasha-row td {
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: 0.9rem;
}

.data-table tbody tr.pratyantar-row:hover {
    background-color: #f0f0f0 !important;
}

.data-table tbody tr.pratyantar-row td {
    padding-top: 4px;
    padding-bottom: 4px;
}

/* SVG Charts CSS */
.chart-box {
    background: #FFFAF4;
    /* Slight warm tint matching screenshot */
    border: 1px solid #F0ECE1;
    border-radius: 8px;
    padding: 20px;
}

.chart-svg-container {
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    aspect-ratio: 1 / 1;
}

.vedic-chart {
    width: 100%;
    height: 100%;
}

.chart-line {
    fill: none;
    stroke: #2c3e50;
    /* Dark slate blue/grey */
    stroke-width: 0.6;
}

@media (max-width: 600px) {
    .charts-grid {
        flex-direction: column !important;
        gap: 15px;
    }
    .chart-box {
        padding: 15px;
    }
    .chart-svg-container {
        max-width: 260px;
    }
@media (max-width: 360px) {
    .chart-svg-container {
        max-width: 220px;
    }
    .card {
        padding: 15px 10px;
    }
}
    .result-actions {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    .result-actions .d-flex {
        justify-content: center;
    }
    .info-table th {
        width: 35% !important;
        padding: 8px 10px;
        font-size: 0.85rem;
    }
    .info-table td {
        padding: 8px 10px;
        font-size: 0.85rem;
    }
    .section-title {
        font-size: 1.1rem;
    }
}

.zNum {
    font-size: 4px;
    fill: var(--primary);
    font-weight: bold;
    text-anchor: middle;
    alignment-baseline: central;
}

.pTxt {
    font-size: 4.5px;
    fill: var(--text-main);
    text-anchor: middle;
    alignment-baseline: central;
}

.zBg {
    font-size: 7px;
    fill: rgba(0, 0, 0, 0.25);
    text-anchor: middle;
    alignment-baseline: hanging;
    font-weight: 500;
}

/* =============================
   PRINT-ONLY HEADER / FOOTER
   (Hidden on screen, shown on print)
   ============================= */
.print-header {
    display: none; /* hidden on screen */
    align-items: center;
    gap: 20px;
    padding: 12px 0 16px;
    margin-bottom: 16px;
    border-bottom: 3px solid #f26622;
}

.print-logo {
    height: 45px;
    object-fit: contain;
}

.print-header-text {
    flex: 1;
}

.print-brand {
    font-size: 22pt;
    font-weight: 700;
    color: #f26622;
    margin: 0;
    line-height: 1.1;
}

.print-tagline {
    font-size: 9pt;
    color: #64748b;
    margin: 2px 0 0;
}

.print-qr-area {
    text-align: right;
}

.print-url {
    font-size: 8pt;
    color: #64748b;
    margin: 1px 0;
}

/* =============================
   @MEDIA PRINT
   ============================= */
@media print {
    * {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    body {
        background: #fff;
        margin: 0;
        padding: 0;
        font-size: 10pt;
        color: #000;
    }

    /* Hide everything except the report */
    .top-nav,
    .form-card,
    .result-actions,
    .page-header,
    footer {
        display: none !important;
    }

    /* Make container full-width for print */
    .container {
        max-width: 100%;
        padding: 0 8mm;
    }

    main.page-content {
        padding: 0;
        margin: 0;
    }

    .result-card {
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
    }

    /* Ensure result section is visible */
    #kundliResult {
        display: block !important;
    }

    #kundliFormCard {
        display: none !important;
    }

    /* Show the print-only header */
    .print-header {
        display: flex !important;
    }

    /* Report title styling */
    .report-header h3 {
        font-size: 14pt;
        color: #2c3e50;
        margin: 0;
    }

    .data-section {
        margin-bottom: 18pt;
        page-break-inside: avoid;
        break-inside: avoid;
    }

    h4.section-title {
        font-size: 11pt;
        border-left: 4px solid #f26622;
        padding-left: 8px;
        margin-bottom: 8pt;
        color: #2c3e50;
        page-break-after: avoid;
        break-after: avoid;
    }

    h2, h3, h5 {
        page-break-after: avoid;
        break-after: avoid;
    }

    /* Charts */
    .charts-grid {
        display: flex !important;
        flex-direction: row !important;
        gap: 20px;
    }

    .chart-box {
        flex: 1;
        page-break-inside: avoid;
        break-inside: avoid;
        background: #FFFAF4 !important;
        border: 1px solid #ddd !important;
        padding: 10px !important;
    }

    .chart-svg-container {
        max-width: 180px;
        margin: 0 auto;
    }

    /* Tables */
    .info-table,
    .data-table {
        width: 100%;
        font-size: 9pt;
        border-collapse: collapse;
    }

    .info-table th,
    .info-table td,
    .data-table th,
    .data-table td {
        padding: 5pt 8pt;
        border: 1px solid #ccc;
    }

    .info-table th,
    .data-table th {
        background: #f5f5f5 !important;
        font-weight: 600;
        color: #2c3e50;
    }

    .data-table tbody tr:nth-child(even) {
        background: #fafafa !important;
    }

    .data-table tbody tr.mahadasha-row {
        background: #ffeee4 !important;
        border-top: 2px solid #f26622 !important;
    }

    /* Print footer at bottom of each page */
    @page {
        margin: 12mm 10mm;
        size: A4 portrait;
    }


    .break-before {
        page-break-before: always;
    }
}

/* Responsiveness */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .charts-grid {
        flex-direction: column;
        align-items: center;
    }

    /* Enforce desktop nav hidden on mobile */
    .desktop-nav {
        display: none !important;
    }

    .no-mobile {
        display: none !important;
    }

    #vfMenuBtn {
        display: block !important;
    }

    /* Form rows stacking - less aggressive */
    .d-flex.gap-10.input-row,
    .custom-fieldset .input-row {
        gap: 10px !important;
    }

    @media (max-width: 576px) {
        .d-flex.gap-10.input-row,
        .custom-fieldset .input-row {
            flex-direction: column;
            gap: 15px !important;
        }
    }

    .form-group.full-width {
        margin-top: 10px;
    }

    .info-table th {
        width: 35%;
    }

    /* Collapse nav links on small screens */
    .top-nav .container {
        flex-wrap: wrap;
        gap: 10px;
    }

    .nav-links {
        order: 3;
        width: 100%;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }

    .nav-ext-link {
        font-size: 0.82rem;
        padding: 6px 12px;
    }

    .controls-area {
        order: 2;
    }

    /* Header Adjustments - Prevent vertical stacking */
    .header-container {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 10px;
    }

    .toolbar-area {
        width: auto !important;
        justify-content: flex-end !important;
    }

    /* Results Bar */
    .result-actions {
        align-items: stretch !important;
        text-align: center;
    }

    .result-actions .d-flex {
        justify-content: center !important;
        width: 100%;
    }

    /* Footer adjustments */
    .footer-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-icons {
        justify-content: center;
    }

    .footer-links-col ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* ==============================
   SCREEN-ONLY / PRINT UTILITIES
   ============================== */

/* .no-print elements are hidden in print via the @media print block below */

/* Print-only footer (hidden on screen) */
.print-footer {
    display: none;
}

.print-footer-divider {
    border-top: 2px solid #f26622;
    margin: 24pt 0 12pt;
}

.print-footer-content {
    display: flex;
    align-items: center;
    gap: 16pt;
    justify-content: center;
    flex-wrap: wrap;
}

.print-footer-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2pt;
}

.print-footer-label {
    font-size: 10pt;
    font-weight: 700;
    color: #2c3e50;
}

.print-footer-url {
    font-size: 9pt;
    color: #f26622;
    font-weight: 600;
}

.print-footer-sep {
    font-size: 20pt;
    color: #ccc;
    line-height: 1;
}

.print-footer-copy {
    text-align: center;
    font-size: 8pt;
    color: #888;
    margin-top: 8pt;
}

/* Helper for page breaks */
.print-page-break {
    page-break-before: always !important;
}

/* ==============================
   @MEDIA PRINT — final overrides
   ============================== */
@media print {
    /* Show print-only footer */
    .print-footer {
        display: block !important;
    }

    /* Hide elements marked no-print (e.g. D9 Navamsa chart) */
    .no-print {
        display: none !important;
    }

    /* Hide the website nav header + footer in print */
    #main-header,
    footer {
        display: none !important;
    }

    /* Charts: show both charts side-by-side if they fit, or stacked nicely */
    .charts-grid {
        display: flex !important;
        flex-direction: row !important;
        gap: 20px;
        justify-content: center;
    }

    .chart-box {
        flex: 0 0 calc(50% - 10px) !important;
        max-width: 350px !important;
    }

    #d1ChartBox, #d9ChartBox {
        margin: 0 !important;
    }

    /* Suppress browser default margins so our print-header is at very top */
    @page {
        margin-top: 8mm;
    }
}

/* ==============================
   ARTICLE / SEO CONTENT STYLES
   ============================== */
.vf-article {
    max-width: 900px;
    margin: 60px auto 0;
    padding: 0 20px;
    font-family: 'Roboto', sans-serif;
    color: #2c3e50;
    line-height: 1.8;
}

.vf-article-inner > section {
    margin-bottom: 48px;
}

.vf-article h2 {
    font-size: 1.55rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f26622;
    display: inline-block;
}

.vf-article h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 16px 0 8px;
}

.vf-intro {
    font-size: 1.08rem;
    color: #444;
    margin-bottom: 48px;
    padding: 20px 24px;
    background: #fff9f5;
    border-left: 4px solid #f26622;
    border-radius: 0 6px 6px 0;
}

.vf-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 16px;
}

.vf-list li {
    padding: 6px 0 6px 4px;
    font-size: 0.97rem;
    color: #444;
    border-bottom: 1px dashed #eee;
}

.vf-checklist {
    list-style: none;
    padding: 0;
    margin: 10px 0 16px;
}

.vf-checklist li {
    padding: 7px 0;
    font-size: 0.97rem;
    color: #2c3e50;
    border-bottom: 1px solid #f5f5f5;
}

.vf-note {
    background: #fff9f5;
    border-left: 3px solid #f26622;
    padding: 10px 16px;
    border-radius: 0 4px 4px 0;
    font-size: 0.95rem;
    color: #555;
    margin-top: 12px;
}

/* Parts grid */
.vf-parts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

@media (max-width: 480px) {
    .vf-parts-grid {
        grid-template-columns: 1fr;
    }
}

.vf-part-card {
    background: #fff;
    border: 1px solid #eee;
    border-top: 3px solid #f26622;
    border-radius: 6px;
    padding: 16px 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

.vf-part-card h3 {
    margin: 0 0 6px;
    font-size: 1rem;
    color: #f26622;
}

.vf-part-card p {
    margin: 0;
    font-size: 0.92rem;
    color: #555;
}

/* Dosha grid */
.vf-dosha-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

@media (max-width: 480px) {
    .vf-dosha-grid {
        grid-template-columns: 1fr;
    }
}

.vf-dosha-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

.vf-dosha-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 8px;
}

.vf-dosha-card h3 {
    margin: 0 0 6px;
    font-size: 1rem;
    color: #2c3e50;
}

.vf-dosha-card p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

/* Blockquote */
.vf-quote {
    border-left: 4px solid #f26622;
    margin: 16px 0;
    padding: 14px 20px;
    background: #fff9f5;
    font-style: italic;
    font-size: 1.1rem;
    color: #444;
    border-radius: 0 6px 6px 0;
}

/* FAQ */
.vf-faq {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 28px 30px;
}

.vf-faq-item {
    border-bottom: 1px solid #eee;
    padding: 14px 0;
}

.vf-faq-item:last-child {
    border-bottom: none;
}

.vf-faq-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 6px;
}

.vf-faq-item p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
}