/* ════════════════════════════════════════════════════════
   MAA KALI DIVYA JYOTISH  —  TEMPLE LEGACY  v4.0
   Theme: Warm Ivory + Deep Crimson + Temple Gold
   ════════════════════════════════════════════════════════ */

:root {
    /* Light sections */
    --ivory: #ffffff;
    --ivory2: #f8f4ef;
    --ivory3: #ede0c8;

    /* Dark sections — clean black (no maroon tint) */
    --dark: #0f0f0f;
    --dark2: #1a1a1a;
    --dark3: #262626;

    /* Primary — Red/Crimson */
    --red: #b8111e;
    --red2: #d41828;
    --red-dk: #8b0010;

    /* Gold — kept for decorative accents */
    --gold: #c89418;
    --gold2: #e8b040;
    --gold3: #a87810;

    /* Green — trust & success accents */
    --green: #166534;
    --green2: #16a34a;
    --green-lt: #f0fdf4;

    /* Text */
    --txt-dk: #111111;
    --txt-lt: #f8f8f8;
    --mut-dk: #3a3a3a;
    --mut-lt: #b0b0b0;

    /* UI */
    --bd-gold: rgba(200, 148, 24, 0.2);
    --bd-red: rgba(184, 17, 30, 0.2);
    --bl-dark: rgba(255, 255, 255, 0.08);
    --glow-r: rgba(184, 17, 30, 0.2);
    --glow-g: rgba(200, 148, 24, 0.2);
}

/* ─── RESET ──────────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
    font-family: "Lato", "Noto Sans Devanagari", sans-serif;
    font-size: 16px;
    line-height: 1.9;
    color: var(--txt-dk);
    background: var(--ivory);
    overflow-x: hidden;
}
p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--txt-dk);
}
img,
video,
iframe {
    max-width: 100%;
}
a {
    text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Cinzel", serif;
    font-weight: 400;
}

/* ─── UTILITIES ──────────────────────────────────────── */
.mk-sub-light {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4.5px;
    text-transform: uppercase;
    color: var(--gold2);
    font-family: "Lato", sans-serif;
    margin-bottom: 12px;
}
.mk-sub-dark {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4.5px;
    text-transform: uppercase;
    color: var(--gold);
    font-family: "Lato", sans-serif;
    margin-bottom: 12px;
}
.mk-orn {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
}
.mk-orn-line-g {
    flex: 0 0 36px;
    height: 1px;
    background: var(--gold);
    opacity: 0.6;
}
.mk-orn-line-r {
    flex: 0 0 36px;
    height: 1px;
    background: var(--red);
    opacity: 0.6;
}
.mk-orn-dia-g {
    width: 7px;
    height: 7px;
    transform: rotate(45deg);
    background: var(--gold);
    flex-shrink: 0;
}
.mk-orn-dia-r {
    width: 7px;
    height: 7px;
    transform: rotate(45deg);
    background: var(--red);
    flex-shrink: 0;
}
.mk-gold-italic {
    color: var(--gold);
    font-style: italic;
}
.mk-red-italic {
    color: var(--red2);
    font-style: italic;
}
.mk-sec-dark h2 {
    color: var(--ivory);
}
.mk-sec-light h2 {
    color: var(--txt-dk);
}

/* ─── BUTTONS ────────────────────────────────────────── */
.mk-btn-crimson {
    display: inline-block;
    background: linear-gradient(135deg, var(--red) 0%, var(--red2) 100%);
    color: #fff;
    padding: 14px 38px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: "Lato", sans-serif;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}
.mk-btn-crimson:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px var(--glow-r);
    color: #fff;
}

.mk-btn-gold {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
    color: #000;
    padding: 14px 38px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: "Lato", sans-serif;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}
.mk-btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px var(--glow-g);
    color: #000;
}

.mk-btn-outline-light {
    display: inline-block;
    background: transparent;
    color: var(--ivory);
    padding: 13px 36px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: "Lato", sans-serif;
    border: 1.5px solid rgba(242, 224, 192, 0.4);
    cursor: pointer;
    transition: all 0.3s;
}
.mk-btn-outline-light:hover {
    border-color: var(--gold2);
    color: var(--gold2);
}

.mk-btn-outline-dark {
    display: inline-block;
    background: transparent;
    color: var(--red);
    padding: 13px 36px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: "Lato", sans-serif;
    border: 1.5px solid rgba(184, 17, 30, 0.4);
    cursor: pointer;
    transition: all 0.3s;
}
.mk-btn-outline-dark:hover {
    border-color: var(--red);
    background: var(--red);
    color: #fff;
}

/* ─── TOPBAR ─────────────────────────────────────────── */
.mk-topbar {
    background: var(--red-dk);
    color: rgba(255, 255, 255, 0.8);
    padding: 9px 0;
    font-size: 15px;
    letter-spacing: 0.8px;
}
.mk-topbar a {
    color: var(--gold2);
    text-decoration: none;
    transition: color 0.2s;
}
.mk-topbar a:hover {
    color: #fff;
}
@media (max-width: 767px) {
    .mk-topbar {
        display: none;
    }
}

/* ─── NAVBAR ─────────────────────────────────────────── */
.mk-nav {
    /* background: rgba(24, 0, 8, 0.98); */
    background: #fff;
    border-bottom: 1px solid var(--bd-gold);
    position: sticky;
    top: 0;
    z-index: 998;
    padding: 14px 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}
