/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d4af37;
    --primary-dark: #b8941f;
    --primary-light: #f4e5a1;
    --secondary-color: #8b4513;
    --accent-gold: #ffd700;
    --light-bg: #ffffff;
    --light-bg-alt: #fafafa;
    --section-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-medium: #555555;
    --text-light: #777777;
    --border-color: #e0e0e0;
    --shadow-light: rgba(0, 0, 0, 0.08);
    --shadow-medium: rgba(0, 0, 0, 0.12);
    --shadow-heavy: rgba(0, 0, 0, 0.15);
    --accent: #ff6b6b;
    --gradient-1: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4e5a1 100%);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    max-width: 100vw;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: manipulation;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, 'Noto Sans Devanagari', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    overflow-y: auto;
    background: var(--light-bg);
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    max-width: 100%;
    position: relative;
    -webkit-overflow-scrolling: touch;
    touch-action: manipulation;
}

/* Only lock scroll when mobile menu is open */
body.menu-open {
    overflow: hidden !important;
}

/* Mobile menu overlay: when closed must never block page scroll or taps */
#mobileMenuOverlay[aria-hidden="true"] {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

img {
    max-width: 100%;
    height: auto;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

table, pre, .table-responsive {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

input, select, textarea, button {
    max-width: 100%;
}

/* Focus visible – keyboard users ko clear focus ring */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex="0"]:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Anchor targets – scroll pe content nav ke niche na chhup jaye */
section[id],
#faq,
#social-section,
#contact {
    scroll-margin-top: 100px;
}

@media (max-width: 968px) {
    section[id],
    #faq,
    #social-section,
    #contact {
        scroll-margin-top: 80px;
    }
}

/* Mobile-first: smaller padding on small screens */
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}
@media (max-width: 360px) {
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}
@media (min-width: 480px) {
    .container {
        padding: 0 clamp(1rem, 3vw, 1.5rem);
    }
}
@media (min-width: 769px) {
    .container {
        padding: 0 clamp(1rem, 4vw, 2rem);
    }
}

.hero .container {
    max-width: 1600px;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: clamp(0.5rem, 1.5vw, 0.75rem) 0;
    position: relative;
    width: 100%;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.hindi-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(0.75rem, 1.8vw, 0.9rem);
    font-weight: 500;
    flex: 1;
    min-width: 0;
}

/* Top bar — सेक्शन: लेबल ऊपर, मान नीचे */
.panchang-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 0.4rem 0.85rem;
    line-height: 1.3;
    max-width: 100%;
}
.panchang-bar__block {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.08rem;
    min-width: 0;
}
.panchang-bar__label {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.75;
    line-height: 1.15;
}
.panchang-bar__val {
    font-size: clamp(0.76rem, 1.7vw, 0.88rem);
    font-weight: 600;
    word-break: break-word;
}
.panchang-bar__val strong {
    font-weight: 700;
}
.panchang-bar__time {
    font-weight: 600;
    white-space: nowrap;
}
.panchang-bar__sep {
    width: 1px;
    align-self: stretch;
    min-height: 2em;
    background: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    margin-bottom: 0.15rem;
}
.panchang-bar__block--muted .panchang-bar__val {
    opacity: 0.85;
    font-weight: 500;
}
.panchang-bar__block--warn .panchang-bar__val {
    font-size: 0.74rem;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-icons-top {
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 1.5vw, 0.75rem);
}

.social-icons-top a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(28px, 3.5vw, 32px);
    height: clamp(28px, 3.5vw, 32px);
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: clamp(0.85rem, 2vw, 1rem);
}

.social-icons-top a i {
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.social-icons-top a:hover {
    transform: translateY(-2px);
}

/* Official brand colors on hover - Top bar */
.social-icons-top a[title="Facebook"]:hover {
    background: #1877f2;
}

.social-icons-top a[title="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icons-top a[title="Twitter"]:hover {
    background: #000;
}

.social-icons-top a[title="WhatsApp"]:hover {
    background: #25d366;
}

.social-icons-top a[title="YouTube"]:hover {
    background: #ff0000;
}

.social-icons-top a[title="दान करें / UPI"]:hover,
.social-icons-top a[title*="UPI"]:hover {
    background: var(--primary-dark);
    color: #fff;
}

/* UPI logo – top bar: full white like other icons, circle background change on hover */
.social-icons-top .top-bar-upi-link {
    padding: 3px;
    background: rgba(255, 255, 255, 0.15);
}
.social-icons-top .top-bar-upi-link:hover {
    background: var(--primary-dark) !important;
    color: #fff;
}
.social-icons-top .top-bar-upi-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
    transition: filter 0.15s ease;
    pointer-events: none;
}
.social-icons-top .top-bar-upi-link:hover .top-bar-upi-icon {
    filter: brightness(0) invert(1);
}
/* Click / focus par real UPI image (orange–green) dikhao */
.social-icons-top .top-bar-upi-link:active .top-bar-upi-icon,
.social-icons-top .top-bar-upi-link:focus .top-bar-upi-icon,
.social-icons-top .top-bar-upi-link:focus-visible .top-bar-upi-icon {
    filter: none;
}

/* Navigation */
.navbar {
    position: relative;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: clamp(0.35rem, 1vw, 0.5rem) 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid var(--primary-color);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    padding-right: 0.5rem;
    min-height: 56px;
    position: relative;
}
@media (min-width: 969px) {
    .nav-wrapper {
        gap: clamp(3rem, 6vw, 5rem);
        padding-right: clamp(0.5rem, 2vw, 1rem);
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-color);
    font-weight: bold;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    margin: 0;
    padding: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.logo-img {
    height: 48px;
    width: auto;
    max-height: 52px;
    object-fit: contain;
    transform: scale(1.5);
}
@media (min-width: 969px) {
    .logo-img {
        height: clamp(60px, 8vw, 80px);
        max-height: 80px;
        transform: scale(1.6);
    }
}

/* English pages: zoom logo (sabhi EN pages par logo bada) */
html[lang="en"] .logo-img {
    transform: scale(1.75);
}
@media (min-width: 969px) {
    html[lang="en"] .logo-img {
        transform: scale(1.9);
    }
}

.logo-fallback {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* When menu is open (JS adds .active) – full screen, sab options main screen par */
.nav-menu.active {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(8px);
    z-index: 9999 !important;
    padding: 4rem 0.75rem 2rem !important;
    gap: 0 !important;
    list-style: none !important;
    margin: 0 !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box !important;
}
.nav-menu.active li {
    width: 100%;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.nav-menu.active li:last-child {
    border-bottom: none;
}
.nav-menu.active a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    padding: 0.9rem 1rem;
    color: #1a1a1a;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    min-height: 48px;
    line-height: 1.4;
}
.nav-menu.active a:hover,
.nav-menu.active a:focus {
    background: rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
}
.nav-menu.active .btn-call {
    margin-top: 0.25rem;
    border-radius: 10px;
}

/* Mobile-first: hide menu by default, show toggle */
.nav-menu {
    display: none;
    align-items: center;
    gap: clamp(0.2rem, 0.8vw, 0.4rem);
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: auto;
    margin-right: clamp(0.5rem, 2vw, 1rem);
    flex: 1;
    justify-content: flex-end;
    max-width: none;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    padding: clamp(0.5rem, 1.2vw, 0.65rem) clamp(0.5rem, 1vw, 0.7rem);
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.btn-call {
    background: var(--gradient-gold) !important;
    color: var(--text-dark) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    font-weight: 600 !important;
}

.btn-call:hover {
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* Language Switcher (Hindi | English) */
.lang-switcher-wrap {
    flex-shrink: 0;
}
.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: clamp(0.8rem, 1.4vw, 0.95rem);
    font-weight: 500;
}
.lang-switcher .lang-option {
    color: var(--text-medium);
    text-decoration: none;
    padding: 0.35rem 0.5rem;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}
.lang-switcher .lang-option:hover {
    color: var(--primary-color);
}
.lang-switcher .lang-option.active {
    color: var(--primary-dark);
    font-weight: 600;
}
.nav-menu.active .lang-switcher .lang-option {
    padding: 0.5rem 0.75rem;
}

.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1003;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    min-width: 44px;
    min-height: 44px;
    touch-action: manipulation;
}

.mobile-toggle span {
    width: 26px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: block;
}

/* Hamburger to X when menu open (one click = options on screen) */
.mobile-toggle.open span:nth-child(1),
.mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.mobile-toggle.open span:nth-child(2),
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.open span:nth-child(3),
.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile: logo left-aligned, vertically centered, no overlap with hamburger */
@media (max-width: 968px) {
    .navbar {
        z-index: 1002;
    }
    .navbar .container {
        padding-left: clamp(0.75rem, 3vw, 1rem);
        padding-right: clamp(0.5rem, 3vw, 1rem);
    }
    .nav-wrapper {
        justify-content: space-between;
        align-items: center;
        width: 100%;
        min-height: 56px;
    }
    .mobile-toggle {
        position: relative;
        flex-shrink: 0;
        margin-left: 0.5rem;
    }
    .logo {
        margin: 0;
        padding: 0;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        min-height: 56px;
        max-width: calc(100% - 56px);
    }
    .logo-link {
        display: flex;
        align-items: center;
        height: 100%;
        min-height: 48px;
    }
    .logo-img {
        height: 56px;
        max-height: 64px;
        max-width: 100%;
        width: auto;
        object-fit: contain;
        transform: scale(1.15);
        transform-origin: left center;
        display: block;
        vertical-align: middle;
    }
    /* English pages mobile: logo zoom but fit (overflow na ho) */
    html[lang="en"] .logo-img {
        transform: scale(1.22);
        transform-origin: left center;
        max-width: 100%;
    }
    html[lang="en"] .logo-link {
        max-width: 100%;
    }
}

/* Desktop: show nav menu, hide toggle */
@media (min-width: 969px) {
    .nav-menu {
        display: flex;
    }
    .mobile-toggle {
        display: none;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: calc(100vh - 120px);
    max-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    overflow: hidden;
    padding: clamp(0.5rem, 1.2vw, 0.8rem) clamp(0.5rem, 2vw, 1rem);
    box-sizing: border-box;
    margin: 0;
    z-index: 1;
    isolation: isolate;
    contain: layout style paint;
}

.hero-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.85);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: clamp(1rem, 2vw, 1.5rem);
    align-items: center;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    height: 100%;
    isolation: isolate;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: clamp(0.25rem, 1vw, 0.5rem) 0;
    padding-left: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.hero-title {
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    margin-bottom: clamp(0.5rem, 1.5vw, 0.75rem);
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.hero-headline {
    font-family: "Noto Serif Devanagari", "Mukta", system-ui, sans-serif;
    font-size: clamp(1.2rem, 2.9vw, 1.55rem);
    color: rgba(255, 255, 255, 0.98);
    font-weight: 600;
    line-height: 1.45;
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
    margin-top: clamp(0.5rem, 1.2vw, 0.75rem);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
    animation: fadeInUp 1.2s ease 0.3s both;
    letter-spacing: 0.02em;
}
.hero-headline-lead {
    font-weight: 700;
    color: #f4e4a6;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.8), 0 2px 10px rgba(0, 0, 0, 0.5);
}
.hero-headline-tail {
    font-weight: 700;
    color: #fff;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: clamp(1rem, 2vw, 1.25rem);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: clamp(1rem, 2vw, 1.25rem);
}

.badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: clamp(0.8rem, 1.6vw, 0.95rem);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(0.75rem, 1.5vw, 1rem);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: clamp(0.65rem, 1.5vw, 0.85rem) clamp(1.25rem, 2.5vw, 1.5rem);
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}

.btn-primary {
    background: #25d366;
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-primary:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.8);
}

/* Kundli Generator – form fit without scroll */
.kundli-generator {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    padding: clamp(0.45rem, 1vw, 0.65rem) clamp(0.7rem, 1.5vw, 1rem) clamp(0.35rem, 0.7vw, 0.45rem);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 3;
    max-width: 300px;
    width: 100%;
    margin: 0 0 0 auto;
    margin-right: clamp(75px, 8vw, 80px);
    min-height: 0;
    max-height: calc(100vh - 85px);
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
}

@media (min-width: 969px) {
    .kundli-generator {
        max-width: 360px;
    }
}

.kundli-generator-header {
    display: flex;
    align-items: center;
    gap: clamp(0.35rem, 1vw, 0.5rem);
    margin-bottom: clamp(0.4rem, 1vw, 0.55rem);
    padding-bottom: 0.3rem;
    border-bottom: 2px solid var(--primary-color);
    text-align: left;
}

.kundli-header-img {
    width: clamp(40px, 8vw, 52px);
    height: clamp(40px, 8vw, 52px);
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid var(--primary-color);
    flex-shrink: 0;
}

.kundli-header-text {
    flex: 1;
    min-width: 0;
}

.kundli-header-acharya {
    width: clamp(36px, 6.5vw, 46px);
    height: clamp(36px, 6.5vw, 46px);
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    flex-shrink: 0;
    margin-left: auto;
    display: block;
}

.kundli-generator-header h3 {
    font-size: clamp(0.85rem, 1.8vw, 1rem);
    color: var(--text-dark);
    margin-bottom: 0.1rem;
    font-weight: 700;
    line-height: 1.2;
}

.kundli-generator-header p {
    font-size: clamp(0.65rem, 1.3vw, 0.75rem);
    color: var(--text-medium);
    margin: 0;
}

.kundli-form .form-group {
    margin-bottom: clamp(0.3rem, 0.8vw, 0.45rem);
}

.kundli-form .form-group label {
    display: block;
    font-size: clamp(0.7rem, 1.35vw, 0.8rem);
    margin-bottom: 0.2rem;
    color: var(--text-dark);
    font-weight: 500;
}

.kundli-form .form-group input,
.kundli-form .form-group select {
    width: 100%;
    font-size: clamp(0.75rem, 1.4vw, 0.85rem);
    padding: clamp(0.38rem, 0.9vw, 0.5rem);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--light-bg);
    transition: border-color 0.3s;
}

.kundli-form .form-group input:focus,
.kundli-form .form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.kundli-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(0.35rem, 0.9vw, 0.5rem);
    margin-bottom: clamp(0.3rem, 0.8vw, 0.45rem);
}

/* Kundli Milan – दोनों की जानकारी: एक ही बॉक्स, बायें दोनों + सामने बालक|बालिका, ऊँचाई न बढ़े */
.kundli-milan-form .milan-detail-type-wrap {
    margin-bottom: clamp(0.5rem, 1vw, 0.65rem);
    padding: clamp(0.3rem, 0.6vw, 0.4rem) clamp(0.45rem, 0.9vw, 0.55rem);
    background: #f0ede8;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 0.5rem 0.6rem;
    flex-wrap: nowrap;
    min-height: 32px;
    box-sizing: border-box;
}
.kundli-milan-form .milan-dono-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    min-width: 52px;
    padding: 0 0.5rem;
    font-size: clamp(0.8rem, 1.25vw, 0.88rem);
    font-weight: 600;
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    flex-shrink: 0;
}
.kundli-milan-form .milan-dono-box:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(192, 57, 43, 0.4);
}
.kundli-milan-form .milan-dono-box.active {
    color: #c0392b;
    background: rgba(192, 57, 43, 0.1);
    border-color: rgba(192, 57, 43, 0.5);
}

/* बालक | बालिका – दोनों बॉक्स के सामने */
.kundli-milan-form .milan-balak-balika-toggle {
    flex: 1;
    min-width: 120px;
}
.kundli-milan-form .milan-toggle-track {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 30px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 6px;
    overflow: hidden;
}
.kundli-milan-form .milan-toggle-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: clamp(0.85rem, 1.35vw, 0.95rem);
    color: var(--text-medium);
    z-index: 2;
    cursor: pointer;
    transition: color 0.2s, font-weight 0.2s;
}
.kundli-milan-form .milan-toggle-side.milan-balak.active {
    color: #c0392b;
    font-weight: 600;
}
.kundli-milan-form .milan-toggle-side.milan-balika.active {
    color: #c0392b;
    font-weight: 700;
}
.kundli-milan-form .milan-toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: calc(50% - 2px);
    height: calc(100% - 4px);
    background: rgba(192, 57, 43, 0.15);
    border: 1px solid rgba(192, 57, 43, 0.35);
    border-radius: 6px;
    z-index: 1;
    transition: transform 0.25s ease;
}
.kundli-milan-form .milan-toggle-slider.on-right {
    transform: translateX(calc(100% + 2px));
}
.kundli-milan-form .milan-toggle-slider.dono-middle {
    opacity: 0.4;
    transform: none;
}

/* Kundli Milan / Love Marriage – लड़का + लड़की दोनों की जानकारी (compact height) */
.kundli-form-wrap:has(.kundli-milan-form) .kundli-generator {
    max-width: 100%;
    min-height: auto;
    max-height: none;
    padding: clamp(0.6rem, 1.2vw, 0.8rem) clamp(0.85rem, 1.8vw, 1.1rem) clamp(0.5rem, 1vw, 0.65rem);
}
@media (min-width: 769px) {
    .kundli-form-wrap:has(.kundli-milan-form) .kundli-generator {
        max-width: 520px;
    }
}
@media (min-width: 969px) {
    .kundli-form-wrap:has(.kundli-milan-form) .kundli-generator {
        max-width: 560px;
        padding: clamp(0.75rem, 1.5vw, 0.95rem) clamp(0.9rem, 1.8vw, 1.2rem) clamp(0.5rem, 1vw, 0.65rem);
    }
}

/* Milan: compact header */
.kundli-form-wrap:has(.kundli-milan-form) .kundli-generator-header {
    margin-bottom: clamp(0.5rem, 1vw, 0.65rem);
    padding-bottom: 0.35rem;
}
.kundli-form-wrap:has(.kundli-milan-form) .kundli-generator-header h3 {
    line-height: 1.3;
    white-space: normal;
    word-break: break-word;
    margin-bottom: 0.1rem;
    font-size: clamp(0.9rem, 1.8vw, 1.02rem);
}
.kundli-form-wrap:has(.kundli-milan-form) .kundli-generator-header p {
    font-size: clamp(0.65rem, 1.4vw, 0.75rem);
    margin: 0;
}

.kundli-milan-form .milan-form-section {
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
    padding: clamp(0.6rem, 1.2vw, 0.85rem);
    background: #f8f6f3;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
}
.kundli-milan-form .milan-form-section:last-of-type {
    margin-bottom: 0;
}

