/* ===== KUNDLI PAGES - COMMON STYLES ===== */
:root {
    --primary: #b33b2c;
    --primary-dark: #8b2c1f;
    --secondary: #c24d2c;
    --accent: #ff8c00;
    --gold: #ffd700;
    --light: #fff7ef;
    --dark: #2d2d2d;
    --text: #444;
    --text-light: #666;
    --white: #ffffff;
    --shadow: 0 10px 40px rgba(0,0,0,0.08);
    --shadow-hover: 0 15px 50px rgba(179,59,44,0.15);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #faf7f2;
    color: var(--dark);
    line-height: 1.6;
}

/* Header - Same as main site */
.main-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 16px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 50px;
    border-radius: 8px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 30px;
    transition: all 0.3s;
    font-size: 16px;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(255, 255, 255, 0.15);
}

.header-cta {
    background: var(--white);
    color: var(--primary);
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #fff7ef, #fff);
    padding: 60px 20px;
    text-align: center;
    border-bottom: 1px solid #f0e0d0;
}

.page-header h1 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 15px;
}

.page-header p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    color: var(--text);
}

/* Main Container */
.kundli-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Left Column - Info & Image */
.info-section {
    background: var(--white);
    border-radius: 24px;
    padding: 35px;
    box-shadow: var(--shadow);
}

.info-section h2 {
    color: var(--primary);
    font-size: 28px;
    margin-bottom: 20px;
    border-bottom: 3px solid var(--gold);
    padding-bottom: 15px;
}

.feature-list {
    list-style: none;
    margin: 25px 0;
}

.feature-list li {
    padding: 12px 0;
    border-bottom: 1px dashed #f0e0d0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text);
}

.feature-list li i {
    color: var(--gold);
    font-size: 20px;
    width: 24px;
}

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

.kundli-image {
    margin: 30px 0;
    text-align: center;
    border: 2px solid #f0e0d0;
    border-radius: 16px;
    padding: 20px;
    background: #faf7f2;
}

.kundli-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.note-box {
    background: #fff8e1;
    border-left: 6px solid var(--gold);
    padding: 20px;
    border-radius: 12px;
    margin: 25px 0;
    font-size: 15px;
    color: var(--text);
}

.note-box i {
    color: var(--gold);
    margin-right: 10px;
    font-size: 20px;
}

/* Right Column - Form */
.form-section {
    background: var(--white);
    border-radius: 24px;
    padding: 35px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}

.form-section h2 {
    color: var(--primary);
    font-size: 28px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section h2 i {
    color: var(--gold);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
    font-size: 15px;
}

.form-group label i {
    color: var(--gold);
    margin-right: 8px;
    width: 20px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(179,59,44,0.1);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b33b2c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
}

textarea.form-control {
    height: 100px;
    resize: vertical;
}

.questions-section {
    background: #faf7f2;
    padding: 20px;
    border-radius: 16px;
    margin: 25px 0;
}

.questions-section h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.questions-section h3 i {
    color: var(--gold);
}

.question-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.question-item span {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    min-width: 30px;
}

.question-item input {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 14px;
}

.payment-section {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #f0e0d0;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 15px;
    background: #fff8e1;
    border-radius: 12px;
}

.price-inr, .price-usd {
    font-size: 20px;
    font-weight: 700;
}

.price-inr {
    color: var(--primary);
}

.price-usd {
    color: #4CAF50;
}

.price-inr span, .price-usd span {
    font-size: 14px;
    font-weight: normal;
    color: var(--text-light);
    margin-right: 5px;
}

.btn-pay {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-pay:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(179,59,44,0.3);
}

.btn-pay i {
    font-size: 18px;
}

/* Footer - Same as main site */
.main-footer {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 60px 5% 30px;
    margin-top: 80px;
}

.footer-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-col h3,
.footer-col h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col p {
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
}

.footer-col a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    opacity: 0.9;
    transition: 0.3s;
}

.footer-col a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-whatsapp {
    background: #25d366;
    color: white !important;
    padding: 12px 25px;
    border-radius: 30px;
    display: inline-block;
    font-weight: 600;
    opacity: 1 !important;
}

.footer-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px) !important;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
    .kundli-container {
        grid-template-columns: 1fr;
    }
    
    .form-section {
        position: static;
    }
}

@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .price-row {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}