/* ===== SANATAN JYOTISH - MASTER STYLESHEET ===== */
: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;
}

/* ===== PREMIUM HEADER - SAME ON ALL PAGES ===== */
.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);
}

/* ===== PREMIUM FOOTER - SAME ON ALL PAGES ===== */
/* ===== PREMIUM FOOTER - MATCHING HEADER COLORS ===== */
.main-footer {
  background: linear-gradient(135deg, #b33b2c, #c24d2c);  /* SAME as header */
  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);  /* Keep gold for headings */
  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;
  transition: 0.3s;
  opacity: 0.9;
}

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

.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;
  color: white !important;
  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;
}
/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.btn-wa {
    background: #25d366;
}

.btn-wa:hover {
    background: #128C7E;
}

/* ===== SECTION STYLES ===== */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 18px;
}

/* ===== CARDS ===== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-content {
    padding: 25px;
}

.card h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 20px;
}

.card p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .nav-links { gap: 15px; }
}

@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-col a {
        display: inline-block;
        margin: 5px 10px;
    }
}
/* ===== KUNDALI LINKS STYLES ===== */
.kundali-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.kundali-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: #faf7f2;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid #eee;
}

.kundali-link:hover {
    background: linear-gradient(135deg, #fff3e0, #ffe9d4);
    border-color: var(--gold);
    transform: translateX(5px);
    color: var(--primary);
}

.kundali-link i {
    width: 24px;
    color: var(--gold);
    font-size: 16px;
}

.btn-small {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(179,59,44,0.3);
}

/* Make astro-card consistent for links */
.astro-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--white);
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    height: 100%;
}

.astro-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.astro-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.astro-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 22px;
}

.astro-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: auto;
}
/* ===== PROFESSIONAL SERVICES SECTION ===== */
.services-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Main Kundali Card */
.service-card-main {
    background: var(--white);
    border-radius: 28px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid rgba(255,215,0,0.2);
}

.service-header {
    background: linear-gradient(135deg, #fff8f0, #fff);
    padding: 30px 35px;
    border-bottom: 2px solid var(--gold);
    text-align: center;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.service-header h3 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 8px;
}

.service-desc {
    color: var(--text-light);
    font-size: 15px;
}

/* Packages Table */
.kundali-packages {
    padding: 20px 35px 35px;
}

.package-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid #f0e0d0;
    transition: all 0.3s;
}

.package-row:last-child {
    border-bottom: none;
}

.package-row:hover {
    background: #faf7f2;
    margin: 0 -15px;
    padding: 20px 15px;
    border-radius: 16px;
}

.package-row.highlight {
    background: linear-gradient(135deg, #fff8e1, #fff3cd);
    margin: 0 -15px;
    padding: 20px 15px;
    border-radius: 16px;
    border-bottom: none;
}

.package-info {
    flex: 2;
}

.package-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 4px;
}

.package-desc {
    font-size: 13px;
    color: var(--text-light);
}

.package-price {
    flex: 0.5;
    text-align: center;
}

.package-price .price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.package-price .price-usd {
    font-size: 13px;
    color: var(--text-light);
}

.package-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 8px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    min-width: 100px;
    text-align: center;
}

.package-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(179,59,44,0.3);
}

.highlight .package-btn {
    background: linear-gradient(135deg, #e67e22, #f39c12);
}

/* Other Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 1px solid #f0e0d0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}

.service-icon-small {
    font-size: 42px;
    margin-bottom: 15px;
}

.service-card h4 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 20px;
}

.service-link {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 30px;
    transition: all 0.3s;
    background: #faf7f2;
}

.service-link:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .package-row {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .package-info {
        text-align: center;
    }
    
    .kundali-packages {
        padding: 20px;
    }
    
    .service-header {
        padding: 20px;
    }
    
    .service-header h3 {
        font-size: 24px;
    }
}
/* ===== PROFESSIONAL KUNDALI LINKS ===== */
.kundali-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 15px;
}

.kundali-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #faf7f2;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #f0e0d0;
}

.kundali-link:hover {
    background: linear-gradient(135deg, #fff3e0, #ffe9d4);
    border-color: #ffd700;
    transform: translateX(5px);
}

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

.link-left i {
    width: 28px;
    color: #ff8c00;
    font-size: 18px;
}

.link-name {
    font-weight: 600;
    color: #2d2d2d;
    font-size: 15px;
}

.link-arrow {
    color: #ff8c00;
    font-size: 14px;
    transition: 0.3s;
}

.kundali-link:hover .link-arrow {
    transform: translateX(5px);
}

/* Highlight style for Kundali Milan */
.kundali-link.highlight {
    background: linear-gradient(135deg, #fff8e1, #fff3cd);
    border-color: #ffd700;
}
/* Astro Links */
.astro-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 15px;
}

.astro-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #faf7f2;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #f0e0d0;
    color: var(--dark);
}

.astro-link:hover {
    background: linear-gradient(135deg, #fff3e0, #ffe9d4);
    border-color: var(--gold);
    transform: translateX(5px);
}

.astro-link i:first-child {
    width: 28px;
    color: var(--gold);
}

.astro-link i:last-child {
    color: var(--gold);
    transition: 0.3s;
}

.astro-link:hover i:last-child {
    transform: translateX(5px);
}
/* Disable text selection */
body {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Disable image dragging */
img {
    pointer-events: none;
    -webkit-user-drag: none;
    user-drag: none;
}