.kundli-milan-form .milan-section-title {
    font-size: clamp(0.88rem, 1.5vw, 0.98rem);
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 clamp(0.45rem, 1vw, 0.6rem);
    padding-bottom: 0.35rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.kundli-milan-form .milan-section-title .fa-mars { color: #2e7db5; }
.kundli-milan-form .milan-section-title .fa-venus { color: #c75a7a; }

/* Compact: form-rows, form-group, label, input inside milan */
.kundli-milan-form .milan-form-section .form-row {
    margin-bottom: clamp(0.4rem, 0.9vw, 0.55rem);
}
.kundli-milan-form .milan-form-section .form-row:last-child {
    margin-bottom: 0;
}
.kundli-milan-form .form-group {
    margin-bottom: 0;
}
.kundli-milan-form .form-group label {
    margin-bottom: 0.2rem;
    font-size: clamp(0.7rem, 1.4vw, 0.8rem);
}
.kundli-milan-form .form-group input,
.kundli-milan-form .form-group select {
    padding: clamp(0.4rem, 0.9vw, 0.5rem);
    font-size: clamp(0.78rem, 1.5vw, 0.85rem);
    min-height: 36px;
}

/* Contact row – less gap */
.kundli-milan-form > .form-row {
    margin-top: clamp(0.7rem, 1.5vw, 0.9rem);
    margin-bottom: clamp(0.4rem, 0.9vw, 0.55rem);
    padding-top: 0;
}

.kundli-milan-form .btn-generate {
    margin-top: clamp(0.55rem, 1.2vw, 0.75rem);
    padding: clamp(0.5rem, 1.2vw, 0.65rem);
    font-size: clamp(0.8rem, 1.6vw, 0.9rem);
}

.kundli-milan-form .form-note-compact {
    margin-top: clamp(0.5rem, 1vw, 0.65rem);
    margin-bottom: 0.25rem;
    font-size: clamp(0.58rem, 2.2vw, 0.88rem);
    line-height: 1.4;
    white-space: nowrap;
    color: var(--text-medium);
    text-align: center;
    font-family: 'Teko', 'Noto Sans Devanagari', sans-serif;
    font-weight: 500;
    letter-spacing: 0.01em;
}
@media (max-width: 380px) {
    .kundli-milan-form .form-note-compact {
        font-size: 0.6rem;
    }
}
@media (min-width: 560px) {
    .kundli-milan-form .form-note-compact {
        font-size: 0.85rem;
    }
}
.kundli-milan-form .form-note-compact i {
    margin-right: 0.25rem;
    color: var(--primary-color);
}
.kundli-milan-form .form-note-name {
    margin-top: 0.5rem;
    margin-bottom: 0;
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    line-height: 1.4;
    text-align: center;
}

@media (max-width: 768px) {
    .kundli-milan-form .milan-form-section {
        padding: 0.7rem 0.85rem;
        margin-bottom: 0.85rem;
    }
    .kundli-milan-form .milan-section-title {
        margin-bottom: 0.45rem;
        padding-bottom: 0.35rem;
    }
    .kundli-milan-form > .form-row {
        margin-top: 0.85rem;
    }
    .kundli-milan-form .btn-generate {
        margin-top: 0.65rem;
    }
    .kundli-milan-form .form-group input,
    .kundli-milan-form .form-group select {
        min-height: 40px;
    }
}

.btn-generate {
    width: 100%;
    padding: clamp(0.65rem, 1.5vw, 0.8rem);
    background: var(--gradient-gold);
    color: var(--text-dark);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.kundli-form .btn-generate {
    padding: clamp(0.45rem, 1vw, 0.6rem);
    font-size: clamp(0.78rem, 1.5vw, 0.88rem);
    margin-top: 0.35rem;
    border-radius: 8px;
}

.btn-generate:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.form-note {
    text-align: center;
    font-size: clamp(0.7rem, 1.5vw, 0.8rem);
    color: var(--text-light);
    margin-top: clamp(0.5rem, 1.2vw, 0.6rem);
}

.kundli-form .form-note {
    margin-top: 0.2rem;
    font-size: clamp(0.6rem, 1.2vw, 0.7rem);
}

.form-note-compact {
    margin-top: 0.35rem;
    margin-bottom: 0.15rem;
    font-size: clamp(0.65rem, 1.4vw, 0.75rem);
    white-space: nowrap;
    font-family: 'Mukta', 'Noto Sans Devanagari', sans-serif;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text-medium);
}

.form-note-compact i {
    opacity: 0.9;
}

.kundli-form .form-note-compact {
    margin-top: 0.2rem;
    margin-bottom: 0.08rem;
    font-size: clamp(0.58rem, 1.15vw, 0.68rem);
}

.form-note-name {
    margin-top: 0.35rem;
    margin-bottom: 0;
    padding-bottom: 0;
    font-size: clamp(1rem, 5.5vw, 1.55rem);
    line-height: 1.25;
    color: #c0392b !important;
    font-weight: 700;
    letter-spacing: 0.04em;
    font-family: 'Teko', 'Noto Serif Devanagari', 'Mukta', sans-serif !important;
    text-shadow: 0 1px 2px rgba(192, 57, 43, 0.15);
}

/* Kundli form: Jyotishacharya name – Teko font (Latin only; Devanagari uses fallback) */
.kundli-form .form-note-name {
    margin-top: 0.25rem;
    margin-bottom: 0;
    font-size: clamp(0.8rem, 3.2vw, 1.05rem);
    white-space: normal;
    text-align: center;
    word-break: normal;
    font-family: 'Teko', 'Noto Serif Devanagari', 'Mukta', sans-serif !important;
}
.kundli-form .form-note-name strong {
    font-family: 'Teko', 'Noto Serif Devanagari', 'Mukta', sans-serif !important;
}

@media (min-width: 969px) {
    .form-note-name {
        white-space: nowrap;
        font-size: clamp(1rem, 1.4vw, 1.35rem);
    }
    .kundli-form .form-note-name {
        font-size: clamp(0.95rem, 1.2vw, 1.2rem);
        white-space: nowrap;
    }
}

.form-note-name strong {
    color: #c0392b;
    font-weight: 600;
    letter-spacing: inherit;
    font-family: 'Teko', 'Noto Serif Devanagari', 'Mukta', sans-serif !important;
}

.form-note i {
    color: var(--primary-color);
    margin-right: 0.3rem;
}

.kundli-result {
    margin-top: 1rem;
    margin-bottom: 0;
    padding: 1rem;
    background: var(--gradient-1);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}
.kundli-generator > .kundli-result {
    margin-bottom: 1rem;
}

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

.result-header h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.close-result {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-medium);
    font-size: 1.2rem;
    padding: 0.25rem;
}

/* Gun Milan result (Ashtakoot API) */
.milan-result-box .result-content {
    padding: 0.25rem 0;
}
.milan-total-score {
    text-align: center;
    margin-bottom: 0.75rem;
    padding: 0.6rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.06) 100%);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}
.milan-score-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}
.milan-score-of {
    font-size: 1rem;
    color: var(--text-medium);
    margin-left: 0.25rem;
}
.milan-score-desc {
    font-size: 0.8rem;
    color: var(--text-medium);
    margin-bottom: 0.75rem;
    text-align: center;
}
.milan-koota-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}
.milan-koota-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.35rem 0.5rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 6px;
}
.milan-koota-name { color: var(--text-dark); font-weight: 500; }
.milan-koota-score { color: var(--primary-dark); font-weight: 600; }
.milan-cta-note {
    font-size: 0.8rem;
    color: var(--text-medium);
    margin-bottom: 0.5rem;
}
.milan-result-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}
.milan-result-btns .btn-generate {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    width: auto;
}
.milan-loading, .milan-error {
    text-align: center;
    padding: 1rem;
    color: var(--text-medium);
}
.milan-error { color: #c0392b; }

/* Kundli Chakra - North Indian chart in traditional pattern (red/orange border, golden interior) */
.kundli-chakra {
    margin: 1.25rem 0;
    padding: 1.25rem;
    background: linear-gradient(145deg, #fef5e7 0%, #fdebd0 50%, #f9e79f 100%);
    border: 3px solid #c0392b;
    border-radius: 16px;
    box-shadow: 0 0 0 6px #e74c3c, 0 0 0 9px #d35400, 0 6px 20px rgba(192, 57, 43, 0.25);
    position: relative;
}
.kundli-chakra::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 18px;
    border: 2px solid rgba(211, 84, 0, 0.5);
    pointer-events: none;
}
.kundli-chakra-title {
    font-size: 1rem;
    font-weight: 700;
    color: #c0392b;
    margin-bottom: 0.75rem;
    text-align: center;
}
/* Kundli Chakra: North Indian box-grid (square, thick red lines, 12 houses, parchment look) */
.kundli-chakra-diamond {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 0;
    max-width: 320px;
    aspect-ratio: 1;
    margin: 0 auto;
    background: #c0392b;
    border: 3px solid #a93226;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: inset 0 0 0 2px #e74c3c;
}
.kundli-chakra-cell {
    min-height: 48px;
    padding: 0.35rem 0.25rem;
    background: #e8d5b5;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid #c0392b;
}
.kundli-chakra-cell--empty {
    background: #d4c4a0;
    min-height: 20px;
    border: 2px solid #c0392b;
}
.kundli-chakra-cell--lagna {
    background: linear-gradient(180deg, #f0e0c0 0%, #e8d5b5 100%);
    font-weight: 700;
    border: 2px solid #a93226;
    box-shadow: inset 0 0 6px rgba(192, 57, 43, 0.15);
}
.kundli-chakra-house-num {
    font-size: 0.85rem;
    font-weight: 700;
    color: #c0392b;
    margin-bottom: 0.2rem;
}
.kundli-chakra-cell--lagna .kundli-chakra-house-num {
    color: #a93226;
}
.kundli-chakra-house-planets {
    font-size: 0.6rem;
    color: #922b21;
    line-height: 1.3;
    font-weight: 500;
}
.kundli-chakra-house-planets span {
    display: inline-block;
    margin: 0 0.1rem;
}
.kundli-chakra-house-planets .retro {
    color: #7b241c;
}
@media (max-width: 480px) {
    .kundli-chakra-diamond {
        max-width: 100%;
    }
    .kundli-chakra-cell {
        min-height: 40px;
        padding: 0.25rem 0.2rem;
    }
    .kundli-chakra-house-num {
        font-size: 0.75rem;
    }
    .kundli-chakra-house-planets {
        font-size: 0.55rem;
    }
}

/* वर्ग कुंडली (Divisional Chart D9) – Navamsa section */
.varga-chakra {
    margin-top: 1.5rem;
}
.varga-chakra .kundli-chakra-title {
    color: #922b21;
}

.hero-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    z-index: 2;
    pointer-events: none;
}

.star {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: twinkle 2s ease-in-out infinite;
}

.star-1 { left: 10%; bottom: 20px; animation-delay: 0s; }
.star-2 { left: 50%; bottom: 30px; animation-delay: 0.5s; }
.star-3 { right: 15%; bottom: 25px; animation-delay: 1s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Section Common – spacing between sections not excessive */
section {
    padding: clamp(1.75rem, 3.5vw, 2.5rem) 0;
    position: relative;
    clear: both;
    overflow: visible;
    margin: 0;
    isolation: isolate;
}

/* Sabhi pages par sections ke beech clear separation – halka border */
section + section {
    border-top: 1px solid var(--border-color);
}

section:not(.hero) {
    z-index: 10;
    position: relative;
    transform: translateZ(0);
}

.section-header {
    text-align: center;
    margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

.section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.section-header p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-medium);
}

/* About Section – same width/alignment on Hindi and EN index */
.about {
    background: linear-gradient(to bottom, var(--light-bg) 0%, var(--section-bg) 100%);
    padding: clamp(2rem, 4vw, 3rem) 0;
    clear: both;
    overflow: visible;
    z-index: 10;
    isolation: isolate;
    transform: translateZ(0);
}

.about .container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
    box-sizing: border-box;
}

@media (min-width: 769px) {
    .about .container {
        padding: 0 clamp(1rem, 4vw, 2rem);
    }
}

@media (max-width: 360px) {
    .about .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

/* EN page: about section content wider */
html[lang="en"] .about .container {
    max-width: 1320px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: clamp(0.5rem, 1.2vw, 0.75rem);
}

.about-text-top {
    width: 100%;
    margin-bottom: 0;
}

.about-wrapper {
    display: flex;
    gap: clamp(1.5rem, 3vw, 2rem);
    align-items: flex-start;
    margin: clamp(0.35rem, 0.8vw, 0.5rem) 0 clamp(0.75rem, 1.5vw, 1rem) 0;
}

.about-image {
    flex: 0 0 380px;
    min-width: 320px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3), 0 5px 15px rgba(0, 0, 0, 0.2);
    align-self: flex-start;
    padding: 8px;
    transition: all 0.4s ease;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    z-index: 1;
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 15px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    z-index: 2;
    pointer-events: none;
}

.about-astrologer-img {
    width: 100%;
    height: auto;
    min-height: 450px;
    object-fit: cover;
    border-radius: 15px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    filter: brightness(1.05) contrast(1.05);
    transform: scaleX(-1);
}

.about-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.4), 0 8px 20px rgba(0, 0, 0, 0.3);
}

.about-image:hover .about-astrologer-img {
    transform: scaleX(-1) scale(1.05);
    filter: brightness(1.1) contrast(1.1);
}

/* Name plate */
.about-name-plate {
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    z-index: 3;
    width: auto;
}

.name-plate-inner {
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.95) 0%, rgba(184, 148, 31, 0.98) 50%, rgba(139, 69, 19, 0.95) 100%);
    border: 3px solid rgba(255, 255, 255, 0.6);
    border-radius: 0 0 15px 15px;
    padding: clamp(0.75rem, 1.8vw, 1rem) clamp(1rem, 2.5vw, 1.25rem);
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
}

.name-plate-inner::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 0 0 17px 17px;
    border: 1px solid rgba(255, 215, 0, 0.5);
    border-top: none;
    pointer-events: none;
}

.name-plate-line1 {
    display: block;
    font-family: 'Noto Serif Devanagari', 'Mukta', 'Noto Sans Devanagari', serif;
    font-size: clamp(0.95rem, 2.2vw, 1.15rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    margin-bottom: 0.35rem;
}

.name-plate-line2 {
    display: block;
    font-family: 'Mukta', 'Noto Serif Devanagari', 'Noto Sans Devanagari', sans-serif;
    font-size: clamp(0.75rem, 1.7vw, 0.9rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
    letter-spacing: 0.03em;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
    margin-bottom: 0.3rem;
}

.name-plate-line3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-family: 'Mukta', 'Noto Serif Devanagari', 'Noto Sans Devanagari', sans-serif;
    font-size: clamp(0.7rem, 1.6vw, 0.85rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.98);
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    margin-top: 0.25rem;
    padding-top: 0.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.name-plate-line3 i {
    color: var(--accent-gold);
    font-size: clamp(0.75rem, 1.8vw, 0.9rem);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.about-image-overlay,
.about-image-badge {
    display: none;
}

.about-text-main {
    flex: 1;
}

.about-text-bottom {
    width: 100%;
}

.about-text-top p,
.about-text-main p,
.about-text-bottom p {
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.7;
    color: var(--text-medium);
    text-align: justify;
}

.about-text-top p:first-child,
.about-text-main p:first-child,
.about-text-bottom p:first-child {
    margin-top: 0;
}

.achievements {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1rem, 2.5vw, 1.5rem);
    margin-top: clamp(1.5rem, 4vw, 2rem);
}

.achievement-item {
    background: var(--light-bg);
    padding: clamp(1rem, 2vw, 1.25rem);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px var(--shadow-light);
    transition: all 0.3s ease;
}

.achievement-item:hover {
    box-shadow: 0 8px 25px var(--shadow-medium);
    transform: translateY(-3px);
}

.achievement-item i {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.achievement-item h4 {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-dark);
    margin-bottom: 0.35rem;
}

.achievement-item p {
    font-size: clamp(0.85rem, 1.6vw, 0.95rem);
    color: var(--text-medium);
    margin: 0;
}

/* About page – Philosophy, Expertise, Credentials sections */
.about-philosophy {
    background: var(--light-bg);
    padding: clamp(2rem, 4vw, 3rem) 0;
}

.about-text-block {
    max-width: 800px;
    margin: 0 auto;
}

.about-text-block p {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    line-height: 1.75;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.about-text-block p:last-child {
    margin-bottom: 0;
}

.about-expertise {
    padding: clamp(2rem, 4vw, 3rem) 0;
    background: var(--section-bg);
}

.expertise-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 780px;
    margin: 0 auto;
}

.expertise-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: clamp(0.95rem, 1.8vw, 1.08rem);
    line-height: 1.65;
    color: var(--text-dark);
}

.expertise-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
}

.expertise-list li strong {
    color: var(--text-dark);
}

.about-credentials {
    padding: clamp(2rem, 4vw, 3rem) 0;
    background: var(--light-bg);
}

/* ========== About Page – Professional Design ========== */

/* Page header – About */
.page-header-about {
    padding: clamp(2.5rem, 5vw, 3.5rem) 0;
    background: linear-gradient(180deg, var(--section-bg) 0%, var(--light-bg) 100%);
    border-bottom: 1px solid var(--border-color);
}

.page-header-about .breadcrumb {
    font-size: clamp(0.8rem, 1.6vw, 0.9rem);
    color: var(--text-medium);
    margin-bottom: 0.75rem;
}

.page-header-about .breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.page-header-about .breadcrumb a:hover {
    text-decoration: underline;
}

.page-header-about .breadcrumb-sep {
    margin: 0 0.35rem;
    color: var(--text-light);
}

.page-header-about .page-header-title {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    letter-spacing: 0.02em;
}

.page-header-about .page-header-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-medium);
    margin: 0;
    max-width: 640px;
}

/* Intro section – side-by-side layout */
.about-intro-section .about-content-pro {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: start;
}

@media (min-width: 769px) {
    .about-intro-section .about-content-pro {
        grid-template-columns: 380px 1fr;
    }
}

.about-intro-section .about-image-pro {
    flex: none;
    min-width: 0;
}

.about-intro-section .about-text-pro {
    min-width: 0;
}

.about-intro-heading {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 1.25rem 0;
    line-height: 1.4;
}

.about-text-pro p {
    font-size: clamp(0.95rem, 1.8vw, 1.08rem);
    line-height: 1.75;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.about-text-pro .link-accent {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
}

.about-text-pro .link-accent:hover {
    text-decoration: none;
}

/* Quote block */
.about-quote {
    margin: 2rem 0 0 0;
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.03) 100%);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 12px 12px 0;
    position: relative;
}

.about-quote-icon {
    position: absolute;
    top: 0.5rem;
    left: 0.75rem;
    font-family: 'Noto Serif Devanagari', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.4;
    line-height: 1;
}

.about-quote p {
    font-size: clamp(1rem, 1.9vw, 1.1rem);
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0 0 0.75rem 0;
    font-style: italic;
}

.about-quote cite {
    font-size: clamp(0.85rem, 1.6vw, 0.95rem);
    color: var(--text-medium);
    font-style: normal;
}

/* Stats bar */
.about-stats-bar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: clamp(1.25rem, 2.5vw, 1.75rem) 0;
    color: #fff;
}

