: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;
}

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

body {
    font-family: 'Poppins', 'Noto Sans Devanagari', sans-serif;
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--light-saffron) 100%);
    min-height: 100vh;
    color: var(--text-dark);
}

/* 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: 300px;
    height: 300px;
    margin: 20px auto;
    background: white;
}

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

.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%;
    }
    
    .house {
        font-size: 0.65rem;
        min-height: 50px;
    }
    
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .generate-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .language-toggle {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .lang-btn {
        font-size: 0.75rem;
        padding: 0.2rem 0.75rem;
    }
}

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

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

.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;
    }
}