.mk-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mk-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}
.mk-brand-emblem {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid var(--bd-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gold2);
    flex-shrink: 0;
    background: radial-gradient(
        circle,
        rgba(200, 148, 24, 0.12) 0%,
        transparent 70%
    );
}
.mk-brand-name {
    font-family: "Cinzel", serif;
    font-size: 22px;
    color: var(--red);
    letter-spacing: 0.5px;
    line-height: 1.3;
    font-weight: 800;
}
.mk-brand-name em {
    color: var(--gold2);
    font-style: normal;
}
.mk-brand-sub {
    display: block;
    font-size: 8.5px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--dark);
    font-family: "Lato", sans-serif;
    margin-top: 2px;
    font-weight: 800;
}
.mk-links {
    display: flex;
    align-items: center;
}
.mk-link {
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--red-dk) !important;
    padding: 8px 14px !important;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    border-bottom: 1px solid transparent;
    transition:
        color 0.2s,
        border-color 0.2s;
}
.mk-link:hover,
.mk-link.active {
    color: var(--red) !important;
    border-bottom-color: var(--red);
}
.mk-nav-cta {
    background: var(--red) !important;
    color: #fff !important;
    padding: 9px 20px !important;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: "Lato", sans-serif;
    transition: background 0.3s !important;
    border-bottom: none !important;
    margin-left: 8px;
}
.mk-nav-cta:hover {
    background: var(--red2) !important;
    color: #fff !important;
}
.mk-drop {
    position: relative;
    align-self: stretch;
    display: flex;
    align-items: center;
}
.mk-drop-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    background: #fff;
    border: 1px solid var(--ivory3);
    border-top: 3px solid var(--red);
    min-width: 230px;
    padding: 8px 0;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.2s,
        transform 0.2s;
    z-index: 100;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.14);
}
.mk-drop:hover .mk-drop-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.mk-drop-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--mut-dk);
    font-family: "Lato", sans-serif;
    font-weight: 600;
    border-left: 2px solid transparent;
    transition: all 0.2s;
}
.mk-drop-menu a:hover {
    color: var(--red);
    background: var(--ivory2);
    border-left-color: var(--red);
}
.mk-drop-menu a i {
    width: 16px;
    color: var(--red);
    margin-right: 8px;
    font-size: 12px;
}
.mk-nav-icons {
    display: flex;
    align-items: center;
    gap: 18px;
}
.mk-nav-icon {
    font-size: 16px;
    color: var(--red);
    transition: color 0.2s;
    cursor: pointer;
}
.mk-nav-icon:hover {
    color: var(--gold2);
}

/* Wide dropdown for Samasya */
.mk-drop-menu-wide {
    min-width: 280px;
    max-width: 320px;
    max-height: 420px;
    overflow-y: auto;
}
.mk-drop-menu-wide::-webkit-scrollbar {
    width: 4px;
}
.mk-drop-menu-wide::-webkit-scrollbar-thumb {
    background: var(--bd-gold);
}
.mk-drop-menu-title {
    display: block;
    padding: 10px 20px 8px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    font-family: "Lato", sans-serif;
    font-weight: 700;
    border-bottom: 1px solid var(--ivory3);
    margin-bottom: 4px;
}
.mk-drop-view-all {
    border-top: 1px solid var(--ivory3) !important;
    color: var(--red) !important;
    margin-top: 4px;
    font-style: italic;
}
/* xl breakpoint for nav */
@media (max-width: 1199px) {
    .d-xl-flex {
        display: none !important;
    }
    .d-xl-none {
        display: flex !important;
    }
    .d-xl-block {
        display: none !important;
    }
}
.mk-hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.mk-hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--red-dk);
    transition: all 0.3s;
}
.mk-hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(4.7px, 4.7px);
}
.mk-hamburger.open span:nth-child(2) {
    opacity: 0;
}
.mk-hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(4.7px, -4.7px);
}
.mk-mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 88vw);
    height: 100vh;
    background: var(--dark2);
    border-left: 1px solid var(--bd-gold);
    z-index: 9999;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.mk-mobile-nav.open {
    right: 0;
}
.mk-mobile-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--bl-dark);
}
.mk-mobile-close {
    background: none;
    border: none;
    color: var(--mut-lt);
    font-size: 18px;
    cursor: pointer;
}
.mk-mobile-links {
    flex: 1;
    padding: 12px 0;
}
.mk-mobile-link {
    display: block;
    padding: 14px 24px;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mut-lt);
    font-family: "Lato", sans-serif;
    font-weight: 700;
    border-bottom: 1px solid var(--bl-dark);
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s;
}
.mk-mobile-link:hover,
.mk-mobile-link.active {
    color: var(--gold2);
}
.mk-mobile-accord-body {
    display: none;
    background: rgba(200, 148, 24, 0.03);
}
.mk-mobile-accord-body.open {
    display: block;
}
.mk-mobile-sub {
    display: block;
    padding: 10px 24px 10px 36px;
    font-size: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--mut-lt);
    font-family: "Lato", sans-serif;
    transition: color 0.2s;
}
.mk-mobile-sub:hover {
    color: var(--gold2);
}
.mk-mobile-footer {
    padding: 24px;
    border-top: 1px solid var(--bl-dark);
}
.mk-mobile-footer p {
    font-size: 15px;
    color: var(--mut-lt);
    margin-bottom: 8px;
}
.mk-mobile-footer a {
    color: var(--gold2);
}
.mk-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.mk-overlay.open {
    opacity: 1;
    pointer-events: auto;
}
.mk-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(200, 148, 24, 0.1);
    color: var(--mut-lt);
    font-size: 15px;
    margin-right: 6px;
    text-decoration: none;
    border: 1px solid var(--bd-gold);
    transition: all 0.3s;
}
.mk-socials a:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

/* ══ FLOATING CALL BUTTON ════════════════════════════ */
.mk-float-wrap {
    position: fixed;
    right: 20px;
    bottom: 80px;
    z-index: 9996;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}
.mk-float-call {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--red);
    color: #fff;
    padding: 11px 18px;
    font-family: "Lato", sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-left: 3px solid var(--gold);
    box-shadow: 0 6px 24px rgba(184, 17, 30, 0.55);
    transition: all 0.3s;
    animation: callPulse 2.5s ease-in-out infinite;
}
.mk-float-call:hover {
    background: var(--red2);
    color: #fff;
    transform: translateX(-4px);
    box-shadow: 0 8px 30px rgba(184, 17, 30, 0.7);
}
.mk-float-call i {
    font-size: 16px;
}
.mk-float-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.5);
    transition: all 0.3s;
}
.mk-float-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
    color: #fff;
}
@keyframes callPulse {
    0%,
    100% {
        box-shadow: 0 6px 24px rgba(184, 17, 30, 0.55);
    }
    50% {
        box-shadow:
            0 6px 24px rgba(184, 17, 30, 0.55),
            0 0 0 8px rgba(184, 17, 30, 0.12);
    }
}