.about-stats-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 600px) {
    .about-stats-inner {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.about-stat-num {
    display: block;
    font-family: 'Noto Serif Devanagari', serif;
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.about-stat-num i {
    font-size: clamp(1.5rem, 3vw, 2rem);
    opacity: 0.95;
}

.about-stat-label {
    font-size: clamp(0.8rem, 1.5vw, 0.95rem);
    opacity: 0.95;
}

/* Section label + heading (professional) */
.section-header-pro {
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.section-header-pro .section-label {
    display: block;
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.section-header-pro h2 {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

/* Philosophy card */
.about-philosophy-card {
    max-width: 800px;
    margin: 0 auto;
    padding: clamp(1.5rem, 3vw, 2rem);
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 24px var(--shadow-light);
    border-left: 4px solid var(--primary-color);
}

.about-philosophy-card p {
    font-size: clamp(0.95rem, 1.8vw, 1.08rem);
    line-height: 1.75;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.about-philosophy-card p:last-child {
    margin-bottom: 0;
}

/* ========== आज का राशिफल (Home) ========== */
.today-rashifal-section {
    padding: clamp(2.5rem, 5vw, 3.5rem) 0;
    background: linear-gradient(180deg, #f8f6f4 0%, var(--section-bg) 100%);
    border-top: 1px solid var(--border-color);
}
.today-rashifal-section .section-header p {
    max-width: 720px;
    margin: 0.5rem auto 0;
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    color: var(--text-medium);
    line-height: 1.6;
}
.rashifal-source {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.85rem;
    color: var(--text-medium);
    font-weight: 500;
}
/* एक ही लाइन: [←] [तारीख] [→] तारीख चुनें – तारीख पर क्लिक = कैलेंडर */
.rashifal-date-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    margin-top: 1rem;
}
.rashifal-date-arrow {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    background: #fff;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.rashifal-date-arrow:hover,
.rashifal-date-arrow:focus {
    border-color: var(--primary-color);
    background: rgba(212, 175, 55, 0.1);
    outline: none;
}
.rashifal-date-arrow i {
    font-size: 1rem;
}
.rashifal-date-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
}
.rashifal-date-calendar-btn {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: #fff;
    color: var(--primary-color);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.rashifal-date-calendar-btn:hover,
.rashifal-date-calendar-btn:focus {
    border-color: var(--primary-color);
    background: rgba(212, 175, 55, 0.1);
    outline: none;
}
.rashifal-date-calendar-btn i {
    font-size: 1.1rem;
}
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
}
.rashifal-date-picker {
    padding: 0.45rem 0.65rem;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    min-width: 10rem;
}
.rashifal-date-picker:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}
.rashifal-day-selector {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
    margin-top: 0.75rem;
}
.rashifal-day-label {
    font-size: 0.95rem;
    color: var(--text-medium);
    font-weight: 600;
}
.rashifal-day-btn {
    padding: 0.4rem 0.9rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.rashifal-day-btn:hover,
.rashifal-day-btn:focus {
    border-color: var(--primary-color);
    background: rgba(154, 123, 79, 0.06);
    outline: none;
}
.rashifal-day-btn.active {
    background: linear-gradient(135deg, rgba(154, 123, 79, 0.18), rgba(184, 152, 104, 0.12));
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.rashifal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2vw, 1.35rem);
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.rashifal-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem 1.15rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.rashifal-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(154, 123, 79, 0.25);
}
.rashifal-card.rashifal-card-highlighted {
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 0 1px var(--primary-color), 0 4px 20px rgba(154, 123, 79, 0.25);
}
.rashifal-nav-btn-active {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 8px rgba(154, 123, 79, 0.5) !important;
}
.rashifal-rashi-name {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.rashifal-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35em;
    line-height: 1;
    width: 1.5em;
    min-width: 1.5em;
    height: 1.5em;
    flex-shrink: 0;
    color: var(--primary-color);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* Hindi (Devanagari) rashi initial – professional badge */
.rashifal-icon-hindi {
    font-family: 'Noto Serif Devanagari', serif;
    font-weight: 700;
    font-size: 1em;
    min-width: 1.6em;
    width: auto;
    height: 1.6em;
    padding: 0 0.35em;
    background: linear-gradient(135deg, rgba(154, 123, 79, 0.12), rgba(184, 152, 104, 0.08));
    color: var(--primary-color);
    border: 1px solid rgba(154, 123, 79, 0.35);
    border-radius: 8px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* राशि चिह्न आइकन – धनुष, शेर, मेढ़ा आदि (पिक्चोरियल) */
.rashifal-icon-symbol {
    font-size: 1.5rem;
    line-height: 1;
    width: 1.6em;
    min-width: 1.6em;
    height: 1.6em;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
/* AstroSage-style PNG राशि आइकन – गोल + सुनहरा (golden) */
.rashifal-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    vertical-align: middle;
    flex-shrink: 0;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(145deg, rgba(218, 165, 32, 0.22), rgba(184, 134, 11, 0.12));
    border: 2px solid rgba(199, 158, 50, 0.65);
    box-sizing: content-box;
    box-shadow: 0 0 0 1px rgba(218, 165, 32, 0.15);
}
.rashifal-card:hover .rashifal-icon-img {
    border-color: var(--primary-color);
    box-shadow: 0 0 8px rgba(154, 123, 79, 0.35);
}
/* वैदिक ज्योतिष राशि चिह्न (♈–♓) – पंचांग/कुंडली स्टाइल */
.rashifal-icon-vedic {
    font-size: 1.4em;
    line-height: 1;
    min-width: 1.5em;
    width: 1.5em;
    height: 1.5em;
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(154, 123, 79, 0.08), rgba(184, 152, 104, 0.05));
    border: 1px solid rgba(154, 123, 79, 0.28);
    border-radius: 50%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.rashifal-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.6em;
    height: 1.6em;
    background: linear-gradient(135deg, var(--primary-color), #b89868);
    color: #fff;
    border-radius: 50%;
    font-size: 0.85em;
}
.rashifal-prediction {
    font-size: clamp(0.9rem, 1.7vw, 1rem);
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}
.rashifal-detail {
    font-size: clamp(0.82rem, 1.55vw, 0.92rem);
    line-height: 1.55;
    color: var(--text-medium);
    margin: 0 0 0.6rem 0;
}
.rashifal-detail strong {
    color: var(--text-dark);
}
.rashifal-meta {
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    color: var(--primary-color);
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.rashifal-meta strong {
    color: var(--text-dark);
    font-weight: 600;
}
.rashifal-color-item {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-right: 0.35rem;
}
.rashifal-color-circle {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.15);
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.rashifal-color-circle:hover {
    transform: scale(1.2);
    box-shadow: 0 0 6px rgba(0,0,0,0.25);
}
.rashifal-color-zoom-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: pointer;
}
.rashifal-color-zoom-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    cursor: default;
}
.rashifal-color-zoom-overlay .rashifal-color-zoom-box { cursor: default; pointer-events: none; }
.rashifal-color-zoom-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(0,0,0,0.1);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.rashifal-color-zoom-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}
.rashifal-disclaimer {
    max-width: 720px;
    margin: 2rem auto 0;
    font-size: clamp(0.88rem, 1.65vw, 0.98rem);
    color: var(--text-medium);
    line-height: 1.6;
    text-align: center;
}
.rashifal-disclaimer a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}
.rashifal-disclaimer a:hover {
    text-decoration: none;
}
/* राशिफल के नीचे परामर्श लें – हरा बॉर्डर/बटन नहीं, साधारण टेक्स्ट लिंक */
.rashifal-disclaimer a.service-btn {
    display: inline;
    background: none;
    padding: 0;
    border: none;
    border-radius: 0;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}
.rashifal-disclaimer a.service-btn:hover {
    background: none;
    transform: none;
    text-decoration: none;
}
/* राशि नेव स्ट्रिप – कार्ड के ऊपर, क्लिक पर उस राशि के कार्ड पर स्क्रॉल */
.rashifal-nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding: 0.5rem 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}
.rashifal-nav::-webkit-scrollbar {
    height: 4px;
}
.rashifal-nav-btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    padding: 4px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(218, 165, 32, 0.18), rgba(184, 134, 11, 0.1));
    border: 2px solid rgba(199, 158, 50, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.rashifal-nav-btn:hover,
.rashifal-nav-btn:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 6px rgba(154, 123, 79, 0.4);
    outline: none;
}
.rashifal-nav-btn img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 50%;
}
@media (max-width: 900px) {
    .rashifal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    /* Mobile: date ke neeche wale 12 rashi nav icons – sahi display aur align */
    .rashifal-nav {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: flex-start;
        gap: 0.5rem;
        margin-top: 1rem;
        margin-left: -0.5rem;
        margin-right: -0.5rem;
        padding: 0.5rem 0.75rem;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        min-height: 52px;
    }
    .rashifal-nav::-webkit-scrollbar {
        height: 4px;
    }
    .rashifal-nav-btn {
        flex: 0 0 auto;
        width: 42px;
        height: 42px;
        min-width: 42px;
        min-height: 42px;
        padding: 3px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .rashifal-nav-btn img {
        width: 28px;
        height: 28px;
        object-fit: contain;
    }
    .rashifal-grid {
        display: flex;
        flex-wrap: nowrap;
        grid-template-columns: unset;
        gap: 1rem;
        margin-left: -1rem;
        margin-right: -1rem;
        padding: 0 1rem 0.5rem;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
    }
    .rashifal-grid::-webkit-scrollbar {
        height: 6px;
    }
    .rashifal-card {
        flex: 0 0 85%;
        min-width: 280px;
        max-width: 360px;
        scroll-snap-align: start;
    }
}
@media (max-width: 600px) {
    .rashifal-nav {
        padding: 0.4rem 0.6rem;
        gap: 0.4rem;
        min-height: 48px;
    }
    .rashifal-nav-btn {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        padding: 2px;
    }
    .rashifal-nav-btn img {
        width: 26px;
        height: 26px;
    }
    .rashifal-grid {
        padding: 0 0.75rem;
    }
    .rashifal-card {
        flex: 0 0 88%;
        min-width: 260px;
    }
}

/* ========== महाविद्या एवं माँ ललिता अंबा sections (Home + About) ========== */

/* Home – Hero ke neeche */
.mahavidya-intro-section {
    padding: clamp(2rem, 4vw, 3rem) 0;
    background: var(--section-bg);
    border-top: 1px solid var(--border-color);
}

.mahavidya-section-photo-wrap {
    width: 100%;
    max-width: 720px;
    margin: 0 auto 1.75rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.mahavidya-section-photo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 320px;
}

.mahavidya-intro-content {
    max-width: 100%;
    width: 100%;
}

.mahavidya-intro-lead {
    font-size: clamp(0.98rem, 1.9vw, 1.12rem);
    line-height: 1.75;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.mahavidya-intro-content p {
    font-size: clamp(0.95rem, 1.8vw, 1.08rem);
    line-height: 1.75;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.mahavidya-lalita-block {
    margin-top: 2rem;
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.03) 100%);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 12px 12px 0;
}

/* Maa Lalitamba section: image + name in one row (Home & About) */
.lalita-section-header {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2.5vw, 1.5rem);
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.lalita-section-header .lalita-mata-image-wrap {
    margin: 0;
    flex-shrink: 0;
    max-width: 120px;
}

.lalita-mata-image-wrap {
    width: 100%;
    max-width: 140px;
    margin: 0 auto 1.25rem;
    text-align: center;
}

.lalita-mata-img {
    width: 100%;
    max-width: 140px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.lalita-section-header .lalita-mata-img {
    max-width: 120px;
}

.lalita-title-wrap {
    flex: 1;
    min-width: 200px;
}

.mahavidya-lalita-block .lalita-title,
.mahavidya-lalita-block h3 {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.75rem 0;
}

.mahavidya-lalita-block .lalita-section-header .lalita-title {
    margin: 0;
}

.mahavidya-lalita-block .lalita-title i,
.mahavidya-lalita-block h3 i {
    color: var(--primary-color);
    margin-right: 0.35rem;
}

.mahavidya-lalita-block p {
    margin-bottom: 1rem;
}

.mahavidya-lalita-block p:last-child {
    margin-bottom: 0;
}

.mahavidya-cta-text {
    margin-top: 1rem;
    font-size: clamp(0.9rem, 1.7vw, 1rem);
}

.mahavidya-cta-text .link-accent {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
}

.mahavidya-cta-text .link-accent:hover {
    text-decoration: none;
}

/* About – महाविद्या एवं माँ ललिता अंबा section */
.about-mahavidya-section {
    padding: clamp(2rem, 4vw, 3rem) 0;
    background: var(--section-bg);
}

.mahavidya-content-block {
    max-width: 100%;
    width: 100%;
    margin: 0 0 2rem 0;
}

.mahavidya-content-block p {
    font-size: clamp(0.95rem, 1.8vw, 1.08rem);
    line-height: 1.75;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.mahavidya-subhead {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    font-weight: 600;
    color: var(--text-dark);
    margin: 1.5rem 0 0.75rem 0;
}

.lalita-amba-card {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: clamp(1.5rem, 3vw, 2rem);
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 24px var(--shadow-light);
    border-left: 4px solid var(--primary-color);
}

.lalita-amba-card .lalita-section-header .lalita-mata-image-wrap {
    margin: 0;
}

.lalita-amba-card .lalita-title-wrap .lalita-sub {
    margin: 0.35rem 0 0 0;
}

.lalita-heading {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: clamp(1.15rem, 2.3vw, 1.4rem);
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.35rem 0;
}

.lalita-heading i {
    color: var(--primary-color);
    margin-right: 0.35rem;
}

.lalita-sub {
    font-size: clamp(0.9rem, 1.7vw, 1rem);
    color: var(--text-medium);
    margin: 0 0 1.25rem 0;
}

.lalita-body p {
    font-size: clamp(0.92rem, 1.75vw, 1.05rem);
    line-height: 1.72;
    color: var(--text-dark);
    margin-bottom: 1.1rem;
}

.lalita-body p:last-child {
    margin-bottom: 0;
}

/* Expertise grid – cards */
.expertise-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.25rem, 2.5vw, 1.5rem);
}

@media (min-width: 600px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 969px) {
    .expertise-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.expertise-card {
    background: #fff;
    padding: clamp(1.25rem, 2.5vw, 1.5rem);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: all 0.3s ease;
}

.expertise-card:hover {
    box-shadow: 0 8px 30px var(--shadow-medium);
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.4);
}

.expertise-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.08) 100%);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.expertise-card h3 {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    line-height: 1.35;
}

.expertise-card p {
    font-size: clamp(0.88rem, 1.6vw, 0.98rem);
    line-height: 1.6;
    color: var(--text-medium);
    margin: 0;
}

/* Credentials – professional cards */
.achievements-pro {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1rem, 2vw, 1.25rem);
}

@media (min-width: 600px) {
    .achievements-pro {
        grid-template-columns: repeat(2, 1fr);
    }
}

.achievement-item-pro {
    padding: clamp(1.25rem, 2.5vw, 1.5rem);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: #fff;
    box-shadow: 0 4px 20px var(--shadow-light);
}

.achievement-item-pro:hover {
    box-shadow: 0 8px 28px var(--shadow-medium);
}

.achievement-item-pro .link-accent {
    color: var(--primary-color);
    text-decoration: underline;
}

.achievement-item-pro .link-accent:hover {
    text-decoration: none;
}

/* Services */
.services,
.problem-services,
.vastu,
.puja,
.additional-puja,
.additional-services {
    background: var(--section-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.25rem, 2.5vw, 1.5rem);
}

.service-card {
    background: var(--light-bg);
    padding: clamp(1.25rem, 2.5vw, 1.5rem);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-medium);
    border-color: var(--primary-color);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.service-card h3 {
    font-size: clamp(1.1rem, 2.2vw, 1.25rem);
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.service-card p {
    font-size: clamp(0.9rem, 1.7vw, 1rem);
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: #20bd5a;
    transform: translateY(-2px);
}

/* Vastu cards: Know more + WhatsApp buttons */
.service-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
    justify-content: center;
}
.service-card {
    text-align: center;
}
.service-card h3,
.service-card p {
    text-align: center;
}
.service-card .service-card-actions {
    text-align: center;
}
.service-btn-know {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.25rem;
    background: transparent;
    color: var(--primary-dark);
    border: 1.5px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.service-btn-know:hover {
    background: var(--primary-color);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.problem-card .service-icon { background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%); color: #fff; }
.vastu-card .service-icon { background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%); color: #fff; }
.puja-card .service-icon { background: linear-gradient(135deg, #6a5acd 0%, #5a4abd 100%); color: #fff; }

/* ===== Services Page (Dedicated) ===== */
.services-hero {
    position: relative;
    background: linear-gradient(135deg, var(--text-dark) 0%, #1a252f 50%, #2c3e50 100%);
    padding: clamp(3rem, 6vw, 4.5rem) 0;
    text-align: center;
    overflow: hidden;
}
.services-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}
.services-hero-content {
    position: relative;
    z-index: 1;
}
.services-hero-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    color: var(--text-dark);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}
.services-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    color: #fff;
    margin-bottom: 0.75rem;
}
.services-hero p {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: rgba(255, 255, 255, 0.88);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.65;
}

.services-intro {
    background: var(--section-bg);
    padding: clamp(1.5rem, 3vw, 2.5rem) 0;
}
.services-intro-inner {
    max-width: 880px;
    margin: 0 auto;
}
.services-intro-inner h2 {
    font-size: clamp(1.35rem, 2.5vw, 1.6rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}
.services-intro-inner p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.75;
    margin: 0 0 1rem;
}
.services-intro-inner p:last-of-type {
    margin-bottom: 1.5rem;
}
.services-intro-inner a {
    color: var(--primary-dark);
    text-decoration: underline;
    font-weight: 600;
}
.services-intro-inner a:hover {
    color: var(--primary-color);
}

.services-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem 1.5rem;
    padding: 1.25rem 0 0;
    border-top: 1px solid var(--border-color);
}
.services-highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}
.services-highlight-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.services-page {
    padding: clamp(2rem, 4vw, 3rem) 0;
}

/* Related Services (Vastu, Puja, Products) */
.related-services {
    background: var(--light-bg);
    padding: clamp(2rem, 4vw, 3rem) 0;
    border-top: 1px solid var(--border-color);
}
.related-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.related-service-card {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: var(--section-bg);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px var(--shadow-light);
}
.related-service-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 6px 24px var(--shadow-medium);
    transform: translateY(-3px);
}
.related-service-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}
.related-service-card h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.related-service-card p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.55;
    margin: 0 0 1rem;
    flex-grow: 1;
}
.related-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.related-service-card:hover .related-link {
    color: var(--primary-color);
}
@media (max-width: 768px) {
    .related-services-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #1a1a1a;
    padding: clamp(1.75rem, 3.5vw, 2.5rem) 0;
    text-align: center;
}
.cta-section h2 {
    font-size: clamp(1.4rem, 3vw, 1.75rem);
    margin-bottom: 0.5rem;
    color: inherit;
    font-weight: 700;
}
.cta-section p {
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    margin-bottom: 1.5rem;
    opacity: 0.95;
}
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
.cta-buttons .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}
.cta-buttons a {
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
}
.cta-buttons .btn-primary {
    background: #fff;
    color: var(--primary-dark);
    border: 2px solid #fff;
}
.cta-buttons .btn-primary:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}
.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.8);
}
.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* CTA section – परामर्श लें form */
.cta-parmarsha-form {
    max-width: 480px;
    margin: 0 auto 0;
    text-align: left;
}
.cta-parmarsha-form .cta-form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}
.cta-parmarsha-form .cta-form-group {
    flex: 1 1 200px;
    margin-bottom: 0;
}
.cta-parmarsha-form .cta-form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: inherit;
}
.cta-parmarsha-form .cta-form-group input,
.cta-parmarsha-form .cta-form-group textarea {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: #1a1a1a;
    font-size: 1rem;
}
.cta-parmarsha-form .cta-form-group input::placeholder,
.cta-parmarsha-form .cta-form-group textarea::placeholder {
    color: rgba(26, 26, 26, 0.6);
}
.cta-parmarsha-form .cta-form-group textarea {
    resize: vertical;
    min-height: 60px;
}
.cta-parmarsha-form .cta-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.25rem;
}
.cta-parmarsha-form .cta-form-actions .btn-primary,
.cta-parmarsha-form .cta-form-actions .btn-secondary {
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid;
    cursor: pointer;
    font-size: 1rem;
}
.cta-parmarsha-form .cta-form-actions .btn-primary {
    background: #fff;
    color: var(--primary-dark);
    border-color: #fff;
}
.cta-parmarsha-form .cta-form-actions .btn-primary:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}
.cta-parmarsha-form .cta-form-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.8);
}
.cta-parmarsha-form .cta-form-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.35);
}

.cta-buttons .btn-whatsapp-cta {
    background: #25d366;
    color: #fff;
    border: 2px solid #25d366;
}
.cta-buttons .btn-whatsapp-cta:hover {
    background: #20bd5a;
    color: #fff;
    border-color: #20bd5a;
}
.cta-buttons .btn-call-cta {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-dark);
    border: 2px solid #fff;
}
.cta-buttons .btn-call-cta:hover {
    background: #fff;
    color: var(--primary-dark);
    border-color: #fff;
    opacity: 0.95;
}

/* Problem pages – CTA hero-style (footer ke upar last section, hero section jaisa design) */
.cta-section.cta-section-problem {
    position: relative;
    padding: clamp(2.5rem, 5vw, 3.5rem) 1rem;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.cta-section-problem .cta-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 40%, #b8961e 100%);
}
.cta-section-problem .cta-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
    pointer-events: none;
}
.cta-section-problem .container {
    position: relative;
    z-index: 2;
    text-align: center;
}
.cta-section-problem .cta-box h2 {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.cta-section-problem .cta-box .cta-tagline {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
.cta-section-problem .cta-trust {
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.25rem;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.cta-section-problem .cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(0.85rem, 1.8vw, 1.1rem);
    justify-content: center;
}
.cta-section-problem .cta-actions a {
    flex: 0 1 auto;
    min-width: 155px;
    max-width: 220px;
    min-height: 48px;
    padding: 0.75rem 1.35rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: clamp(0.88rem, 1.6vw, 1rem);
    line-height: 1.3;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
}
.cta-section-problem .cta-actions .btn-wa {
    background: #25d366;
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}
.cta-section-problem .cta-actions .btn-wa:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}
.cta-section-problem .cta-actions .btn-call {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-dark);
    border: 2px solid rgba(255, 255, 255, 0.9);
}
.cta-section-problem .cta-actions .btn-call:hover {
    background: #fff;
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Problem-specific page intro (किस लिए आते हैं + image) */
.problem-intro {
    padding: clamp(1.5rem, 3vw, 2.5rem) 0;
    background: var(--light-bg);
    border-bottom: 1px solid var(--border-color);
}
.problem-intro-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 2.5rem);
}
.problem-intro-img-wrap {
    flex: 1 1 280px;
    max-width: 380px;
    margin: 0 auto;
}
.problem-intro-img-wrap img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
    object-fit: cover;
    max-height: 240px;
}
.problem-intro-text {
    flex: 1 1 320px;
    min-width: 0;
}
.problem-intro-text h2 {
    font-size: clamp(1.15rem, 2.2vw, 1.4rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}
.problem-intro-text ul {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-medium);
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    line-height: 1.7;
}
.problem-intro-text li {
    margin-bottom: 0.4rem;
}

/* Products */
.products {
    background: var(--light-bg);
}

.products-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.product-category {
    width: 100%;
    text-align: center;
}

.product-category h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Service Locations */
.service-locations {
    background: var(--section-bg);
}

/* होम पेज पर संक्षिप्त सेवा स्थान ब्लॉक */
.service-locations-brief .service-locations-brief-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.service-locations-brief .service-locations-lead {
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1rem;
}
.service-locations-brief .service-locations-brief-content p {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: var(--text-dark);
}
.service-locations-brief .service-locations-cta {
    margin-top: 1.25rem;
    margin-bottom: 0;
}
.service-locations-brief .service-locations-cta a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}
.service-locations-brief .service-locations-cta a:hover {
    color: var(--primary-dark);
}
.service-locations-states-heading {
    margin-top: 1rem;
    margin-bottom: 0.5rem !important;
}
.service-locations-states-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
}
.service-locations-states-list li {
    margin: 0;
}
.service-locations-states-list a {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    padding: 0.25em 0.5em;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}
.service-locations-states-list a:hover {
    color: var(--primary-dark);
    background: rgba(212, 175, 55, 0.12);
}

