/* =====================
   GLOBAL RESET & BASE
===================== */
    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        font-size: 16px;
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Poppins', Arial, sans-serif;
        font-size: 15px;
        font-weight: 400;
        line-height: 1.7;
        background-color: #faf7f2;
        color: #3a2c0f;
    }

    /* Links */
    a {
        font-size: 14px;
        color: #6b4f1d;
        text-decoration: none;
    }

    a:hover {
        text-decoration: none;
    }

    /* Paragraphs & lists */
    p,
    li {
        font-size: 15px;
        line-height: 1.7;
        color: #555;
        font-family: 'Poppins', Arial, sans-serif;
    }

    /* =====================
   SECTIONS
===================== */
    section {
        max-width: 1100px;
        margin: auto;
        padding: 50px 20px;
    }

    /* =====================
   HEADINGS
===================== */
    h1,
    h2,
    h3,
    h4,
    h5 {
        font-family: 'Playfair Display', serif;
        color: #6b4f1d;
        margin-top: 0;
        letter-spacing: 0.5px;
    }

    h1 {
        font-size: 42px;
        font-weight: 600;
        margin-bottom: 15px;
    }

    h2 {
        font-size: 28px;
        font-weight: 500;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
    }

    h2::after {
        content: "✦ ——— ✦";
        position: absolute;
        bottom: -2px;
        left: 0;
        display: block;
        font-size: 13px;
        letter-spacing: 4px;
        color: #d4af37;
        font-family: 'Poppins', sans-serif;
        line-height: 1;
        background: none;
        width: auto;
        height: auto;
    }

    h2 {
        padding-bottom: 28px;
    }

    /* Center the ornament when the h2 is inside a centered container */
    .kundli-info h2::after,
    .kundli-cta h2::after,
    .trust h2::after,
    .numerology-hero-card h2::after,
    .kundli-hero h2::after,
    .testimonials-section h2::after,
    .videos-section h2::after,
    .faq-section h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    h3 {
        font-size: 20px;
        font-weight: 500;
        margin-bottom: 15px;
        margin-top: 25px;
        color: #6b4f1d;
    }

    h4 {
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 10px;
    }

    /* =====================
   HEADER
===================== */
    header {
        background: #fffaf0;
        text-align: center;
        padding: 25px 15px 15px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
        position: sticky;
        top: 0;
        z-index: 999;
    }

    /* =====================
   LOGO
===================== */
    .logo h1 {
        font-size: 44px;
        margin: 0;
        letter-spacing: 1.5px;
    }

    .logo h1 span {
        color: #d4af37;
    }

    .logo-line {
        width: 70px;
        height: 3px;
        background: linear-gradient(90deg, #f7c600, #d4af37);
        margin: 10px auto;
        border-radius: 5px;
    }

    .subtitle {
        font-size: 12px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #8b6b1f;
    }

    /* =====================
   NAVIGATION
===================== */
    nav {
        margin-top: 15px;
    }

    nav a {
        margin: 0 6px;
        padding: 8px 16px;
        text-decoration: none;
        font-size: 14px;
        color: #6b4f1d;
        font-weight: 500;
        border-radius: 20px;
        transition: all 0.3s ease;
        display: inline-block;
    }

    nav a:hover,
    nav a.active {
        background: linear-gradient(135deg, #f7c600, #d4af37);
        color: #000;
    }

    /* =====================
   HAMBURGER MENU (MOBILE)
===================== */
    .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        background: none;
        border: none;
        gap: 5px;
        padding: 6px;
        margin: 10px auto 0;
    }

    .hamburger span {
        width: 25px;
        height: 2.5px;
        background: #6b4f1d;
        border-radius: 3px;
        transition: all 0.3s ease;
        display: block;
    }

    .hamburger.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* =====================
   HERO / PROFILE
===================== */
    .hero.profile {
        display: flex;
        align-items: center;
        gap: 40px;
        flex-wrap: wrap;
    }

    .hero img {
        width: 260px;
        height: 260px;
        border-radius: 50%;
        object-fit: cover;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .intro-text {
        max-width: 520px;
    }

    .experience {
        font-size: 14px;
        color: #8b6b1f;
        margin: 10px 0;
    }

    .intro-line {
        font-size: 15px;
        color: #555;
    }

    /* =====================
   ZODIAC GRID
===================== */
    .zodiac-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 34px;
        margin-top: 40px;
    }

    .zodiac-card {
        background: #fffaf0;
        padding: 28px;
        border-radius: 20px;
        text-align: center;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .zodiac-img {
        width: 90px;
        height: 90px;
        margin-bottom: 14px;
    }

    .zodiac-img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .zodiac-card h4 {
        font-family: 'Playfair Display', serif;
        font-size: 20px;
        color: #6b4f1d;
        margin: 6px 0;
    }

    .short-text {
        font-size: 14px;
        color: #555;
        margin-bottom: 10px;
    }

    .zodiac-more {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.5s ease;
    }

    .zodiac-more.open {
        max-height: 300px;
        opacity: 1;
        margin-top: 10px;
    }

    .zodiac-card button {
        margin-top: 14px;
        background: linear-gradient(135deg, #f7c600, #d4af37);
        border: none;
        padding: 10px 26px;
        border-radius: 30px;
        font-weight: 600;
        cursor: pointer;
        font-family: 'Poppins', sans-serif;
    }

    .zodiac-info {
        margin-top: 25px;
        padding: 18px;
        background: #fff6d5;
        border-left: 4px solid #d4af37;
        border-radius: 0 8px 8px 0;
    }

    /* =====================
   ZODIAC FINDER
===================== */
    .zodiac-finder {
        max-width: 420px;
        margin: auto;
        padding: 25px;
        background: #fffaf0;
        border-radius: 14px;
        text-align: center;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    }

    .zodiac-finder input {
        width: 100%;
        max-width: 260px;
        padding: 10px;
        border-radius: 6px;
        border: 1px solid #ccc;
        font-family: 'Poppins', sans-serif;
    }

    .zodiac-finder button {
        margin-top: 10px;
        padding: 10px 24px;
        border-radius: 30px;
        border: none;
        background: linear-gradient(135deg, #f7c600, #d4af37);
        font-weight: 600;
        cursor: pointer;
        font-family: 'Poppins', sans-serif;
    }

    .zodiac-result {
        margin-top: 15px;
        font-weight: 600;
        color: #6b4f1d;
        font-size: 16px;
    }

    /* =====================
   DAILY MESSAGE
===================== */
    .daily-zodiac {
        max-width: 600px;
        margin: auto;
        padding: 22px;
        background: #fff6d5;
        border-left: 4px solid #d4af37;
        border-radius: 0 14px 14px 0;
        text-align: center;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    }

    /* =====================
   TRUST
===================== */
    .trust ul {
        list-style: none;
        padding: 0;
    }

    .trust li {
        margin-bottom: 8px;
    }

    /* =====================
   CONTACT PAGE
===================== */
    .contact-box {
        display: flex;
        gap: 40px;
        flex-wrap: wrap;
    }

    .contact-info,
    .contact-form {
        flex: 1;
        min-width: 280px;
        background: #fffaf0;
        padding: 30px;
        border-radius: 14px;
        box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 10px;
        margin-bottom: 12px;
        border-radius: 6px;
        border: 1px solid #ccc;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
    }

    .contact-form button {
        background: linear-gradient(135deg, #f7c600, #d4af37);
        border: none;
        padding: 12px 24px;
        border-radius: 30px;
        font-weight: 600;
        cursor: pointer;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
    }

    /* =====================
   BUTTONS
===================== */
    .cta-btn {
        display: inline-block;
        background: linear-gradient(135deg, #f7c600, #d4af37);
        color: #000;
        padding: 12px 26px;
        border-radius: 30px;
        font-weight: 600;
        text-decoration: none;
        font-size: 15px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .cta-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    }

    /* Floating buttons */
    .book-btn {
        position: fixed;
        bottom: 90px;
        right: 20px;
        z-index: 1000;
        background: linear-gradient(135deg, #f7c600, #d4af37);
        color: #000;
        padding: 12px 20px;
        border-radius: 30px;
        font-weight: 600;
        text-decoration: none;
        font-size: 14px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease;
    }

    .book-btn:hover {
        transform: translateY(-3px);
    }

    .whatsapp-btn {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: #25D366;
        color: #fff;
        padding: 14px 18px;
        border-radius: 30px;
        text-decoration: none;
        z-index: 1000;
        font-size: 14px;
        font-weight: 600;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
    }

    .whatsapp-btn:hover {
        transform: translateY(-3px);
        color: #fff;
    }

    /* =====================
   FOOTER
===================== */
    .custom-footer {
        background: #fdf1df;
        padding: 60px 6% 0;
        font-family: 'Poppins', sans-serif;
    }

    .footer-inner {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 50px;
    }

    .footer-brand .brand-logo {
        font-size: 26px;
        font-weight: 700;
        color: #b10063;
        font-family: 'Playfair Display', serif;
        line-height: 1.3;
    }

    .footer-brand .brand-logo span {
        font-size: 14px;
        vertical-align: super;
    }

    .footer-brand .brand-logo em {
        display: block;
        font-size: 24px;
        font-weight: 400;
        font-style: normal;
    }

    .footer-social {
        margin-top: 18px;
    }

    .footer-social a {
        display: inline-flex;
        width: 34px;
        height: 34px;
        align-items: center;
        justify-content: center;
        border: 1px solid #b10063;
        border-radius: 50%;
        margin-right: 8px;
        color: #b10063;
        font-size: 14px;
        transition: 0.3s ease;
    }

    .footer-social a:hover {
        background: #b10063;
        color: #fff;
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 18px;
        margin-bottom: 15px;
        color: #2b2b2b;
        font-family: 'Playfair Display', serif;
    }

    .footer-links ul {
        list-style: none;
        padding: 0;
    }

    .footer-links ul li {
        margin-bottom: 10px;
    }

    .footer-links a {
        text-decoration: none;
        font-size: 14px;
        color: #555;
    }

    .footer-links a:hover {
        color: #b10063;
    }

    .footer-contact p {
        font-size: 14px;
        color: #555;
        line-height: 1.6;
        margin-bottom: 10px;
    }

    .footer-bottom {
        margin-top: 40px;
        padding: 15px 0;
        border-top: 1px solid #e7caa0;
        text-align: center;
        font-size: 13px;
        color: #555;
    }

    /* =====================
   KUNDLI PAGE
===================== */
    .kundli-hero {
        text-align: center;
        padding: 80px 20px;
        background: linear-gradient(135deg, #fff8e6, #fff);
    }

    .kundli-hero h2 {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .kundli-hero h2::after {
        display: none;
    }

    .kundli-hero p {
        font-size: 17px;
        color: #555;
        max-width: 750px;
        margin: 15px auto 0;
    }

    .kundli-container {
        padding: 50px 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        max-width: 1100px;
        margin: auto;
    }

    .kundli-form,
    .kundli-result-box {
        background: #ffffff;
        padding: 30px;
        border-radius: 22px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    }

    .kundli-form h3,
    .kundli-result-box h3 {
        margin-bottom: 20px;
        margin-top: 0;
        color: #6b4f1d;
    }

    .kundli-form input,
    .kundli-form select,
    .kundli-form textarea {
        width: 100%;
        padding: 12px;
        margin-bottom: 14px;
        border-radius: 10px;
        border: 1px solid #ccc;
        font-size: 14px;
        font-family: 'Poppins', sans-serif;
    }

    .kundli-form button {
        width: 100%;
        background: linear-gradient(135deg, #f7c600, #d4af37);
        border: none;
        padding: 14px;
        border-radius: 30px;
        font-weight: 600;
        font-size: 15px;
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        font-family: 'Poppins', sans-serif;
    }

    .kundli-form button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
    }

    .kundli-result-box p {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .kundli-result-box strong {
        color: #6b4f1d;
    }

    .kundli-info {
        text-align: center;
        padding: 50px 20px;
        max-width: 1100px;
        margin: auto;
    }

    .kundli-info h2 {
        margin-bottom: 25px;
    }

    .info-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .info-grid div {
        background: #fff;
        padding: 18px;
        border-radius: 15px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
        font-size: 15px;
    }

    .kundli-cta {
        text-align: center;
        padding: 60px 20px;
        background: linear-gradient(135deg, #fff3cc, #fffdf8);
        margin-top: 20px;
    }

    .kundli-cta h2 {
        margin-bottom: 10px;
    }

    .kundli-cta p {
        margin-bottom: 20px;
    }

    .kundli-cta .cta-btn,
    .kundli-cta .whatsapp-btn {
        position: static;
        display: inline-block;
        margin: 8px;
    }

    .kundli-cta .whatsapp-btn {
        background: #25D366;
        color: #fff;
        padding: 12px 26px;
        border-radius: 30px;
        font-weight: 600;
        font-size: 15px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease;
    }

    .kundli-cta .whatsapp-btn:hover {
        transform: translateY(-3px);
        color: #fff;
    }

    .disclaimer {
        font-size: 13px;
        color: #777;
        margin-top: 15px;
    }

    .placeholder {
        color: #999;
        font-style: italic;
    }

    /* =====================
   VASTU PAGE
===================== */
    .vastu-pro-card {
        display: flex;
        align-items: center;
        gap: 50px;
        padding: 60px 20px;
        max-width: 1100px;
        margin: auto;
    }

    .vastu-pro-content {
        flex: 1;
    }

    .vastu-pro-image {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .vastu-pro-image img {
        width: 100%;
        max-width: 480px;
        height: auto;
        border-radius: 22px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    }

    .vastu-pro-card.reverse {
        flex-direction: row-reverse;
    }

    .vastu-pro-content ul {
        list-style: none;
        padding-left: 0;
        margin-top: 15px;
    }

    .vastu-pro-content ul li {
        position: relative;
        padding-left: 28px;
        margin-bottom: 10px;
    }

    .vastu-pro-content ul li::before {
        content: "✔";
        position: absolute;
        left: 0;
        color: #d4af37;
        font-weight: bold;
    }

    .vastu-form-section {
        padding: 60px 20px;
        background: #fffdf8;
    }

    .vastu-form-grid {
        max-width: 1100px;
        margin: auto;
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 30px;
    }

    .vastu-form-card,
    .vastu-info-card {
        background: #ffffff;
        padding: 35px;
        border-radius: 22px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    }

    .vastu-info-card {
        background: #fffaf0;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    }

    .form-subtitle {
        font-size: 14px;
        color: #666;
        margin-bottom: 22px;
    }

    .vastu-form-card input,
    .vastu-form-card select,
    .vastu-form-card textarea {
        width: 100%;
        padding: 12px 14px;
        margin-bottom: 14px;
        border-radius: 10px;
        border: 1px solid #ccc;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
    }

    .vastu-form-card button {
        width: 100%;
        padding: 14px;
        border: none;
        border-radius: 30px;
        background: linear-gradient(135deg, #f7c600, #d4af37);
        font-weight: 600;
        font-size: 15px;
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        font-family: 'Poppins', sans-serif;
    }

    .vastu-form-card button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
    }

    .form-note {
        font-size: 13px;
        color: #777;
        margin-top: 12px;
    }

    .vastu-info-card h3 {
        margin-top: 0;
    }

    .vastu-info-card ul {
        list-style: none;
        padding: 0;
        line-height: 1.9;
        font-size: 15px;
    }

    .vastu-info-card li {
        margin-bottom: 6px;
    }

    /* =====================
   NUMEROLOGY PAGE
===================== */
    .numerology-premium {
        max-width: 1100px;
        margin: 70px auto;
        padding: 0 20px;
    }

    .numerology-hero-card {
        background: linear-gradient(135deg, #fff6d5, #ffffff);
        padding: 40px;
        border-radius: 20px;
        text-align: center;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        margin-bottom: 50px;
    }

    .highlight-text {
        margin-top: 10px;
        font-weight: 500;
        color: #6b4f1d;
    }

    .numerology-flex {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-bottom: 40px;
    }

    .numerology-card {
        background: #ffffff;
        padding: 30px;
        border-radius: 18px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    }

    .numerology-card.wide {
        margin-bottom: 40px;
    }

    .numerology-card h3 {
        font-size: 22px;
        margin-bottom: 15px;
        margin-top: 0;
        color: #3a2c0f;
    }

    .numerology-card p,
    .numerology-card li {
        font-size: 15px;
        line-height: 1.8;
        color: #555;
    }

    .numerology-card ul {
        padding-left: 20px;
    }

    .numerology-points {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 15px;
    }

    .numerology-points span {
        background: #faf7f2;
        padding: 8px 14px;
        border-radius: 20px;
        font-size: 14px;
        color: #555;
    }

    .lucky-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
        margin-top: 20px;
    }

    .lucky-grid div {
        background: #faf7f2;
        padding: 15px;
        border-radius: 14px;
        text-align: center;
        font-size: 15px;
        color: #555;
    }

    .remedies {
        background: #fffaf0;
    }

    /* Numerology calculator result */
    .num-result-grid {
        display: grid;
        gap: 12px;
    }

    .num-result-item {
        background: #fff6d5;
        border-left: 4px solid #d4af37;
        padding: 12px 16px;
        border-radius: 0 8px 8px 0;
    }

    .num-result-item strong {
        color: #6b4f1d;
    }

    /* =====================
   TESTIMONIALS
===================== */
    .testimonials-section {
        padding: 80px 6%;
        background: #fffaf4;
    }

    .section-title {
        text-align: center;
        font-size: 36px;
        font-weight: 600;
        color: #2b2b2b;
        font-family: 'Playfair Display', serif;
    }

    .title-divider {
        width: 70px;
        height: 3px;
        background: #d4a017;
        margin: 10px auto 40px;
        border-radius: 2px;
    }

    .testimonial-wrapper {
        position: relative;
        overflow: hidden;
        padding: 0 60px;
        margin: 0 auto;
        max-width: 900px;
        /* keeps card from stretching too wide */
    }

    .testimonial-slider {
        display: flex;
        transition: transform 0.6s ease-in-out;
        gap: 0;
    }

    .testimonial-card {
        min-width: 100%;
        background: #9b0057;
        padding: 40px 45px;
        /* more breathing room inside */
        border-radius: 18px;
        color: #ffffff;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
        box-sizing: border-box;
        margin: 0 10px;
        /* gap between slides */
        min-width: calc(100% - 20px);
        /* account for the margin */
    }

    .testimonial-text {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 22px;
        color: #ffffff;
    }

    .testimonial-client {
        display: flex;
        gap: 8px;
        align-items: center;
        margin-bottom: 6px;
    }

    .client-name {
        font-weight: 600;
        color: #ffd27d;
    }

    .client-location {
        font-size: 14px;
        color: #f3e1c3;
    }

    .testimonial-service {
        font-size: 14px;
        color: #ffe7b3;
    }

    .nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: #9b0057;
        color: #fff;
        border: none;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        cursor: pointer;
        z-index: 10;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
        font-size: 16px;
    }

    .nav-btn.left {
        left: 10px;
    }

    .nav-btn.right {
        right: 10px;
    }

    .nav-btn:hover {
        background: #d4a017;
    }

    .slider-dots {
        text-align: center;
        margin-top: 25px;
    }

    .slider-dots span {
        width: 10px;
        height: 10px;
        background: #ccc;
        border-radius: 50%;
        display: inline-block;
        margin: 0 5px;
        cursor: pointer;
        transition: background 0.3s;
    }

    .slider-dots .active {
        background: #9b0057;
    }

    /* =====================
   VIDEO SECTION
===================== */
    .videos-section {
        padding: 80px 6%;
        background: #fffaf4;
    }

    .video-slider-wrapper {
        position: relative;
        overflow: hidden;
        padding: 0 60px;
    }

    .video-slider {
        display: flex;
        gap: 25px;
        transition: transform 0.6s ease;
    }

    .video-card {
        min-width: 320px;
        border-radius: 18px;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        background: #000;
        display: block;
    }

    .video-card img {
        width: 100%;
        height: auto;
        display: block;
    }

    .video-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: #9b0057;
        color: #fff;
        border: none;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        cursor: pointer;
        z-index: 10;
        font-size: 16px;
    }

    .video-nav.prev {
        left: 10px;
    }

    .video-nav.next {
        right: 10px;
    }

    .video-nav:hover {
        background: #d4a017;
    }

    .video-dots {
        text-align: center;
        margin-top: 25px;
    }

    .video-dots span {
        width: 10px;
        height: 10px;
        background: #ccc;
        border-radius: 50%;
        display: inline-block;
        margin: 0 6px;
        cursor: pointer;
    }

    .video-dots .active {
        background: #9b0057;
    }

    /* =====================
   PAGE WRAPPER (Privacy/Terms)
===================== */
    .page-wrapper {
        max-width: 1100px;
        margin: auto;
        padding: 40px 20px;
    }

    /* =====================
   MOBILE RESPONSIVE
===================== */
    @media (max-width: 768px) {

        /* Hamburger show */
        .hamburger {
            display: flex;
        }

        /* Nav collapse */
        nav {
            display: none;
            flex-direction: column;
            gap: 5px;
            padding: 10px 0;
        }

        nav.open {
            display: flex;
        }

        nav a {
            display: block;
            margin: 3px auto;
            text-align: center;
            width: fit-content;
        }

        /* Hero */
        .hero.profile {
            flex-direction: column;
            text-align: center;
        }

        .hero img {
            width: 200px;
            height: 200px;
        }

        /* Headings center underline */
        h2::after {
            left: 50%;
            transform: translateX(-50%);
            font-size: 11px;
            letter-spacing: 3px;
        }

        /* Kundli */
        .kundli-container {
            grid-template-columns: 1fr;
            padding: 30px 15px;
        }

        /* Vastu */
        .vastu-pro-card,
        .vastu-pro-card.reverse {
            flex-direction: column;
            text-align: center;
        }

        .vastu-pro-image img {
            max-width: 100%;
        }

        .vastu-form-grid {
            grid-template-columns: 1fr;
        }

        /* Testimonials */
        .testimonial-wrapper {
            padding: 0 50px;
        }

        .testimonial-card {
            padding: 25px;
        }

        .nav-btn {
            width: 36px;
            height: 36px;
        }

        /* Video */
        .video-card {
            min-width: 85%;
        }

        .video-slider-wrapper {
            padding: 0 50px;
        }

        /* Logo */
        .logo h1 {
            font-size: 30px;
        }

        .kundli-hero h2 {
            font-size: 28px;
        }

        /* Footer */
        .footer-inner {
            gap: 30px;
        }

        /* Numerology */
        .numerology-hero-card {
            padding: 30px 20px;
        }
    }

    /* =====================
   STATS BAR
===================== */
    .stats-bar {
        background: linear-gradient(135deg, #9b0057, #6b003d);
        padding: 0;
    }

    .stats-inner {
        max-width: 1100px;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: space-around;
        padding: 40px 20px;
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-item {
        text-align: center;
        flex: 1;
        min-width: 120px;
    }

    .stat-top {
        display: flex;
        align-items: baseline;
        justify-content: center;
        gap: 2px;
    }

    .stat-number {
        font-family: 'Playfair Display', serif;
        font-size: 48px;
        font-weight: 600;
        color: #f7c600;
        line-height: 1;
    }

    .stat-plus {
        font-family: 'Playfair Display', serif;
        font-size: 32px;
        font-weight: 600;
        color: #f7c600;
    }

    .stat-label {
        display: block;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.85);
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-top: 8px;
        font-family: 'Poppins', sans-serif;
    }

    .stat-divider {
        width: 1px;
        height: 60px;
        background: rgba(255, 255, 255, 0.2);
        flex-shrink: 0;
    }

    @media (max-width: 600px) {
        .stats-inner {
            padding: 30px 15px;
            gap: 10px;
        }

        .stat-number {
            font-size: 36px;
        }

        .stat-plus {
            font-size: 24px;
        }

        .stat-divider {
            display: none;
        }

        .stat-item {
            min-width: calc(50% - 20px);
        }
    }

    /* =====================
   FAQ SECTION
===================== */
    .faq-section {
        max-width: 1100px;
        margin: auto;
        padding: 60px 20px;
    }

    .faq-subtitle {
        color: #888;
        font-size: 15px;
        margin-bottom: 40px;
        margin-top: -10px;
    }

    .faq-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
        max-width: 860px;
        margin: 0 auto;
    }

    .faq-item {
        background: #ffffff;
        border-radius: 14px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
        overflow: hidden;
        border: 1px solid #f0e8d8;
        transition: box-shadow 0.3s ease;
    }

    .faq-item:hover {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
    }

    .faq-question {
        width: 100%;
        background: none;
        border: none;
        padding: 20px 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        text-align: left;
        font-family: 'Poppins', sans-serif;
        font-size: 15px;
        font-weight: 500;
        color: #3a2c0f;
        gap: 16px;
        transition: background 0.2s ease;
    }

    .faq-question:hover {
        background: #fffaf0;
    }

    .faq-question[aria-expanded="true"] {
        background: #fffaf0;
        color: #9b0057;
    }

    .faq-icon {
        font-size: 22px;
        font-weight: 400;
        color: #d4af37;
        flex-shrink: 0;
        transition: transform 0.3s ease;
        line-height: 1;
    }

    .faq-question[aria-expanded="true"] .faq-icon {
        color: #9b0057;
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.3s ease;
        padding: 0 24px;
    }

    .faq-answer.open {
        max-height: 300px;
        padding: 0 24px 20px;
    }

    .faq-answer p {
        font-size: 14px;
        line-height: 1.8;
        color: #666;
        border-top: 1px solid #f0e8d8;
        padding-top: 16px;
        margin: 0;
    }

    .faq-answer a {
        color: #9b0057;
        font-weight: 500;
        text-decoration: underline;
        font-size: 14px;
    }

    @media (max-width: 768px) {
        .faq-question {
            padding: 16px 18px;
            font-size: 14px;
        }

        .faq-answer {
            padding: 0 18px;
        }

        .faq-answer.open {
            padding: 0 18px 16px;
        }
    }

    /* =====================
   PRICING SECTION
===================== */
    .pricing-section {
        max-width: 1100px;
        margin: auto;
        padding: 60px 20px;
    }

    .pricing-subtitle {
        color: #777;
        font-size: 15px;
        margin-top: -10px;
        margin-bottom: 36px;
        max-width: 680px;
        line-height: 1.8;
    }

    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(195px, 1fr));
        gap: 24px;
        align-items: start;
        max-width: 1100px;
        margin: 0 auto;
    }

    .pricing-card {
        background: #fff;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
        border: 1.5px solid #f0e8d8;
        transition: transform 0.35s, box-shadow 0.35s;
        position: relative;
        display: flex;
        flex-direction: column;
    }

    .pricing-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 24px 56px rgba(0, 0, 0, 0.13);
    }

    .pricing-card.popular {
        border-color: #9b0057;
        box-shadow: 0 8px 32px rgba(155, 0, 87, 0.15);
    }

    .pricing-card.popular:hover {
        box-shadow: 0 24px 56px rgba(155, 0, 87, 0.25);
    }

    .card-band {
        height: 6px;
        background: linear-gradient(90deg, #e8d9b0, #d4af37);
    }

    .pricing-card.popular .card-band {
        background: linear-gradient(90deg, #9b0057, #d4af37, #9b0057);
    }

    .popular-badge {
        position: absolute;
        top: 18px;
        right: -1px;
        background: linear-gradient(135deg, #9b0057, #c0006e);
        color: #fff;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.5px;
        padding: 5px 14px 5px 12px;
        border-radius: 20px 0 0 20px;
    }

    .pricing-header {
        padding: 28px 24px 20px;
        border-bottom: 1px solid #f5eedf;
        text-align: center;
    }

    .pricing-icon {
        font-size: 38px;
        display: block;
        margin-bottom: 10px;
    }

    .pricing-header h3 {
        font-family: 'Playfair Display', serif;
        font-size: 19px;
        color: #2a1000;
        margin-bottom: 14px;
    }

    .pricing-price {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 2px;
        margin-bottom: 4px;
    }

    .price-currency {
        font-size: 18px;
        color: #9b0057;
        font-weight: 700;
        line-height: 2;
    }

    .price-amount {
        font-family: 'Playfair Display', serif;
        font-size: 50px;
        font-weight: 700;
        color: #9b0057;
        line-height: 1;
    }

    .price-duration {
        font-size: 12px;
        color: #aaa;
        align-self: flex-end;
        margin-bottom: 6px;
    }

    .price-tagline {
        font-size: 12px;
        color: #aaa;
        font-style: italic;
        margin: 0;
    }

    .pricing-features {
        list-style: none;
        padding: 20px 24px;
        margin: 0;
        flex: 1;
    }

    .pricing-features li {
        font-size: 13px;
        padding: 7px 0;
        border-bottom: 1px dashed #f0e8d8;
        color: #555;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .pricing-features li:last-child {
        border-bottom: none;
    }

    .pricing-features li.included::before {
        content: "✓";
        color: #9b0057;
        font-weight: 700;
        flex-shrink: 0;
    }

    .pricing-features li.not-included {
        color: #bbb;
    }

    .pricing-features li.not-included::before {
        content: "✗";
        color: #ddd;
        flex-shrink: 0;
    }

    .pricing-card-footer {
        padding: 0 24px 28px;
    }

    .pricing-btn {
        display: block;
        width: 100%;
        padding: 13px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 600;
        text-align: center;
        text-decoration: none;
        transition: all 0.3s;
        font-family: 'Poppins', sans-serif;
        border: 1.5px solid #d4af37;
        color: #6b4f1d;
        background: #fffaf0;
        box-sizing: border-box;
    }

    .pricing-btn:hover {
        background: linear-gradient(135deg, #f7c600, #d4af37);
        color: #000;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    }

    .pricing-card.popular .pricing-btn {
        background: linear-gradient(135deg, #9b0057, #c0006e);
        color: #fff;
        border-color: transparent;
        box-shadow: 0 6px 18px rgba(155, 0, 87, 0.3);
    }

    .pricing-card.popular .pricing-btn:hover {
        background: linear-gradient(135deg, #c0006e, #9b0057);
        box-shadow: 0 10px 26px rgba(155, 0, 87, 0.4);
    }

    .pricing-note {
        max-width: 760px;
        margin: 40px auto 0;
        background: #fff;
        border-radius: 16px;
        padding: 22px 28px;
        border-left: 4px solid #d4af37;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    }

    .pricing-note p {
        font-size: 14px;
        color: #666;
        margin: 0;
        line-height: 1.8;
    }

    @media (max-width: 768px) {
        .pricing-grid {
            grid-template-columns: 1fr 1fr;
        }

        .price-amount {
            font-size: 42px;
        }
    }

    @media (max-width: 480px) {
        .pricing-grid {
            grid-template-columns: 1fr;
            max-width: 420px;
            margin: 0 auto;
        }
    }

    /* =====================
   CALENDLY SECTION
===================== */
    .calendly-section {
        max-width: 1100px;
        margin: auto;
        padding: 60px 20px 20px;
    }

    .calendly-subtitle {
        color: #777;
        font-size: 15px;
        margin-top: -10px;
        margin-bottom: 36px;
        max-width: 680px;
        line-height: 1.8;
    }

    .calendly-wrapper {
        background: #ffffff;
        border-radius: 22px;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.09);
        overflow: hidden;
        border: 1px solid #f0e8d8;
    }

    .calendly-inline-widget {
        border: none;
    }

    .calendly-fallback {
        text-align: center;
        margin-top: 16px;
        font-size: 13px;
        color: #999;
    }

    .calendly-fallback a {
        color: #9b0057;
        font-weight: 500;
        text-decoration: underline;
        font-size: 13px;
    }

    @media (max-width: 768px) {
        .calendly-inline-widget {
            height: 1050px !important;
        }
    }

    /* =====================
   KUNDLI MATCHING PAGE
===================== */

    /* INTRO GRID */
    .km-intro {
        max-width: 1100px;
        margin: auto;
        padding: 50px 20px;
    }

    .km-intro-grid {
        display: grid;
        grid-template-columns: 1.4fr 0.6fr;
        gap: 50px;
        align-items: center;
    }

    .km-intro-text p {
        margin-bottom: 16px;
    }

    .km-intro-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .km-stat-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 22px 16px;
        text-align: center;
        box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
        border-top: 4px solid #d4af37;
    }

    .km-stat-number {
        display: block;
        font-family: 'Playfair Display', serif;
        font-size: 36px;
        font-weight: 600;
        color: #9b0057;
        line-height: 1;
        margin-bottom: 8px;
    }

    .km-stat-label {
        font-size: 12px;
        color: #888;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        line-height: 1.4;
    }

    /* 8 GUNAS GRID */
    .km-gunas-section {
        background: #fffaf0;
        padding: 60px 20px;
    }

    .km-gunas-section h2 {
        text-align: center;
        max-width: 1100px;
        margin: 0 auto 10px;
    }

    .km-gunas-section>p {
        text-align: center;
        max-width: 1100px;
        margin: 0 auto 30px;
    }

    .km-gunas-grid {
        max-width: 1100px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }

    .km-guna-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 24px 20px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
        position: relative;
        border-left: 4px solid #d4af37;
        transition: transform 0.3s ease;
    }

    .km-guna-card:hover {
        transform: translateY(-4px);
    }

    .guna-number {
        position: absolute;
        top: 16px;
        right: 16px;
        background: linear-gradient(135deg, #f7c600, #d4af37);
        color: #000;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        font-weight: 700;
    }

    .km-guna-card h4 {
        font-size: 17px;
        margin-bottom: 8px;
        margin-top: 0;
        color: #6b4f1d;
    }

    .km-guna-card p {
        font-size: 13px;
        color: #777;
        margin: 0;
    }

    /* CALCULATOR */
    .km-calculator-section {
        max-width: 1100px;
        margin: auto;
        padding: 60px 20px;
    }

    .km-calc-subtitle {
        color: #777;
        margin-bottom: 40px;
        margin-top: -10px;
        max-width: 700px;
        line-height: 1.8;
    }

    .km-calculator-box {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        gap: 30px;
        align-items: start;
        background: #ffffff;
        border-radius: 24px;
        padding: 40px;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.09);
        border: 1px solid #f0e8d8;
    }

    .km-person-form {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .km-person-label {
        font-weight: 600;
        font-size: 16px;
        padding: 10px 16px;
        border-radius: 30px;
        text-align: center;
        margin-bottom: 6px;
        font-family: 'Playfair Display', serif;
    }

    .km-person-label.bride {
        background: #ffeef8;
        color: #9b0057;
    }

    .km-person-label.groom {
        background: #eef3ff;
        color: #2c5282;
    }

    .km-person-form label {
        font-size: 13px;
        font-weight: 500;
        color: #6b4f1d;
        margin-top: 4px;
    }

    .km-person-form input,
    .km-person-form select {
        padding: 11px 14px;
        border-radius: 10px;
        border: 1px solid #e0d5c5;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        background: #faf7f2;
        color: #3a2c0f;
        transition: border-color 0.2s ease;
    }

    .km-person-form input:focus,
    .km-person-form select:focus {
        outline: none;
        border-color: #d4af37;
        background: #fff;
    }

    .km-vs-divider {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 60px;
    }

    .km-vs-circle {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #9b0057, #c0006e);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 14px;
        box-shadow: 0 6px 18px rgba(155, 0, 87, 0.3);
    }

    .km-calc-btn {
        background: linear-gradient(135deg, #9b0057, #c0006e);
        color: #fff;
        border: none;
        padding: 16px 48px;
        border-radius: 40px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        font-family: 'Poppins', sans-serif;
        box-shadow: 0 8px 22px rgba(155, 0, 87, 0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .km-calc-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 30px rgba(155, 0, 87, 0.4);
    }

    /* RESULT BOX */
    .km-result-box {
        margin-top: 40px;
        background: #ffffff;
        border-radius: 24px;
        padding: 40px;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.09);
        border: 1px solid #f0e8d8;
        animation: fadeUp 0.5s ease both;
    }

    .km-result-header {
        display: flex;
        align-items: center;
        gap: 40px;
        margin-bottom: 30px;
        flex-wrap: wrap;
    }

    .km-result-header h3 {
        font-size: 26px;
        margin: 0;
        color: #3a2c0f;
        flex: 1;
        min-width: 200px;
    }

    .km-score-circle {
        position: relative;
        width: 120px;
        height: 120px;
        flex-shrink: 0;
    }

    .km-score-circle svg {
        width: 100%;
        height: 100%;
    }

    .km-score-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
    }

    #kmScoreDisplay {
        font-family: 'Playfair Display', serif;
        font-size: 32px;
        font-weight: 600;
        color: #3a2c0f;
        display: block;
        line-height: 1;
    }

    .km-score-total {
        font-size: 13px;
        color: #aaa;
    }

    .km-result-badge {
        display: inline-block;
        padding: 8px 20px;
        border-radius: 30px;
        font-weight: 600;
        font-size: 14px;
        margin-bottom: 16px;
    }

    .km-result-advice {
        font-size: 15px;
        color: #555;
        line-height: 1.8;
        margin-bottom: 24px;
    }

    .km-koota-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 12px;
        margin-bottom: 24px;
    }

    .km-koota-item {
        background: #faf7f2;
        border-radius: 10px;
        padding: 12px 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .koota-name {
        font-size: 13px;
        color: #6b4f1d;
        font-weight: 500;
    }

    .koota-score {
        font-size: 14px;
        font-weight: 700;
        color: #9b0057;
    }

    .km-disclaimer-box {
        background: #fff8e6;
        border-left: 4px solid #f7c600;
        border-radius: 0 10px 10px 0;
        padding: 14px 18px;
        font-size: 13px;
        color: #776020;
        line-height: 1.7;
        margin-bottom: 0;
    }

    .km-result-cta {
        margin-top: 30px;
        padding-top: 24px;
        border-top: 1px solid #f0e8d8;
        text-align: center;
    }

    .km-result-cta p {
        font-size: 14px;
        color: #777;
        max-width: 600px;
        margin: 0 auto 20px;
        line-height: 1.8;
    }

    /* SCORE GUIDE TABLE */
    .km-score-guide {
        background: #fffaf0;
        padding: 60px 20px;
    }

    .km-score-guide h2 {
        max-width: 1100px;
        margin: 0 auto 30px;
    }

    .km-score-table {
        max-width: 800px;
        margin: 0 auto;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    .km-score-row {
        display: grid;
        grid-template-columns: 160px 1fr 1fr;
        gap: 0;
        background: #fff;
        border-bottom: 1px solid #f0e8d8;
    }

    .km-score-row:last-child {
        border-bottom: none;
    }

    .km-score-row.header-row {
        background: #9b0057;
        color: #fff;
        font-weight: 600;
        font-size: 14px;
    }

    .km-score-row span {
        padding: 16px 20px;
        font-size: 14px;
        color: #555;
        border-right: 1px solid #f0e8d8;
    }

    .km-score-row.header-row span {
        color: #fff;
        border-color: rgba(255, 255, 255, 0.2);
    }

    .km-score-row span:last-child {
        border-right: none;
    }

    .score-range {
        font-weight: 700 !important;
        border-radius: 6px;
    }

    .score-range.bad {
        color: #e74c3c !important;
    }

    .score-range.average {
        color: #e67e22 !important;
    }

    .score-range.good {
        color: #27ae60 !important;
    }

    .score-range.excellent {
        color: #9b0057 !important;
    }

    .km-score-note {
        max-width: 800px;
        margin: 24px auto 0;
        font-size: 14px;
        color: #777;
        line-height: 1.8;
        text-align: center;
    }

    /* MANGAL DOSHA */
    .km-mangal-section {
        max-width: 1100px;
        margin: auto;
        padding: 60px 20px;
    }

    .km-mangal-grid {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 50px;
        align-items: start;
    }

    .km-mangal-content p {
        margin-bottom: 16px;
    }

    .km-mangal-points {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 20px;
    }

    .km-mangal-points span {
        background: #faf7f2;
        padding: 8px 14px;
        border-radius: 20px;
        font-size: 13px;
        color: #6b4f1d;
        border: 1px solid #e8d9b0;
    }

    .km-mangal-houses h4 {
        margin-top: 0;
        margin-bottom: 16px;
        font-size: 16px;
    }

    .houses-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .house-box {
        background: #f5f5f5;
        border-radius: 8px;
        padding: 12px 8px;
        text-align: center;
        font-size: 13px;
        font-weight: 600;
        color: #aaa;
    }

    .house-box.active {
        background: #ffeef8;
        color: #9b0057;
        border: 1px solid #f0c0d8;
    }

    /* EXPERT SECTION */
    .km-expert-section {
        background: #fffaf0;
        padding: 60px 20px;
    }

    .km-expert-section h2 {
        max-width: 1100px;
        margin: 0 auto 36px;
    }

    .km-expert-grid {
        max-width: 1100px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
        gap: 24px;
    }

    .km-expert-card {
        background: #fff;
        border-radius: 18px;
        padding: 30px 24px;
        box-shadow: 0 8px 22px rgba(0, 0, 0, 0.07);
        text-align: center;
        transition: transform 0.3s ease;
    }

    .km-expert-card:hover {
        transform: translateY(-4px);
    }

    .expert-icon {
        font-size: 36px;
        display: block;
        margin-bottom: 14px;
    }

    .km-expert-card h4 {
        font-size: 17px;
        margin-bottom: 10px;
        margin-top: 0;
    }

    .km-expert-card p {
        font-size: 14px;
        color: #777;
        margin: 0;
    }

    /* MOBILE */
    @media (max-width: 768px) {
        .km-intro-grid {
            grid-template-columns: 1fr;
        }

        .km-intro-stats {
            grid-template-columns: 1fr 1fr;
        }

        .km-calculator-box {
            grid-template-columns: 1fr;
            padding: 24px 18px;
        }

        .km-vs-divider {
            padding: 10px 0;
        }

        .km-vs-circle {
            width: 40px;
            height: 40px;
            font-size: 12px;
        }

        .km-result-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
        }

        .km-mangal-grid {
            grid-template-columns: 1fr;
        }

        .km-score-row {
            grid-template-columns: 120px 1fr;
        }

        .km-score-row span:nth-child(3) {
            display: none;
        }
    }

    /* =====================
   KUNDLI MATCHING - TIME & SUMMARY ADDITIONS
===================== */
    .optional-tag {
        font-size: 11px;
        color: #aaa;
        font-weight: 400;
        font-family: 'Poppins', sans-serif;
    }

    .km-time-note {
        max-width: 860px;
        margin: 20px auto 0;
        background: #fffaf0;
        border-left: 4px solid #d4af37;
        border-radius: 0 10px 10px 0;
        padding: 14px 18px;
        font-size: 13px;
        color: #776020;
        line-height: 1.7;
    }

    .km-result-summary {
        margin-bottom: 24px;
        padding-bottom: 20px;
        border-bottom: 1px solid #f0e8d8;
    }

    .km-summary-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .km-summary-col {
        background: #faf7f2;
        border-radius: 14px;
        padding: 18px 20px;
    }

    .km-summary-col h4 {
        font-size: 16px;
        margin: 0 0 12px;
        color: #3a2c0f;
    }

    .km-summary-col.bride-col {
        border-top: 3px solid #f0c0d8;
    }

    .km-summary-col.groom-col {
        border-top: 3px solid #c0d0f0;
    }

    .km-summary-col p {
        font-size: 13px;
        color: #666;
        margin: 5px 0;
    }

    .km-summary-col p strong {
        color: #3a2c0f;
    }

    @media (max-width: 600px) {
        .km-summary-grid {
            grid-template-columns: 1fr;
        }
    }