/* ══ HERO — DARK CRIMSON ════════════════════════════ */
.mk-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}
.mk-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.mk-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    opacity: 1;
    display: block;
    -webkit-mask-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.22) 0%,
        rgba(0, 0, 0, 0.22) 30%,
        rgba(0, 0, 0, 0.55) 60%,
        rgba(0, 0, 0, 0.72) 100%
    );
    mask-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.22) 0%,
        rgba(0, 0, 0, 0.22) 30%,
        rgba(0, 0, 0, 0.55) 60%,
        rgba(0, 0, 0, 0.72) 100%
    );
}
.mk-hero-om-bg {
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    font-size: clamp(300px, 55vw, 700px);
    color: rgba(200, 148, 24, 0.06);
    font-family: "Noto Sans Devanagari", sans-serif;
    pointer-events: none;
    user-select: none;
    line-height: 1;
}
.mk-hero-border-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--gold),
        var(--red2),
        var(--gold),
        transparent
    );
}
.mk-hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
}
.mk-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4.5px;
    text-transform: uppercase;
    color: rgba(232, 176, 64, 0.8);
    font-family: "Lato", sans-serif;
    margin-bottom: 24px;
}
.mk-hero-orn-line {
    width: 28px;
    height: 1px;
    background: var(--gold2);
    opacity: 0.6;
}
.mk-hero-content h1 {
    font-size: clamp(38px, 7vw, 84px);
    line-height: 1.08;
    color: var(--ivory);
    letter-spacing: -1px;
    margin-bottom: 6px;
}
.mk-hero-content h1 em {
    color: var(--gold2);
    font-style: italic;
}
.mk-hero-hindi {
    font-size: clamp(15px, 2vw, 20px);
    display: block;
    color: rgba(232, 176, 64, 0.65);
    letter-spacing: 2px;
    margin-bottom: 18px;
    font-family: "Noto Sans Devanagari", sans-serif;
    font-weight: 300;
}
.mk-hero-rule {
    width: 72px;
    height: 2px;
    background: linear-gradient(to right, var(--red), var(--gold));
    margin: 22px 0;
}
.mk-hero-desc {
    font-size: 16px;
    color: rgba(242, 224, 192, 0.88);
    line-height: 1.9;
    margin-bottom: 36px;
    max-width: 540px;
}
.mk-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.mk-hero-strip {
    display: flex;
    border-top: 1px solid rgba(200, 148, 24, 0.15);
    border-bottom: 1px solid rgba(200, 148, 24, 0.15);
}
.mk-hero-stat {
    flex: 1;
    text-align: center;
    padding: 20px 16px;
    border-right: 1px solid rgba(200, 148, 24, 0.12);
}
.mk-hero-stat:last-child {
    border-right: none;
}
.mk-hero-stat-num {
    font-family: "Cinzel", serif;
    font-size: 28px;
    color: var(--gold2);
    display: block;
    line-height: 1;
}
.mk-hero-stat-lbl {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--mut-lt);
    font-family: "Lato", sans-serif;
    margin-top: 6px;
    display: block;
}
.mk-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    color: rgba(200, 148, 24, 0.3);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: "Lato", sans-serif;
}
.mk-scroll-line {
    width: 1px;
    height: 44px;
    background: linear-gradient(
        to bottom,
        rgba(200, 148, 24, 0.5),
        transparent
    );
    margin: 8px auto 0;
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%,
    100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

/* ══ SERVICES — LIGHT SECTION WITH CARDS ════════════ */
.mk-services {
    padding: 90px 0;
    background: var(--ivory);
}
.mk-srv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}
.mk-srv-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid var(--ivory3);
    padding: 36px 28px;
    position: relative;
    transition: all 0.35s;
    border-top: 3px solid transparent;
    overflow: hidden;
}
.mk-srv-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(184, 17, 30, 0.04) 0%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.35s;
}
.mk-srv-card:hover {
    border-top-color: var(--red);
    transform: translateY(-5px);
    box-shadow: 0 16px 44px rgba(184, 17, 30, 0.12);
}
.mk-srv-card:hover::after {
    opacity: 1;
}
.mk-srv-icon-ring {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red-dk), var(--red));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px var(--glow-r);
    transition: all 0.3s;
}
.mk-srv-card:hover .mk-srv-icon-ring {
    background: linear-gradient(135deg, var(--gold3), var(--gold));
    box-shadow: 0 4px 16px var(--glow-g);
}
.mk-srv-card h3,
.mk-srv-card h4 {
    font-size: 18px;
    color: var(--txt-dk);
    margin-bottom: 8px;
}
.mk-srv-hindi-tag {
    font-size: 15px;
    color: var(--red);
    letter-spacing: 1.5px;
    font-family: "Noto Sans Devanagari", sans-serif;
    display: block;
    margin-bottom: 6px;
}
.mk-srv-card p {
    font-size: 16px;
    color: var(--mut-dk);
    line-height: 1.8;
    margin-bottom: 18px;
}
.mk-srv-card-link {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    font-family: "Lato", sans-serif;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}
.mk-srv-card-link:hover {
    color: var(--red2);
}

/* ══ FEATURES — CINEMATIC ════════════════════════════ */
.mk-feat {
    display: grid;
    overflow: hidden;
    min-height: 520px;
}
.mk-feat-lft {
    grid-template-columns: 54% 46%;
}
.mk-feat-rgt {
    grid-template-columns: 46% 54%;
}
.mk-feat-img-cell {
    position: relative;
    overflow: hidden;
    min-height: 460px;
    background: var(--dark3);
}
.mk-feat-img-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 8s ease;
}
.mk-feat:hover .mk-feat-img-cell img {
    transform: scale(1.04);
}
.mk-feat-overlay-r {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 55%, var(--dark) 100%);
}
.mk-feat-overlay-l {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, transparent 55%, var(--dark) 100%);
}
.mk-feat-content-dk {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 52px;
    background: var(--dark);
}
.mk-feat-content-lt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 52px;
    background: var(--ivory);
}
.mk-feat-idx {
    font-family: "Cinzel", serif;
    font-size: 96px;
    line-height: 1;
    margin-bottom: -20px;
    display: block;
    font-weight: 700;
}
.mk-feat-idx-dk {
    color: rgba(200, 148, 24, 0.07);
}
.mk-feat-idx-lt {
    color: rgba(184, 17, 30, 0.06);
}
.mk-feat-tag-dk {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold2);
    font-family: "Lato", sans-serif;
    margin-bottom: 16px;
    display: block;
}
.mk-feat-tag-lt {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red);
    font-family: "Lato", sans-serif;
    margin-bottom: 16px;
    display: block;
}
.mk-feat-content-dk h2 {
    font-size: clamp(24px, 3vw, 40px);
    color: var(--ivory);
    margin-bottom: 14px;
    line-height: 1.2;
}
.mk-feat-content-lt h2 {
    font-size: clamp(24px, 3vw, 40px);
    color: var(--txt-dk);
    margin-bottom: 14px;
    line-height: 1.2;
}
.mk-feat-content-dk p {
    font-size: 16px;
    color: rgba(242, 224, 192, 0.88);
    line-height: 1.9;
    margin-bottom: 14px;
}
.mk-feat-content-lt p {
    font-size: 16px;
    color: var(--mut-dk);
    line-height: 1.9;
    margin-bottom: 14px;
}
.mk-feat-list-dk {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}
.mk-feat-list-dk li {
    font-size: 16px;
    color: rgba(242, 224, 192, 0.88);
    padding: 8px 0 8px 22px;
    position: relative;
    border-bottom: 1px solid var(--bl-dark);
}
.mk-feat-list-dk li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 1px;
    background: var(--gold);
}
.mk-feat-list-lt {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}
.mk-feat-list-lt li {
    font-size: 16px;
    color: var(--mut-dk);
    padding: 8px 0 8px 22px;
    position: relative;
    border-bottom: 1px solid var(--ivory3);
}
.mk-feat-list-lt li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 1px;
    background: var(--red);
}
.mk-feat-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ══ MANTRA — DEEP CRIMSON ═══════════════════════════ */
.mk-mantra {
    padding: 90px 20px;
    text-align: center;
    background: var(--red);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mk-mantra-om-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 400px;
    color: rgba(200, 148, 24, 0.04);
    font-family: "Noto Sans Devanagari", sans-serif;
    pointer-events: none;
    line-height: 1;
    white-space: nowrap;
}
.mk-mantra-orn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}
.mk-mantra-orn-line {
    width: 50px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold2));
    opacity: 0.6;
}
.mk-mantra-orn-line.r {
    background: linear-gradient(to left, transparent, var(--gold2));
}
.mk-mantra-orn-text {
    font-size: 15px;
    letter-spacing: 4px;
    color: var(--gold2);
    font-family: "Lato", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}