.locations-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-section h3 {
    font-size: clamp(1.1rem, 2.2vw, 1.25rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.location-tags span {
    padding: 0.4rem 0.8rem;
    background: var(--light-bg);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-medium);
    border: 1px solid var(--border-color);
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

@media (min-width: 969px) {
    .map-container {
        width: 50%;
    }
}

.india-map {
    width: 100%;
    height: 100%;
}

.map-controls {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.map-btn {
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.city-tag {
    cursor: pointer;
}

.city-tag:hover {
    background: var(--primary-light) !important;
    border-color: var(--primary-color) !important;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.city-category h5 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Premium Services */
.premium-services {
    background: var(--light-bg);
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
}

.premium-card {
    background: var(--light-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: all 0.3s ease;
}

.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.premium-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.premium-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.premium-card h3 {
    font-size: clamp(1.1rem, 2.2vw, 1.25rem);
    color: var(--text-dark);
    margin: 1rem 1rem 0.5rem;
    font-weight: 700;
}

.premium-card p {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin: 0 1rem 1rem;
    line-height: 1.6;
}

/* Blog – height km, screen fill dikhe */
.blog-section {
    background: var(--section-bg);
    padding: clamp(1.25rem, 2.5vw, 1.75rem) 0;
}

.blog-section .section-header {
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1rem, 2vw, 1.25rem);
}

.blog-card {
    background: var(--light-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 16px var(--shadow-light);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow-medium);
}

.blog-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-category {
    position: absolute;
    top: 0.6rem;
    left: 0.6rem;
    padding: 0.25rem 0.6rem;
    background: var(--primary-color);
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 6px;
}

.blog-content {
    padding: 0.9rem 1rem;
}

.blog-content h3 {
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    color: var(--text-dark);
    margin-bottom: 0.35rem;
    font-weight: 700;
    line-height: 1.35;
}

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

.blog-content p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.5;
    margin-bottom: 0.6rem;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}

.blog-read-more:hover {
    color: var(--primary-dark);
}

/* FAQ Section – Redesigned */
.faq {
    background: linear-gradient(180deg, var(--section-bg) 0%, var(--light-bg) 50%, var(--section-bg) 100%);
    padding: clamp(2rem, 4vw, 3rem) 0;
}

/* Desktop: सवाल-जवाब left, phone section right */
.faq-phone-desktop-row {
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 969px) {
    .faq-phone-desktop-row {
        display: grid;
        grid-template-columns: 1fr 400px;
        gap: clamp(1.5rem, 3vw, 2.5rem);
        align-items: start;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 clamp(1rem, 4vw, 2rem);
    }
    .faq-phone-desktop-row .faq .container,
    .faq-phone-desktop-row .state-landing-faq .container,
    .faq-phone-desktop-row .social-media-section .container {
        max-width: none;
        padding: 0;
    }
    .faq-phone-desktop-row .social-media-section {
        position: sticky;
        top: clamp(1rem, 2vw, 1.5rem);
    }
    .faq-phone-desktop-row .social-media-section .section-header.social-section-header {
        margin-bottom: clamp(1rem, 2vw, 1.25rem);
    }
    /* Desktop: phone ki width – 10% badha di; 20% aur neeche */
    .faq-phone-desktop-row .social-media-section .social-mobile-column {
        max-width: 330px;
        margin-top: 1.8rem;
    }
    .faq-phone-desktop-row .social-media-section .phone-mockup {
        max-width: 375px;
    }
    .faq-phone-desktop-row .social-media-section .phone-screen,
    .faq-phone-desktop-row .social-media-section .phone-screen .social-embed {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow: hidden;
        box-sizing: border-box;
    }
    .faq-phone-desktop-row .social-media-section .phone-screen .social-embed iframe,
    .faq-phone-desktop-row .social-media-section #socialIframe {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        height: 100% !important;
        min-height: 100% !important;
    }
}

.faq-section-header {
    text-align: center;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.faq-header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(48px, 10vw, 60px);
    height: clamp(48px, 10vw, 60px);
    background: var(--gradient-gold);
    color: var(--text-dark);
    border-radius: 50%;
    font-size: clamp(1.5rem, 3vw, 1.85rem);
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.35);
}

.faq-title {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    color: var(--text-dark);
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    letter-spacing: 0.02em;
}

.faq-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gradient-gold);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

.faq-subtitle {
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    color: var(--text-medium);
    line-height: 1.5;
    margin: 0;
}

.faq-wrapper {
    max-width: 100%;
}

.social-mobile-column {
    min-width: 0;
}

.faq-container {
    max-width: 100%;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 12px var(--shadow-light);
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px var(--shadow-medium);
}

.faq-item.active {
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: clamp(0.9rem, 1.8vw, 1.1rem) clamp(1rem, 2vw, 1.25rem);
    cursor: pointer;
    background: #fff;
    transition: background 0.25s ease, color 0.25s ease;
    -webkit-tap-highlight-color: transparent;
}

.faq-question:hover {
    background: var(--light-bg-alt);
}

.faq-item.active .faq-question {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.08) 0%, transparent 100%);
}

.faq-question h3 {
    font-size: clamp(0.95rem, 1.8vw, 1.08rem);
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
    text-align: left;
    line-height: 1.4;
    flex: 1;
}

.faq-question .fa-chevron-down {
    color: var(--primary-color);
    font-size: 0.85rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question .fa-chevron-down {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 clamp(1rem, 2vw, 1.25rem) clamp(1rem, 2vw, 1.1rem) clamp(0.9rem, 1.8vw, 1.1rem);
    display: none;
    border-top: 1px solid var(--border-color);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: clamp(0.9rem, 1.75vw, 1rem);
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

/* Social / Mobile – only phone dikhe, peeche fade color nahi */
.social-media-section {
    background: transparent;
    padding: clamp(2rem, 4vw, 3rem) 0;
}

.social-section-header {
    text-align: center;
    margin-bottom: clamp(1.25rem, 2.5vw, 1.5rem);
}

.social-section-header h2 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    color: var(--text-dark);
    margin-bottom: 0.35rem;
}

.social-section-header p {
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    color: var(--text-medium);
    margin: 0;
}

.social-media-section .social-mobile-column {
    max-width: 380px;
    margin: 0 auto;
}

.social-media-section .phone-mockup {
    margin: 0 auto;
}

@media (max-width: 768px) {
    .social-media-section .social-mobile-column {
        max-width: 100%;
        padding: 0 0.75rem;
    }
    .social-media-section .phone-mockup {
        max-width: min(420px, 92vw);
        width: 100%;
        margin: 0 auto;
        padding: 10px 12px;
        border-radius: 36px;
    }
    .social-media-section .phone-frame {
        max-height: 760px;
        border-radius: 28px;
        aspect-ratio: 9 / 19.5;
    }
    .social-media-section .phone-notch {
        width: 100px;
        height: 18px;
        border-radius: 0 0 14px 14px;
    }
    .social-media-section .phone-status-bar {
        top: 20px;
        height: 22px;
        padding: 0 14px;
        font-size: 0.7rem;
    }
    .social-media-section .phone-screen {
        margin-top: 38px;
        min-height: 364px;
    }
    .social-media-section .phone-app-icons {
        padding: 8px 12px;
        gap: 0.5rem;
    }
    .social-media-section .app-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
        font-size: 1rem;
    }
    .social-media-section .phone-home-indicator {
        bottom: 50px;
        width: 110px;
        height: 4px;
        border-radius: 2px;
    }
}

@media (max-width: 480px) {
    .social-media-section .social-mobile-column {
        padding: 0 0.5rem;
    }
    .social-media-section .phone-mockup {
        max-width: min(400px, 94vw);
        width: 100%;
        margin: 0 auto;
        padding: 8px 10px;
        border-radius: 32px;
    }
    .social-media-section .phone-frame {
        max-height: 720px;
        border-radius: 24px;
    }
    .social-media-section .phone-notch {
        width: 90px;
        height: 14px;
        border-radius: 0 0 12px 12px;
    }
    .social-media-section .phone-status-bar {
        top: 16px;
        height: 18px;
        padding: 0 10px;
        font-size: 0.65rem;
    }
    .social-media-section .phone-screen {
        margin-top: 32px;
        min-height: 325px;
    }
    .social-media-section .phone-app-icons {
        padding: 6px 10px;
        gap: 0.4rem;
    }
    .social-media-section .app-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
        font-size: 0.9rem;
    }
    .social-media-section .phone-home-indicator {
        bottom: 44px;
        width: 100px;
        height: 3px;
    }
}

/* Facebook Posts – scroll hatao: heading, phone, button saaf dikhen */
.facebook-posts-container {
    background: transparent;
    border-radius: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    position: relative;
    max-height: none;
    overflow: visible;
}

.facebook-header {
    display: none;
    flex-direction: row;
    align-items: center;
    gap: clamp(0.5rem, 1.2vw, 0.75rem);
    flex-wrap: nowrap;
    padding: clamp(0.5rem, 1vw, 0.65rem) clamp(0.6rem, 1.2vw, 0.8rem);
    box-sizing: border-box;
}
.facebook-header .facebook-header-logo,
.facebook-header .facebook-header-text {
    flex-shrink: 0;
}
.facebook-header .facebook-header-text {
    flex-shrink: 1;
    min-width: 0;
}

.facebook-header-logo {
    flex-shrink: 0;
    width: clamp(36px, 8vw, 44px);
    height: clamp(36px, 8vw, 44px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(24, 119, 242, 0.1);
}

.facebook-header-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.facebook-header-logo-fallback {
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    color: #1877f2;
}

.facebook-header-text {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.15rem;
}

.facebook-header-title {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.facebook-header-desc {
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    color: var(--text-medium);
    line-height: 1.2;
}

/* Legacy icon/h3/p – agar kahi purana structure ho */
.facebook-header i {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: #1877f2;
    margin-bottom: 0;
    flex-shrink: 0;
}

.facebook-header h3 {
    font-size: clamp(1.1rem, 2.2vw, 1.25rem);
    color: var(--text-dark);
    margin-bottom: 0.35rem;
    font-weight: 700;
}

.facebook-header p {
    font-size: clamp(0.85rem, 1.7vw, 0.95rem);
    color: var(--text-medium);
    margin: 0;
}

/* Banner as link – no extra button, sirf banner clickable */
a.facebook-header.facebook-header-link {
    text-decoration: none;
    cursor: pointer;
    color: inherit;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease, opacity 0.2s ease;
}
a.facebook-header.facebook-header-link:hover {
    background-color: rgba(24, 119, 242, 0.06);
    opacity: 0.95;
}
a.facebook-header.facebook-header-link:focus {
    outline: 2px solid rgba(24, 119, 242, 0.4);
    outline-offset: 2px;
}

/* Mobile Phone Mockup – site theme: हल्का गोल्ड बॉर्डर; फोन खुद स्क्रॉल न हो, सिर्फ स्क्रीन का डेटा */
.phone-mockup {
    width: 100%;
    max-width: 400px;
    min-width: 0;
    margin: 0 0 0 auto;
    margin-bottom: clamp(1rem, 2vw, 1.25rem);
    padding: clamp(8px, 1.8vw, 12px);
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    border-radius: clamp(32px, 6.5vw, 42px);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.1), 
        inset 0 -1px 0 rgba(0, 0, 0, 0.5),
        0 0 0 2px rgba(212, 175, 55, 0.35);
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.25);
    overflow: hidden;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: clamp(32px, 6.5vw, 42px);
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(0, 0, 0, 0.3) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.phone-frame {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    background: #000;
    border-radius: clamp(24px, 5vw, 30px);
    overflow: visible;
    position: relative;
    aspect-ratio: 9 / 19.5;
    max-height: 600px;
    box-shadow: 
        inset 0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 2px 4px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Phone Notch */
.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(110px, 24vw, 140px);
    height: clamp(18px, 3.5vw, 22px);
    background: linear-gradient(180deg, #000 0%, #1a1a1a 100%);
    border-radius: 0 0 clamp(12px, 2.5vw, 16px) clamp(12px, 2.5vw, 16px);
    z-index: 10;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.5),
        inset 0 -1px 2px rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.6);
    border-top: none;
}

/* Status Bar */
.phone-status-bar {
    position: absolute;
    top: clamp(18px, 3.5vw, 22px);
    left: 0;
    right: 0;
    height: clamp(20px, 4vw, 24px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 clamp(12px, 2.5vw, 16px);
    z-index: 5;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
    color: #fff;
    font-size: clamp(0.7rem, 1.5vw, 0.8rem);
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.status-left {
    display: flex;
    align-items: center;
}

.status-time {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 0.5px;
}

.status-right {
    display: flex;
    align-items: center;
    gap: clamp(0.3rem, 0.8vw, 0.5rem);
}

.status-right i {
    font-size: clamp(0.75rem, 1.6vw, 0.9rem);
    opacity: 1;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
    color: #fff;
}

/* Phone Screen – Facebook data centre me, bilkul fit; overflow hidden taaki bahar na nikle */
.phone-screen {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: 100%;
    background: #f0f2f5;
    overflow: hidden;
    position: relative;
    margin-top: clamp(38px, 7vw, 44px);
    height: calc(100% - clamp(38px, 7vw, 44px) - clamp(18px, 3.5vw, 22px) - clamp(50px, 10vw, 60px));
    border-radius: 0;
    box-shadow: 
        inset 0 0 0 1px rgba(0, 0, 0, 0.1),
        inset 0 1px 2px rgba(0, 0, 0, 0.2);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    direction: ltr;
}

/* Facebook embed – centre me, screen ke andar bilkul fit; overflow hidden */
.phone-screen .social-embed {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    margin: 0;
    padding: clamp(6px, 1.5vw, 10px);
    overflow: hidden;
    background: #f0f2f5;
    box-sizing: border-box;
    direction: ltr;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-placeholder {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
}

/* YouTube Shorts in phone mockup – video + scroll par channel option */
.youtube-placeholder-wrap {
    align-items: stretch;
    justify-content: flex-start;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    background: #0f0f0f;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.youtube-placeholder-wrap .youtube-placeholder {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: min-content;
    padding: 0;
    box-sizing: border-box;
}

.youtube-placeholder-wrap .youtube-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    background: #000;
    flex-shrink: 0;
}

.youtube-placeholder-wrap .youtube-video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.youtube-placeholder-wrap .youtube-channel-cta {
    padding: clamp(12px, 3vw, 20px);
    flex-shrink: 0;
    text-align: center;
    background: #f0f2f5;
}

.youtube-placeholder-wrap .youtube-channel-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ff0000;
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(13px, 2.5vw, 15px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}

.youtube-placeholder-wrap .youtube-channel-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 0, 0, 0.4);
}

/* Facebook iframe – centre me, phone screen ke andar bilkul fit; scroll andar hi */
.phone-screen .social-embed iframe,
#socialIframe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0;
    background: #f0f2f5 !important;
    display: block !important;
    overflow: auto !important;
    box-sizing: border-box !important;
    -webkit-overflow-scrolling: touch;
}

/* Twitter Widget Styling */
#twitterWidget {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    background: #fff;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    position: relative;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

#twitterWidget .twitter-timeline {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    flex: 1;
    min-height: 100%;
}

#twitterWidget iframe {
    width: 100% !important;
    max-width: 100% !important;
    border: none !important;
    min-height: 100% !important;
    height: 100% !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Ensure Twitter widget container fits properly */
#twitterWidget > * {
    width: 100% !important;
    max-width: 100% !important;
}

/* Twitter Widget Scrollbar */
#twitterWidget::-webkit-scrollbar {
    width: 4px;
}

#twitterWidget::-webkit-scrollbar-track {
    background: transparent;
}

#twitterWidget::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 2px;
}

#twitterWidget::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

/* Loading Spinner Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Improve Facebook posts visibility */
.phone-screen .facebook-embed {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

.phone-screen .facebook-embed::-webkit-scrollbar {
    width: 4px;
}

.phone-screen .facebook-embed::-webkit-scrollbar-track {
    background: transparent;
}

.phone-screen .facebook-embed::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 2px;
}

/* Home Indicator */
.phone-home-indicator {
    position: absolute;
    bottom: clamp(50px, 10vw, 60px);
    left: 50%;
    transform: translateX(-50%);
    width: clamp(110px, 22vw, 140px);
    height: clamp(4px, 0.8vw, 5px);
    background: rgba(255, 255, 255, 0.5);
    border-radius: clamp(2px, 0.4vw, 3px);
    z-index: 5;
    box-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

/* Social Media App Icons */
.phone-app-icons {
    position: absolute;
    bottom: clamp(8px, 1.5vw, 12px);
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: clamp(8px, 1.5vw, 12px) clamp(12px, 2.5vw, 16px);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 6;
    gap: clamp(0.5rem, 1.2vw, 0.75rem);
}

.app-icon {
    width: clamp(36px, 7vw, 44px);
    height: clamp(36px, 7vw, 44px);
    border-radius: clamp(10px, 2vw, 12px);
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    backdrop-filter: blur(10px);
}

.app-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.app-icon:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.9);
    outline-offset: 2px;
}

.app-icon.active {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.app-icon.active i.fa-facebook {
    color: #1877f2;
}

.app-icon.active i.fa-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-icon-x .x-logo {
    width: clamp(1.1rem, 2.2vw, 1.4rem);
    height: clamp(1.1rem, 2.2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    display: block;
}

.app-icon-x:hover .x-logo {
    color: rgba(255, 255, 255, 0.9);
}

.app-icon-x.active .x-logo {
    color: #fff;
}

.app-icon.active i.fa-youtube {
    color: #ff0000;
}

.facebook-embed {
    width: 100%;
    margin-bottom: clamp(1rem, 2vw, 1.25rem);
    border-radius: 12px;
    overflow: hidden;
}

.facebook-embed iframe {
    width: 100% !important;
    min-height: 500px;
    border-radius: 12px;
}

.facebook-link {
    display: block;
    margin-top: 1rem;
    text-align: center;
}

.btn-facebook {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: clamp(0.65rem, 1.5vw, 0.8rem) clamp(1.25rem, 2.5vw, 1.5rem);
    background: #1877f2;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    transition: all 0.3s ease;
}

.btn-facebook:hover {
    background: #166fe5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

/* Contact */
.contact {
    background: var(--section-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-dark);
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
}

.contact-details p,
.contact-details a {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.contact-details a {
    text-decoration: none;
    color: var(--primary-dark);
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    background: var(--light-bg);
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px var(--shadow-light);
}

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}

/* ===== Contact Page Re-design ===== */
.contact-hero {
    position: relative;
    background: linear-gradient(135deg, var(--text-dark) 0%, #1a252f 50%, #2c3e50 100%);
    padding: clamp(3rem, 6vw, 4.5rem) 0;
    text-align: center;
    overflow: hidden;
}
.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.contact-hero-content {
    position: relative;
    z-index: 1;
}
.contact-hero-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--text-dark);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}
.contact-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    color: #fff;
    margin-bottom: 0.5rem;
}
.contact-hero p {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-page {
    padding: clamp(2rem, 4vw, 3rem) 0;
}
.contact-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}
.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.75rem 1.25rem;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 16px var(--shadow-light);
    transition: transform 0.25s, box-shadow 0.25s;
}
.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow-medium);
}
.contact-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}
.contact-card-phone .contact-card-icon { background: rgba(34, 197, 94, 0.15); color: #16a34a; }
.contact-card-whatsapp .contact-card-icon { background: rgba(37, 211, 102, 0.2); color: #25d366; }
.contact-card-email .contact-card-icon { background: rgba(212, 175, 55, 0.2); color: var(--primary-dark); }
.contact-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
}
.contact-card p {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin: 0;
    line-height: 1.4;
}
.contact-card-note {
    font-size: 0.85rem !important;
    color: var(--text-light) !important;
    margin-top: 0.25rem !important;
}

.contact-page-info-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}
.contact-info-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem 1.5rem;
    background: var(--section-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}
.contact-info-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}
.contact-info-card h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
}
.contact-info-card p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.5;
    margin: 0;
}

