:root {
    --primary-color: #E07B39;
    --primary-dark: #C4652B;
    --primary-warm: #F5A623;
    --secondary-color: #D4A574;
    --accent-gold: #C9A227;
    --dark-brown: #4A3728;
    --warm-cream: #FDF8F3;
    --light-saffron: #FEF5EB;
    --ivory: #FFFEF9;
    --text-dark: #3D2914;
    --text-light: #6B5344;
    --border-color: #E8D4BE;
    --muted-saffron: #F4E4D4;
    --font-heading: 'Noto Serif Devanagari', 'Georgia', serif;
    --font-body: 'Poppins', 'Noto Sans Devanagari', sans-serif;
}

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--light-saffron) 100%);
    min-height: 100vh;
    color: var(--text-dark);
}

h1, h2, h3, h4, h5, .section-title, .card-header h5,
.result-header h2, .hero-section h1, .hero-v2 h1 {
    font-family: var(--font-heading);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.65rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.15rem; }
h5 { font-size: 1.05rem; }

p, li, td, th, label, .form-label {
    font-size: 1rem;
    line-height: 1.65;
}

/* Top Bar */
.top-bar {
    background: var(--dark-brown);
    padding: 0.5rem 0;
    font-size: 0.8rem;
}

.top-bar .top-links {
    display: flex;
    gap: 1.5rem;
}

.top-bar .top-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.top-bar .top-links a:hover {
    color: var(--primary-warm);
}

.top-bar .lang-btn {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    padding: 0.2rem 0.75rem;
}

.top-bar .lang-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.navbar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 0.75rem 0;
    box-shadow: 0 4px 20px rgba(224, 123, 57, 0.25);
}

.navbar .dropdown-menu {
    background: white;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
}

.navbar .dropdown-item {
    color: var(--text-dark);
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
}

.navbar .dropdown-item:hover {
    background: var(--light-saffron);
    color: var(--primary-color);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-icon {
    font-size: 2rem;
    color: var(--accent-gold);
}

.language-toggle {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    border-radius: 20px;
    padding: 0.3rem 1rem;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

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

.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-section h1 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
}

.hero-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    position: relative;
}

.form-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background: white;
    overflow: hidden;
}

.form-card .card-header {
    background: linear-gradient(135deg, var(--dark-brown) 0%, #5D4037 100%);
    color: white;
    padding: 1.25rem 1.5rem;
    border: none;
}

.form-card .card-body {
    padding: 2rem;
}

.form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(224, 123, 57, 0.1);
}

.generate-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: 30px;
    padding: 1rem 3rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(224, 123, 57, 0.25);
}

.generate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224, 123, 57, 0.3);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.cta-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: 30px;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(224, 123, 57, 0.25);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224, 123, 57, 0.3);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.location-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 10px 10px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.location-dropdown.show {
    display: block;
}

.location-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s ease;
    color: var(--text-dark);
    font-weight: 500;
}

.location-item:hover {
    background: var(--light-saffron);
    color: var(--primary-color);
}

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

.result-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background: white;
    overflow: hidden;
}

.result-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1.5rem 2rem;
    text-align: center;
}

.result-header h2 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.birth-info {
    opacity: 0.9;
    font-size: 0.95rem;
}

.section-box {
    background: var(--light-saffron);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
}