.mk-mantra-skt {
    font-size: clamp(16px, 2vw, 22px);
    color: var(--gold2);
    letter-spacing: 3px;
    margin-bottom: 22px;
    display: block;
    font-family: "Noto Sans Devanagari", sans-serif;
}
.mk-mantra blockquote {
    font-size: clamp(18px, 2.8vw, 30px);
    color: var(--ivory);
    font-family: "Cinzel", serif;
    font-style: italic;
    line-height: 1.55;
    max-width: 820px;
    margin: 0 auto 18px;
    font-weight: 400;
}
.mk-mantra cite {
    font-size: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold2);
    font-family: "Lato", sans-serif;
    font-style: normal;
}

/* ══ STATS ═══════════════════════════════════════════ */
.mk-stats {
    padding: 60px 0;
    background: var(--ivory2);
    border-top: 1px solid var(--ivory3);
    border-bottom: 1px solid var(--ivory3);
}
.mk-stats-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px;
}
.mk-stat {
    text-align: center;
}
.mk-stat-num {
    font-family: "Cinzel", serif;
    font-size: 48px;
    color: var(--red);
    display: block;
    line-height: 1;
}
.mk-stat-lbl {
    font-size: 11px;
    color: var(--mut-dk);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-top: 8px;
    display: block;
    font-family: "Lato", sans-serif;
}
.mk-stat-sep {
    width: 1px;
    height: 56px;
    background: var(--ivory3);
}

/* ══ WHY — IVORY WITH ACCENT CARDS ══════════════════ */
.mk-why {
    padding: 90px 0;
    background: var(--ivory);
}
.mk-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}
.mk-why-card {
    background: #fff;
    border: 1px solid var(--ivory3);
    padding: 36px 24px;
    position: relative;
    transition: all 0.35s;
    overflow: hidden;
}
.mk-why-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--red), var(--gold));
    transform: scaleY(0);
    transition: transform 0.35s;
    transform-origin: top;
}
.mk-why-card:hover {
    border-color: var(--ivory3);
    box-shadow: 0 12px 36px rgba(184, 17, 30, 0.1);
    transform: translateY(-4px);
}
.mk-why-card:hover::before {
    transform: scaleY(1);
}
.mk-why-num {
    font-family: "Cinzel", serif;
    font-size: 44px;
    color: rgba(184, 17, 30, 0.07);
    line-height: 1;
    margin-bottom: -8px;
    display: block;
}
.mk-why-icon {
    font-size: 28px;
    color: var(--red);
    margin-bottom: 18px;
    display: block;
}
.mk-why-card h4 {
    font-size: 15px;
    color: var(--txt-dk);
    margin-bottom: 10px;
}
.mk-why-card p {
    font-size: 16px;
    color: var(--mut-dk);
    line-height: 1.85;
}

/* ══ PROCESS — IVORY STEPS ═══════════════════════════ */
.mk-process {
    padding: 90px 0;
    background: var(--ivory2);
}
.mk-proc-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-top: 50px;
}
.mk-proc-steps::before {
    content: "";
    position: absolute;
    top: 42px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        var(--red),
        var(--gold),
        var(--red),
        transparent
    );
    opacity: 0.3;
}
.mk-proc-step {
    text-align: center;
    padding: 0 18px;
}
.mk-proc-dot {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    border: 2px solid var(--red);
    background: var(--ivory2);
    color: var(--red);
    font-family: "Cinzel", serif;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}
.mk-proc-step:hover .mk-proc-dot {
    background: var(--red);
    color: #fff;
    box-shadow: 0 0 28px var(--glow-r);
    border-color: var(--red);
}
.mk-proc-step h5 {
    font-size: 15px;
    color: var(--txt-dk);
    margin-bottom: 10px;
}
.mk-proc-step p {
    font-size: 16px;
    color: var(--mut-dk);
    line-height: 1.75;
}

/* ══ TESTIMONIALS ════════════════════════════════════ */
.mk-testi {
    padding: 90px 0;
    background: #fff;
}
.mk-testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}
.mk-testi-card {
    background: var(--ivory);
    border: 1px solid var(--ivory3);
    padding: 40px 36px;
    position: relative;
    transition: all 0.3s;
}
.mk-testi-card::before {
    content: "\201C";
    position: absolute;
    top: 18px;
    right: 26px;
    font-size: 80px;
    color: rgba(184, 17, 30, 0.07);
    font-family: Georgia, serif;
    line-height: 1;
}
.mk-testi-card:hover {
    border-color: var(--red);
    box-shadow: 0 12px 36px rgba(184, 17, 30, 0.1);
    transform: translateY(-4px);
}
.mk-testi-stars {
    color: var(--gold);
    font-size: 15px;
    letter-spacing: 3px;
    margin-bottom: 16px;
    display: block;
}
.mk-testi-card blockquote {
    font-size: 16px;
    color: var(--mut-dk);
    line-height: 1.9;
    font-style: italic;
    margin-bottom: 26px;
    font-family: "Lato", sans-serif;
}
.mk-testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.mk-testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--red-dk), var(--red));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Cinzel", serif;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
}
.mk-testi-author strong {
    font-size: 15px;
    color: var(--txt-dk);
    display: block;
    font-family: "Cinzel", serif;
}
.mk-testi-author span {
    font-size: 15px;
    color: var(--mut-dk);
    letter-spacing: 0.8px;
}