.contact-form-section {
    max-width: 640px;
    margin: 0 auto;
}
.contact-form-title {
    font-size: clamp(1.35rem, 2.5vw, 1.6rem);
    color: var(--text-dark);
    margin-bottom: 0.35rem;
}
.contact-form-subtitle {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}
.contact-form-box {
    background: var(--light-bg);
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px var(--shadow-light);
}
.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.contact-submit-btn {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}
@media (max-width: 768px) {
    .contact-cards-row { grid-template-columns: 1fr; }
    .contact-page-info-row { grid-template-columns: 1fr; }
    .contact-form-row { grid-template-columns: 1fr; }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #1a252f 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(1.5rem, 3vw, 2rem);
    overflow: visible;
}

.footer .container {
    overflow: visible;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: clamp(1.25rem, 2.5vw, 1.75rem);
    overflow: visible;
}

/* Footer sections: width control, no overflow */
.footer-content .footer-section {
    min-width: 0;
    max-width: 100%;
    overflow: visible;
    display: block;
    visibility: visible;
}

/* Desktop: fixed column widths – brand | त्वरित लिंक | सेवाएँ | लोकप्रिय पेज | संपर्क जानकारी (choti width, right align) */
/* Desktop: त्वरित लिंक – महाविद्या एस्ट्रो साइंस aur सेवाएँ dono se zyada doori */
@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: minmax(140px, 1fr) minmax(120px, 1fr) minmax(90px, 0.7fr) minmax(140px, 1fr) minmax(220px, 1.6fr);
        gap: clamp(1rem, 2vw, 1.5rem);
    }
    .footer-content .footer-section:nth-child(2) {
        margin-left: clamp(1.25rem, 2.5vw, 2rem);
        margin-right: clamp(1.25rem, 2.5vw, 2rem);
    }
}

/* Tablet: 2 columns so sections don’t get too narrow */
@media (min-width: 640px) and (max-width: 1023px) {
    .footer-content {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
        gap: 1.5rem;
    }
}

/* Mobile: सभी footer sections के options centre में */
@media (max-width: 768px) {
    .footer-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        justify-items: center;
        align-items: start;
    }
    .footer-content .footer-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 100%;
        width: 100%;
    }
    .footer-content .footer-section:nth-child(1),
    .footer-content .footer-section:nth-child(2),
    .footer-content .footer-section:nth-child(3),
    .footer-content .footer-section:nth-child(4),
    .footer-content .footer-section:nth-child(5) {
        grid-column: 1;
    }
    .footer-content .footer-section h3,
    .footer-content .footer-section h4 {
        text-align: center;
    }
    .footer-content .footer-section p {
        text-align: center;
    }
    .footer-content .footer-section ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-left: 0;
    }
    .footer-content .footer-section ul li {
        justify-content: center;
        text-align: center;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.35rem;
    }
    .footer-content .footer-section ul li a {
        text-align: center;
    }
    .footer-content .footer-section ul li i {
        flex-shrink: 0;
    }
    .footer-section .social-links {
        justify-content: center;
    }
    /* संपर्क जानकारी (last section) bhi mobile par centre */
    .footer-content .footer-section:last-child {
        text-align: center !important;
    }
    .footer-content .footer-section:last-child h4 {
        text-align: center !important;
    }
    .footer-content .footer-section:last-child ul {
        align-items: center !important;
    }
    .footer-content .footer-section:last-child ul li {
        justify-content: center !important;
        text-align: center !important;
    }
    .footer-content .footer-section:last-child ul li i {
        text-align: center !important;
        width: auto !important;
    }
    .footer-content .footer-section:last-child ul li a {
        text-align: center !important;
    }
}

@media (max-width: 639px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        justify-items: center;
        align-items: start;
    }
    .footer-content .footer-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    .footer-content .footer-section h3,
    .footer-content .footer-section h4 {
        text-align: center;
    }
    .footer-content .footer-section p {
        text-align: center;
    }
    .footer-content .footer-section ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-content .footer-section ul li {
        justify-content: center;
        text-align: center;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.35rem;
    }
    .footer-content .footer-section ul li a {
        text-align: center;
    }
    .footer-content .footer-section ul li i {
        flex-shrink: 0;
    }
    .footer-section .social-links {
        justify-content: center;
    }
    .footer-content .footer-section:last-child {
        text-align: center !important;
    }
    .footer-content .footer-section:last-child h4 {
        text-align: center !important;
    }
    .footer-content .footer-section:last-child ul {
        align-items: center !important;
    }
    .footer-content .footer-section:last-child ul li {
        justify-content: center !important;
        text-align: center !important;
    }
    .footer-content .footer-section:last-child ul li i {
        text-align: center !important;
        width: auto !important;
    }
    .footer-content .footer-section:last-child ul li a {
        text-align: center !important;
    }
}

.footer-section h3,
.footer-section h4 {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    margin-bottom: 0.5rem;
    color: #fff;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
    max-width: 100%;
}

@media (max-width: 639px) {
    .footer-content .footer-section p {
        max-width: 320px;
    }
}

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

.footer-section ul li a {
    word-break: break-word;
    overflow-wrap: break-word;
}

.footer-section ul li {
    margin-bottom: 0.35rem;
    line-height: 1.45;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
}

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

/* संपर्क जानकारी: width km, right align – icon + text same line */
.footer-content .footer-section:last-child {
    text-align: right;
}
.footer-content .footer-section:last-child h4 {
    text-align: right;
}
.footer-content .footer-section:last-child ul {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.footer-content .footer-section:last-child ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
}
.footer-content .footer-section:last-child ul li i {
    flex-shrink: 0;
    width: 1.25em;
    text-align: left;
}
.footer-content .footer-section:last-child ul li a,
.footer-content .footer-section:last-child ul li {
    line-height: 1.4;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 1rem;
}

/* Footer icons – round like top menu, sabhi page par */
.social-links a,
.footer .footer-section .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    overflow: hidden;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-sizing: border-box;
}

.social-links a i,
.footer .footer-section .social-links a i {
    font-size: 1rem;
}

.social-links a:hover {
    transform: translateY(-2px);
}

/* Official brand colors on hover */
.social-links a[title="Facebook"]:hover {
    background: #1877f2;
    color: #fff;
}

.social-links a[title="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
}

.social-links a[title="Twitter"]:hover {
    background: #000;
    color: #fff;
}

.social-links a[title="WhatsApp"]:hover {
    background: #25d366;
    color: #fff;
}

.social-links a[title="YouTube"]:hover {
    background: #ff0000;
    color: #fff;
}

/* Footer: UPI icon – full white, circle background change on hover like other icons */
.footer .social-links .top-bar-upi-link {
    padding: 2px;
    background: rgba(255, 255, 255, 0.15);
}
.footer .social-links .top-bar-upi-link:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    color: var(--primary-light);
}
.footer .social-links .top-bar-upi-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
    transition: filter 0.15s ease;
    pointer-events: none;
}
.footer .social-links .top-bar-upi-link:hover .top-bar-upi-icon {
    filter: brightness(0) invert(1);
}
/* Click / focus par real UPI image (orange–green) dikhao */
.footer .social-links .top-bar-upi-link:active .top-bar-upi-icon,
.footer .social-links .top-bar-upi-link:focus .top-bar-upi-icon,
.footer .social-links .top-bar-upi-link:focus-visible .top-bar-upi-icon {
    filter: none;
}
.footer .social-links a[title="दान करें / UPI"]:hover,
.footer .social-links a[title*="UPI"]:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* परामर्श लें फॉर्म मोडल */
.parmarsha-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.25s, opacity 0.25s;
}
.parmarsha-modal[aria-hidden="false"] {
    visibility: visible;
    opacity: 1;
}
.parmarsha-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}
.parmarsha-modal-box {
    position: relative;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    max-width: 440px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}
.parmarsha-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(135deg, var(--primary-light) 0%, #fff 100%);
    border-radius: 12px 12px 0 0;
}
.parmarsha-modal-title {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 700;
}
.parmarsha-modal-close {
    background: none;
    border: none;
    font-size: 1.75rem;
    line-height: 1;
    color: var(--text-medium);
    cursor: pointer;
    padding: 0.25rem;
    -webkit-tap-highlight-color: transparent;
}
.parmarsha-modal-close:hover {
    color: var(--primary-dark);
}
.parmarsha-form {
    padding: 1.25rem 1.25rem 1.5rem;
}
.parmarsha-form-row {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.parmarsha-form-row .parmarsha-form-group {
    flex: 1;
    margin-bottom: 0;
    min-width: 0;
}
@media (max-width: 480px) {
    .parmarsha-form-row {
        flex-direction: column;
        gap: 0;
        margin-bottom: 1rem;
    }
    .parmarsha-form-row .parmarsha-form-group {
        margin-bottom: 1rem;
    }
    .parmarsha-form-row .parmarsha-form-group:last-child {
        margin-bottom: 0;
    }
}
.parmarsha-form-group {
    margin-bottom: 1rem;
}
.parmarsha-form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
}
.parmarsha-form-group .required {
    color: var(--accent);
}
.parmarsha-form-group input[type="text"],
.parmarsha-form-group select,
.parmarsha-form-group textarea {
    width: 100%;
    padding: 0.6rem 0.75rem;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-dark);
    transition: border-color 0.2s;
}
.parmarsha-form-group select {
    cursor: pointer;
    background: #fff;
    appearance: auto;
}
.parmarsha-form-group select:disabled {
    background: var(--section-bg);
    cursor: not-allowed;
    color: var(--text-light);
}
.parmarsha-form-group input:focus,
.parmarsha-form-group select:focus,
.parmarsha-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}
.parmarsha-form-group textarea {
    resize: vertical;
    min-height: 80px;
}
.parmarsha-service-display {
    padding: 0.6rem 0.75rem;
    background: var(--section-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}
.parmarsha-form-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}
.parmarsha-btn-cancel {
    padding: 0.6rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-medium);
    background: #f0f0f0;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
}
.parmarsha-btn-cancel:hover {
    background: #e0e0e0;
}
.parmarsha-btn-send {
    flex: 1;
    min-width: 140px;
    padding: 0.65rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: #25d366;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-family: inherit;
}
.parmarsha-btn-send:hover {
    background: #20bd5a;
}

/* परामर्श मोडल – मोबाइल व्यू (form height badhaya) */
@media (max-width: 600px) {
    .parmarsha-modal {
        padding: 0;
        align-items: stretch;
        padding-bottom: 0;
    }
    .parmarsha-modal-box {
        max-width: 100%;
        width: 100%;
        min-height: 85vh;
        max-height: 92vh;
        height: auto;
        border-radius: 12px 12px 0 0;
        box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.2);
        display: flex;
        flex-direction: column;
        margin-top: auto;
    }
    .parmarsha-modal-header {
        padding: 0.9rem 1rem;
        border-radius: 12px 12px 0 0;
        flex-shrink: 0;
    }
    .parmarsha-modal-title {
        font-size: 1.05rem;
        line-height: 1.35;
        padding-right: 0.5rem;
    }
    .parmarsha-modal-close {
        font-size: 1.5rem;
        padding: 0.35rem;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        -webkit-tap-highlight-color: transparent;
    }
    .parmarsha-form {
        padding: 1.25rem 1rem 1.5rem;
        flex: 1;
        min-height: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .parmarsha-form-group {
        margin-bottom: 1.1rem;
    }
    .parmarsha-form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.35rem;
    }
    .parmarsha-form-group input[type="text"],
    .parmarsha-form-group select,
    .parmarsha-form-group textarea {
        padding: 0.75rem 0.85rem;
        font-size: 16px;
        min-height: 48px;
    }
    .parmarsha-form-group textarea {
        min-height: 88px;
    }
    .parmarsha-form-row.parmarsha-state-city-row {
        flex-direction: row;
        gap: 0.5rem;
        margin-bottom: 1.1rem;
    }
    .parmarsha-form-row.parmarsha-state-city-row .parmarsha-form-group {
        flex: 1;
        margin-bottom: 0;
        min-width: 0;
    }
    .parmarsha-form-row:not(.parmarsha-state-city-row) {
        flex-direction: column;
        gap: 0;
        margin-bottom: 1.1rem;
    }
    .parmarsha-form-row:not(.parmarsha-state-city-row) .parmarsha-form-group {
        margin-bottom: 1.1rem;
    }
    .parmarsha-form-row:not(.parmarsha-state-city-row) .parmarsha-form-group:last-child {
        margin-bottom: 0;
    }
    .parmarsha-form-actions {
        flex-direction: column;
        gap: 0.6rem;
        margin-top: 1.25rem;
        padding-top: 0.5rem;
    }
    .parmarsha-btn-send {
        width: 100%;
        min-width: 0;
        padding: 0.85rem 1rem;
        min-height: 52px;
        font-size: 1.05rem;
        -webkit-tap-highlight-color: transparent;
    }
    .parmarsha-service-display {
        padding: 0.65rem 0.85rem;
        font-size: 0.95rem;
    }
}

/* WhatsApp Float – removed (hidden) */
.whatsapp-float {
    display: none !important;
}

/* Language switcher – screen ke neeche right, thoda upar: हिं | En */
.lang-switcher-float {
    position: fixed;
    bottom: 57px;
    right: 6px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.4rem;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.97) 0%, rgba(252, 250, 245, 0.97) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(212, 175, 55, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.4);
    transition: box-shadow 0.25s ease, transform 0.2s ease;
}
.lang-switcher-float:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14), 0 0 0 1px rgba(212, 175, 55, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.lang-switcher-float .lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: clamp(0.78rem, 1.3vw, 0.88rem);
    font-weight: 600;
}
.lang-switcher-float .lang-option {
    color: var(--text-medium, #555);
    text-decoration: none;
    width: 2.1em;
    height: 2.1em;
    min-width: 2.1em;
    min-height: 2.1em;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.2s, border-color 0.2s;
    border: 2px solid rgba(212, 175, 55, 0.4);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 246, 242, 0.9) 100%);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.lang-switcher-float .lang-option:hover {
    color: var(--primary-dark);
    background: linear-gradient(180deg, rgba(244, 229, 161, 0.5) 0%, rgba(212, 175, 55, 0.2) 100%);
    border-color: rgba(212, 175, 55, 0.65);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transform: scale(1.08);
}
.lang-switcher-float .lang-option.active {
    color: #fff;
    background: linear-gradient(145deg, var(--primary-color) 0%, var(--primary-dark) 50%, #9a7b1a 100%);
    border-color: var(--primary-dark);
    box-shadow: 0 5px 20px rgba(184, 148, 31, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.lang-switcher-float .lang-option.active:hover {
    background: linear-gradient(145deg, var(--primary-dark) 0%, #9a7b1a 50%, #8a6b0a 100%);
    box-shadow: 0 6px 22px rgba(184, 148, 31, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: scale(1.08);
}
@media (max-width: 480px) {
    .lang-switcher-float {
        bottom: 51px;
        right: 5px;
        padding: 0.25rem 0.35rem;
        gap: 0.3rem;
    }
    .lang-switcher-float .lang-option {
        width: 1.9em;
        height: 1.9em;
        min-width: 1.9em;
        min-height: 1.9em;
        font-size: 0.8rem;
    }
}

/* Avoid footer overlap with lang switcher float (En/Hi) */
body:has(.lang-switcher-float) {
    padding-bottom: 4rem;
}

/* Prevent horizontal scroll on all devices */
section,
.main-content,
.navbar,
.top-bar,
.footer {
    max-width: 100%;
}

/* Responsive */
@media (max-width: 968px) {
    .about-image {
        min-width: 0;
    }
    .hero {
        min-height: auto;
        max-height: none;
        padding: clamp(0.5rem, 1.5vw, 1rem) clamp(0.5rem, 2vw, 1rem);
    }
    .hero .container {
        padding: 0 clamp(1rem, 4vw, 2rem);
    }
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: clamp(1.5rem, 3vw, 2rem);
        max-width: 100%;
    }
    .hero-content {
        text-align: center;
        padding: clamp(0.25rem, 1vw, 0.5rem);
    }
    .hero-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .kundli-generator {
        max-width: 100%;
        max-height: none;
        padding: clamp(0.7rem, 1.5vw, 0.9rem) clamp(0.9rem, 2vw, 1.2rem) clamp(0.4rem, 0.8vw, 0.5rem);
        margin-left: 0;
    }
    /* Kundli form: same as desktop – 2 options per row on mobile too */
    .kundli-form .form-row {
        grid-template-columns: 1fr 1fr;
        gap: clamp(0.4rem, 1vw, 0.75rem);
    }
    .about-wrapper {
        flex-direction: column;
    }
    .about-image {
        flex: 1 1 100%;
        width: 100%;
        max-width: 450px;
        min-width: 100%;
        margin: 0 auto;
        padding: 6px;
    }
    .about-astrologer-img {
        min-height: 350px;
    }
    .about-name-plate {
        bottom: 6px;
        left: 6px;
        right: 6px;
    }
    .name-plate-inner {
        border-radius: 0 0 12px 12px;
        padding: 0.5rem 0.9rem;
    }
    .name-plate-line1 {
        font-size: clamp(0.85rem, 2vw, 1rem);
        margin-bottom: 0.25rem;
    }
    .name-plate-line2 {
        font-size: clamp(0.7rem, 1.6vw, 0.82rem);
        margin-bottom: 0.25rem;
    }
    .name-plate-line3 {
        font-size: clamp(0.65rem, 1.5vw, 0.78rem);
        margin-top: 0.2rem;
        padding-top: 0.3rem;
    }
    .achievements {
        grid-template-columns: 1fr;
    }
    .faq-section-header {
        margin-bottom: clamp(1.25rem, 2.5vw, 1.5rem);
    }
    .faq-header-icon {
        width: 44px;
        height: 44px;
        font-size: 1.35rem;
    }
    .faq-title {
        font-size: clamp(1.35rem, 4vw, 1.65rem);
    }
    .faq-subtitle {
        font-size: clamp(0.9rem, 2vw, 1rem);
    }
    
    .facebook-posts-container {
        position: relative;
        max-height: none;
        padding: 0;
    }
    
    .facebook-header,
    a.facebook-header.facebook-header-link {
        display: flex;
    }
    
    .facebook-header h3 {
        font-size: clamp(0.85rem, 2vw, 1rem);
    }
    
    .facebook-header p {
        font-size: clamp(0.7rem, 1.5vw, 0.8rem);
    }
    
    .facebook-header-logo {
        width: clamp(32px, 7vw, 40px);
        height: clamp(32px, 7vw, 40px);
    }
    
    .facebook-header-title {
        font-size: clamp(0.85rem, 1.8vw, 1rem);
    }
    
    .facebook-header-desc {
        font-size: clamp(0.7rem, 1.4vw, 0.8rem);
    }
    
    .phone-mockup {
        max-width: 100%;
        margin: 0 0 0 auto;
        padding: clamp(6px, 1.5vw, 10px);
    }
    
    .phone-frame {
        max-height: 650px;
        border-radius: clamp(20px, 4.5vw, 26px);
    }
    
    .phone-notch {
        width: clamp(100px, 22vw, 130px);
        height: clamp(16px, 3.2vw, 20px);
    }
    
    .phone-status-bar {
        top: clamp(16px, 3.2vw, 20px);
        height: clamp(18px, 3.6vw, 22px);
    }
    
    .phone-screen {
        margin-top: clamp(34px, 6.5vw, 40px);
        height: calc(100% - clamp(34px, 6.5vw, 40px) - clamp(16px, 3.2vw, 20px) - clamp(45px, 9vw, 55px));
    }
    
    .phone-app-icons {
        padding: clamp(6px, 1.2vw, 10px) clamp(10px, 2vw, 14px);
        gap: clamp(0.4rem, 1vw, 0.6rem);
    }
    
    .app-icon {
        width: clamp(32px, 6.5vw, 40px);
        height: clamp(32px, 6.5vw, 40px);
        font-size: clamp(1rem, 2vw, 1.2rem);
    }
    
    .phone-home-indicator {
        bottom: clamp(45px, 9vw, 55px);
    }
    
    .facebook-embed iframe {
        min-height: 350px;
        height: 400px !important;
    }
    
    .btn-facebook {
        padding: clamp(0.5rem, 1.2vw, 0.65rem) clamp(0.85rem, 2vw, 1rem);
        font-size: clamp(0.75rem, 1.6vw, 0.85rem);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    /* Mobile menu – full screen, sab options visible */
    .nav-menu.active {
        display: flex !important;
        visibility: visible !important;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(8px);
        z-index: 9999;
        padding: 4rem 0.75rem 2rem;
        gap: 0;
        list-style: none;
        margin: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .nav-menu.active li {
        width: 100%;
        margin: 0;
        padding: 0;
        border-bottom: 1px solid var(--border-color);
    }
    .nav-menu.active li:last-child {
        border-bottom: none;
    }
    .nav-menu.active a {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        padding: 0.9rem 1rem;
        color: var(--text-dark);
        text-align: center;
        width: 100%;
        box-sizing: border-box;
        min-height: 48px;
        line-height: 1.4;
    }
    .nav-menu.active a:hover,
    .nav-menu.active a:focus {
        background: var(--light-bg-alt);
        color: var(--primary-color);
    }
    .nav-menu.active .btn-call {
        margin-top: 0.25rem;
        border-radius: 10px;
    }
    /* Hamburger when open – right edge, bigger tap area */
    .mobile-toggle.active {
        position: fixed;
        top: 0.5rem;
        right: 0;
        z-index: 10000;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 8px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
        padding: 12px;
        min-width: 48px;
        min-height: 48px;
    }
    .mobile-toggle span {
        width: 28px;
        height: 3.5px;
    }
}

/* Mobile only: Hero section content optimized */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        max-height: none;
        padding: 1rem 0.75rem 1.25rem;
        align-items: flex-start;
        padding-top: clamp(1rem, 3vw, 1.5rem);
    }
    .hero .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    .hero-wrapper {
        gap: 1.25rem;
        align-items: stretch;
    }
    .hero-content {
        text-align: center;
        padding: 0.5rem 0;
        order: 1;
    }
    .hero-title {
        font-size: clamp(1.25rem, 5.5vw, 1.65rem);
        line-height: 1.25;
        margin-bottom: 0.4rem;
    }
    .hero-headline {
        font-size: clamp(1.05rem, 3.5vw, 1.2rem);
        line-height: 1.4;
        margin-bottom: 0.5rem;
        margin-top: 0.35rem;
    }
    .hero-subtitle {
        font-size: clamp(0.8rem, 2.5vw, 0.9rem);
        margin-bottom: 0.75rem;
        line-height: 1.4;
    }
    .hero-badges {
        margin-bottom: 0.75rem;
        gap: 0.4rem;
        justify-content: center;
    }
    .badge {
        font-size: clamp(0.7rem, 2vw, 0.8rem);
        padding: 0.35rem 0.6rem;
    }
    .hero-cta {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0.5rem;
        margin-top: 0.25rem;
        justify-content: center;
    }
    .hero-cta .btn {
        flex: 1 1 auto;
        min-width: 0;
        min-height: 44px;
        justify-content: center;
        padding: 0.75rem 0.6rem;
        font-size: 0.9rem;
    }
    .kundli-generator {
        padding: 0.75rem 0.75rem 0.4rem;
        order: 2;
        max-width: 100%;
        width: 100%;
    }
    .kundli-generator-header {
        width: 100%;
        padding: 0.5rem 0 0.6rem;
        margin-bottom: 0.9rem;
    }
    .kundli-generator-header h3 {
        font-size: clamp(1.1rem, 4.5vw, 1.35rem);
        line-height: 1.3;
        margin-bottom: 0.2rem;
    }
    .kundli-generator-header p {
        font-size: clamp(0.85rem, 2.8vw, 1.15rem);
        line-height: 1.35;
        white-space: nowrap;
    }
    .kundli-form .form-group label {
        font-size: 0.85rem;
    }
    .kundli-form input,
    .kundli-form select {
        font-size: 16px;
        min-height: 44px;
    }
    .btn-generate {
        min-height: 44px;
        font-size: 0.95rem;
        padding: 0.7rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 0.75rem 0.6rem 1rem;
        padding-top: 0.75rem;
    }
    .hero .container {
        padding-left: 0.6rem;
        padding-right: 0.6rem;
    }
    .hero-title {
        font-size: clamp(1.15rem, 5vw, 1.4rem);
    }
    .hero-headline {
        font-size: clamp(1rem, 3.4vw, 1.12rem);
    }
    .hero-subtitle {
        font-size: 0.8rem;
    }
    .badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.5rem;
    }
    .hero-cta {
        flex-direction: row;
    }
    .hero-cta .btn {
        flex: 1 1 auto;
        min-width: 0;
        min-height: 46px;
        padding: 0.8rem 0.5rem;
        font-size: 0.85rem;
    }
    .kundli-generator {
        padding: 0.7rem 0.6rem 0.35rem;
        max-width: 100%;
        width: 100%;
    }
    .kundli-generator-header {
        width: 100%;
        padding: 0.45rem 0 0.5rem;
    }
    .kundli-generator-header h3 {
        font-size: clamp(1.15rem, 5vw, 1.4rem);
        line-height: 1.3;
    }
    .kundli-generator-header p {
        font-size: clamp(0.75rem, 2.5vw, 0.95rem);
        white-space: nowrap;
    }
    .btn-generate {
        min-height: 46px;
        width: 100%;
    }
}

.cities-header h4 {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.cities-subtitle {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.cities-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--light-bg-alt);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.cities-note p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-medium);
}

.cities-note i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.all-cities-section {
    margin-top: 2rem;
}

.selected-city-info {
    padding: 1rem;
    background: var(--light-bg-alt);
    border-radius: 8px;
    margin-top: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-medium);
}

.map-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.75rem;
}