.section-title {
    color: var(--dark-brown);
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-gold);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.info-item {
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.info-item .label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

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

.chart-section {
    min-height: 450px;
}

.kundali-chart {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 20px auto;
    background: white;
}

.kundali-chart svg {
    width: 100%;
    height: auto;
    display: block;
}

.kundali-chart .chart-house {
    fill: white;
    stroke: var(--dark-brown);
    stroke-width: 2;
}

.kundali-chart .chart-text {
    font-family: 'Poppins', sans-serif;
    text-anchor: middle;
    dominant-baseline: middle;
}

.kundali-chart .house-num {
    font-size: 10px;
    fill: var(--text-light);
}

.kundali-chart .house-rashi {
    font-size: 11px;
    fill: var(--primary-color);
    font-weight: 600;
}

.kundali-chart .house-planets {
    font-size: 10px;
    fill: var(--dark-brown);
    font-weight: 700;
}

.chart-birth-info {
    margin-top: 0.75rem;
    padding: 0.5rem;
    background: var(--light-saffron);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.chart-details {
    color: var(--dark-brown);
    line-height: 1.4;
}

.chart-details strong {
    font-size: 0.95rem;
    color: var(--primary-color);
}

.chart-details small {
    font-size: 0.8rem;
    color: var(--text-light);
}

.planet-table {
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.planet-table thead {
    background: linear-gradient(135deg, var(--dark-brown) 0%, #5D4037 100%);
    color: white;
}

.planet-table th {
    font-weight: 500;
    padding: 1rem;
    border: none;
}

.planet-table td {
    padding: 0.75rem 1rem;
    vertical-align: middle;
    border-color: var(--border-color);
}

.planet-table tbody tr:hover {
    background: var(--light-saffron);
}

.footer {
    background: var(--dark-brown);
    color: white;
    padding: 1.5rem 0;
    margin-top: 3rem;
}

.footer p {
    opacity: 0.9;
    font-size: 0.9rem;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
    color: var(--primary-color) !important;
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .kundali-chart {
        max-width: 100%;
        padding: 0 0.5rem;
    }
    
    .house {
        font-size: 0.75rem;
        min-height: 50px;
    }
    
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .generate-btn {
        width: 100%;
    }
    
    .table-responsive {
        -webkit-overflow-scrolling: touch;
    }
    
    table.table {
        font-size: 0.9rem;
    }
    
    table.table th, table.table td {
        padding: 0.5rem 0.4rem;
        white-space: nowrap;
    }
    
    .prediction-header {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .score-circle {
        margin-bottom: 0.5rem;
    }
    
    .house-grid {
        grid-template-columns: 1fr !important;
    }
    
    .result-header {
        padding: 1rem;
    }
    
    .result-header h2 {
        font-size: 1.3rem;
    }
    
    .section-card {
        padding: 1rem !important;
    }
    
    .btn, button {
        min-height: 44px;
        min-width: 44px;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 15px;
    }
    
    .language-toggle {
        flex-direction: row;
        gap: 0.25rem;
    }
    
    .lang-btn {
        font-size: 0.75rem;
        padding: 0.3rem 0.75rem;
        min-height: 36px;
    }
    
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.35rem; }
    h3 { font-size: 1.15rem; }
    
    .field-tags, .quality-tags, .concern-tags {
        flex-wrap: wrap;
    }
    
    .field-tag, .quality-tag, .concern-tag {
        font-size: 0.8rem;
    }
}

/* Dasha Styles */
.dasha-list {
    max-height: 400px;
    overflow-y: auto;
}

.dasha-item {
    background: white;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    border-left: 4px solid var(--border-color);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.dasha-item.dasha-current,
.dasha-item.current-dasha {
    border-left-color: #28a745;
    background: #e8f5e9;
    border-left-width: 5px;
    font-weight: 600;
}

.dasha-item.dasha-past {
    opacity: 0.6;
}

.dasha-lord {
    font-weight: 600;
    color: var(--dark-brown);
    min-width: 80px;
}

.dasha-period {
    font-size: 0.85rem;
    color: var(--text-light);
    flex: 1;
}

.dasha-years {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* Manglik Styles */
.manglik-box {
    text-align: center;
}

.manglik-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.manglik-yes {
    background: #fff3cd;
    color: #856404;
    border: 2px solid #ffc107;
}

.manglik-no {
    background: #d4edda;
    color: #155724;
    border: 2px solid #28a745;
}

.status-icon {
    font-size: 1.5rem;
}

.manglik-info {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: left;
}

.manglik-cancellations {
    background: #e8f5e9;
    padding: 1rem;
    border-radius: 8px;
    text-align: left;
}

.cancellation-item {
    color: #2e7d32;
    margin-top: 0.25rem;
}

/* Transit Styles */
.transit-positions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.transit-badge {
    background: white;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid var(--border-color);
}

.transit-effects {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.effect-item {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.effect-favorable {
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
}

.effect-challenging {
    background: #fff3cd;
    border-left: 4px solid #ff9800;
}

.effect-type {
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-weight: 500;
}

.effect-favorable .effect-type {
    background: #4caf50;
    color: white;
}

.effect-challenging .effect-type {
    background: #ff9800;
    color: white;
}

.no-effects {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
}

/* Daily Rashifal Section */
.rashifal-section {
    padding: 3rem 0;
    background: white;
}

.rashifal-grid {
    margin-top: 1.5rem;
}

.rashifal-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.5rem;
    background: var(--warm-cream);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.rashifal-card:hover {
    border-color: var(--primary-color);
    background: var(--light-saffron);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(224, 123, 57, 0.2);
}

.rashifal-symbol {
    font-size: 2rem;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.rashifal-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.rashifal-name-en {
    font-size: 0.7rem;
    color: var(--text-light);
}

/* Current Dasha Section Styles */
.current-dasha-section {
    background: linear-gradient(135deg, #fff8f0 0%, #fff5eb 100%);
}

.current-dasha-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.age-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #e67e22 100%);
    color: white;
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
}

.age-label {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.age-value {
    font-size: 1.25rem;
    font-weight: 700;
}

.dasha-card {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-top: 4px solid var(--primary-color);
}

.mahadasha-card {
    border-top-color: #28a745;
}

.antardasha-card {
    border-top-color: #17a2b8;
}

.pratyantardasha-card {
    border-top-color: #6f42c1;
}

.dasha-type {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.dasha-planet {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
}

.dasha-dates {
    font-size: 0.85rem;
    color: var(--text-light);
}

.dasha-duration {
    font-size: 0.75rem;
    color: var(--primary-color);
    margin-top: 0.5rem;
    font-weight: 500;
}

@media (max-width: 992px) {
    .current-dasha-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .current-dasha-cards {
        grid-template-columns: 1fr;
    }
}

/* Section Subtitle */
.section-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 0.75rem;
}

/* Indicator Badges */
.indicator-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.indicator-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
}

.sade-sati-badge {
    background: #fff3cd;
    color: #856404;
    border: 2px solid #ffc107;
}

.sade-sati-inactive {
    background: #e8f5e9;
    color: #2e7d32;
    border: 2px solid #4caf50;
}

.manglik-badge {
    background: #ffebee;
    color: #c62828;
    border: 2px solid #ef5350;
}

.manglik-inactive {
    background: #e8f5e9;
    color: #2e7d32;
    border: 2px solid #4caf50;
}

.badge-icon {
    font-size: 1.1rem;
}

/* Planetary Strength */
.strength-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
}

.strength-card {
    background: white;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.strength-planet {
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 0.25rem;
}

.strength-status {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.strength-bar-container {
    background: #e0e0e0;
    border-radius: 4px;
    height: 8px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.strength-bar {
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.strength-value {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Ashtakavarga */
.ashtakavarga-cards {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.75rem;
}

.ashtakavarga-card {
    background: white;
    border-radius: 8px;
    padding: 0.75rem;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    border-top: 3px solid var(--primary-color);
}

.ashtakavarga-card.strong {
    border-top-color: #28a745;
}

.ashtakavarga-card.average {
    border-top-color: #ffc107;
}

.ashtakavarga-card.weak {
    border-top-color: #dc3545;
}

.ashtakavarga-card .house-num {
    font-size: 0.7rem;
    color: var(--text-light);
}

.ashtakavarga-card .house-points {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-brown);
}

.ashtakavarga-card .house-strength {
    font-size: 0.7rem;
    font-weight: 500;
}

.ashtakavarga-card.strong .house-strength {
    color: #28a745;
}

.ashtakavarga-card.average .house-strength {
    color: #ffc107;
}

.ashtakavarga-card.weak .house-strength {
    color: #dc3545;
}

@media (max-width: 768px) {
    .ashtakavarga-cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 576px) {
    .ashtakavarga-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* House Analysis */
.house-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.house-card {
    background: white;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border-left: 4px solid var(--primary-color);
}

.house-header {
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.house-areas {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.house-planets {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 500;
}

@media (max-width: 992px) {
    .house-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .house-cards {
        grid-template-columns: 1fr;
    }
}

/* Prediction Box */
.prediction-box {
    padding: 0.5rem 0;
}

.prediction-item {
    background: white;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    border-left: 4px solid var(--primary-color);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.prediction-icon {
    font-size: 1.1rem;
}

/* Consult CTA */
.consult-cta {
    text-align: center;
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, #f0fff4 0%, #ffffff 100%);
    border-radius: 12px;
    border: 2px dashed #25D366;
}

.consult-text {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:active {
    transform: translateY(0);
}

/* Yogas Grid */
.yogas-box {
    padding: 0.5rem 0;
}

.yogas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1rem;
}

.yoga-card {
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    border-left: 4px solid var(--primary-color);
}

.yoga-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.yoga-icon {
    font-size: 1.4rem;
}

.yoga-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-brown);
    flex-grow: 1;
}

.yoga-strength {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
}

.yoga-planets {
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.yoga-description {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

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

/* Remedies */
.remedies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

.remedy-card {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    border-top: 4px solid #dc3545;
}

.remedy-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.remedy-planet {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-brown);
}

.remedy-priority {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.remedy-priority.high {
    background: #ffebee;
    color: #c62828;
}

.remedy-priority.medium {
    background: #fff3e0;
    color: #e65100;
}

.remedy-status {
    font-size: 0.8rem;
    color: #dc3545;
    margin-bottom: 0.75rem;
}

.remedy-details {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 0.75rem;
}

.remedy-item {
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

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

.no-remedies {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
}

.success-icon {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

/* Current Dasha Section Inner */
.current-dasha-section-inner {
    background: linear-gradient(135deg, #fff8f0 0%, #fff5eb 100%);
    padding: 1rem;
    border-radius: 10px;
}

/* Birth Indicators */
.birth-indicators {
    height: 100%;
}

.indicator-row {
    margin-bottom: 1rem;
}

/* New Hero Section */
.hero-section-new {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.hero-tagline {
    font-size: clamp(0.85rem, 2vw, 1rem);
    opacity: 0.9;
    margin-bottom: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.hero-subtitle {
    font-size: clamp(0.8rem, 1.8vw, 0.95rem);
    opacity: 0.85;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.trust-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

.trust-chip svg {
    opacity: 0.9;
}

.trust-microcopy {
    font-size: 0.75rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.trust-separator {
    margin: 0 0.5rem;
    opacity: 0.5;
}

.trust-points {
    margin-bottom: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.trust-icon {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.hero-cta-btn {
    background: white;
    color: var(--primary-color);
    border-radius: 30px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-cta-btn:hover {
    background: var(--accent-gold);
    color: white;
}

.hero-form-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.form-card-header {
    background: linear-gradient(135deg, var(--dark-brown) 0%, #5D4037 100%);
    color: white;
    border-radius: 20px 20px 0 0;
    padding: 1rem 1.5rem;
    text-align: center;
}

.form-card-header h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.form-card-body {
    padding: 1.5rem;
}

.generate-btn-new {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: 30px;
    padding: 0.85rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(224, 123, 57, 0.25);
}

.generate-btn-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224, 123, 57, 0.3);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
}

/* Quick Tools Section */
.quick-tools-section {
    background: white;
    padding: 1.25rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.quick-tools-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
}

.quick-tool-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--light-saffron);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    min-width: 120px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.quick-tool-card:hover {
    border-color: var(--primary-color);
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.tool-icon {
    font-size: 1.25rem;
}

.tool-svg {
    stroke: var(--primary-color);
    transition: stroke 0.3s ease;
}

.quick-tool-card:hover .tool-svg {
    stroke: var(--primary-dark);
}

.tool-name {
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}

/* Reveals Section */
.reveals-section {
    padding: 3rem 0;
    background: var(--warm-cream);
}

.section-heading {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
}

.section-subheading {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.reveals-grid {
    margin-top: 1.5rem;
}

.reveal-card {
    background: white;
    border-radius: 12px;
    padding: 1rem 0.75rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 0.75rem;
}

.reveal-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.reveal-icon {
    font-size: 1.75rem;
    display: block;
    margin-bottom: 0.5rem;
}

.reveal-svg {
    stroke: var(--primary-color);
    display: block;
    margin: 0 auto 0.5rem;
}

.reveal-card h4 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark-brown);
    margin: 0;
}

/* Panchang & Transit Section */
.panchang-transit-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f4f0 0%, #fff8f0 100%);
}

.panchang-card,
.transit-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.card-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-gold);
}

.panchang-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.panchang-item {
    background: var(--light-saffron);
    padding: 0.75rem;
    border-radius: 8px;
}

.panchang-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.panchang-value {
    font-weight: 600;
    color: var(--dark-brown);
    font-size: 0.9rem;
}

.transit-status-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.transit-status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--light-saffron);
    border-radius: 8px;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.transit-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

.transit-answer {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary-color);
}

/* Hub Sections */
.marriage-hub-section,
.career-hub-section {
    padding: 3rem 0;
}

.marriage-hub-section {
    background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
}

.career-hub-section {
    background: linear-gradient(135deg, #f5f8ff 0%, #fff 100%);
}

.hub-cards {
    margin-top: 1.5rem;
}

.hub-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    cursor: pointer;
}

.hub-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-color);
}

.hub-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
}

.hub-svg {
    stroke: var(--primary-color);
    display: block;
    margin: 0 auto 0.75rem;
}

.hub-card h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 0.25rem;
}

.hub-card p {
    font-size: 0.75rem;
    color: var(--text-light);
    margin: 0;
}

/* Premium Reports */
.premium-reports-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #fffbe6 0%, #fff 100%);
}

.premium-cards {
    margin-top: 1.5rem;
}

.premium-card {
    background: white;
    border-radius: 15px;
    padding: 1.25rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.premium-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

.premium-badge {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.premium-card h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 0.75rem;
}

.premium-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 0.75rem 0;
    text-align: left;
}

.premium-card li {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.2rem 0;
    padding-left: 1rem;
    position: relative;
}

.premium-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-size: 0.7rem;
}

.premium-card .price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.85rem;
    margin: 0;
}

/* Remedies Guidance Section */
.remedies-guidance-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f0fff4 0%, #fff 100%);
}

.remedies-items {
    margin-top: 1.5rem;
}

.remedy-item-card {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.remedy-icon {
    font-size: 1.5rem;
}

.remedy-item-card span:last-child {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark-brown);
}

/* Learn Section */
.learn-section {
    padding: 3rem 0;
    background: white;
}

.learn-cards {
    margin-top: 1.5rem;
}

.learn-card {
    background: var(--light-saffron);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.learn-card:hover {
    background: var(--primary-color);
    color: white;
}

.learn-card h6 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* New Footer */
.footer-new {
    background: var(--dark-brown);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 1.5rem 0;
}

/* Mobile Sticky Button */
.mobile-sticky-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem 1rem;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.mobile-sticky-btn .btn {
    border-radius: 30px;
    padding: 0.75rem;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .trust-points {
        display: inline-block;
        text-align: left;
    }
    
    body {
        padding-bottom: 70px;
    }
}

@media (max-width: 768px) {
    .hero-section-new {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .section-heading {
        font-size: 1.35rem;
    }
    
    .reveals-section,
    .panchang-transit-section,
    .marriage-hub-section,
    .career-hub-section,
    .premium-reports-section,
    .remedies-guidance-section,
    .learn-section {
        padding: 2rem 0;
    }
    
    .panchang-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .quick-tool-card {
        min-width: 100px;
        padding: 0.5rem 1rem;
    }
    
    .tool-icon {
        font-size: 1.25rem;
    }
    
    .tool-name {
        font-size: 0.7rem;
    }
}

/* WhatsApp Consultation CTA */
.consultation-cta {
    text-align: center;
    padding: 1.5rem 1rem;
}

.consultation-cta .cta-subtext {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp svg {
    flex-shrink: 0;
}

/* Yogas Cards Grid */
.yogas-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.yoga-card {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.yoga-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.yoga-card.very-strong {
    border-left: 4px solid #28a745;
}

.yoga-card.strong {
    border-left: 4px solid var(--primary-color);
}

.yoga-card.moderate {
    border-left: 4px solid #ffc107;
}

.yoga-card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.yoga-card-header .yoga-icon {
    font-size: 1.25rem;
}

.yoga-card-header .yoga-name {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-brown);
}

.yoga-card-body .yoga-description {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.yoga-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
}

.yoga-planets {
    font-size: 0.75rem;
    color: var(--text-light);
    background: var(--light-saffron);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.yoga-strength-badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-weight: 600;
}

.yoga-strength-badge.very-strong {
    background: #d4edda;
    color: #155724;
}

.yoga-strength-badge.strong {
    background: #fff3e0;
    color: #e65100;
}

.yoga-strength-badge.moderate {
    background: #fff8e1;
    color: #f57f17;
}

@media (max-width: 576px) {
    .yogas-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   HOMEPAGE V2 STYLES
   ======================================== */

.homepage-v2 {
    background: linear-gradient(180deg, #FDF5EB 0%, #F8EDE0 50%, #FDF5EB 100%);
}

/* Top Bar V2 */
.top-bar-v2 {
    background: var(--dark-brown);
    padding: 0.4rem 0;
    font-size: 0.75rem;
}

.top-bar-v2 .top-vedic {
    color: rgba(255, 255, 255, 0.7);
}

.top-bar-v2 .lang-btn {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
    margin-left: 0.25rem;
}

.top-bar-v2 .lang-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Header V2 */
.header-v2 {
    background: linear-gradient(135deg, #8B2E2E 0%, #6B2222 100%);
    padding: 0.75rem 0;
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand-v2 {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.5rem;
}

.brand-logo {
    background: #FFD700;
    color: #8B2E2E;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.brand-logo-img {
    height: 45px;
    width: auto;
    border-radius: 50%;
}

.brand-logo-img-sm {
    height: 35px;
    width: auto;
    border-radius: 50%;
}

.brand-text {
    color: white;
    font-weight: 600;
    font-size: 1.25rem;
}

.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header-nav .nav-list-v2 {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.25rem;
}

.header-nav .nav-link-v2 {
    display: block;
    padding: 0.5rem 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.header-nav .nav-link-v2:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.header-nav .nav-link-v2.active {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.navbar-nav-links {
    display: flex;
    gap: 0.5rem;
    margin-left: auto;
    margin-right: 1rem;
}

.navbar-nav-links .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
}

.generate-btn-header {
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    color: white;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
}

.generate-btn-header:hover {
    background: linear-gradient(135deg, #43A047 0%, #2E7D32 100%);
    color: white;
}

/* Navigation Bar V2 */
.nav-bar-v2 {
    background: linear-gradient(135deg, #D4A574 0%, #C49664 100%);
    padding: 0;
    border-bottom: 3px solid #B8956A;
}

.nav-list-v2 {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-link-v2 {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--dark-brown);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.nav-link-v2:hover,
.nav-link-v2.active {
    color: #8B2E2E;
    background: rgba(255, 255, 255, 0.3);
}

/* Hero V2 */
.hero-v2 {
    padding: 2rem 0 1.5rem;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.03"><text x="50%" y="50%" font-size="80" text-anchor="middle" dominant-baseline="middle">☉</text></svg>');
}

.hero-title-v2 {
    font-size: 2rem;
    font-weight: 700;
    color: #8B2E2E;
    margin-bottom: 0.25rem;
}

.hero-hindi {
    color: #8B2E2E;
}

.hero-subtitle-v2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #8B2E2E;
    margin-bottom: 0.5rem;
}

.hero-desc-v2 {
    color: var(--text-light);
    font-size: 0.95rem;
    max-width: 600px;
    margin: 0 auto 1rem;
}

.hero-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.hero-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #D4A574;
}

.hero-dots .dot.active {
    background: #8B2E2E;
}

/* Main Content V2 */
.main-content-v2 {
    padding: 1.5rem 0 2rem;
}

/* Sidebar Cards */
.sidebar-card {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.sidebar-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-title-arrow {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: space-between;
}

.tools-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tools-list li {
    margin-bottom: 0.5rem;
}

.tools-list a {
    display: flex;
    justify-content: space-between;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 0.4rem 0;
    transition: color 0.2s;
}

.tools-list a:hover {
    color: var(--primary-color);
}

.report-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.75rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.report-list li {
    margin-bottom: 0.3rem;
}

.btn-view-reports {
    background: #8B2E2E;
    color: white;
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
    border-radius: 20px;
}

.btn-view-reports:hover {
    background: #6B2222;
    color: white;
}

/* Form Card V2 */
.form-card-v2 {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-title-v2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 1.25rem;
    text-align: center;
}

.form-card-v2 .form-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-card-v2 .form-control,
.form-card-v2 .form-select {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.6rem 0.75rem;
    font-size: 0.9rem;
}

.form-card-v2 .form-control:focus,
.form-card-v2 .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(224, 123, 57, 0.1);
}

.get-kundli-btn {
    background: linear-gradient(135deg, #8B2E2E 0%, #6B2222 100%);
    border: none;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    margin-top: 0.5rem;
}

.get-kundli-btn:hover {
    background: linear-gradient(135deg, #7B2626 0%, #5B1C1C 100%);
}

.form-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.tab-btn {
    background: var(--light-saffron);
    border: 1px solid var(--border-color);
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
    border-radius: 20px;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s;
}

.tab-btn.active,
.tab-btn:hover {
    background: #8B2E2E;
    color: white;
    border-color: #8B2E2E;
}

/* Panchang List */
.panchang-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.panchang-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    font-size: 0.85rem;
    border-bottom: 1px dashed var(--border-color);
}

.panchang-list li:last-child {
    border-bottom: none;
}

.panchang-footer,
.gochar-footer {
    margin-top: 0.75rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.8rem;
    color: var(--text-light);
}

.planet-icon {
    color: var(--primary-color);
}

.arrow-link {
    color: var(--primary-color);
    cursor: pointer;
}

/* Gochar */
.gochar-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
    background: var(--light-saffron);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.gochar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gochar-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
    font-size: 0.85rem;
    cursor: pointer;
}

.gochar-list li .icon {
    color: var(--primary-color);
}

.gochar-list li .transit-rashi {
    margin-left: auto;
    font-weight: 600;
    color: var(--dark-brown);
}

/* Quick Gochar Card Styles */
.gochar-subtitle {
    font-size: 0.75rem;
    color: var(--text-light);
    margin: -0.5rem 0 0.75rem 0;
}

.gochar-moon-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: linear-gradient(135deg, var(--light-saffron) 0%, #FFF5E6 100%);
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.gochar-moon-info .moon-label {
    font-size: 0.8rem;
    color: var(--text-light);
}

.gochar-moon-info .moon-rashi {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.gochar-flags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.gochar-flag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
}

.gochar-flag.success {
    background: #E8F5E9;
    color: #2E7D32;
}

.gochar-flag.warning {
    background: #FFF3E0;
    color: #E65100;
}

.gochar-flag.danger {
    background: #FFEBEE;
    color: #C62828;
}

.gochar-overall {
    margin-top: 0.75rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gochar-overall .overall-label {
    font-size: 0.8rem;
    color: var(--text-light);
}

.gochar-overall .overall-status {
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
}

.overall-status.favorable {
    background: #E8F5E9;
    color: #2E7D32;
}

.overall-status.mixed {
    background: #FFF3E0;
    color: #E65100;
}

.overall-status.challenging {
    background: #FFEBEE;
    color: #C62828;
}

.overall-status.neutral {
    background: #F5F5F5;
    color: #616161;
}

/* Gochar Calculator Page Styles */
.gochar-type-toggle {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.gochar-type-btn {
    padding: 0.75rem 2rem;
    border: none;
    background: transparent;
    border-radius: 25px;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.2s;
}

.gochar-type-btn.active {
    background: linear-gradient(135deg, #8B2E2E 0%, #6B2222 100%);
    color: white;
}

.gochar-type-btn:hover:not(.active) {
    background: var(--light-saffron);
}

.gochar-header {
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.gochar-score-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--light-saffron) 0%, #FFF5E6 100%);
    border-radius: 16px;
}

.score-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.score-circle.favorable {
    background: #E8F5E9;
    color: #2E7D32;
    border: 3px solid #4CAF50;
}

.score-circle.mixed {
    background: #FFF3E0;
    color: #E65100;
    border: 3px solid #FF9800;
}

.score-circle.challenging {
    background: #FFEBEE;
    color: #C62828;
    border: 3px solid #F44336;
}

.score-circle.neutral {
    background: #F5F5F5;
    color: #616161;
    border: 3px solid #9E9E9E;
}

.score-info h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 0.25rem;
}

.score-info p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

.transit-card {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.2s;
}

.transit-card.success {
    border-color: #4CAF50;
    background: linear-gradient(135deg, #E8F5E9 0%, white 100%);
}

.transit-card.warning {
    border-color: #FF9800;
    background: linear-gradient(135deg, #FFF3E0 0%, white 100%);
}

.transit-card.danger {
    border-color: #F44336;
    background: linear-gradient(135deg, #FFEBEE 0%, white 100%);
}

.transit-card.neutral {
    border-color: var(--border-color);
}

.transit-planet {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.transit-planet .planet-symbol {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.transit-planet .planet-name {
    font-weight: 600;
    color: var(--dark-brown);
}

.transit-rashi {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.transit-house {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.transit-effect {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.transit-effect.success {
    background: #E8F5E9;
    color: #2E7D32;
}

.transit-effect.warning {
    background: #FFF3E0;
    color: #E65100;
}

.transit-effect.danger {
    background: #FFEBEE;
    color: #C62828;
}

.transit-effect.neutral {
    background: #F5F5F5;
    color: #616161;
}

.gochar-flags-section h5,
.gochar-analysis h5 {
    font-weight: 600;
    color: var(--dark-brown);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.flags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.gochar-flag-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

.gochar-flag-item.success {
    background: #E8F5E9;
    color: #2E7D32;
}

.gochar-flag-item.warning {
    background: #FFF3E0;
    color: #E65100;
}

.gochar-flag-item.danger {
    background: #FFEBEE;
    color: #C62828;
}

.gochar-flag-item.neutral {
    background: #F5F5F5;
    color: #616161;
}

.gochar-flag-item .flag-icon {
    font-size: 1.1rem;
}

.analysis-item {
    padding: 1rem;
    background: var(--light-saffron);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.analysis-item h6 {
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
}

.analysis-item p {
    color: var(--text-dark);
    margin: 0;
    font-size: 0.9rem;
}

/* Transit Timeline */
.transit-timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.timeline-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.timeline-card.saturn {
    border-left: 4px solid #5D4E37;
}

.timeline-card.jupiter {
    border-left: 4px solid #C9A227;
}

.timeline-card.rahu {
    border-left: 4px solid #7B1FA2;
}

.timeline-planet {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.timeline-planet .tl-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

.timeline-planet .tl-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-brown);
}

.timeline-transit .tl-rashi-change {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.tl-from {
    color: var(--text-light);
}

.tl-arrow {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.tl-to {
    color: var(--primary-color);
}

.tl-date {
    text-align: center;
    color: var(--dark-brown);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.tl-countdown {
    text-align: center;
    background: var(--light-saffron);
    padding: 0.75rem;
    border-radius: 8px;
}

.tl-countdown .tl-days {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.tl-countdown .tl-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
}

.tl-impact {
    margin-top: 0.75rem;
    padding: 0.5rem;
    border-radius: 6px;
    text-align: center;
    font-size: 0.85rem;
}

.tl-impact.good {
    background: #E8F5E9;
    color: #2E7D32;
}

.tl-impact.bad {
    background: #FFEBEE;
    color: #C62828;
}

.tl-impact.sade_sati {
    background: #FFF3E0;
    color: #E65100;
}

.tl-impact.neutral {
    background: #F5F5F5;
    color: #616161;
}

.current-positions-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.current-pos-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.current-pos-item .pos-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.current-pos-item .pos-planet {
    font-size: 0.8rem;
    color: var(--text-light);
}

.current-pos-item .pos-rashi {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-brown);
}

/* Sade Sati & Dhaiya Cards */
.sade-sati-card,
.dhaiya-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    height: 100%;
}

.sade-sati-card.active {
    border-color: #E65100;
    background: linear-gradient(135deg, #FFF3E0 0%, white 100%);
}

.dhaiya-card.active {
    border-color: #F44336;
    background: linear-gradient(135deg, #FFEBEE 0%, white 100%);
}

.ss-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.ss-header .ss-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.ss-header .ss-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-brown);
}

.ss-status {
    margin-bottom: 1rem;
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-badge.active {
    background: #FFEBEE;
    color: #C62828;
}

.status-badge.inactive {
    background: #E8F5E9;
    color: #2E7D32;
}

.phase-name {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.phases-timeline {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.phase-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 8px;
    background: #F9F9F9;
}

.phase-item.current {
    background: var(--light-saffron);
    border: 1px solid var(--primary-color);
}

.phase-item.completed {
    opacity: 0.6;
}

.phase-marker {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.phase-item.current .phase-marker {
    background: var(--primary-color);
    color: white;
}

.phase-info .phase-rashi {
    font-weight: 600;
    color: var(--dark-brown);
}

.phase-info .phase-title {
    font-size: 0.8rem;
    color: var(--text-light);
}

.dhaiya-type {
    font-weight: 500;
    color: #C62828;
    margin: 0;
}

/* Remedies */
.remedies-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.remedy-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--light-saffron);
    border-radius: 8px;
}

.remedy-item .remedy-icon {
    font-size: 1.25rem;
}

.remedy-item .remedy-text {
    flex: 1;
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* Trending */
.trending-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trending-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.4rem 0;
    font-size: 0.8rem;
    color: var(--text-dark);
    border-bottom: 1px dashed var(--border-color);
}

.trending-list li:last-child {
    border-bottom: none;
}

.trend-icon {
    color: #8B2E2E;
}

/* Feature Cards V2 */
.feature-cards-v2 {
    padding: 1.5rem 0 2rem;
    background: linear-gradient(180deg, #F8EDE0 0%, #FDF5EB 100%);
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 1.25rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    height: 100%;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.feature-card h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 0.25rem;
}

.feature-card p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.btn-feature {
    background: #8B2E2E;
    color: white;
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    border-radius: 20px;
}

.btn-feature:hover {
    background: #6B2222;
    color: white;
}

.feature-tabs {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
}

.ftab {
    background: var(--light-saffron);
    padding: 0.3rem 0.6rem;
    font-size: 0.7rem;
    border-radius: 12px;
    color: var(--text-dark);
}

.ftab.active {
    background: #8B2E2E;
    color: white;
}

.ftab-icon {
    font-size: 0.75rem;
}

/* Footer V2 */
.footer-v2 {
    background: linear-gradient(135deg, #4A3728 0%, #3D2914 100%);
    padding: 2rem 0 1rem;
    color: white;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-logo {
    background: #FFD700;
    color: #4A3728;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.footer-brand-text {
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-tagline {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-v2 .footer-heading {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
}

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

.footer-v2 .footer-links li {
    margin-bottom: 0.4rem;
}

.footer-v2 .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-v2 .footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: right;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Mobile Responsive V2 */
@media (max-width: 991px) {
    .search-bar-v2 {
        display: none;
    }
    
    .header-row {
        flex-wrap: wrap;
    }
    
    .nav-list-v2 {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0.5rem 0;
    }
    
    .nav-link-v2 {
        padding: 0.5rem 0.75rem;
        white-space: nowrap;
    }
    
    .header-nav {
        order: 3;
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .header-nav .nav-list-v2 {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.25rem;
    }
    
    .header-nav .nav-link-v2 {
        white-space: nowrap;
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .header-row {
        flex-wrap: wrap;
    }
    
    .navbar-nav-links {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        margin: 0.5rem 0 0 0;
        overflow-x: auto;
        gap: 0.25rem;
    }
    
    .navbar-nav-links .nav-link {
        font-size: 0.75rem;
        padding: 0.4rem 0.5rem;
        white-space: nowrap;
    }
    
    .hero-title-v2 {
        font-size: 1.5rem;
    }
    
    .hero-subtitle-v2 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .top-bar-v2 .top-vedic {
        font-size: 0.65rem;
    }
    
    .brand-logo {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .brand-logo-img {
        height: 35px;
    }
    
    .brand-logo-img-sm {
        height: 28px;
    }
    
    .brand-text {
        font-size: 1rem;
    }
    
    .generate-btn-header {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .hero-title-v2 {
        font-size: 1.25rem;
    }
    
    .hero-subtitle-v2 {
        font-size: 1rem;
    }
    
    .form-card-v2 {
        padding: 1rem;
    }
    
    .feature-card {
        padding: 1rem;
    }
}

/* ========================================
   KUNDALI MILAN PAGE STYLES
   ======================================== */

.milan-form-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.partner-card {
    background: var(--light-saffron);
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
}

.partner-card.boy-card {
    border-left: 4px solid #4A90D9;
}

.partner-card.girl-card {
    border-left: 4px solid #E07B39;
}

.partner-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.match-btn {
    background: linear-gradient(135deg, #8B2E2E 0%, #6B2222 100%);
    border: none;
    padding: 0.875rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
}

.match-btn:hover {
    background: linear-gradient(135deg, #7B2626 0%, #5B1C1C 100%);
}

.milan-results {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.score-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--light-saffron) 0%, var(--warm-cream) 100%);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.score-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 5px solid var(--border-color);
}

.score-circle.score-excellent {
    border-color: #4CAF50;
    background: linear-gradient(135deg, #E8F5E9 0%, white 100%);
}

.score-circle.score-good {
    border-color: #8BC34A;
    background: linear-gradient(135deg, #F1F8E9 0%, white 100%);
}

.score-circle.score-avg {
    border-color: #FFC107;
    background: linear-gradient(135deg, #FFF8E1 0%, white 100%);
}

.score-circle.score-bad {
    border-color: #F44336;
    background: linear-gradient(135deg, #FFEBEE 0%, white 100%);
}

.score-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-brown);
    line-height: 1;
}

.score-max {
    font-size: 1.25rem;
    color: var(--text-light);
}

.score-info {
    text-align: left;
}

.rating-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 0.25rem;
}

.recommendation-text {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
}

.partner-details-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.partner-detail-card {
    background: var(--light-saffron);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    min-width: 200px;
}

.partner-detail-card h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
}

.partner-detail-card p {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.vs-divider {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8B2E2E;
}

.dosha-warning {
    background: #FFEBEE;
    border: 1px solid #FFCDD2;
    border-left: 4px solid #F44336;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    color: #C62828;
}

.koota-table-section {
    margin-bottom: 1.5rem;
}

.koota-table-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 1rem;
}

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

.koota-table th,
.koota-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.koota-table th {
    background: var(--light-saffron);
    font-weight: 600;
    color: var(--dark-brown);
}

.koota-table .score-full {
    color: #4CAF50;
    font-weight: 600;
}

.koota-table .score-zero {
    color: #F44336;
    font-weight: 600;
}

.koota-table .score-partial {
    color: #FF9800;
    font-weight: 600;
}

.koota-table .total-row {
    background: var(--muted-saffron);
}

.koota-table .total-row td {
    border-bottom: none;
}

.additional-kootas-section {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #fafafa;
    border-radius: 8px;
}

.additional-kootas-section h5 {
    color: var(--dark-brown);
    font-weight: 600;
    margin-bottom: 1rem;
}

.additional-koota-card {
    text-align: center;
    border: 1px solid rgba(0,0,0,0.1);
    font-size: 0.9rem;
}

.additional-koota-card strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--dark-brown);
}

.interpretation-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 1rem;
}

.interpretation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.interp-card {
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
}

.interp-card.bad {
    background: #FFEBEE;
    border: 1px solid #FFCDD2;
}

.interp-card.avg {
    background: #FFF8E1;
    border: 1px solid #FFECB3;
}

.interp-card.good {
    background: #F1F8E9;
    border: 1px solid #DCEDC8;
}

.interp-card.excellent {
    background: #E8F5E9;
    border: 1px solid #C8E6C9;
}

.interp-range {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-brown);
}

.interp-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .milan-form-card {
        padding: 1rem;
    }
    
    .partner-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .score-section {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .score-info {
        text-align: center;
    }
    
    .partner-details-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .vs-divider {
        font-size: 1rem;
    }
    
    .interpretation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .koota-table {
        font-size: 0.85rem;
    }
    
    .koota-table th,
    .koota-table td {
        padding: 0.5rem;
    }
}

/* =================================
   Manglik & Sade Sati Calculator Styles
================================= */

/* Status Circles */
.manglik-status-circle,
.sade-sati-status-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    text-align: center;
}

.manglik-status-circle.manglik-yes {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
}

.manglik-status-circle.manglik-no {
    background: linear-gradient(135deg, #28a745 0%, #218838 100%);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.sade-sati-status-circle.sade-sati-active {
    background: linear-gradient(135deg, #6f42c1 0%, #5a32a3 100%);
    box-shadow: 0 4px 15px rgba(111, 66, 193, 0.4);
}

.sade-sati-status-circle.sade-sati-inactive {
    background: linear-gradient(135deg, #28a745 0%, #218838 100%);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.severity-text,
.phase-text {
    color: var(--text-light);
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* Result sections */
.result-section {
    background: var(--warm-cream);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

.result-section h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.details-grid p {
    margin: 0;
    padding: 0.5rem;
    background: white;
    border-radius: 8px;
}

/* Mars position list */
.mars-position-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mars-position-list li {
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.mars-position-list li.dosha {
    border-left-color: #dc3545;
    background: #fff5f5;
}

/* Cancellation list */
.cancellation-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cancellation-list li {
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    background: #e8f5e9;
    border-radius: 8px;
    border-left: 4px solid #28a745;
    color: #1b5e20;
}

/* Remedy list */
.remedy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.remedy-list li {
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid var(--accent-gold);
}

/* Saturn info */
.saturn-info {
    background: white;
    padding: 1rem;
    border-radius: 8px;
}

.saturn-info p {
    margin-bottom: 0.5rem;
}

/* Phase timeline */
.phase-timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.phase-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    opacity: 0.7;
}

.phase-item.active {
    opacity: 1;
    background: linear-gradient(135deg, #6f42c1 0%, #5a32a3 100%);
    color: white;
}

.phase-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.phase-item.active .phase-number {
    background: white;
    color: #6f42c1;
}

.phase-content p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
}

.phase-duration {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Dhaiya warning */
.dhaiya-warning {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 1rem;
}

.dhaiya-warning p {
    margin-bottom: 0.5rem;
}

/* Responsive for calculators */
@media (max-width: 768px) {
    .manglik-status-circle,
    .sade-sati-status-circle {
        width: 100px;
        height: 100px;
        font-size: 0.9rem;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .phase-timeline {
        gap: 0.5rem;
    }
    
    .phase-item {
        padding: 0.75rem;
    }
}

/* ============================================
   KUNDALI MILAN ENHANCED FEATURES
   ============================================ */

/* Section Titles */
.section-title {
    color: var(--primary-dark);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Compatibility Meter */
.compatibility-gauge {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--warm-cream), var(--light-saffron));
    border-radius: 12px;
    margin-bottom: 1rem;
}

.gauge-container {
    max-width: 250px;
    margin: 0 auto;
}

.gauge-svg {
    width: 100%;
    height: auto;
}

.gauge-text {
    font-size: 24px;
    font-weight: bold;
}

.gauge-label {
    font-size: 14px;
    fill: var(--text-light);
}

.gauge-legend {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

/* Kundali Chart Table */
.chart-container {
    display: flex;
    justify-content: center;
    padding: 1rem;
}

.kundali-chart-table {
    border-collapse: collapse;
    width: 100%;
    max-width: 280px;
    background: white;
    border: 2px solid var(--primary-color);
}

.kundali-chart-table td {
    border: 1px solid var(--border-color);
    padding: 8px;
    text-align: center;
    font-size: 0.75rem;
    height: 45px;
    vertical-align: middle;
    font-family: 'Courier New', monospace;
    color: var(--text-dark);
}

.kundali-chart-table .lagna-cell {
    background: linear-gradient(135deg, var(--light-saffron), var(--warm-cream));
    font-weight: bold;
    color: var(--primary-dark);
}

.kundali-chart-table .center-cell {
    background: var(--muted-saffron);
}

.kundali-chart-table .house-cell {
    min-width: 60px;
}

.navamsa-table {
    font-size: 0.9rem;
    margin-bottom: 0;
}
.navamsa-table thead th {
    background: var(--light-saffron);
    color: var(--primary-dark);
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    font-size: 0.85rem;
}
.navamsa-table td {
    padding: 0.35rem 0.6rem;
    vertical-align: middle;
}
.navamsa-positions-table {
    padding: 0.5rem 0;
}

/* Dosha Analysis Cards */
.dosha-analysis-section .alert {
    border-left-width: 4px;
}

.dosha-analysis-section .alert h6 {
    margin-bottom: 0.75rem;
}

.dosha-analysis-section .alert p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Chart Comparison Cards */
.chart-comparison-section .card {
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.chart-comparison-section .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.chart-comparison-section .card-title {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.chart-comparison-section .card-body p {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
}

/* Timing Section */
.timing-section .card {
    height: 100%;
}

.timing-section .card-title {
    color: var(--primary-dark);
    font-weight: 600;
}

/* Partner Insights */
.partner-insights-section .card {
    height: 100%;
}

.partner-insights-section .card-title {
    color: var(--primary-dark);
    font-size: 0.95rem;
    font-weight: 600;
}

.partner-insights-section .badge {
    font-weight: 500;
}

/* Charts Section */
.charts-section h6 {
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .kundali-chart-table td {
        padding: 5px;
        font-size: 0.65rem;
        height: 35px;
    }
    
    .gauge-container {
        max-width: 180px;
    }
    
    .gauge-text {
        font-size: 18px;
    }
    
    .gauge-legend .badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.4rem;
    }
    
    .chart-comparison-section .card-body p {
        font-size: 0.8rem;
    }
}

/* ============================================
   TRUST & TRANSPARENCY ELEMENTS
   ============================================ */

/* Hero "For Line" */
.hero-for-line {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.9;
}

/* CTA Trust Strip */
.cta-trust-strip {
    margin-top: 0.75rem;
}

.cta-trust-strip .trust-text {
    color: var(--text-light);
    font-size: 0.8rem;
}

.cta-trust-strip .trust-text span {
    color: #2e7d32;
}

/* Result Page Trust Strip */
.result-trust-strip {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.result-trust-strip .trust-badge {
    font-size: 0.8rem;
    color: #2e7d32;
    background: rgba(46, 125, 50, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
}

/* Inputs Used Box */
.inputs-used-box {
    background: linear-gradient(135deg, #fef9f4 0%, #fff8f0 100%);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.25rem;
    margin: 1rem;
}

.inputs-used-title {
    color: var(--primary-dark);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.inputs-used-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.input-item {
    display: flex;
    flex-direction: column;
}

.input-label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

.input-value {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* Calculation Timestamp */
.calculation-timestamp {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px dashed var(--border-color);
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: right;
}

.calculation-timestamp #calcTimestampValue {
    font-weight: 600;
    color: var(--text-dark);
}

/* Why Link */
.why-link {
    font-size: 0.8rem;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.why-link:hover {
    text-decoration: underline;
    color: var(--primary-dark);
}

/* Glossary Page Styles */
.glossary-term-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    transition: box-shadow 0.2s;
}

.glossary-term-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.glossary-term-card h3 {
    color: var(--primary-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.glossary-term-card p {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.glossary-term-card .term-links {
    margin-top: 0.75rem;
}

.glossary-term-card .term-links a {
    font-size: 0.8rem;
    color: var(--primary-color);
    margin-right: 1rem;
}

/* Time Correction Article Styles */
.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-content h2 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-content h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.article-content p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.article-content .highlight-box {
    background: var(--light-saffron);
    border-left: 4px solid var(--primary-color);
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.article-content .example-box {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .result-trust-strip {
        justify-content: center;
    }
    
    .inputs-used-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .cta-trust-strip .trust-text {
        font-size: 0.7rem;
    }
}

/* Life Predictions Cards */
.prediction-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.prediction-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.prediction-card .score-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    border: 4px solid;
    flex-shrink: 0;
}

.prediction-card .score-value {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
}

.prediction-card .score-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.score-breakdown {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.score-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.score-item > span:first-child {
    width: 70px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.score-bar {
    flex: 1;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.score-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.5s ease;
}

.score-item > span:last-child {
    width: 40px;
    text-align: right;
    font-weight: 600;
    font-size: 0.85rem;
}

.house-analysis {
    margin-bottom: 1.25rem;
}

.house-analysis h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.house-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
}

.house-item {
    background: linear-gradient(135deg, var(--light-saffron) 0%, #fff 100%);
    border-radius: 10px;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.house-num {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.house-info {
    font-size: 0.85rem;
    color: var(--text-dark);
}

.house-pos {
    font-size: 0.75rem;
    color: var(--text-light);
}

.venus-item .house-num {
    font-size: 0.9rem;
}

.planets-in-house {
    background: var(--light-saffron);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

.suitable-fields, .spouse-qualities, .health-concerns {
    margin-bottom: 1.25rem;
}

.suitable-fields h5, .spouse-qualities h5, .health-concerns h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.field-tags, .quality-tags, .concern-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.field-tag {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.quality-tag {
    background: linear-gradient(135deg, #E91E63 0%, #d81b60 100%);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.concern-tag {
    background: linear-gradient(135deg, #FF9800 0%, #f57c00 100%);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.predictions-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.prediction-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.prediction-item i {
    color: var(--primary-color);
    margin-top: 2px;
    flex-shrink: 0;
}

@media (max-width: 576px) {
    .prediction-header {
        flex-direction: column;
        text-align: center;
    }
    
    .score-breakdown {
        width: 100%;
    }
    
    .house-grid {
        grid-template-columns: 1fr 1fr;
    }
}


.domains-grid {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.domain-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    padding: 0.2rem 0;
    border-bottom: 1px dashed #eee;
}

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

.domain-name { color: #555; }

.domain-score {
    font-weight: 600;
    padding: 0.1rem 0.4rem;
    border-radius: 8px;
    font-size: 0.75rem;
}

.domain-score.positive { background: #d4edda; color: #155724; }
.domain-score.neutral { background: #fff3cd; color: #856404; }
.domain-score.negative { background: #f8d7da; color: #721c24; }

.tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-top: 0.5rem;
}

.tag-pill {
    font-size: 0.65rem;
    padding: 0.15rem 0.4rem;
    border-radius: 6px;
    background: #e9ecef;
    color: #495057;
}

.tag-pill.warning {
    background: #fff3cd;
    color: #856404;
}

.warnings-box, .recs-box {
    margin-top: 0.5rem;
    padding: 0.4rem;
    border-radius: 6px;
    font-size: 0.75rem;
}

.warnings-box {
    background: #fff8e6;
    color: #856404;
}

.recs-box {
    background: #e8f5e9;
    color: #2e7d32;
}

/* ===== Premium New Sections ===== */

.premium-new-section {
    border: 1px solid var(--border-color);
    background: var(--light-saffron);
}

.chart-essence-box {
    background: white;
    border-left: 4px solid var(--accent-gold);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.chart-essence-summary {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.essence-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.success-badge, .orientation-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
}

.success-badge.early_rise { background: #28a745; }
.success-badge.steady_growth { background: #007bff; }
.success-badge.delayed_success { background: #E07B39; }
.success-badge.fluctuating { background: #6f42c1; }

.orientation-badge.material { background: var(--accent-gold); }
.orientation-badge.emotional { background: #e83e8c; }
.orientation-badge.balanced { background: #17a2b8; }

.dominant-planets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.75rem;
}

.dominant-planet-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    text-align: center;
}

.dominant-planet-card .planet-name {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.dominant-planet-card .planet-strength {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.dominant-planet-card .planet-house {
    font-size: 0.78rem;
    color: var(--text-light);
}

.dominant-planet-card .planet-area {
    font-size: 0.78rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 0.25rem;
}

/* Command Cards */
.command-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.command-card {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid var(--border-color);
    position: relative;
}

.command-card .rank-medal {
    position: absolute;
    top: -8px;
    left: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.command-card .rank-medal.rank-1 { background: #FFD700; }
.command-card .rank-medal.rank-2 { background: #C0C0C0; }
.command-card .rank-medal.rank-3 { background: #CD7F32; }

.command-card .cmd-planet-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark-brown);
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.strength-bar-mini {
    height: 8px;
    background: var(--muted-saffron);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.strength-bar-mini .fill {
    height: 100%;
    border-radius: 4px;
    background: var(--primary-color);
    transition: width 0.5s ease;
}

.command-card .role-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.role-badge.supportive { background: #28a745; }
.role-badge.challenging { background: #E07B39; }

.command-card .cmd-detail {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.command-card .cmd-detail strong {
    color: var(--text-dark);
}

/* Life Phase Cards */
.life-phases-grid {
    display: grid;
    gap: 1rem;
}

.life-phase-card {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    border-left: 5px solid var(--primary-color);
    border-top: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.life-phase-card.growth { border-left-color: #28a745; }
.life-phase-card.challenge { border-left-color: #dc3545; }
.life-phase-card.mixed { border-left-color: #E07B39; }
.life-phase-card.transformation { border-left-color: #6f42c1; }

.life-phase-card .phase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.life-phase-card .phase-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark-brown);
}

.life-phase-card .phase-age {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.outlook-badge {
    display: inline-block;
    padding: 0.2rem 0.7rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

.outlook-badge.growth { background: #28a745; }
.outlook-badge.challenge { background: #dc3545; }
.outlook-badge.mixed { background: #E07B39; }
.outlook-badge.transformation { background: #6f42c1; }

.life-phase-card .phase-theme {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.phase-dasha-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.phase-dasha-list .dasha-chip {
    background: var(--light-saffron);
    border: 1px solid var(--border-color);
    padding: 0.25rem 0.65rem;
    border-radius: 15px;
    font-size: 0.78rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Career Timeline Cards */
.career-timeline-grid {
    display: grid;
    gap: 1rem;
}

.career-timeline-card {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    border-left: 5px solid var(--primary-color);
    border-top: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.career-timeline-card.rise { border-left-color: #28a745; }
.career-timeline-card.stability { border-left-color: #007bff; }
.career-timeline-card.risk { border-left-color: #dc3545; }
.career-timeline-card.opportunity { border-left-color: #DAA520; }

.career-timeline-card .ct-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.career-timeline-card .ct-period {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark-brown);
}

.career-timeline-card .ct-age {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.ct-type-badge {
    display: inline-block;
    padding: 0.2rem 0.7rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

.ct-type-badge.rise { background: #28a745; }
.ct-type-badge.stability { background: #007bff; }
.ct-type-badge.risk { background: #dc3545; }
.ct-type-badge.opportunity { background: #DAA520; }

.career-timeline-card .ct-reason {
    font-size: 0.88rem;
    color: var(--text-dark);
    margin-top: 0.5rem;
    line-height: 1.5;
}

.career-timeline-card .ct-lord {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

/* Marriage Window Cards */
.marriage-windows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.marriage-window-card {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid var(--border-color);
    text-align: center;
}

.marriage-window-card .mw-years {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--dark-brown);
    margin-bottom: 0.25rem;
}

.marriage-window-card .mw-age {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.mw-strength-badge {
    display: inline-block;
    padding: 0.25rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.mw-strength-badge.strong { background: #28a745; }
.mw-strength-badge.moderate { background: #E07B39; }
.mw-strength-badge.possible { background: #DAA520; }

.marriage-window-card .mw-reason {
    font-size: 0.85rem;
    color: var(--text-dark);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .dominant-planets-grid { grid-template-columns: repeat(2, 1fr); }
    .command-cards-grid { grid-template-columns: 1fr; }
    .marriage-windows-grid { grid-template-columns: 1fr; }
}