/* ══ CTA — DARK CRIMSON ══════════════════════════════ */
.mk-cta {
    padding: 100px 20px;
    text-align: center;
    background: var(--dark);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.mk-cta::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(200, 148, 24, 0.07) 0%,
        transparent 70%
    );
    pointer-events: none;
}
.mk-cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.mk-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    display: block;
}
.mk-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 660px;
    margin: 0 auto;
}
.mk-cta-inner h2 {
    font-size: clamp(28px, 4.5vw, 52px);
    color: var(--ivory);
    margin-bottom: 16px;
}
.mk-cta-inner p {
    font-size: 16px;
    color: rgba(242, 224, 192, 0.85);
    line-height: 1.85;
    margin-bottom: 36px;
}
.mk-cta-phone {
    display: block;
    font-family: "Cinzel", serif;
    font-size: clamp(24px, 4vw, 44px);
    color: var(--gold2);
    letter-spacing: 3px;
    margin-bottom: 32px;
    text-decoration: none;
    transition: color 0.3s;
}
.mk-cta-phone:hover {
    color: var(--gold);
}
.mk-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ══ FOOTER ══════════════════════════════════════════ */
.mk-footer {
    background: var(--dark);
    padding: 64px 0 24px;
    border-top: 1px solid var(--bd-gold);
}
.mk-foot-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 44px;
    margin-bottom: 48px;
}
.mk-foot-brand-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}
.mk-foot-brand h3 {
    font-family: "Cinzel", serif;
    color: var(--ivory);
    font-size: 18px;
    margin-bottom: 2px;
}
.mk-foot-brand-tagline {
    display: block;
    font-size: 8.5px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold2);
    font-family: "Lato", sans-serif;
    font-weight: 800;
}
.mk-foot-brand h3 em {
    color: var(--gold2);
    font-style: normal;
}
.mk-foot-brand p {
    font-size: 15px;
    color: var(--mut-lt);
    line-height: 1.9;
    margin-bottom: 20px;
}
.mk-foot-col h6 {
    color: var(--ivory);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-family: "Lato", sans-serif;
}
.mk-foot-col ul {
    list-style: none;
    padding: 0;
}
.mk-foot-col ul li {
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--mut-lt);
}
.mk-foot-col a {
    color: var(--mut-lt);
    text-decoration: none;
    transition: color 0.25s;
}
.mk-foot-col a:hover {
    color: var(--gold2);
}
.foot-icon {
    color: var(--gold);
    margin-right: 8px;
    width: 14px;
}
.mk-foot-bottom {
    border-top: 1px solid var(--bl-dark);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 14px;
    color: var(--mut-lt);
    font-family: "Lato", sans-serif;
}
.mk-foot-bottom a {
    color: var(--mut-lt);
    text-decoration: none;
    transition: color 0.25s;
}
.mk-foot-bottom a:hover {
    color: var(--gold2);
}
.mk-foot-om {
    color: var(--gold2);
    font-family: 'Noto Sans Devanagari', sans-serif;
    letter-spacing: 1px;
}

/* ══ INNER PAGE HERO ══════════════════════════════════ */
.mk-page-hero {
    padding: 80px 0 60px;
    background: var(--dark);
    border-bottom: 1px solid var(--bd-gold);
    position: relative;
    overflow: hidden;
}
.mk-page-hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(
        ellipse 60% 100% at 80% 50%,
        rgba(200, 148, 24, 0.08) 0%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 1;
}
.mk-page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.mk-page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    display: block;
}
.mk-page-hero > .container {
    position: relative;
    z-index: 2;
}
.mk-page-hero h1,
.mk-page-hero-h {
    font-size: clamp(28px, 4vw, 52px);
    color: var(--ivory);
    margin-bottom: 12px;
    font-family: "Cinzel", serif;
    font-weight: 600;
    line-height: 1.15;
}
.mk-page-hero > .container > p {
    font-size: 16px;
    color: rgba(242, 224, 192, 0.88);
    max-width: 520px;
    line-height: 1.85;
}
.mk-breadcrumb {
    margin-bottom: 14px;
    font-size: 15px;
    letter-spacing: 2px;
    font-family: "Lato", sans-serif;
}
.mk-breadcrumb a {
    color: var(--mut-lt);
    text-decoration: none;
    transition: color 0.2s;
}
.mk-breadcrumb a:hover {
    color: var(--gold2);
}
.mk-breadcrumb span {
    color: var(--gold2);
    margin: 0 8px;
}

/* ══ FORMS ════════════════════════════════════════════ */
.mk-form-wrap {
    background: #fff;
    border: 1px solid var(--ivory3);
    padding: 44px;
    box-shadow: 0 4px 24px rgba(184, 17, 30, 0.06);
}
.mk-form-group {
    margin-bottom: 22px;
}
.mk-form-label {
    display: block;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--red);
    font-family: "Lato", sans-serif;
    font-weight: 700;
    margin-bottom: 8px;
}
.mk-form-ctrl {
    width: 100%;
    padding: 13px 16px;
    background: var(--ivory);
    border: 1px solid var(--ivory3);
    color: var(--txt-dk);
    font-size: 15px;
    font-family: "Lato", sans-serif;
    outline: none;
    transition: border-color 0.2s;
}
.mk-form-ctrl:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(184, 17, 30, 0.06);
}
.mk-form-ctrl::placeholder {
    color: var(--mut-dk);
}
.mk-form-ctrl option {
    background: #fff;
}
.mk-form-note {
    font-size: 15px;
    color: var(--mut-dk);
    margin-top: 6px;
    line-height: 1.6;
}

/* Back to top */
#mk-btt {
    position: fixed;
    bottom: 28px;
    right: 20px;
    z-index: 9997;
    width: 42px;
    height: 42px;
    background: var(--red);
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    box-shadow: 0 4px 18px var(--glow-r);
    transition: all 0.3s;
    border-radius: 2px;
}
#mk-btt:hover {
    background: var(--red2);
}

/* ══ PAGE-SPECIFIC ════════════════════════════════════ */
.mk-gold-italic {
    color: var(--gold);
    font-style: italic;
}
.mk-red-italic {
    color: var(--red);
    font-style: italic;
}
.mk-sec-form-heading {
    font-size: clamp(22px, 2.8vw, 34px);
    color: var(--txt-dk);
    margin-bottom: 8px;
}
.mk-milan-result-section {
    padding: 70px 0;
    background: var(--ivory);
}
.mk-services-section {
    padding: 80px 0;
    background: var(--ivory);
}