.map-note i {
    color: var(--primary-color);
    margin-right: 0.35rem;
}

.city-list-container h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.nav-menu a.active {
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 480px) {
    .facebook-posts-container {
        padding: 0;
    }
    
    .facebook-header,
    a.facebook-header.facebook-header-link {
        display: flex;
    }
    
    .facebook-header {
        margin-bottom: clamp(0.6rem, 1.5vw, 0.75rem);
        padding-bottom: clamp(0.5rem, 1.2vw, 0.65rem);
    }
    
    .facebook-header i {
        font-size: clamp(1.5rem, 3.5vw, 1.8rem);
    }
    
    .facebook-header h3 {
        font-size: clamp(0.75rem, 1.8vw, 0.9rem);
    }
    
    .facebook-header p {
        font-size: clamp(0.65rem, 1.4vw, 0.75rem);
    }
    
    .facebook-header-logo {
        width: clamp(28px, 6.5vw, 36px);
        height: clamp(28px, 6.5vw, 36px);
    }
    
    .facebook-header-title {
        font-size: clamp(0.75rem, 1.6vw, 0.9rem);
    }
    
    .facebook-header-desc {
        font-size: clamp(0.65rem, 1.3vw, 0.75rem);
    }
    
    .phone-mockup {
        max-width: 100%;
        margin: 0 0 0 auto;
        padding: 0;
    }
    
    .phone-frame {
        max-height: 585px;
    }
    
    .phone-notch {
        width: clamp(90px, 20vw, 120px);
        height: clamp(10px, 2.2vw, 14px);
    }
    
    .phone-status-bar {
        top: clamp(10px, 2.2vw, 14px);
        height: clamp(14px, 3vw, 18px);
        padding: 0 clamp(8px, 1.8vw, 12px);
        font-size: clamp(0.6rem, 1.3vw, 0.7rem);
    }
    
    .phone-mockup {
        padding: clamp(5px, 1.2vw, 8px);
        border-radius: clamp(28px, 6vw, 36px);
    }
    
    .phone-frame {
        border-radius: clamp(18px, 4vw, 24px);
    }
    
    .phone-notch {
        width: clamp(95px, 21vw, 125px);
        height: clamp(14px, 3vw, 18px);
    }
    
    .phone-status-bar {
        top: clamp(14px, 3vw, 18px);
        height: clamp(16px, 3.2vw, 20px);
        padding: 0 clamp(10px, 2.2vw, 14px);
        font-size: clamp(0.65rem, 1.4vw, 0.75rem);
    }
    
    .phone-screen {
        margin-top: clamp(30px, 6vw, 36px);
        height: calc(100% - clamp(30px, 6vw, 36px) - clamp(14px, 3vw, 18px) - clamp(42px, 8.5vw, 52px));
    }
    
    .phone-app-icons {
        padding: clamp(5px, 1vw, 8px) clamp(8px, 1.8vw, 12px);
        gap: clamp(0.3rem, 0.9vw, 0.5rem);
    }
    
    .app-icon {
        width: clamp(30px, 6vw, 38px);
        height: clamp(30px, 6vw, 38px);
        font-size: clamp(0.95rem, 1.9vw, 1.15rem);
    }
    
    .phone-home-indicator {
        bottom: clamp(42px, 8.5vw, 52px);
        width: clamp(100px, 20vw, 130px);
        height: clamp(3px, 0.7vw, 4px);
    }
    
    .facebook-embed iframe {
        min-height: 300px;
        height: 350px !important;
    }
    
    .btn-facebook {
        padding: clamp(0.45rem, 1vw, 0.55rem) clamp(0.7rem, 1.8vw, 0.85rem);
        font-size: clamp(0.7rem, 1.5vw, 0.8rem);
    }
    
    .faq-item {
        margin-bottom: 0.5rem;
    }
    
    .faq-question {
        padding: clamp(0.75rem, 1.8vw, 0.9rem);
    }
    
    .faq-question h3 {
        font-size: clamp(0.85rem, 2vw, 0.95rem);
    }
    
    .faq-answer {
        padding: 0 clamp(0.9rem, 2vw, 1rem) clamp(0.9rem, 2vw, 1rem);
    }
    
    .faq-answer p {
        font-size: clamp(0.85rem, 1.8vw, 0.9rem);
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
    }
    .hindi-date {
        width: 100%;
        justify-content: flex-start;
    }
    .panchang-bar {
        justify-content: flex-start;
        row-gap: 0.5rem;
    }
    .hero-cta {
        flex-direction: row;
        flex-wrap: nowrap;
    }
    .hero-cta .btn {
        flex: 1 1 auto;
        min-width: 0;
        width: auto;
    }
    .btn {
        width: 100%;
        justify-content: center;
    }
    .hero-cta .btn {
        width: auto;
    }
}

/* ========== Love Marriage Page - Trust & Solution Funnel ========== */
/* Content width = menu align (same .container 1200px + padding) */
.love-marriage-page .hero-love-marriage .container,
.love-marriage-page .love-section .container,
.love-marriage-page .cta-final-love .container,
.love-marriage-page .kundli-sections-outer {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding-left: clamp(1rem, 4vw, 2rem);
    padding-right: clamp(1rem, 4vw, 2rem);
    box-sizing: border-box;
}
/* माँ ललिता / महाविद्या पेज — सभी कंटेंट की चौड़ाई कंटेनर के बराबर */
.content-full-width .love-section .container .about-text,
.content-full-width .love-section .container .solution-benefits,
.content-full-width .love-section .container .agitation-list,
.content-full-width .love-section .container .temple-cards-wrap,
.content-full-width .love-section .container .maa-lalita-text-wrap,
.content-full-width .love-section .container .temple-note {
    max-width: 100%;
}
.content-full-width .mahavidya-note,
.content-full-width .mahavidya-history-wrap,
.content-full-width .mahavidya-dattatreya-content,
.content-full-width .love-section .container .faq-list-love,
.content-full-width .love-section .container table {
    max-width: 100%;
}
/* Kundli block: single background, borders consistent with love-section-alt */
.love-marriage-page .kundli-sections-outer {
    background: var(--love-soft-pink);
    border-top: 1px solid rgba(184, 134, 11, 0.12);
    border-bottom: 1px solid rgba(184, 134, 11, 0.12);
}

/* Professional palette — refined, trustworthy */
:root {
    --love-soft-pink: #faf8f7;
    --love-pink-deep: #f3f0ee;
    --love-gold: #9a7b4f;
    --love-gold-light: #b89868;
    --love-white: #ffffff;
    --love-text: #3d3530;
    --love-text-muted: #5c534d;
    --love-border: rgba(61, 53, 48, 0.08);
}

/* Hero Section - Blur image background */
.hero-love-marriage {
    position: relative;
    min-height: 42vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 4vw, 2rem);
    overflow: hidden;
}
.hero-love-bg {
    position: absolute;
    inset: 0;
    background: url("../images/marriage-bannner.jpg") center center / cover no-repeat;
    filter: blur(12px);
    transform: scale(1.08);
}
.hero-love-bg.hero-no-blur {
    filter: none;
    transform: none;
}
.hero-love-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(250, 248, 247, 0.94) 0%, rgba(243, 240, 238, 0.9) 100%);
}
/* टेक्स्ट ओवरले — हीरो टेक्स्ट के नीचे पढ़ने योग्य पृष्ठभूमि */
.hero-love-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}
/* माँ ललिता पेज — इमेज के पास टेक्स्ट ओवरले (हीरो में नहीं) */
/* तत्त्व और स्वरूप — इमेज के नीचे कंटेंट टेक्स्ट रैप */
.maa-lalita-text-wrap {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    box-sizing: border-box;
}
.maa-lalita-text-wrap::after {
    content: "";
    display: table;
    clear: both;
}
.maa-lalita-img-wrap {
    position: relative;
    text-align: center;
    float: left;
    max-width: 320px;
    width: 100%;
    margin: 0 1.25rem 1rem 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--love-border);
    box-shadow: 0 2px 12px rgba(61, 53, 48, 0.08);
}
.maa-lalita-img-wrap .maa-lalita-deity-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}
.maa-lalita-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.6rem 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.4));
    color: #fff;
    text-align: center;
}
.maa-lalita-img-caption {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: clamp(0.9rem, 1.8vw, 1.05rem);
    font-weight: 600;
    display: block;
}
.maa-lalita-content-text {
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}
.maa-lalita-content-text p {
    margin: 0 0 0.75rem;
    line-height: 1.65;
    text-align: justify;
}
@media (max-width: 640px) {
    .maa-lalita-img-wrap {
        float: none;
        max-width: 100%;
        margin: 0 auto 1rem;
    }
}
.hero-love-page-name {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 600;
    color: var(--love-gold);
    margin: 0 0 0.5rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.hero-love-title {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    color: var(--love-text);
    margin-bottom: 0.75rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.01em;
}
.hero-love-sub {
    font-size: clamp(0.9rem, 1.8vw, 1.05rem);
    color: var(--love-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.55;
}
.hero-love-cta {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: var(--love-gold);
    color: var(--love-white);
    font-weight: 600;
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(61, 53, 48, 0.12);
    transition: background 0.2s, box-shadow 0.2s;
}
.hero-love-cta:hover {
    background: var(--love-gold-light);
    box-shadow: 0 4px 12px rgba(61, 53, 48, 0.15);
    color: #fff;
}

@media (max-width: 768px) {
    .hero-love-marriage {
        min-height: 28vh;
        padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 4vw, 1.5rem);
    }
}

/* Acharya intro — professional card */
.acharya-intro {
    background: var(--love-white);
    border-top: 1px solid var(--love-border);
    border-bottom: 1px solid var(--love-border);
}
.acharya-intro-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 1.5rem;
    background: var(--love-soft-pink);
    border-radius: 8px;
    border: 1px solid var(--love-border);
}
@media (min-width: 769px) {
    .acharya-intro-inner {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
        padding: 2rem;
    }
}
.acharya-intro-img-wrap {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--love-border);
    box-shadow: 0 2px 8px rgba(61, 53, 48, 0.08);
}
.acharya-intro-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.acharya-intro-content {
    flex: 1;
    min-width: 0;
    text-align: center;
}
@media (min-width: 769px) {
    .acharya-intro-content {
        text-align: left;
    }
}
.acharya-intro-title {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    font-weight: 700;
    color: var(--love-text);
    margin: 0 0 0.5rem;
    line-height: 1.35;
}
.acharya-intro-brief {
    font-size: clamp(0.88rem, 1.7vw, 0.98rem);
    color: var(--love-text-muted);
    line-height: 1.6;
    margin: 0 0 1rem;
}
.acharya-intro-brief a {
    color: var(--love-gold);
    font-weight: 600;
    text-decoration: underline;
}
.acharya-intro-brief a:hover {
    text-decoration: none;
}
.acharya-intro-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.15rem;
    background: var(--love-gold);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s;
}
.acharya-intro-cta:hover {
    background: var(--love-gold-light);
    box-shadow: 0 2px 8px rgba(154, 123, 79, 0.35);
    color: #fff;
}

/* Love sections — professional, clear hierarchy */
.love-section {
    padding: clamp(2.25rem, 5vw, 3.25rem) clamp(1.25rem, 4vw, 2rem);
    background: var(--love-soft-pink);
    border-top: 1px solid var(--love-border);
}
.love-section:first-of-type {
    border-top: none;
}
.love-section-alt {
    background: var(--love-white);
    border-top: 1px solid var(--love-border);
    border-bottom: 1px solid var(--love-border);
}
.love-section + .love-section-alt,
.love-section-alt + .love-section {
    border-top-width: 1px;
}

.section-title-love {
    font-size: clamp(1.15rem, 2.2vw, 1.4rem);
    color: var(--love-text);
    margin-bottom: 1.25rem;
    font-weight: 700;
    text-align: center;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--love-border);
    display: block;
    width: 100%;
    box-sizing: border-box;
    letter-spacing: -0.01em;
}
/* लॉन्ग टेक्स्ट ओवरफ्लो न हो — माँ ललिता / लव मैरिज पेज */
.love-section .about-text,
.love-section .solution-benefits li,
.love-section .agitation-list li {
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}
.love-section .solution-benefits,
.love-section .agitation-list {
    overflow-wrap: break-word;
}

/* Kundli page: two separate sections side-by-side on desktop, top-aligned */
.kundli-sections-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    background: var(--love-soft-pink);
}
/* No extra border between the two inner sections (benefits | form) */
.kundli-sections-wrapper .kundli-benefits-section,
.kundli-sections-wrapper .kundli-form-section {
    border: none;
}
/* Kundli matching page – content flow (क्या है → जरूरत क्यों → कंप्यूटर बनाम आचार्य जी → फॉर्म) */
.kundli-flow-section .section-title-love { margin-bottom: 0.75rem; }
.kundli-flow-section .kundli-flow-para {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a3d45;
    margin-bottom: 1.25rem;
}
.kundli-flow-section .kundli-flow-h3 {
    font-size: 1.1rem;
    color: #5c3d4a;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.kundli-flow-section .kundli-flow-cta {
    font-size: 1rem;
    line-height: 1.6;
    color: #5c3d4a;
    margin-top: 1.25rem;
    padding: 1rem;
    background: rgba(255,255,255,0.6);
    border-radius: 8px;
    border-left: 4px solid #8b5a6b;
}
/* Janam Kundli – rich intro */
.rich-intro-section .section-title-love { margin-bottom: 0.75rem; }
.rich-intro-section .rich-intro-text p { margin-bottom: 1rem; }
.rich-intro-section .rich-intro-h3 {
    font-size: 1.1rem;
    color: #5c3d4a;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.rich-intro-section .rich-intro-para {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a3d45;
}
/* Kundli structure: 12 bhavas, 9 grahas */
.kundli-structure-section { background: rgba(255,255,255,0.4); }
.kundli-structure-section .section-title-love { margin-bottom: 1.25rem; }
.kundli-structure-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}
@media (min-width: 600px) {
    .kundli-structure-grid { grid-template-columns: 1fr 1fr; }
}
.kundli-structure-block {
    background: #fff;
    padding: 1.25rem;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(92,61,74,0.08);
    border: 1px solid rgba(139,90,107,0.15);
}
.kundli-structure-heading {
    font-size: 1.05rem;
    color: #5c3d4a;
    margin-bottom: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.kundli-structure-heading i { color: #8b5a6b; }
.kundli-structure-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4a3d45;
}
.kundli-structure-list li { padding: 0.2rem 0; border-bottom: 1px solid rgba(139,90,107,0.08); }
.kundli-structure-list li:last-child { border-bottom: none; }
@media (min-width: 769px) {
    .kundli-sections-wrapper {
        flex-direction: row;
        align-items: flex-start;
        gap: 2rem;
        flex-wrap: nowrap;
    }
    .kundli-sections-wrapper .kundli-benefits-section {
        flex: 1 1 0;
        min-width: 0;
        width: 100%;
    }
    /* Form section: width bilkul = form width, no extra space */
    .kundli-sections-wrapper .kundli-form-section {
        flex: 0 0 360px;
        width: 360px;
        min-width: 360px;
        max-width: 360px;
        padding-top: 0.25rem;
        padding-left: 0;
        padding-right: 0;
        box-sizing: border-box;
    }
    .kundli-sections-wrapper .kundli-form-section .container {
        width: 360px;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
        box-sizing: border-box;
    }
    .kundli-sections-wrapper .kundli-form-section .kundli-form-wrap {
        position: sticky;
        top: 1.5rem;
        width: 360px;
        max-width: 100%;
        margin-left: 0;
        margin-right: auto;
        box-sizing: border-box;
    }
    .kundli-sections-wrapper .kundli-form-section .kundli-generator {
        width: 360px;
        max-width: 360px;
        box-sizing: border-box;
    }
}

/* Mobile: form section full screen width */
@media (max-width: 768px) {
    .love-marriage-page .kundli-sections-outer {
        padding-left: clamp(0.5rem, 2vw, 1rem);
        padding-right: clamp(0.5rem, 2vw, 1rem);
    }
    .kundli-sections-wrapper .kundli-form-section {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
        box-sizing: border-box;
    }
    .kundli-sections-wrapper .kundli-form-section .container {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
        box-sizing: border-box;
    }
    .kundli-sections-wrapper .kundli-form-section .kundli-form-wrap {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .kundli-sections-wrapper .kundli-form-section .kundli-generator {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* Legacy: Problem Agitation - two columns (if used elsewhere) */
.agitation-with-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
}
@media (min-width: 769px) {
    .agitation-with-form {
        flex-direction: row;
        align-items: flex-start;
        gap: 2rem;
    }
    .agitation-content {
        flex: 1;
        min-width: 0;
    }
    .agitation-with-form .kundli-form-wrap {
        flex: 0 0 360px;
        position: sticky;
        top: 1.5rem;
    }
}

/* Love Marriage page: Kundli block = same style as home hero (reuse .kundli-generator) */
.problem-agitation .kundli-form-wrap .kundli-generator {
    margin: 0;
    max-width: 100%;
    width: 100%;
}

/* Problem Agitation list */
.problem-agitation .agitation-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.problem-agitation .agitation-list li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--love-text);
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    line-height: 1.55;
    border-bottom: 1px solid rgba(92, 61, 74, 0.08);
}
.problem-agitation .agitation-list li:last-child {
    border-bottom: none;
}
.love-section .no-list-icon li {
    padding-left: 0;
}
.love-section .no-list-icon li .tick-icon,
.love-section .no-list-icon li .agitation-icon {
    display: none;
}

/* मंदिर सेक्शन — यात्रा से पहले सामान्य नोट */
.temple-visit-note {
    margin: 0 auto 1.25rem;
    padding: 0.85rem 1.25rem;
    background: rgba(154, 123, 79, 0.08);
    border: 1px solid var(--love-border);
    border-radius: 8px;
    font-size: clamp(0.88rem, 1.65vw, 0.98rem);
    color: var(--love-text-muted);
    line-height: 1.6;
}
.temple-visit-note strong {
    color: var(--love-text);
}

/* महाविद्या पेज — शास्त्र आधार, कब करवाएँ, ध्यान दें नोट बॉक्स */
.mahavidya-note {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0.85rem 1.25rem;
    background: rgba(154, 123, 79, 0.08);
    border: 1px solid var(--love-border);
    border-radius: 8px;
    font-size: clamp(0.88rem, 1.65vw, 0.98rem);
    color: var(--love-text-muted);
    line-height: 1.6;
}
.mahavidya-note strong {
    color: var(--love-text);
}
.mahavidya-shastra-note {
    margin-bottom: 2rem;
}
.mahavidya-when-note {
    margin-bottom: 1.5rem;
}
.mahavidya-caution-note {
    margin-top: 1.5rem;
}

/* महाविद्या — इतिहास एवं पुराण संदर्भ ब्लॉक */
.mahavidya-history-wrap {
    max-width: 900px;
    margin: 2rem auto 0;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.04) 0%, rgba(184, 134, 11, 0.06) 100%);
    border: 1px solid var(--love-border);
    border-radius: 10px;
    border-left: 4px solid var(--love-gold);
}
.mahavidya-history-title {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    font-weight: 700;
    color: var(--love-text);
    margin: 0 0 0.75rem 0;
}
.mahavidya-history-text,
.mahavidya-history-ref {
    font-size: clamp(0.9rem, 1.7vw, 1rem);
    color: var(--love-text-muted);
    line-height: 1.65;
    margin: 0 0 0.75rem 0;
}
.mahavidya-history-ref {
    margin-bottom: 0;
    font-size: clamp(0.88rem, 1.65vw, 0.98rem);
}
.mahavidya-history-wrap strong {
    color: var(--love-text);
}

/* महाविद्या — भगवान दत्तात्रेय सेक्शन */
.mahavidya-dattatreya-section {
    padding-top: clamp(2rem, 4vw, 2.75rem);
    padding-bottom: clamp(2rem, 4vw, 2.75rem);
}
.mahavidya-dattatreya-content {
    max-width: 900px;
    margin: 0 auto;
}
.mahavidya-dattatreya-content p {
    font-size: clamp(0.95rem, 1.85vw, 1.08rem);
    line-height: 1.7;
    color: var(--love-text-muted);
    margin-bottom: 1.1rem;
}
.mahavidya-dattatreya-content p:last-child {
    margin-bottom: 0;
}
.mahavidya-dattatreya-content strong {
    color: var(--love-text);
}
.mahavidya-dattatreya-content .section-title-love {
    margin-bottom: 1.25rem;
}
.mahavidya-dattatreya-subtitle {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: clamp(1rem, 1.9vw, 1.15rem);
    font-weight: 700;
    color: var(--love-text);
    margin: 1.5rem 0 0.6rem 0;
}
.mahavidya-dattatreya-subtitle:first-of-type {
    margin-top: 1rem;
}

.temple-card-body .temple-map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--love-gold);
    font-weight: 600;
    text-decoration: none;
}
.temple-card-body .temple-map-link:hover {
    text-decoration: underline;
}
/* मंदिर सेक्शन — शोध आधारित कार्ड लेआउट */
.temple-cards-wrap {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.temple-card {
    background: var(--love-white);
    border: 1px solid var(--love-border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(61, 53, 48, 0.06);
}
.temple-card-title {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: clamp(1rem, 1.9vw, 1.15rem);
    font-weight: 700;
    color: var(--love-text);
    margin: 0;
    padding: 0.85rem 1rem;
    background: var(--love-soft-pink);
    border-bottom: 1px solid var(--love-border);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.temple-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.5rem;
    height: 1.5rem;
    background: var(--love-gold);
    color: var(--love-white);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 4px;
}
/* मंदिर कार्ड — Text Wrap (इमेज बाएँ, टेक्स्ट दाएँ लपेटता है) */
.temple-card-text-wrap {
    overflow: hidden;
    box-sizing: border-box;
}
.temple-card-text-wrap::after {
    content: "";
    display: table;
    clear: both;
}
.temple-card-img-wrap {
    position: relative;
    text-align: center;
    float: left;
    max-width: 280px;
    width: 100%;
    margin: 0 1.25rem 1rem 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--love-border);
    box-shadow: 0 2px 10px rgba(61, 53, 48, 0.08);
}
.temple-card-img-wrap .temple-card-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}
/* एक मंदिर के लिए कई इमेज — 2×2 ग्रिड (जैसे ललिता महा हरिद्वार) */
.temple-card-img-wrap--multi {
    max-width: 320px;
}
.temple-card-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0.35rem;
}
.temple-card-img-grid .temple-card-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 6px;
}
.temple-card-img-caption {
    display: block;
    margin-top: 0.5rem;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    color: var(--love-text-muted);
    font-weight: 600;
}
@media (max-width: 640px) {
    .temple-card-img-wrap {
        float: none;
        max-width: 100%;
        margin: 0 auto 1rem;
    }
    .temple-card-img-wrap--multi {
        max-width: 100%;
    }
}
.temple-card-body {
    padding: 1rem 1.25rem;
}
.temple-card-body p {
    margin: 0 0 0.6rem;
    font-size: clamp(0.88rem, 1.65vw, 0.98rem);
    color: var(--love-text-muted);
    line-height: 1.6;
}
.temple-card-body p:last-child {
    margin-bottom: 0;
}
/* अन्य मंदिर सेक्शन — कार्ड + इमेज (सभी मंदिर में इमेज लग सके) */
.temple-other-wrap {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--love-border);
}
.temple-other-title {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: clamp(1rem, 1.9vw, 1.15rem);
    font-weight: 700;
    color: var(--love-text);
    margin: 0 0 0.5rem;
}
.temple-other-cards {
    margin-top: 0.5rem;
}
.temple-other-card .temple-card-title {
    padding: 0.65rem 1rem;
    font-size: clamp(0.95rem, 1.75vw, 1.08rem);
}
.temple-other-card .temple-card-body {
    padding: 0.85rem 1.25rem;
}
.temple-other-card .temple-card-body p {
    margin: 0;
    font-size: clamp(0.85rem, 1.6vw, 0.95rem);
}
.temple-note {
    padding-top: 0.5rem;
    border-top: 1px dashed var(--love-border);
}
.agitation-icon {
    position: absolute;
    left: 0;
    top: 0.65rem;
}
.agitation-empathy {
    text-align: center;
    font-size: clamp(0.95rem, 1.9vw, 1.05rem);
    color: #5c3d4a;
    line-height: 1.6;
    max-width: 100%;
    margin: 0 auto 1rem;
    padding: 0 0.5rem;
}
.agitation-reassure {
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: #6b4a57;
    font-weight: 600;
    max-width: 100%;
    margin: 0 auto;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border-left: 4px solid var(--love-gold);
}

/* Astro-Logic */
.astro-logic .astro-intro {
    text-align: center;
    max-width: 100%;
    margin: 0 auto 1.5rem;
    color: #5c3d4a;
    font-size: clamp(0.95rem, 1.9vw, 1.05rem);
    line-height: 1.6;
}
.astro-logic .astro-causes {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.astro-logic .astro-causes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #5c3d4a;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    line-height: 1.55;
    border-bottom: 1px solid rgba(92, 61, 74, 0.08);
}
.astro-logic .astro-causes li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--love-gold);
    font-weight: bold;
}
.acharya-quote {
    max-width: 100%;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    background: var(--love-soft-pink);
    border-radius: 12px;
    border-left: 4px solid var(--love-gold);
    font-style: normal;
}
.acharya-quote p {
    margin: 0 0 0.5rem;
    color: #5c3d4a;
    font-size: clamp(0.95rem, 1.9vw, 1.05rem);
    line-height: 1.55;
}
.acharya-quote cite {
    display: block;
    font-size: 0.9rem;
    color: var(--love-gold);
    font-style: normal;
    font-weight: 600;
}
.astro-remedy-note {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    color: #5c3d4a;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    line-height: 1.6;
    padding: 1rem 0.5rem 0;
}

/* Solution Why Us */
.solution-why-us .solution-intro {
    text-align: center;
    max-width: 100%;
    margin: 0 auto 1.25rem;
    color: #5c3d4a;
    font-size: clamp(0.95rem, 1.9vw, 1.05rem);
    line-height: 1.6;
}
.solution-why-us .solution-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.solution-why-us .solution-benefits li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--love-text);
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    line-height: 1.55;
}
.tick-icon {
    position: absolute;
    left: 0;
    top: 0.65rem;
}
.solution-how-start {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(184, 134, 11, 0.15);
}
.solution-how-title {
    font-size: clamp(1.05rem, 2vw, 1.15rem);
    color: #5c3d4a;
    margin-bottom: 0.75rem;
    font-weight: 700;
}
.solution-how-start p {
    margin: 0;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    color: #5c3d4a;
    line-height: 1.6;
}
.solution-cta-below {
    margin-top: 1.5rem;
    padding: 1.25rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(184, 134, 11, 0.2);
}
.solution-cta-text {
    margin: 0 0 0.75rem;
    font-size: clamp(0.95rem, 1.9vw, 1.05rem);
    color: #5c3d4a;
    font-weight: 600;
}
.solution-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.35rem;
    background: #25d366;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.solution-cta-btn:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    color: #fff;
}

/* Success Story Box */
.success-story-inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 1.5rem 1.75rem;
    background: linear-gradient(135deg, var(--love-soft-pink) 0%, var(--love-pink-deep) 100%);
    border-radius: 16px;
    border: 1px solid rgba(184, 134, 11, 0.2);
    box-shadow: 0 4px 20px rgba(92, 61, 74, 0.08);
}
.success-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--love-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}
.success-quote {
    margin: 0;
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: #5c3d4a;
    line-height: 1.6;
    font-style: italic;
}
/* Success story carousel - 5 slides, auto scroll */
.success-story-carousel {
    position: relative;
    overflow: hidden;
    min-height: 100px;
}
.success-story-track {
    position: relative;
}
.success-story-slide {
    display: none;
    animation: successFadeIn 0.5s ease;
}
.success-story-slide.active {
    display: block;
}
@keyframes successFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.success-story-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}
.success-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(92, 61, 74, 0.25);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, transform 0.2s;
}
.success-dot:hover {
    background: rgba(92, 61, 74, 0.5);
}
.success-dot.active {
    background: var(--love-gold);
    transform: scale(1.2);
}

/* FAQ Love */
.faq-love .faq-list-love {
    max-width: 100%;
    margin: 0 auto;
}
.faq-item-love {
    margin-bottom: 1.25rem;
    padding: 0;
    background: var(--love-white);
    border-radius: 12px;
    border: 1px solid rgba(184, 134, 11, 0.15);
    box-shadow: 0 2px 12px rgba(92, 61, 74, 0.06);
    overflow: hidden;
}
.faq-item-love .faq-q-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1.25rem 1.25rem;
    border: none;
    background: none;
    cursor: pointer;
    text-align: left;
    font: inherit;
    color: inherit;
    transition: background 0.2s ease;
}
.faq-item-love .faq-q-btn:hover {
    background: rgba(253, 242, 248, 0.6);
}
.faq-item-love .faq-q-btn:focus {
    outline: 2px solid var(--love-gold);
    outline-offset: 2px;
}
.faq-item-love .faq-q {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: #5c3d4a;
    margin: 0;
    font-weight: 600;
    flex: 1;
}
.faq-item-love .faq-chevron {
    flex-shrink: 0;
    color: var(--love-gold);
    font-size: 0.85rem;
    transition: transform 0.25s ease;
}
.faq-item-love.active .faq-chevron {
    transform: rotate(180deg);
}
.faq-item-love .faq-a-wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-item-love.active .faq-a-wrap {
    max-height: 1200px;
}
.faq-item-love .faq-a-wrap > div {
    padding: 0 1.25rem 1.25rem;
}
.faq-item-love .faq-a {
    margin: 0;
    padding-top: 0.25rem;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    color: #6b4a57;
    line-height: 1.55;
    border-top: 1px solid rgba(184, 134, 11, 0.12);
}

/* Final CTA — professional */
.cta-final-love {
    background: var(--love-pink-deep);
    padding: clamp(2.25rem, 5vw, 3rem) 1rem;
    border-top: 1px solid var(--love-border);
}
.cta-final-title {
    font-size: clamp(1.15rem, 2.5vw, 1.45rem);
    color: var(--love-text);
    text-align: center;
    margin-bottom: 0.5rem;
    font-weight: 700;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.35;
}
.cta-final-question {
    text-align: center;
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    color: var(--love-text-muted);
    margin-bottom: 1.5rem;
}
.cta-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1rem;
}
.cta-final-actions .btn-final {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.25rem;
    min-width: 160px;
    justify-content: center;
    font-weight: 600;
    font-size: clamp(0.88rem, 1.6vw, 0.98rem);
    border-radius: 6px;
    text-decoration: none;
    transition: box-shadow 0.2s;
}
.cta-final-actions .btn-wa.btn-final {
    background: #25d366;
    color: #fff;
    border: 1px solid rgba(0,0,0,0.06);
}
.cta-final-actions .btn-wa.btn-final:hover {
    background: #20bd5a;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.25);
}
.cta-final-actions .btn-call.btn-final {
    background: var(--love-gold);
    color: #fff;
    border: 1px solid rgba(0,0,0,0.06);
}
.cta-final-actions .btn-call.btn-final:hover {
    background: var(--love-gold-light);
    box-shadow: 0 2px 8px rgba(61, 53, 48, 0.12);
}
.privacy-badge {
    text-align: center;
    font-size: 0.88rem;
    color: var(--love-text-muted);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}
.disclaimer-love {
    text-align: center;
    font-size: 0.8rem;
    color: #7a5a65;
    max-width: 100%;
    margin: 0 auto;
    line-height: 1.5;
}

/* Spiritual context — professional blockquote */
.spiritual-context .spiritual-quote {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    color: var(--love-text);
    text-align: center;
    margin: 0 auto 1.25rem;
    max-width: 100%;
    line-height: 1.6;
    font-style: italic;
    border-left: none;
    padding: 0 0.5rem;
}
.spiritual-context-text {
    max-width: 100%;
    margin: 0 auto;
}
.spiritual-context-text p {
    margin: 0 0 1rem;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    color: var(--love-text-muted);
    line-height: 1.65;
}
.spiritual-context-text p:last-child {
    margin-bottom: 0;
}

/* Blessing Section - Happy Couple Image + Overlay Card */
.blessing-section {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.blessing-bg-wrap {
    position: absolute;
    inset: 0;
}
.blessing-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Mobile: blessing = image + text in left 1/3, fit properly */
@media (max-width: 768px) {
    .blessing-section {
        position: relative;
        min-height: 200px;
        aspect-ratio: 4/3;
        width: 100%;
        height: auto;
        max-height: 45vh;
        background: transparent;
        display: block;
        padding: 0;
        margin: 0.5rem 0;
    }
    .blessing-bg-wrap {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }
    .blessing-bg-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    .blessing-section::after {
        display: none;
    }
    .blessing-overlay-card {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 33.33%;
        max-height: 100%;
        z-index: 2;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        margin: 0;
        padding: 0.4rem 0.35rem 0.4rem 0.5rem;
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .blessing-mantra {
        font-size: clamp(0.45rem, 2.2vw, 0.55rem);
        line-height: 1.3;
        margin: 0 0 0.25rem;
        text-align: left;
        color: #ffffff;
        text-shadow: 0 0 2px rgba(0,0,0,0.9), 0 1px 4px rgba(0,0,0,0.8);
        word-wrap: break-word;
        overflow-wrap: break-word;
        flex-shrink: 0;
    }
    .blessing-text {
        font-size: clamp(0.46rem, 2.3vw, 0.58rem);
        line-height: 1.3;
        margin: 0 0 0.25rem;
        text-align: left;
        color: #ffffff;
        text-shadow: 0 0 2px rgba(0,0,0,0.9), 0 1px 4px rgba(0,0,0,0.8);
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        flex-shrink: 0;
    }
    .blessing-quote {
        font-size: clamp(0.48rem, 2.4vw, 0.6rem);
        line-height: 1.3;
        margin: 0 0 0.25rem;
        text-align: left;
        color: #fff8dc;
        text-shadow: 0 0 2px rgba(0,0,0,0.9), 0 1px 4px rgba(0,0,0,0.8);
        flex-shrink: 0;
    }
    .blessing-sign {
        font-size: clamp(0.42rem, 2vw, 0.52rem);
        margin: 0;
        text-align: left;
        color: #fff8dc;
        text-shadow: 0 0 2px rgba(0,0,0,0.9), 0 1px 4px rgba(0,0,0,0.8);
        flex-shrink: 0;
    }
}
@media (max-width: 480px) {
    .blessing-section {
        aspect-ratio: 3/4;
        min-height: 180px;
        max-height: 40vh;
    }
    .blessing-overlay-card {
        width: 33.33%;
        padding: 0.35rem 0.3rem 0.35rem 0.4rem;
    }
    .blessing-mantra {
        font-size: 0.45rem;
        line-height: 1.28;
    }
    .blessing-text {
        font-size: 0.46rem;
        line-height: 1.28;
    }
    .blessing-quote {
        font-size: 0.48rem;
    }
    .blessing-sign {
        font-size: 0.42rem;
    }
}
.blessing-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(92, 61, 74, 0.35);
    pointer-events: none;
}
/* Overlay card removed: text directly on image */
.blessing-overlay-card {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.blessing-mantra {
    font-family: 'Noto Serif Devanagari', 'Noto Sans Devanagari', serif;
    font-size: clamp(0.95rem, 1.9vw, 1.1rem);
    font-weight: 700;
    line-height: 1.6;
    margin: 0 0 0.75rem;
    text-align: center;
    color: #ffffff;
    text-shadow: 0 0 3px rgba(0,0,0,0.9), 0 1px 5px rgba(0,0,0,0.8);
}
.blessing-text {
    font-family: 'Noto Serif Devanagari', 'Noto Sans Devanagari', serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 700;
    line-height: 1.6;
    margin: 0 0 0.75rem;
    text-align: center;
    color: #ffffff;
    text-shadow: 0 0 3px rgba(0,0,0,0.9), 0 1px 5px rgba(0,0,0,0.8);
}
.blessing-quote {
    font-family: 'Noto Serif Devanagari', 'Noto Sans Devanagari', serif;
    font-size: clamp(1.05rem, 2.1vw, 1.25rem);
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 1rem;
    text-align: center;
    color: #fff8dc;
    text-shadow: 0 0 3px rgba(0,0,0,0.9), 0 1px 5px rgba(0,0,0,0.8);
}
.blessing-sign {
    font-family: 'Noto Serif Devanagari', 'Noto Sans Devanagari', serif;
    font-size: clamp(0.95rem, 1.9vw, 1.05rem);
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #fff8dc;
    text-shadow: 0 0 3px rgba(0,0,0,0.9), 0 1px 5px rgba(0,0,0,0.8);
}
@media (min-width: 769px) {
    .blessing-section {
        min-height: 420px;
    }
    .blessing-overlay-card {
        padding: 1.5rem 2rem;
    }
}

/* ========== Related Links & External Resources (SEO) ========== */
.related-links-section,
.external-resources-section {
    padding: 1.5rem 0;
    background: var(--section-bg);
    border-top: 1px solid var(--border-color);
}
.related-links-section {
    background: var(--light-bg-alt);
}
.external-resources-section {
    padding-bottom: 2rem;
}
.related-links-title,
.external-resources-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    text-align: center;
}
.related-links-list,
.external-resources-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.25rem;
}
.related-links-list li,
.external-resources-list li {
    margin: 0;
}
.related-links-list a,
.external-resources-list a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 500;
}
.related-links-list a:hover,
.external-resources-list a:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}
.external-resources-list a[rel~="nofollow"]::after {
    content: " \2197";
    font-size: 0.75em;
    opacity: 0.8;
}
.hero-link-inline {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dotted var(--primary-color);
}
.hero-link-inline:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-dark);
}
/* Hero ke andar links hamesha white rahein – desktop + mobile dono (inherit mobile par galat ho sakta tha) */
.hero .hero-link-inline {
    color: rgba(255, 255, 255, 0.95);
    border-bottom-color: rgba(255, 255, 255, 0.7);
}
.hero .hero-link-inline:hover {
    color: var(--primary-light);
    border-bottom-color: var(--primary-light);
}