/* About */
.mk-about-section {
    padding: 80px 0;
    background: var(--ivory);
}
.mk-temple-section {
    padding: 80px 0;
    background: var(--ivory2);
}
.mk-about-img-wrap {
    position: relative;
}
.mk-about-img-box {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--dark2), var(--dark3));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: rgba(200, 148, 24, 0.2);
    overflow: hidden;
    position: relative;
}
.mk-about-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}
.mk-about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--red-dk), var(--red));
    padding: 24px;
    text-align: center;
    min-width: 130px;
}
.mk-about-badge-num {
    font-family: "Cinzel", serif;
    font-size: 36px;
    color: #fff;
    display: block;
    line-height: 1;
}
.mk-about-badge-lbl {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    font-family: "Lato", sans-serif;
}
.mk-about-heading {
    font-size: clamp(28px, 3.5vw, 44px);
    color: var(--txt-dk);
    margin-bottom: 20px;
}
.mk-about-text {
    font-size: 16px;
    color: var(--mut-dk);
    line-height: 1.9;
    margin-bottom: 16px;
}
.mk-skill-item {
    margin-bottom: 16px;
}
.mk-skill-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mut-dk);
    font-family: "Lato", sans-serif;
    margin-bottom: 6px;
    display: block;
}
.mk-skill-bar {
    height: 3px;
    background: var(--ivory3);
    border-radius: 2px;
}
.mk-skill-fill {
    height: 100%;
    border-radius: 2px;
    background: linear-gradient(to right, var(--red-dk), var(--gold));
}
.mk-skill-fill-95 {
    width: 95%;
}
.mk-skill-fill-90 {
    width: 90%;
}
.mk-skill-fill-88 {
    width: 88%;
}
.mk-skill-fill-98 {
    width: 98%;
}
.mk-about-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.mk-temple-heading {
    font-size: clamp(24px, 3vw, 36px);
    color: var(--txt-dk);
    margin-bottom: 16px;
}
.mk-temple-text {
    font-size: 16px;
    color: var(--mut-dk);
    line-height: 1.9;
    margin-bottom: 16px;
}
.mk-mission-list {
    list-style: none;
    padding: 0;
}
.mk-mission-item {
    padding: 8px 0 8px 22px;
    position: relative;
    font-size: 16px;
    color: var(--mut-dk);
    border-bottom: 1px solid var(--ivory3);
}
.mk-mission-item::before {
    content: "ॐ";
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--red);
    font-size: 12px;
}
.mk-mission-om {
    display: none;
}

/* Services detail */
.srv-detail-card {
    background: #fff;
    border: 1px solid var(--ivory3);
    border-top: 3px solid var(--red);
    padding: 36px 30px;
    height: 100%;
    transition: all 0.3s;
}
.srv-detail-card:hover {
    border-top-color: var(--gold3);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(184, 17, 30, 0.1);
}
.srv-detail-icon {
    font-size: 32px;
    color: var(--red);
    margin-bottom: 18px;
    display: block;
}
.srv-detail-card h3 {
    font-size: 20px;
    color: var(--txt-dk);
    margin-bottom: 10px;
}
.srv-detail-card p {
    font-size: 15px;
    color: var(--mut-dk);
    line-height: 1.9;
    margin-bottom: 16px;
}
.srv-detail-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}
.srv-detail-card ul li {
    font-size: 15px;
    color: var(--mut-dk);
    padding: 5px 0 5px 18px;
    position: relative;
    border-bottom: 1px solid var(--ivory3);
}
.srv-detail-card ul li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--red);
    font-size: 12px;
    top: 6px;
}
.srv-price {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    font-family: "Lato", sans-serif;
    font-weight: 700;
    border: 1px solid var(--bd-red);
    padding: 4px 12px;
    margin-bottom: 16px;
}

/* ─── SERVICE CARD (Home + Services page — unified) ────── */
.mk-services-section { padding: 90px 0; }

.srv-img-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--ivory3);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    height: 100%;
    transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.srv-img-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(184, 17, 30, 0.1);
    border-color: rgba(200, 148, 24, 0.3);
    color: inherit;
}

/* ── Visual / Image area ── */
.srv-img-card-visual {
    height: 190px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #0f0f0f 0%, #1c0006 55%, #240009 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.srv-img-card-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}
.srv-img-card-visual::before {
    content: "ॐ";
    position: absolute;
    font-family: "Noto Sans Devanagari", serif;
    font-size: 130px;
    color: rgba(200, 148, 24, 0.06);
    right: -12px;
    bottom: -22px;
    line-height: 1;
    pointer-events: none;
}
.srv-img-card-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(184, 17, 30, 0.12) 0%, transparent 50%, rgba(0,0,0,0.25) 100%);
}
.srv-img-card-icon {
    font-size: 54px;
    color: rgba(200, 148, 24, 0.55);
    position: relative;
    z-index: 1;
    transition: all 0.32s;
}
.srv-img-card:hover .srv-img-card-icon {
    color: rgba(200, 148, 24, 0.9);
    transform: scale(1.08);
}

/* Gold line accent at bottom of visual */
.srv-img-card-visual .srv-img-card-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold3), var(--gold2), transparent);
    z-index: 2;
    transform: scaleX(0);
    transition: transform 0.38s ease;
}
.srv-img-card:hover .srv-img-card-line { transform: scaleX(1); }

/* ── Content body ── */
.srv-img-card-body {
    padding: 22px 22px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.srv-img-card-body h3 {
    font-size: 18px;
    color: var(--txt-dk);
    margin-bottom: 10px;
    line-height: 1.35;
}
.srv-img-card-body p {
    font-size: 14.5px;
    color: var(--mut-dk);
    line-height: 1.8;
    margin-bottom: 0;
    flex-grow: 1;
}

/* ── View Details button ── */
.srv-img-card-cta {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--red);
    font-family: "Lato", sans-serif;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--ivory3);
    transition: gap 0.22s, color 0.22s;
}
.srv-img-card:hover .srv-img-card-cta {
    gap: 12px;
    color: var(--red2);
}