/* State-wise landing pages */
.page-header {
    padding: clamp(2.5rem, 5vw, 3.5rem) 0;
    background: linear-gradient(180deg, var(--section-bg) 0%, var(--light-bg) 100%);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}
.page-header h1 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.page-header p {
    color: var(--text-medium);
    font-size: 1rem;
}

/* State landing – hero (famous place image + text overlay) */
.page-header.state-landing-hero {
    padding: 0;
    background: var(--section-bg);
}
.state-hero-image {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    line-height: 0;
    /* Default red kundli-themed gradient background */
    background: 
        radial-gradient(circle at 50% 50%, rgba(255,215,0,0.08) 0%, transparent 50%),
        linear-gradient(135deg, 
            #8B0000 0%, 
            #C41E3A 20%, 
            #DC143C 40%, 
            #B22222 60%, 
            #8B0000 80%, 
            #5C0000 100%);
    min-height: clamp(280px, 50vh, 420px);
}
/* Kundli grid pattern overlay for default background */
.state-hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(45deg, transparent 48%, rgba(255,215,0,0.1) 49%, rgba(255,215,0,0.1) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255,215,0,0.1) 49%, rgba(255,215,0,0.1) 51%, transparent 52%);
    background-size: 60px 60px, 60px 60px, 120px 120px, 120px 120px;
    background-position: center;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}
.state-hero-image .state-hero-img {
    width: 100%;
    height: clamp(280px, 50vh, 420px);
    object-fit: cover;
    object-position: center 30%;
    display: block;
    position: relative;
    z-index: 1;
}
/* Hide broken image icon and show gradient background */
.state-hero-image .state-hero-img[src=""],
.state-hero-image .state-hero-img:not([src]) {
    visibility: hidden;
}
.state-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.92) 0%, 
        rgba(0, 0, 0, 0.75) 25%, 
        rgba(0, 0, 0, 0.25) 55%, 
        rgba(0, 0, 0, 0.08) 75%,
        rgba(0, 0, 0, 0.02) 100%);
    pointer-events: none;
}
.state-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: clamp(1.5rem, 5vw, 2.5rem) 1rem;
    padding-left: max(1rem, (100vw - 1140px) / 2 + 1rem);
    padding-right: max(1rem, (100vw - 1140px) / 2 + 1rem);
    text-align: left;
    z-index: 1;
}
.state-landing-hero .state-badge-wrap {
    margin-bottom: 0.75rem;
}
.state-landing-hero .state-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.95) 0%, rgba(139, 101, 8, 0.98) 100%);
    color: #fff;
    padding: 0.5rem 1rem 0.5rem 0.9rem;
    border-radius: 0.5rem;
    font-size: clamp(0.8rem, 1.6vw, 0.95rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35), 0 1px 0 rgba(255, 255, 255, 0.15) inset;
    border: 1px solid rgba(255, 255, 255, 0.25);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.state-landing-hero .state-badge i {
    font-size: 0.9em;
    opacity: 0.95;
}
.state-landing-hero .state-badge-sep {
    margin: 0 0.35rem;
    opacity: 0.8;
    font-weight: 500;
}
.state-landing-hero .state-hero-content h1 {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7), 0 1px 3px rgba(0, 0, 0, 0.5);
}
.state-landing-hero .state-hero-content p {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    color: #fff;
    margin: 0;
    line-height: 1.55;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6), 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* About / state landing – text block (intro, challenges, scenario) */
.about-content .about-text {
    max-width: 100%;
}
.about-content .about-text p {
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.75;
    color: var(--text-medium);
    text-align: justify;
}
.about-content .about-text p:first-child {
    margin-top: 0;
}
.about-content .about-text p:last-child {
    margin-bottom: 0;
}
.about-content .about-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}
.about-content .about-text a:hover {
    text-decoration: underline;
}

/* State landing – challenges & scenario sections */
.state-landing-challenges .section-header,
.state-landing-scenario .section-header {
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}
.state-landing-challenges .about-content,
.state-landing-scenario .about-content {
    max-width: 100%;
}
.state-landing-disclaimer {
    max-width: 100%;
    margin: 0 auto;
    font-size: 0.95rem;
    color: var(--text-medium);
    text-align: center;
    line-height: 1.6;
}

/* State landing – trust stats bar */
.state-landing-stats {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: clamp(1.25rem, 3vw, 1.75rem) 0;
    color: #fff;
}
.state-landing-stats-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(0.75rem, 2vw, 1.25rem);
}
@media (min-width: 600px) {
    .state-landing-stats-inner {
        grid-template-columns: repeat(4, 1fr);
    }
}
.state-landing-stat {
    text-align: center;
    padding: clamp(0.6rem, 1.5vw, 0.9rem) 0.5rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.2s ease, border-color 0.2s ease;
}
.state-landing-stat:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}
.state-landing-stat-num {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    font-family: 'Noto Serif Devanagari', Georgia, serif;
    font-size: clamp(1.4rem, 2.8vw, 1.9rem);
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: #fff;
    letter-spacing: 0.02em;
    line-height: 1.2;
}
.state-landing-stat-num i {
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    opacity: 0.95;
}
.state-landing-stat-label {
    font-size: clamp(0.72rem, 1.35vw, 0.88rem);
    opacity: 0.95;
    line-height: 1.35;
    font-weight: 500;
}

/* State landing – services */
.state-landing-services {
    padding: clamp(2rem, 4vw, 3rem) 0;
    background: var(--section-bg);
}
.state-landing-services .section-header {
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}
.state-landing-services-intro {
    margin: 0 0 1.5rem;
    text-align: center;
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    color: var(--text-medium);
    line-height: 1.7;
}
.state-landing-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1.5rem;
}
@media (min-width: 600px) {
    .state-landing-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 900px) {
    .state-landing-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.state-landing-service-card {
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.25rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.state-landing-service-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px var(--shadow-medium);
    transform: translateY(-3px);
}
.state-landing-service-card i {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}
.state-landing-service-card h3 {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.state-landing-service-card p {
    font-size: clamp(0.85rem, 1.6vw, 0.95rem);
    color: var(--text-medium);
    margin-bottom: 0.75rem;
    flex-grow: 1;
}
.state-landing-service-card a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}
.state-landing-service-card a:hover {
    text-decoration: underline;
}

/* State landing – why choose us */
.state-landing-why {
    padding: clamp(2rem, 4vw, 3rem) 0;
    background: var(--light-bg);
}
.state-landing-why .section-header {
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}
.state-landing-why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1.5rem;
}
@media (min-width: 600px) {
    .state-landing-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.state-landing-why-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: var(--light-bg-alt);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}
.state-landing-why-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}
.state-landing-why-item h3 {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--text-dark);
    margin-bottom: 0.35rem;
}
.state-landing-why-item p {
    font-size: clamp(0.85rem, 1.6vw, 0.95rem);
    color: var(--text-medium);
    margin: 0;
    line-height: 1.55;
}

/* State landing – mukhya karyalay (Ayodhya) */
.state-landing-karyalay {
    padding: clamp(2.25rem, 4.5vw, 3.25rem) 0;
    background: linear-gradient(180deg, var(--section-bg) 0%, var(--light-bg) 100%);
}
.state-landing-karyalay-header {
    text-align: center;
    margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}
.state-landing-karyalay-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--primary-dark);
    background: rgba(184, 134, 11, 0.12);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 0.65rem;
    text-transform: uppercase;
}
.state-landing-karyalay-title {
    font-size: clamp(1.35rem, 2.8vw, 1.65rem);
    color: var(--text-dark);
    margin: 0 0 0.4rem;
    font-weight: 700;
    line-height: 1.3;
}
.state-landing-karyalay-sub {
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    color: var(--text-medium);
    margin: 0;
    line-height: 1.5;
}
.state-landing-karyalay-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: clamp(1.5rem, 3vw, 2rem);
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
}
@media (min-width: 600px) {
    .state-landing-karyalay-inner {
        flex-direction: row;
        align-items: flex-start;
        padding: clamp(1.75rem, 3.5vw, 2.25rem) clamp(1.75rem, 4vw, 2.5rem);
        gap: 1.75rem;
    }
}
.state-landing-karyalay-icon-wrap {
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    border-radius: 14px;
    font-size: 1.6rem;
    box-shadow: 0 6px 16px rgba(184, 134, 11, 0.3);
}
.state-landing-karyalay-content {
    min-width: 0;
}
.state-landing-karyalay-content p {
    margin: 0 0 1rem;
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    color: var(--text-medium);
    line-height: 1.7;
}
.state-landing-karyalay-content p:last-child {
    margin-bottom: 0;
}
.state-landing-karyalay-lead {
    font-size: clamp(0.95rem, 1.7vw, 1.05rem) !important;
    color: var(--text-dark) !important;
}
.state-landing-karyalay-address {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 1.25rem;
    margin: 0.5rem 0 1rem;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.06) 0%, rgba(184, 134, 11, 0.02) 100%);
    border-radius: 12px;
    border: 1px solid rgba(184, 134, 11, 0.2);
}
.state-landing-karyalay-address > i {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
    background: rgba(184, 134, 11, 0.12);
    border-radius: 8px;
}
.state-landing-karyalay-address > div {
    min-width: 0;
}
.state-landing-karyalay-address-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}
.state-landing-karyalay-address-text {
    font-size: clamp(0.88rem, 1.5vw, 0.98rem);
    color: var(--text-dark);
    line-height: 1.55;
}
.state-landing-karyalay-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* State landing – दश महाविद्या और माँ ललिताम्बा intro */
.state-landing-mahavidya-lalita {
    padding: clamp(2rem, 4vw, 3rem) 0;
    background: var(--light-bg);
}
.state-landing-mahavidya-lalita .section-header {
    margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}
.state-landing-mahavidya-lalita-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 600px) {
    .state-landing-mahavidya-lalita-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
}
.state-landing-mahavidya-lalita-card {
    padding: 1.5rem;
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.state-landing-mahavidya-lalita-card:hover {
    border-color: rgba(184, 134, 11, 0.35);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.state-landing-mahavidya-lalita-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.15), rgba(184, 134, 11, 0.06));
    color: var(--primary-dark);
    border-radius: 10px;
    font-size: 1.35rem;
}
.state-landing-mahavidya-lalita-card h3 {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: var(--text-dark);
    margin: 0;
    font-weight: 700;
}
.state-landing-mahavidya-lalita-card p {
    font-size: clamp(0.88rem, 1.5vw, 0.95rem);
    color: var(--text-medium);
    line-height: 1.65;
    margin: 0;
    flex-grow: 1;
}
.state-landing-mahavidya-lalita-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-decoration: none;
    margin-top: 0.25rem;
}
.state-landing-mahavidya-lalita-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}
.state-landing-mahavidya-lalita-link i {
    font-size: 0.8em;
    transition: transform 0.2s ease;
}
.state-landing-mahavidya-lalita-link:hover i {
    transform: translateX(4px);
}

/* State landing – how it works */
.state-landing-steps {
    padding: clamp(2rem, 4vw, 3rem) 0;
    background: var(--section-bg);
}
.state-landing-steps .section-header {
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}
.state-landing-steps-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 600px) {
    .state-landing-steps-inner {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
        max-width: none;
    }
}
.state-landing-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--light-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}
@media (min-width: 600px) {
    .state-landing-step {
        flex-direction: column;
        text-align: center;
        flex: 1;
        max-width: 200px;
    }
}
.state-landing-step-num {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}
.state-landing-step h3 {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--text-dark);
    margin-bottom: 0.35rem;
}
.state-landing-step p {
    font-size: clamp(0.85rem, 1.6vw, 0.95rem);
    color: var(--text-medium);
    margin: 0;
    line-height: 1.5;
}

/* State landing – FAQ */
.state-landing-faq {
    padding: clamp(2rem, 4vw, 3rem) 0;
    background: var(--light-bg);
}
.state-landing-faq .section-header {
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}
.state-landing-faq .faq-list {
    max-width: 720px;
    margin: 1.5rem auto 0;
}
.state-landing-faq .faq-item {
    margin-bottom: 0.75rem;
}

/* State landing – disclaimer strip (above CTA) */
.about .state-landing-disclaimer {
    display: block;
}

/* State landing – disclaimer section wrapper (grey strip) */
.state-landing-disclaimer-wrap {
    padding: clamp(1rem, 2vw, 1.25rem) 0;
    background: #f8f7f5;
}

/* State landing – about section: smaller photo */
.state-landing-about .about-image {
    flex: 0 0 200px;
    min-width: 160px;
    max-width: 240px;
}
.state-landing-about .about-astrologer-img {
    min-height: 260px;
}
@media (max-width: 767px) {
    .state-landing-about .about-image {
        flex: 0 0 200px;
        min-width: 160px;
        max-width: 220px;
        margin: 0 auto;
    }
    .state-landing-about .about-astrologer-img {
        min-height: 240px;
    }
}

/* State landing – name plate compact (more photo visible) */
.state-landing-about .about-name-plate {
    bottom: 4px;
    left: 4px;
    right: 4px;
}
.state-landing-about .name-plate-inner {
    padding: 0.35rem 0.5rem 0.4rem;
    border-width: 2px;
    border-radius: 0 0 10px 10px;
}
.state-landing-about .name-plate-line1 {
    font-size: 0.75rem;
    line-height: 1.25;
    margin-bottom: 0.15rem;
}
.state-landing-about .name-plate-line2 {
    font-size: 0.65rem;
    line-height: 1.2;
    margin-bottom: 0.1rem;
}
.state-landing-about .name-plate-line3 {
    font-size: 0.6rem;
    margin-top: 0.15rem;
    padding-top: 0.2rem;
}
.state-landing-about .name-plate-line3 i {
    font-size: 0.65rem;
}

/* State landing – layout: photo left | content center | form right */
.state-landing-about-photo {
    flex: 0 0 auto;
    min-width: 0;
}
/* State page form: same width/look as home hero Kundli form (.kundli-generator) */
.state-landing-about-right {
    flex: 0 0 auto;
    min-width: 0;
    width: 100%;
    max-width: 300px;
    min-width: 280px;
}
.state-landing-about-right .kundli-generator {
    margin-right: 0;
    margin-left: 0;
    max-height: none;
}
@media (min-width: 969px) {
    .state-landing-about-right {
        max-width: 360px;
    }
}
.state-landing-about .about-wrapper {
    align-items: flex-start;
    gap: clamp(1rem, 2vw, 1.5rem);
}
.state-landing-about .about-wrapper .about-text {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
}
/* Content limit – no duplicate with form, short read */
.state-landing-about .about-text p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.6rem;
}
.state-landing-about .about-text p:first-of-type {
    margin-top: 0;
}
/* Legacy: left column used when form was under photo (keep for any old markup) */
.state-landing-about-left {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex: 0 0 auto;
    min-width: 0;
    max-width: 320px;
}
.state-landing-about-kundli {
    width: 100%;
    max-width: 100%;
    padding: 1rem 1.1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.state-landing-about-kundli .kundli-generator-header {
    display: flex;
    align-items: center;
    gap: clamp(0.4rem, 1vw, 0.55rem);
    padding-bottom: 0.4rem;
    margin-bottom: clamp(0.6rem, 1.2vw, 0.8rem);
    border-bottom: 2px solid var(--primary-color);
    text-align: left;
}
.state-landing-about-kundli .kundli-header-img {
    width: clamp(40px, 8vw, 52px);
    height: clamp(40px, 8vw, 52px);
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    flex-shrink: 0;
}
.state-landing-about-kundli .kundli-header-acharya {
    width: clamp(36px, 6vw, 46px);
    height: clamp(36px, 6vw, 46px);
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    flex-shrink: 0;
    margin-left: auto;
    display: block;
}
.state-landing-about-kundli .kundli-header-text {
    flex: 1;
    min-width: 0;
}
.state-landing-about-kundli .kundli-header-text h3 {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    line-height: 1.3;
    margin-bottom: 0.15rem;
    font-weight: 700;
    color: var(--text-dark);
}
.state-landing-about-kundli .kundli-header-text p {
    font-size: clamp(0.7rem, 1.4vw, 0.8rem);
    margin: 0;
    color: var(--text-medium);
}
.state-landing-about-kundli .form-row {
    margin-bottom: 0.5rem;
    gap: 0.5rem;
}
.state-landing-about-kundli .form-group label {
    font-size: 0.78rem;
    margin-bottom: 0.2rem;
}
.state-landing-about-kundli .form-group input,
.state-landing-about-kundli .form-group select {
    padding: 0.5rem 0.55rem;
    font-size: 0.85rem;
    min-height: 36px;
    width: 100%;
    box-sizing: border-box;
}
.state-landing-about-kundli .btn-generate {
    padding: 0.55rem 0.85rem;
    font-size: 0.88rem;
    margin-top: 0.6rem;
    width: 100%;
}
.state-landing-about-kundli .form-note-compact {
    font-size: clamp(0.65rem, 1.3vw, 0.78rem);
    margin-top: 0.4rem;
    margin-bottom: 0.2rem;
    line-height: 1.4;
    white-space: normal;
    text-align: center;
    color: var(--text-light);
}
.state-landing-about-kundli .form-note-compact i {
    opacity: 0.9;
}
.state-landing-about-kundli .form-note-name {
    font-size: clamp(0.95rem, 2.2vw, 1.2rem);
    margin-top: 0.35rem;
    margin-bottom: 0;
    line-height: 1.3;
    text-align: center;
    font-family: 'Teko', 'Noto Serif Devanagari', 'Mukta', sans-serif;
}
.state-landing-about-kundli .form-note-name strong {
    color: #c0392b;
    font-weight: 600;
    font-family: 'Teko', 'Noto Serif Devanagari', 'Mukta', sans-serif;
}
.state-landing-whatsapp-cta {
    margin-top: 0.75rem;
    font-size: 0.9rem;
}
.state-landing-whatsapp-cta a {
    color: var(--primary-color, #25d366);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.state-landing-whatsapp-cta a:hover {
    text-decoration: underline;
}
/* Form: 2 columns on desktop so size stays compact */
.state-landing-about-kundli .kundli-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
@media (max-width: 767px) {
    .state-landing-about-left,
    .state-landing-about-photo,
    .state-landing-about-right {
        max-width: 100%;
        width: 100%;
        min-width: 0;
    }
    .state-landing-about .about-wrapper {
        flex-direction: column;
    }
    .state-landing-about-kundli .kundli-form .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* State landing – responsive tweaks */
@media (max-width: 599px) {
    .state-landing-hero h1 {
        font-size: 1.5rem;
    }
    .state-landing-stats-inner {
        gap: 0.75rem;
    }
    .state-landing-service-card {
        padding: 1rem;
    }
    .state-landing-why-item,
    .state-landing-step {
        padding: 1rem;
    }
    .state-landing-faq .faq-question,
    .state-landing-faq .faq-answer {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}