/* Kundali */
.mk-rashi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 44px;
}
.mk-rashi-card {
    background: #fff;
    border: 1px solid var(--ivory3);
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
}
.mk-rashi-card:hover {
    border-color: var(--red);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(184, 17, 30, 0.1);
}
.rashi-sym {
    font-size: 28px;
    color: var(--red);
    display: block;
    margin-bottom: 8px;
}
.mk-rashi-card h5 {
    font-size: 15px;
    color: var(--txt-dk);
    margin-bottom: 4px;
}
.rashi-en {
    font-size: 15px;
    color: var(--mut-dk);
    letter-spacing: 1px;
    display: block;
}
.rashi-lord {
    font-size: 12px;
    color: var(--gold3);
    letter-spacing: 1px;
    display: block;
    margin-top: 3px;
}
.mk-include-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--ivory3);
    padding: 18px;
    border-left: 3px solid var(--red);
    margin-bottom: 14px;
}
.mk-include-icon {
    font-size: 18px;
    color: var(--red);
    margin-top: 2px;
    flex-shrink: 0;
}
.mk-include-title {
    font-family: "Cinzel", serif;
    font-size: 15px;
    color: var(--txt-dk);
    display: block;
    margin-bottom: 4px;
}
.mk-include-desc {
    font-size: 15px;
    color: var(--mut-dk);
    line-height: 1.7;
}
.mk-price-box {
    background: linear-gradient(135deg, var(--red-dk), var(--red));
    padding: 28px;
    margin-top: 24px;
    text-align: center;
}
.mk-price-from {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    font-family: "Lato", sans-serif;
    display: block;
    margin-bottom: 8px;
}
.mk-price-num {
    font-family: "Cinzel", serif;
    font-size: 36px;
    color: #fff;
    display: block;
    line-height: 1;
}
.mk-price-note {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    font-family: "Lato", sans-serif;
}
.mk-kundali-info-section {
    padding: 80px 0;
    background: var(--ivory);
}
.mk-rashi-section {
    padding: 60px 0;
    background: var(--ivory2);
}

/* Blog */
.blog-card {
    background: #fff;
    border: 1px solid var(--ivory3);
    height: 100%;
    transition: all 0.3s;
}
.blog-card:hover {
    border-color: var(--red);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(184, 17, 30, 0.1);
}
.blog-img-ph {
    width: 100%;
    height: 220px;
    background: var(--ivory2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--red);
}
.blog-body {
    padding: 24px;
}
.blog-cat {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    font-family: "Lato", sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}
.blog-card h3 {
    font-size: 18px;
    color: var(--txt-dk);
    margin-bottom: 10px;
    line-height: 1.35;
}
.blog-card p {
    font-size: 15px;
    color: var(--mut-dk);
    line-height: 1.8;
    margin-bottom: 16px;
}
.blog-meta {
    font-size: 12px;
    color: var(--mut-dk);
    letter-spacing: 1px;
    border-top: 1px solid var(--ivory3);
    padding-top: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.blog-read {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    font-family: "Lato", sans-serif;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}
.blog-read:hover {
    color: var(--red2);
}
.tag-btn {
    background: var(--ivory);
    border: 1px solid var(--ivory3);
    color: var(--mut-dk);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 16px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: "Lato", sans-serif;
}
.tag-btn:hover,
.tag-btn.active {
    background: rgba(184, 17, 30, 0.06);
    border-color: var(--bd-red);
    color: var(--red);
}
.blog-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}
.blog-newsletter {
    padding: 70px 20px;
    background: var(--dark);
    border-top: 1px solid var(--bd-gold);
    text-align: center;
}
.blog-nl-inner {
    max-width: 520px;
    margin: 0 auto;
}
.blog-nl-heading {
    font-size: clamp(22px, 3vw, 34px);
    color: var(--ivory);
    margin-bottom: 12px;
}
.blog-nl-text {
    font-size: 15px;
    color: rgba(242, 224, 192, 0.65);
    margin-bottom: 28px;
}
.blog-nl-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
}
.blog-nl-input {
    flex: 1;
    padding: 14px 18px;
    background: var(--dark2);
    border: 1px solid rgba(200, 148, 24, 0.2);
    border-right: none;
    color: var(--ivory);
    font-size: 15px;
    outline: none;
    font-family: "Lato", sans-serif;
}

/* Contact */
.contact-section {
    padding: 80px 0;
    background: var(--ivory);
}
.contact-info-card {
    background: #fff;
    border: 1px solid var(--ivory3);
    border-left: 3px solid var(--red);
    padding: 24px;
    margin-bottom: 16px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: border-left-color 0.3s;
}
.contact-info-card:hover {
    border-left-color: var(--gold3);
}
.contact-info-icon {
    font-size: 22px;
    color: var(--red);
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-info-card h5 {
    font-size: 15px;
    color: var(--txt-dk);
    margin-bottom: 4px;
}
.contact-info-card p {
    font-size: 15px;
    color: var(--mut-dk);
    line-height: 1.7;
    margin: 0;
}
.contact-info-card a {
    font-size: 15px;
    color: var(--mut-dk);
    text-decoration: none;
    transition: color 0.2s;
}
.contact-info-card a:hover {
    color: var(--red);
}
.contact-socials-label {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--mut-dk);
    font-family: "Lato", sans-serif;
    margin-bottom: 14px;
    margin-top: 28px;
    display: block;
}
.contact-socials-wrap .mk-socials a {
    width: 38px;
    height: 38px;
    background: var(--ivory);
    border-color: var(--ivory3);
    color: var(--mut-dk);
}
.contact-socials-wrap .mk-socials a:hover {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
}
.contact-wa {
    background: rgba(37, 211, 102, 0.1) !important;
    color: #25d366 !important;
}
.mk-map-wrap {
    height: 380px;
    border-top: 1px solid var(--ivory3);
}
.mk-map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Booking */
.booking-section {
    padding: 80px 0;
    background: var(--ivory);
}
.pkg-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 44px;
}
.pkg-card {
    background: #fff;
    border: 1px solid var(--ivory3);
    border-top: 3px solid transparent;
    padding: 28px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}
.pkg-card:hover,
.pkg-card.selected {
    border-top-color: var(--red);
    box-shadow: 0 10px 30px rgba(184, 17, 30, 0.1);
}
.pkg-card.popular::before {
    content: "POPULAR";
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: #fff;
    font-size: 8px;
    letter-spacing: 2px;
    padding: 3px 12px;
    font-family: "Lato", sans-serif;
    font-weight: 700;
}
.pkg-price {
    font-family: "Cinzel", serif;
    font-size: 28px;
    color: var(--red);
    display: block;
    line-height: 1;
    margin: 10px 0 4px;
}
.pkg-card h4 {
    font-size: 15px;
    color: var(--txt-dk);
    margin-bottom: 8px;
}
.pkg-card p {
    font-size: 15px;
    color: var(--mut-dk);
    line-height: 1.7;
}
.booking-form-center {
    display: flex;
    justify-content: center;
}
.booking-note {
    font-size: 15px;
    color: var(--mut-dk);
    text-align: center;
    margin-top: 14px;
    line-height: 1.7;
}
.booking-note-warn {
    font-size: 15px;
    color: var(--mut-dk);
    text-align: center;
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Milan */
.milan-section {
    background: #fff;
    border: 1px solid var(--ivory3);
    padding: 40px;
}
.milan-section h3 {
    font-size: 18px;
    color: var(--txt-dk);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--ivory3);
}
.milan-section h3 i {
    color: var(--red);
    margin-right: 8px;
}
.milan-info-box {
    background: var(--ivory);
    border-left: 3px solid var(--red);
    padding: 16px 20px;
    margin-bottom: 24px;
    font-size: 15px;
    color: var(--mut-dk);
    line-height: 1.8;
}
.milan-info-box strong {
    color: var(--txt-dk);
}
.milan-error-box {
    background: rgba(184, 17, 30, 0.06);
    border: 1px solid rgba(184, 17, 30, 0.3);
    padding: 16px 20px;
    margin-bottom: 24px;
    font-size: 15px;
    color: var(--red2);
}
.milan-submit-note {
    font-size: 15px;
    color: var(--mut-dk);
    text-align: center;
    margin-top: 14px;
}

/* Milan Result */
.score-ring {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.score-ring-inner {
    width: 124px;
    height: 124px;
    border-radius: 50%;
    background: var(--ivory);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
}
.score-num {
    font-family: "Cinzel", serif;
    font-size: 32px;
    color: var(--txt-dk);
    line-height: 1;
}
.score-max {
    font-size: 15px;
    color: var(--mut-dk);
    letter-spacing: 1px;
}
.score-summary {
    text-align: center;
    margin-bottom: 56px;
}
.score-title {
    font-size: clamp(20px, 3vw, 32px);
    color: var(--txt-dk);
    margin-bottom: 8px;
}
.score-percentage {
    font-family: "Cinzel", serif;
    font-size: 20px;
    color: var(--red);
}
.score-msg {
    font-size: 15px;
    color: var(--mut-dk);
    max-width: 520px;
    margin: 0 auto 16px;
}
.kuta-table {
    background: #fff;
    border: 1px solid var(--ivory3);
    padding: 36px;
    margin-bottom: 40px;
}
.kuta-table-heading {
    font-size: 18px;
    color: var(--txt-dk);
    margin-bottom: 28px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--ivory3);
}
.kuta-table-icon {
    color: var(--red);
    margin-right: 8px;
}
.kuta-row {
    display: grid;
    grid-template-columns: 1fr auto auto 2fr;
    align-items: center;
    gap: 12px 20px;
    padding: 12px 0;
    border-bottom: 1px solid var(--ivory3);
}
.kuta-name {
    font-family: "Cinzel", serif;
    font-size: 15px;
    color: var(--txt-dk);
}
.kuta-score-val {
    font-family: "Cinzel", serif;
    font-size: 18px;
    font-weight: 600;
}
.kuta-max-val {
    font-size: 15px;
    color: var(--mut-dk);
}
.kuta-bar-wrap {
    height: 6px;
    background: var(--ivory2);
    border-radius: 3px;
    overflow: hidden;
}
.kuta-bar-fill {
    height: 100%;
    border-radius: 3px;
}
.kuta-desc {
    font-size: 15px;
    color: var(--mut-dk);
}
.kuta-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    margin-top: 4px;
}
.kuta-total-label {
    font-family: "Cinzel", serif;
    font-size: 16px;
    color: var(--txt-dk);
}
.kuta-total-val {
    font-family: "Cinzel", serif;
    font-size: 24px;
    color: var(--red);
}
.birth-card {
    background: var(--ivory);
    border: 1px solid var(--ivory3);
    border-top: 3px solid var(--red);
    padding: 24px;
}
.birth-card-title {
    font-size: 16px;
    color: var(--txt-dk);
    margin-bottom: 18px;
}
.birth-card-icon {
    color: var(--red);
    margin-right: 8px;
}
.birth-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid var(--ivory3);
}
.birth-row-label {
    color: var(--mut-dk);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: "Lato", sans-serif;
    font-size: 12px;
}
.birth-row-val {
    color: var(--txt-dk);
    font-family: "Cinzel", serif;
    font-size: 15px;
}
.milan-result-actions {
    text-align: center;
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.milan-disclaimer {
    text-align: center;
    font-size: 15px;
    color: var(--mut-dk);
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ══ RESPONSIVE ══════════════════════════════════════ */
@media (max-width: 1100px) {
    .mk-srv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mk-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mk-foot-grid {
        grid-template-columns: 1fr 1fr;
    }
    .mk-proc-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .mk-proc-steps::before {
        display: none;
    }
    .mk-testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pkg-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 991px) {
    .mk-feat-lft,
    .mk-feat-rgt {
        grid-template-columns: 1fr;
    }
    .mk-feat-img-cell {
        min-height: 300px;
    }
    .mk-feat-overlay-r,
    .mk-feat-overlay-l {
        display: none;
    }
    .mk-feat-content-dk,
    .mk-feat-content-lt {
        padding: 44px 28px;
    }
    .mk-float-call span {
        display: none;
    }
    .mk-float-call {
        padding: 14px;
        border-radius: 50%;
        width: 52px;
        height: 52px;
        justify-content: center;
        border-left: none;
    }
}
@media (max-width: 767px) {
    .mk-hero {
        min-height: auto;
        align-items: flex-start;
        padding: 56px 0 64px;
    }
    .mk-srv-grid {
        grid-template-columns: 1fr 1fr;
    }
    .mk-why-grid {
        grid-template-columns: 1fr;
    }
    .mk-testi-grid {
        grid-template-columns: 1fr;
    }
    .mk-foot-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
    .mk-proc-steps {
        grid-template-columns: 1fr 1fr;
    }
    .mk-stat-sep {
        display: none;
    }
    .mk-rashi-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 575px) {
    .mk-srv-grid {
        grid-template-columns: 1fr;
    }
    .mk-foot-grid {
        grid-template-columns: 1fr;
    }
    .mk-proc-steps {
        grid-template-columns: 1fr;
    }
    .mk-hero-btns {
        flex-direction: column;
        align-items: stretch;
    }
    .mk-hero-btns > a {
        width: 100%;
        text-align: center;
        padding: 13px 16px;
        font-size: 12.5px;
        letter-spacing: 1.2px;
    }
    .mk-hero-strip {
        flex-wrap: wrap;
    }
    .mk-hero-stat {
        flex: 0 0 50%;
    }
    .mk-form-wrap {
        padding: 24px 18px;
    }
    .pkg-grid {
        grid-template-columns: 1fr;
    }
    .mk-rashi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .kuta-row {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
    }
    .kuta-desc {
        grid-column: 1/-1;
    }
}
