/* ═══════════════════════════════════════════════
   CabMantra Premium Landing — Sashwatha-inspired
   Lightweight · Professional · Premium
   ═══════════════════════════════════════════════ */

:root {
    --bg-light: #faf8f6;
    --bg-white: #ffffff;
    --bg-dark: #1a1214;
    --bg-darker: #0f0809;
    --bg-deep: #4d030b;

    --premium-gradient: linear-gradient(135deg, #8b0618 0%, #6a040f 52%, #4d030b 100%);
    --brand-red: #8b0618;
    --brand-red-mid: #6a040f;
    --brand-red-deep: #4d030b;

    --color-text: #2a2426;
    --color-muted: #6d6568;
    --color-light: #e8e4e2;

    --accent-gold: #e8dcc4;
    --accent-gold-m: #d4c4a0;
    --accent-gold-l: #f7f2e8;
    --accent-gold-d: #b89968;
    --accent-red: #8b0618;

    --font-sans: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
    --font-heading: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;

    --nav-height: 72px;
    --topbar-height: 42px;
    --header-offset: var(--nav-height);
    --ease-out: cubic-bezier(0.25, 1, 0.5, 1);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 4px 20px rgba(77, 3, 11, 0.06);
    --shadow-md: 0 12px 40px rgba(77, 3, 11, 0.1);
    --shadow-lg: 0 24px 60px rgba(77, 3, 11, 0.14);
    --shadow-premium: 0 20px 50px rgba(139, 6, 24, 0.22);

    --overlay-hero: linear-gradient(105deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.68) 48%, rgba(12, 4, 6, 0.78) 100%);
    --overlay-card: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.72) 42%, rgba(0, 0, 0, 0.48) 100%);
    --overlay-banner: linear-gradient(135deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.65) 50%, rgba(20, 4, 8, 0.72) 100%);
    --overlay-cta: linear-gradient(120deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.72) 100%);
    --bg-sacred:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(139, 6, 24, 0.22) 0%, transparent 55%),
        linear-gradient(180deg, #14080c 0%, #1f1016 45%, #12080b 100%);
}

html {
    scroll-behavior: auto;
    font-size: 16px;
    scroll-padding-top: calc(var(--header-offset) + 16px);
    overflow-x: hidden;
}

body {
    font-family: 'IBM Plex Sans', var(--font-sans);
    background: var(--bg-light);
    color: var(--color-text);
    line-height: 1.65;
    overflow-x: hidden;
    max-width: 100%;
    -webkit-font-smoothing: antialiased;
}

main {
    overflow-x: clip;
}

section[id] {
    scroll-margin-top: calc(var(--header-offset) + 16px);
}

h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
cite,
button,
.btn {
    font-family: 'IBM Plex Sans', var(--font-sans);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ── Typography ── */
.cm-sec-header {
    margin-bottom: 48px;
}

.cm-sec-header--center {
    text-align: center;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.cm-label {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--accent-red);
    margin-bottom: 12px;
}

.cm-label--gold {
    color: var(--accent-gold-m);
}

.cm-label--light {
    color: var(--accent-gold);
}

.cm-sec-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 600;
    line-height: 1.12;
    color: var(--bg-dark);
    margin-bottom: 0;
    letter-spacing: -0.02em;
}

.cm-sec-title em {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 500;
    color: var(--brand-red);
}

.cm-sec-title--light em {
    color: var(--accent-gold);
}

.cm-sec-title--light {
    color: var(--bg-white);
}

.cm-sec-sub {
    font-size: 1rem;
    color: var(--color-muted);
    margin-top: 16px;
    margin-bottom: 0;
}

.cm-sec-sub--light {
    color: rgba(255, 255, 255, 0.58);
}

.cm-divider {
    width: 56px;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-red), transparent);
    margin: 18px 0 0;
}

.cm-divider--center {
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(90deg, transparent, var(--accent-gold-m), transparent);
}

.cm-divider--gold {
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.cm-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-muted);
    letter-spacing: 0.04em;
}

.cm-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    animation: livePulse 2s ease infinite;
}

@keyframes livePulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.85);
    }
}

/* ── Buttons ── */
.cm-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-gold-l);
    color: var(--brand-red-deep);
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.92rem;
    border: 1px solid rgba(232, 220, 196, 0.5);
    box-shadow: var(--shadow-premium);
}

.cm-btn-primary:hover {
    background: var(--accent-gold);
    color: var(--brand-red-deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(139, 6, 24, 0.28);
}

.cm-btn-primary--dark {
    background: var(--premium-gradient);
    color: var(--accent-gold-l);
    border-color: transparent;
}

.cm-btn-primary--dark:hover {
    background: linear-gradient(135deg, #9a071c 0%, #7a0512 52%, #5a040d 100%);
    color: var(--accent-gold-l);
}

.cm-btn-primary--sm {
    padding: 12px 22px;
    font-size: 0.85rem;
    width: 100%;
    justify-content: center;
}

.cm-btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--bg-white);
    padding: 13px 28px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.92rem;
}

.cm-btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--bg-white);
    border-color: var(--accent-gold);
}

.cm-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: var(--color-text);
    padding: 13px 28px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.92rem;
}

.cm-btn-outline:hover {
    background: var(--bg-dark);
    color: var(--bg-white);
    border-color: var(--bg-dark);
}

.cm-btn-outline-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(232, 220, 196, 0.45);
    color: var(--accent-gold);
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.88rem;
}

.cm-btn-outline-gold:hover {
    background: rgba(232, 220, 196, 0.12);
    color: var(--accent-gold-l);
}

.cm-btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: var(--bg-white);
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.92rem;
}

.cm-btn-wa:hover {
    background: #1da851;
    color: var(--bg-white);
    transform: translateY(-2px);
}

/* ════════════════ TOPBAR (desktop) ════════════════ */
.cm-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    height: var(--topbar-height);
    background: var(--premium-gradient);
    border-bottom: 1px solid rgba(232, 220, 196, 0.12);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition: transform 0.4s var(--ease-out), opacity 0.35s ease, visibility 0.4s;
    will-change: transform;
}

.cm-topbar.is-hidden {
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.cm-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 16px;
}

.cm-topbar__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: rgba(247, 242, 232, 0.75);
    white-space: nowrap;
}

.cm-topbar__tag .bx {
    color: var(--accent-gold-m);
    font-size: 0.95rem;
}

.cm-topbar__links {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: nowrap;
}

.cm-topbar__links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--accent-gold-l);
    white-space: nowrap;
}

.cm-topbar__links a:hover {
    color: #fff;
}

.cm-topbar__links a .bx {
    font-size: 1rem;
    color: var(--accent-gold-m);
}

.cm-topbar__links a:hover .bx {
    color: var(--accent-gold-l);
}

.cm-topbar__sep {
    width: 1px;
    height: 14px;
    background: rgba(247, 242, 232, 0.2);
    flex-shrink: 0;
}

@media (min-width: 992px) {
    :root {
        --header-offset: calc(var(--topbar-height) + var(--nav-height));
    }

    html.topbar-hidden {
        --header-offset: var(--nav-height);
    }

    html.topbar-hidden .cm-nav {
        top: 0;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .cm-topbar__tag {
        display: none;
    }

    .cm-topbar__links a {
        font-size: 0.72rem;
    }
}

/* ════════════════ NAVBAR ════════════════ */
.cm-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: transparent;
    transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.4s, top 0.4s var(--ease-out);
    border-bottom: 1px solid transparent;
}

@media (min-width: 992px) {
    .cm-nav {
        top: var(--topbar-height);
    }
}

.cm-nav.is-scrolled {
    background: rgba(250, 248, 245, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.04);
}

.cm-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.cm-nav__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.cm-nav__logo-img {
    height: 44px;
    width: auto;
    max-width: 168px;
    object-fit: contain;
    display: block;
    transition: filter 0.4s var(--ease-out);
    filter: brightness(0) invert(1);
}

.cm-nav.is-scrolled .cm-nav__logo-img {
    filter: none;
}

.cm-logo-img {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    display: block;
}

.cm-logo-img--footer {
    height: 42px;
    max-width: 160px;
}

.cm-drawer__logo {
    display: flex;
    align-items: center;
}

.cm-nav__links {
    display: flex;
    gap: 22px;
}

.cm-nav__links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
    position: relative;
}

.cm-nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold-m);
    transition: width 0.3s ease;
}

.cm-nav__links a:hover::after,
.cm-nav__links a.active::after {
    width: 100%;
}

.cm-nav__links a:hover,
.cm-nav__links a.active {
    color: var(--bg-white);
}

.cm-nav.is-scrolled .cm-nav__links a {
    color: var(--color-muted);
}

.cm-nav.is-scrolled .cm-nav__links a:hover,
.cm-nav.is-scrolled .cm-nav__links a.active {
    color: var(--bg-dark);
}

.cm-nav__right {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.cm-nav__cta {
    background: var(--premium-gradient);
    color: var(--accent-gold-l);
    padding: 9px 22px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 700;
    box-shadow: var(--shadow-premium);
}

.cm-nav__cta:hover {
    opacity: 0.92;
    color: var(--accent-gold-l);
}

.cm-nav.is-scrolled .cm-nav__cta {
    background: var(--premium-gradient);
    color: var(--accent-gold-l);
}

.cm-nav.is-scrolled .cm-nav__cta:hover {
    opacity: 0.9;
}

.cm-burger {
    width: 42px;
    height: 42px;
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
}

.cm-burger span {
    display: block;
    height: 2px;
    background: var(--bg-white);
    transition: background 0.3s;
}

.cm-burger span:nth-child(1) {
    width: 24px;
}

.cm-burger span:nth-child(2) {
    width: 18px;
}

.cm-burger span:nth-child(3) {
    width: 24px;
}

.cm-nav.is-scrolled .cm-burger span {
    background: var(--bg-dark);
}

.cm-nav__slot--logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.cm-nav__call {
    display: inline-flex;
    align-items: center;
    gap: 0;
    height: 42px;
    padding: 5px 16px 5px 5px;
    border-radius: 100px;
    background: var(--premium-gradient);
    color: var(--accent-gold-l);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(139, 6, 24, 0.32);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
    line-height: 1;
}

.cm-nav__call:hover {
    color: var(--accent-gold-l);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(139, 6, 24, 0.4);
}

.cm-nav__call-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    margin-right: 10px;
    overflow: visible;
}

.cm-nav__call-icon i {
    position: relative;
    z-index: 2;
    font-size: 1.15rem;
    line-height: 1;
    animation: cm-nav-call-ring 2.8s ease-in-out infinite;
}

.cm-nav__call-wave {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(232, 220, 196, 0.5);
    pointer-events: none;
    z-index: 0;
    animation: cm-nav-call-wave 2.4s ease-out infinite;
}

.cm-nav__call-wave--delay {
    animation-delay: 1.2s;
}

@keyframes cm-nav-call-wave {
    0% {
        transform: scale(1);
        opacity: 0.55;
    }

    100% {
        transform: scale(1.7);
        opacity: 0;
    }
}

@keyframes cm-nav-call-ring {

    0%,
    55%,
    100% {
        transform: rotate(0deg);
    }

    8% {
        transform: rotate(-14deg);
    }

    16% {
        transform: rotate(14deg);
    }

    24% {
        transform: rotate(-10deg);
    }

    32% {
        transform: rotate(10deg);
    }

    40% {
        transform: rotate(-5deg);
    }

    48% {
        transform: rotate(0deg);
    }
}

.cm-nav__call-num {
    line-height: 1;
}

/* Drawer */
.cm-overlay {
    position: fixed;
    inset: 0;
    z-index: 1002;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.cm-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
}

.cm-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    background: var(--bg-light);
    z-index: 1003;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease-out);
    display: flex;
    flex-direction: column;
}

.cm-drawer.is-active {
    transform: translateX(0);
}

.cm-drawer__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cm-drawer__x {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: none;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.cm-drawer__links {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow-y: auto;
}

.cm-drawer__links a {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--color-text);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 12px;
}

.cm-drawer__links a .bx {
    color: var(--brand-red);
    font-size: 1.2rem;
}

.cm-drawer__links a:hover {
    background: rgba(0, 0, 0, 0.04);
}

.cm-drawer__bottom {
    padding: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cm-drawer__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.92rem;
}

.cm-drawer__btn--call {
    background: rgba(0, 0, 0, 0.05);
    color: var(--bg-dark);
}

.cm-drawer__btn--wa {
    background: #25D366;
    color: var(--bg-white);
}

.cm-drawer__btn--gold {
    background: var(--premium-gradient);
    color: var(--accent-gold-l);
}

/* ════════════════ HERO ════════════════ */
.cm-hero {
    position: relative;
    min-height: 100svh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    background: var(--bg-darker);
    overflow: hidden;
    padding-top: var(--header-offset);
}

.cm-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cm-hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
    transform: scale(1.02);
}

.cm-hero__slide.is-active {
    opacity: 1;
    transform: scale(1);
    transition: opacity 1.2s ease, transform 8s ease;
}

.cm-hero__overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay-hero);
}

.cm-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 48px 0 88px;
}

.cm-hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--bg-white);
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 22px;
}

.cm-hero__pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-gold-m);
}

.cm-hero__h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.8rem, 7vw, 4.8rem);
    font-weight: 600;
    color: var(--bg-white);
    line-height: 1.08;
    margin-bottom: 22px;
    letter-spacing: -0.01em;
}

.cm-hero__h1 em {
    font-style: italic;
    color: var(--accent-gold);
    font-weight: 400;
    font-family: 'Playfair Display', Georgia, serif;
}

.cm-hero__p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.68);
    max-width: 520px;
    margin-bottom: 36px;
}

.cm-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.cm-hero__dots {
    position: absolute;
    bottom: 36px;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.cm-hero__dots button {
    width: 44px;
    height: 2px;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s, width 0.3s;
}

.cm-hero__dots button.is-active {
    background: var(--accent-gold-m);
    width: 56px;
}

.cm-hero__scroll {
    position: absolute;
    bottom: 36px;
    right: 40px;
    z-index: 2;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.cm-hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent-gold-m), transparent);
    animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {

    0%,
    100% {
        transform: scaleY(0.6);
        opacity: 0.5;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

@media (min-width: 992px) {
    .cm-hero__scroll {
        display: flex;
    }
}

.cm-anim {
    opacity: 0;
    transform: translateY(20px);
}

.cm-anim.a1 {
    animation: fadeUp 0.7s var(--ease-out) 0.15s forwards;
}

.cm-anim.a2 {
    animation: fadeUp 0.7s var(--ease-out) 0.3s forwards;
}

.cm-anim.a3 {
    animation: fadeUp 0.7s var(--ease-out) 0.45s forwards;
}

.cm-anim.a3b {
    animation: fadeUp 0.7s var(--ease-out) 0.52s forwards;
}

.cm-anim.a3c {
    animation: fadeUp 0.7s var(--ease-out) 0.58s forwards;
}

.cm-anim.a4 {
    animation: fadeUp 0.7s var(--ease-out) 0.65s forwards;
}

.cm-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.cm-hero__chips li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.cm-hero__chips li i {
    font-size: 0.95rem;
    color: var(--accent-gold-m);
}

.cm-hero__trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 22px;
    padding: 14px 12px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.cm-hero__trust-item {
    text-align: center;
}

.cm-hero__trust-item strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--bg-white);
    line-height: 1.2;
    margin-bottom: 2px;
}

.cm-hero__trust-item span {
    display: block;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ════════════════ STATS BAR ════════════════ */
.cm-stats {
    background: var(--premium-gradient);
    padding: 3rem 0;
}

.cm-stats__item {
    text-align: center;
}

.cm-stats__num {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 600;
    color: var(--accent-gold);
    line-height: 1;
    display: block;
}

.cm-stats__label {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 8px;
    display: block;
}

.cm-stats__divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
}

/* ════════════════ DESTINATIONS ════════════════ */
.cm-destinations {
    padding: 100px 0;
    background: var(--bg-light);
}

.cm-loc-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
    background: #0f0f12;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}

.cm-loc-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.cm-loc-card__media {
    position: relative;
    width: 100%;
    line-height: 0;
}

.cm-loc-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
}

.cm-loc-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 8, 10, 0.08) 0%, rgba(8, 8, 10, 0.35) 42%, rgba(8, 8, 10, 0.92) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.75rem;
}

.cm-loc-card__tag {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-gold);
    background: rgba(247, 242, 232, 0.1);
    border: 1px solid rgba(232, 220, 196, 0.28);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 10px;
    width: fit-content;
}

.cm-loc-card__overlay h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2rem);
    color: var(--bg-white);
    margin-bottom: 8px;
}

.cm-loc-card__overlay>p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 16px;
    line-height: 1.6;
}

.cm-loc-card__info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.cm-loc-card__info span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
}

.cm-loc-card__info .bx {
    color: var(--accent-gold);
    font-size: 1rem;
}

/* ════════════════ SERVICES PREMIUM ════════════════ */
.cm-services-premium {
    overflow: hidden;
}

.cm-services-premium--prefooter {
    background: var(--bg-light);
}

.cm-services-premium--prefooter .cm-services-cards {
    padding-bottom: 100px;
    margin-top: -40px;
    position: relative;
    z-index: 3;
}

.cm-services-banner__inner {
    position: relative;
    z-index: 2;
}

.cm-services-banner__text {
    max-width: 680px;
    margin-bottom: 2.5rem;
}

.cm-services-banner {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1544735716-392fe2489ffa?w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: 100px 0 100px;
    min-height: 480px;
    display: flex;
    align-items: center;
}

.cm-services-banner__overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay-banner);
}

.cm-services-banner__title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 600;
    color: var(--accent-gold-l);
    line-height: 1.1;
    margin: 12px 0 16px;
    letter-spacing: -0.02em;
}

.cm-services-banner__sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.75;
    max-width: 560px;
    margin: 0;
}

.cm-services-banner__stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    background: rgba(247, 242, 232, 0.08);
    border: 1px solid rgba(232, 220, 196, 0.18);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 1.6rem 2rem;
}

.cm-services-stat {
    flex: 1;
    min-width: 90px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cm-services-stat__num {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent-gold);
    line-height: 1;
}

.cm-services-stat__label {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
    margin-top: 6px;
}

.cm-services-stat__line {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.12);
}

.cm-services-cards {
    padding: 70px 0 90px;
}

.cm-svc-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
    display: flex;
    flex-direction: column;
    color: inherit;
}

.cm-svc-card--link {
    display: flex;
}

.cm-svc-card--link:hover {
    color: inherit;
}

.cm-svc-card--priority {
    border-color: rgba(139, 6, 24, 0.15);
    background: linear-gradient(180deg, #fff 0%, #fdf9f4 100%);
}

.cm-svc-card__step {
    position: absolute;
    top: 16px;
    right: 18px;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
    color: rgba(139, 6, 24, 0.1);
}

.cm-svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-red), var(--accent-gold-m), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.cm-svc-card:hover::before {
    transform: scaleX(1);
}

.cm-svc-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.cm-svc-card__icon {
    width: 58px;
    height: 58px;
    background: var(--premium-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    transition: transform 0.35s ease;
    box-shadow: var(--shadow-premium);
}

.cm-svc-card:hover .cm-svc-card__icon {
    background: linear-gradient(135deg, #9a071c 0%, #7a0512 100%);
    color: var(--accent-gold-l);
    transform: rotate(-4deg) scale(1.05);
}

.cm-svc-card__icon--warm {
    background: linear-gradient(135deg, #6a040f, #4d030b);
}

.cm-svc-card h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--bg-dark);
}

.cm-svc-card>p {
    font-size: 0.87rem;
    color: var(--color-muted);
    line-height: 1.7;
    flex: 1;
    margin: 0;
}

.cm-svc-card__foot {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.cm-svc-card__tag {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand-red);
    background: rgba(139, 6, 24, 0.06);
    border: 1px solid rgba(139, 6, 24, 0.12);
    border-radius: 100px;
    padding: 4px 12px;
}

.cm-svc-card--cta {
    background: var(--bg-deep);
    border-color: var(--bg-deep);
    padding: 0;
}

.cm-svc-card--cta::before {
    background: linear-gradient(90deg, var(--accent-gold), transparent);
}

.cm-svc-card__cta-inner {
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cm-svc-card__cta-inner h4 {
    color: var(--bg-white);
    margin: 10px 0;
}

.cm-svc-card__cta-inner>p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.87rem;
    margin-bottom: 1.25rem;
}

.cm-svc-card__wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #25D366;
}

.cm-svc-card__wa:hover {
    color: #1da851;
}

/* ════════════════ MARQUEE ════════════════ */
.cm-marquee {
    background: var(--premium-gradient);
    padding: 14px 0;
    overflow: hidden;
}

.cm-marquee__track {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    width: max-content;
    animation: marqueeScroll 28s linear infinite;
}

.cm-marquee__track span {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-gold);
    white-space: nowrap;
}

.cm-marquee__track i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-gold-m);
    opacity: 0.5;
    flex-shrink: 0;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ════════════════ FLEET ════════════════ */
.cm-fleet-sec {
    padding: 100px 0 72px;
    background: var(--accent-gold-l);
    overflow-x: clip;
}

.cm-fleet-scroll-outer {
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 8px 0 12px;
    margin-top: 8px;
    width: 100%;
}

.cm-fleet-scroll-outer::-webkit-scrollbar {
    display: none;
}

.cm-fleet-track {
    display: flex;
    gap: 14px;
    width: max-content;
    padding: 4px 16px 8px;
}

.cm-fleet-card {
    flex: 0 0 min(calc(100svw - 88px), 252px);
    scroll-snap-align: start;
    background: var(--bg-white);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(139, 6, 24, 0.07);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 8px 24px rgba(77, 3, 11, 0.07),
        0 20px 44px rgba(77, 3, 11, 0.06);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s ease;
}

.cm-fleet-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 6, 24, 0.14);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 14px 32px rgba(77, 3, 11, 0.1),
        0 28px 56px rgba(139, 6, 24, 0.12);
}

.cm-fleet-card__visual {
    position: relative;
    height: 250px;
    padding: 0;
    overflow: hidden;
    background: linear-gradient(180deg, #f3efe8 0%, #e8e2d9 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.cm-fleet-card__visual img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center bottom;
    transition: transform 0.45s var(--ease-out);
}

.cm-fleet-card:hover .cm-fleet-card__visual img {
    transform: scale(1.06);
}

.cm-fleet-card__price {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: baseline;
    gap: 1px;
    background: var(--bg-white);
    border: 1px solid rgba(139, 6, 24, 0.08);
    border-radius: 100px;
    padding: 6px 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    line-height: 1;
}

.cm-fleet-card__price-rs {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--brand-red);
    letter-spacing: -0.02em;
}

.cm-fleet-card__price-unit {
    font-size: 0.62rem;
    font-weight: 600;
    color: var(--brand-red);
    opacity: 0.88;
}

.cm-fleet-card__price--quote .cm-fleet-card__price-rs {
    font-size: 0.74rem;
}

.cm-fleet-card__body {
    padding: 14px 14px 16px;
}

.cm-fleet-card__body h3 {
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.cm-fleet-card__feats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.cm-fleet-card__feat {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: var(--bg-white);
    border: 1px solid #e8e3dc;
    border-radius: 100px;
    font-size: 0.66rem;
    font-weight: 600;
    color: var(--brand-red);
    white-space: nowrap;
}

.cm-fleet-card__feat i {
    font-size: 0.85rem;
    line-height: 1;
}

.cm-fleet-card__btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    padding: 11px 14px;
    background: var(--premium-gradient);
    color: var(--bg-white);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    box-shadow: 0 8px 22px rgba(139, 6, 24, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.cm-fleet-card__btn span {
    flex: 1;
    text-align: center;
}

.cm-fleet-card__btn i:first-child {
    color: var(--accent-gold);
    font-size: 0.95rem;
}

.cm-fleet-card__btn i:last-child {
    font-size: 1.05rem;
    opacity: 0.95;
}

.cm-fleet-card__btn:hover {
    color: var(--bg-white);
    transform: translateY(-1px);
    filter: brightness(1.05);
    box-shadow: 0 12px 28px rgba(139, 6, 24, 0.34);
}

.cm-fleet-scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 18px 0 0;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cm-fleet-scroll-hint i {
    font-size: 1.1rem;
    color: var(--brand-red);
    opacity: 0.7;
}

@media (min-width: 992px) {
    .cm-fleet-scroll-outer {
        overflow: visible;
        scroll-snap-type: none;
        padding: 0;
        margin-top: 12px;
    }

    .cm-fleet-track {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        width: 100%;
        margin: 0 auto;
        padding: 0 16px;
    }

    .cm-fleet-card {
        flex: none;
        scroll-snap-align: none;
        max-width: none;
        width: 100%;
    }
}

/* ════════════════ STAYS (overlay cards) ════════════════ */
.cm-stays {
    padding: 100px 0;
    background: var(--bg-white);
}

.cm-stay-overlay {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 340px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    text-align: left;
    width: 100%;
    padding: 0;
    border: none;
    background: none;
    font: inherit;
    color: inherit;
    appearance: none;
    -webkit-appearance: none;
}

.cm-stay-overlay:focus-visible {
    outline: 2px solid var(--brand-red);
    outline-offset: 3px;
}

.cm-stay-overlay:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.cm-stay-overlay>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.cm-stay-overlay:hover>img {
    transform: scale(1.06);
}

.cm-stay-overlay__backdrop {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.28) 42%, rgba(0, 0, 0, 0.08) 100%);
    transition: background 0.35s ease;
}

.cm-stay-overlay:hover .cm-stay-overlay__backdrop {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.78) 45%, rgba(0, 0, 0, 0.55) 100%);
}

.cm-stay-overlay__content {
    position: absolute;
    inset: 0;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.cm-stay-overlay__icon {
    width: 44px;
    height: 44px;
    background: rgba(247, 242, 232, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 12px;
    transition: background 0.3s ease;
}

.cm-stay-overlay:hover .cm-stay-overlay__icon {
    background: var(--accent-gold-l);
    color: var(--brand-red-deep);
}

.cm-stay-overlay__place {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 6px;
}

.cm-stay-overlay__content h5 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--bg-white);
    margin-bottom: 0;
    letter-spacing: -0.02em;
}

.cm-stay-overlay__details {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: max-height 0.4s ease, opacity 0.35s ease, transform 0.35s ease, margin 0.35s ease;
}

.cm-stay-overlay__details .cm-stay-overlay__icon {
    margin-top: 12px;
}

.cm-stay-overlay:hover .cm-stay-overlay__details,
.cm-stay-overlay:focus-visible .cm-stay-overlay__details {
    max-height: 220px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 4px;
}

.cm-stay-overlay:hover .cm-stay-overlay__content h5,
.cm-stay-overlay:focus-visible .cm-stay-overlay__content h5 {
    margin-bottom: 0;
}

.cm-stay-overlay__price {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent-gold-l);
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cm-stay-overlay__content p {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.58);
    margin-bottom: 14px;
    line-height: 1.6;
}

.cm-stay-overlay__content a {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--bg-white);
    width: fit-content;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 2px;
}

.cm-stay-overlay__content a:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

/* ════════════════ POOJA / SACRED ════════════════ */
.cm-sacred {
    padding: 100px 0;
}

.cm-sacred--pooja {
    background: var(--bg-sacred);
    position: relative;
    overflow: hidden;
}

.cm-sacred--pooja::before {
    content: 'ॐ';
    position: absolute;
    top: 8%;
    right: 0;
    font-size: clamp(6rem, 18vw, 12rem);
    color: rgba(247, 242, 232, 0.03);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.cm-pooja-scroll-outer {
    width: 100%;
    padding: 8px 0 4px;
}

.cm-pooja-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0 auto;
    padding: 0 16px;
}

.cm-pooja-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(247, 242, 232, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    cursor: pointer;
    text-align: left;
    width: 100%;
    padding: 0;
    background: none;
    font: inherit;
    color: inherit;
    appearance: none;
    -webkit-appearance: none;
}

.cm-pooja-card:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 3px;
}

.cm-pooja-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 56px rgba(139, 6, 24, 0.35);
    border-color: rgba(212, 196, 160, 0.35);
}

.cm-pooja-card img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.cm-pooja-card:hover img {
    transform: scale(1.05);
}

.cm-pooja-card--featured {
    height: 100%;
    min-height: 520px;
}

.cm-pooja-card--featured img {
    height: 100%;
    min-height: 520px;
}

.cm-pooja-card--compact {
    height: 158px;
}

.cm-pooja-card--compact img {
    height: 158px;
}

.cm-pooja-card__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 40% at 20% 0%, rgba(212, 196, 160, 0.18) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.cm-pooja-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to top, rgba(8, 2, 4, 0.96) 0%, rgba(8, 2, 4, 0.72) 42%, rgba(8, 2, 4, 0.28) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.cm-pooja-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    padding: 5px 12px;
    border-radius: 100px;
    background: rgba(139, 6, 24, 0.55);
    border: 1px solid rgba(247, 242, 232, 0.2);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-gold-l);
    margin-bottom: 10px;
}

.cm-pooja-card__badge i {
    font-size: 0.9rem;
    color: var(--accent-gold);
}

.cm-pooja-card__place {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-gold-m);
    margin-bottom: 6px;
}

.cm-pooja-card__overlay h3 {
    font-size: clamp(1.15rem, 2.5vw, 1.65rem);
    color: var(--bg-white);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.cm-pooja-card--featured .cm-pooja-card__overlay p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.58);
    margin-bottom: 14px;
    line-height: 1.6;
}

.cm-pooja-card__foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(247, 242, 232, 0.12);
    margin-top: auto;
}

.cm-pooja-card__meta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
}

.cm-pooja-card__meta i {
    color: var(--accent-gold);
}

.cm-pooja-card__foot a {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent-gold-l);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.cm-pooja-card__foot a:hover {
    color: var(--bg-white);
}

.cm-pooja-card--compact .cm-pooja-card__overlay {
    padding: 1.1rem 1.25rem;
}

.cm-pooja-card--compact .cm-pooja-card__badge {
    margin-bottom: 8px;
}

.cm-pooja-card--compact .cm-pooja-card__overlay h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.cm-pooja-card--compact .cm-pooja-card__foot {
    padding-top: 10px;
    margin-top: 8px;
    border-top: none;
}

.cm-pooja-card--compact .cm-pooja-card__place {
    margin-bottom: 0;
    font-size: 0.62rem;
}

.cm-pooja-card--grid {
    height: 300px;
    min-height: 300px;
    flex-shrink: 0;
}

.cm-pooja-card__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cm-pooja-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cm-pooja-card__expand {
    display: none;
}

.cm-pooja-card--grid img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
}

.cm-pooja-card--grid .cm-pooja-card__overlay {
    background: linear-gradient(to top, rgba(8, 2, 4, 0.82) 0%, rgba(8, 2, 4, 0.35) 38%, transparent 100%);
    transition: background 0.35s ease;
}

.cm-pooja-card--grid .cm-pooja-card__overlay h3 {
    margin-bottom: 0;
}

.cm-pooja-card--grid .cm-pooja-card__badge,
.cm-pooja-card--grid .cm-pooja-card__place,
.cm-pooja-card--grid .cm-pooja-card__overlay p,
.cm-pooja-card--grid .cm-pooja-card__foot {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: none;
    transform: translateY(8px);
    transition: max-height 0.4s ease, opacity 0.35s ease, transform 0.35s ease, margin 0.35s ease, padding 0.35s ease;
}

.cm-pooja-card--grid:hover .cm-pooja-card__overlay,
.cm-pooja-card--grid:focus-visible .cm-pooja-card__overlay {
    background: linear-gradient(to top, rgba(8, 2, 4, 0.96) 0%, rgba(8, 2, 4, 0.72) 42%, rgba(8, 2, 4, 0.28) 100%);
}

.cm-pooja-card--grid:hover .cm-pooja-card__badge,
.cm-pooja-card--grid:focus-visible .cm-pooja-card__badge {
    max-height: 40px;
    opacity: 1;
    transform: translateY(0);
    margin-bottom: 10px;
    padding: 5px 12px;
}

.cm-pooja-card--grid:hover .cm-pooja-card__place,
.cm-pooja-card--grid:focus-visible .cm-pooja-card__place {
    max-height: 24px;
    opacity: 1;
    transform: translateY(0);
    margin-bottom: 6px;
}

.cm-pooja-card--grid:hover .cm-pooja-card__overlay p,
.cm-pooja-card--grid:focus-visible .cm-pooja-card__overlay p {
    max-height: 60px;
    opacity: 1;
    transform: translateY(0);
    margin-bottom: 10px;
}

.cm-pooja-card--grid:hover .cm-pooja-card__foot,
.cm-pooja-card--grid:focus-visible .cm-pooja-card__foot {
    max-height: 40px;
    opacity: 1;
    transform: translateY(0);
    padding-top: 10px;
    margin-top: 4px;
    border-top: 1px solid rgba(247, 242, 232, 0.1);
}

.cm-pooja-card--grid .cm-pooja-card__overlay p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 10px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cm-pooja-card__view {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent-gold-l);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.cm-pooja-card--grid .cm-pooja-card__foot {
    padding-top: 10px;
    margin-top: 4px;
    border-top: 1px solid rgba(247, 242, 232, 0.1);
}

.cm-pooja-grid-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 20px 0 0;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
}

.cm-pooja-grid-hint i {
    color: var(--accent-gold);
}

/* Pooja modal */
.cm-pooja-modal {
    position: fixed;
    inset: 0;
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.cm-pooja-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.cm-pooja-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 2, 4, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.cm-pooja-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 620px;
    max-height: min(90vh, 820px);
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--bg-white);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    transform: translateY(24px) scale(0.97);
    transition: transform 0.4s var(--ease-out);
}

.cm-pooja-modal.is-open .cm-pooja-modal__dialog {
    transform: translateY(0) scale(1);
}

.cm-pooja-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: var(--bg-dark);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: transform 0.25s ease, background 0.25s ease;
}

.cm-pooja-modal__close:hover {
    transform: scale(1.05);
    background: var(--bg-white);
}

.cm-pooja-modal__hero {
    height: 200px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.cm-pooja-modal__body {
    padding: 1.5rem 1.5rem 1.75rem;
    overflow-y: auto;
    flex: 1;
    background: var(--bg-white);
}

.cm-pooja-modal__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(139, 6, 24, 0.1);
    border: 1px solid rgba(139, 6, 24, 0.18);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-red);
    margin-bottom: 10px;
}

.cm-pooja-modal__place {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 10px;
}

.cm-pooja-modal__title {
    font-size: clamp(1.35rem, 4vw, 1.75rem);
    color: var(--bg-dark);
    margin-bottom: 18px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.cm-pooja-modal__content p {
    font-size: 0.94rem;
    line-height: 1.75;
    color: #3a3234;
    margin-bottom: 14px;
}

.cm-pooja-modal__content p:last-child {
    margin-bottom: 0;
}

.cm-pooja-modal__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--bg-white);
}

.cm-pooja-modal__book {
    flex: 1;
    min-width: 180px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: var(--premium-gradient);
    color: var(--bg-white);
    border: none;
    box-shadow: var(--shadow-premium);
    transition: transform 0.25s ease, filter 0.25s ease;
}

.cm-pooja-modal__book i {
    color: var(--accent-gold);
    font-size: 1.05rem;
}

.cm-pooja-modal__book:hover {
    color: var(--bg-white);
    filter: brightness(1.06);
    transform: translateY(-1px);
}

.cm-pooja-modal__wa {
    flex: 1;
    min-width: 140px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    background: #25D366;
    color: #ffffff;
    border: none;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.28);
    transition: transform 0.25s ease, background 0.25s ease;
}

.cm-pooja-modal__wa:hover {
    background: #1da851;
    color: #ffffff;
    transform: translateY(-1px);
}

@media (max-width: 991px) {
    .cm-pooja-scroll-outer {
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        max-width: 100%;
        overscroll-behavior-x: contain;
    }

    .cm-pooja-scroll-outer::-webkit-scrollbar {
        display: none;
    }

    .cm-pooja-grid {
        display: flex;
        gap: 14px;
        width: max-content;
        max-width: none;
        margin: 0;
        padding: 4px 16px 8px;
        grid-template-columns: unset;
    }

    .cm-pooja-card {
        box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
    }

    .cm-pooja-card:hover {
        transform: none;
    }

    .cm-pooja-card:hover img {
        transform: none;
    }

    .cm-pooja-card--grid {
        flex: 0 0 calc(100svw - 40px);
        width: calc(100svw - 40px);
        max-width: 320px;
        scroll-snap-align: start;
        height: auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        border-radius: 18px;
        overflow: hidden;
    }

    .cm-pooja-card__media {
        position: relative;
        inset: auto;
        flex: 0 0 auto;
        height: 196px;
        overflow: hidden;
    }

    .cm-pooja-card__media img,
    .cm-pooja-card--grid img {
        width: 100%;
        height: 100%;
        min-height: 0;
        object-fit: cover;
    }

    .cm-pooja-card__expand {
        position: absolute;
        top: 12px;
        right: 12px;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(139, 6, 24, 0.92);
        border: 1px solid rgba(247, 242, 232, 0.22);
        color: var(--bg-white);
        font-size: 1.25rem;
        line-height: 1;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
        pointer-events: none;
    }

    .cm-pooja-card__glow {
        display: none;
    }

    .cm-pooja-card--grid .cm-pooja-card__overlay {
        position: relative;
        inset: auto;
        z-index: 1;
        flex: 1;
        min-height: 0;
        background: linear-gradient(180deg, #1c0e14 0%, #12080b 100%);
        padding: 1rem 1.05rem 1.1rem;
        justify-content: flex-start;
    }

    .cm-pooja-card--grid .cm-pooja-card__badge,
    .cm-pooja-card--grid .cm-pooja-card__place,
    .cm-pooja-card--grid .cm-pooja-card__overlay p,
    .cm-pooja-card--grid .cm-pooja-card__foot {
        max-height: none;
        opacity: 1;
        transform: none;
        overflow: visible;
    }

    .cm-pooja-card--grid .cm-pooja-card__badge {
        margin-bottom: 8px;
        padding: 4px 10px;
        font-size: 0.58rem;
    }

    .cm-pooja-card--grid .cm-pooja-card__place {
        margin-bottom: 4px;
        font-size: 0.62rem;
    }

    .cm-pooja-card--grid .cm-pooja-card__overlay h3 {
        font-size: 1.08rem;
        margin-bottom: 6px;
        line-height: 1.25;
    }

    .cm-pooja-card--grid .cm-pooja-card__overlay p {
        font-size: 0.76rem;
        margin-bottom: 12px;
        line-height: 1.5;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .cm-pooja-card--grid .cm-pooja-card__foot {
        margin-top: auto;
        padding-top: 0;
        border-top: none;
    }

    .cm-pooja-card--grid .cm-pooja-card__view {
        width: 100%;
        justify-content: center;
        padding: 10px 14px;
        border-radius: 100px;
        background: var(--premium-gradient);
        color: var(--accent-gold-l);
        font-size: 0.68rem;
        letter-spacing: 0.08em;
        box-shadow: 0 6px 18px rgba(139, 6, 24, 0.35);
    }

    .cm-pooja-card--grid .cm-pooja-card__view i {
        font-size: 0.85rem;
    }

    .cm-stay-overlay {
        height: 300px;
    }
}

@media (min-width: 992px) {
    .cm-pooja-scroll-outer {
        overflow: visible;
    }
}

@media (max-width: 575px) {
    .cm-pooja-modal {
        padding: 10px;
        align-items: flex-end;
    }

    .cm-pooja-modal__dialog {
        max-height: 92vh;
        border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    }

    .cm-pooja-modal__actions {
        flex-direction: column;
    }

    .cm-pooja-modal__book,
    .cm-pooja-modal__wa {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .cm-pooja-card--featured {
        min-height: 360px;
    }

    .cm-pooja-card--featured img {
        min-height: 360px;
    }

    .cm-stay-overlay {
        height: 300px;
    }
}

/* ════════════════ STORY ════════════════ */
.cm-story {
    padding: 100px 0;
    background: var(--bg-light);
}

.cm-story__stack {
    position: relative;
    padding-bottom: 50px;
    padding-right: 24px;
}

.cm-story__img-main {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.cm-story__img-accent {
    position: absolute;
    bottom: -20px;
    right: -10px;
    width: 50%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 6px solid var(--bg-light);
    box-shadow: var(--shadow-md);
    transition: transform 0.4s ease;
}

.cm-story__stack:hover .cm-story__img-accent {
    transform: translateY(-6px);
}

.cm-story__badge {
    position: absolute;
    top: 24px;
    left: -12px;
    background: var(--premium-gradient);
    color: var(--accent-gold-l);
    padding: 18px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-premium);
}

.cm-story__badge-num {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    line-height: 1;
    display: block;
}

.cm-story__badge small {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
}

.cm-story-tabs {
    border: none;
    gap: 4px;
    margin: 24px 0 20px;
}

.cm-story-tabs .nav-link {
    border: none;
    border-radius: 100px;
    padding: 8px 18px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-muted);
    background: rgba(0, 0, 0, 0.04);
}

.cm-story-tabs .nav-link.active {
    background: var(--bg-dark);
    color: var(--bg-white);
}

.cm-story-tab-content p {
    font-size: 0.98rem;
    color: var(--color-muted);
    margin-bottom: 14px;
    line-height: 1.7;
}

.cm-story__quote {
    margin: 28px 0;
    padding: 1.5rem 1.75rem;
    background: var(--bg-white);
    border-left: 3px solid var(--brand-red);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    box-shadow: var(--shadow-sm);
}

.cm-story__quote p {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--bg-dark);
    margin-bottom: 10px;
    line-height: 1.55;
}

.cm-story__quote cite {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--color-muted);
    font-style: normal;
}

.cm-story__ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .cm-story__img-main {
        height: 360px;
    }

    .cm-story__img-accent {
        width: 55%;
        height: 160px;
    }
}

/* ════════════════ EXPERIENCE (Polished Path) ════════════════ */
.cm-experience {
    padding: 100px 0;
    background: var(--bg-sacred);
    position: relative;
    overflow: hidden;
}

.cm-exp-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 28px;
    padding: 14px 12px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(247, 242, 232, 0.12);
}

.cm-exp-stat {
    text-align: center;
}

.cm-exp-stat strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--accent-gold-l);
    line-height: 1.2;
    margin-bottom: 2px;
}

.cm-exp-stat span {
    display: block;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.cm-exp-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.cm-exp-feature {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.cm-exp-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(232, 220, 196, 0.3);
    transform: translateX(4px);
}

.cm-exp-feature__step {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(247, 242, 232, 0.28);
}

.cm-exp-feature__icon {
    width: 44px;
    height: 44px;
    background: rgba(247, 242, 232, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.15rem;
    flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease;
}

.cm-exp-feature:hover .cm-exp-feature__icon {
    background: var(--accent-gold-l);
    color: var(--brand-red-deep);
}

.cm-exp-feature__body h6 {
    font-family: 'IBM Plex Sans', var(--font-sans);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--bg-white);
    margin: 0 0 4px;
    letter-spacing: -0.01em;
}

.cm-exp-feature__body p {
    margin: 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.82rem;
    line-height: 1.5;
}

.cm-exp-cta {
    display: inline-flex;
}

.cm-experience__visual {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
}

.cm-experience__visual img {
    width: 100%;
    display: block;
    aspect-ratio: 2 / 1;
    
    object-fit: cover;
}

.cm-experience__badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 100px;
    background: rgba(8, 2, 4, 0.72);
    border: 1px solid rgba(247, 242, 232, 0.18);
    backdrop-filter: blur(8px);
    color: var(--accent-gold-l);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.cm-experience__badge i {
    color: var(--accent-gold-m);
    font-size: 0.95rem;
}

.cm-experience__thumb {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 112px;
}

.cm-experience__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.cm-experience__thumb span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 8px;
    background: linear-gradient(to top, rgba(8, 2, 4, 0.78) 0%, transparent 70%);
    color: var(--bg-white);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cm-experience__thumb:hover img {
    transform: scale(1.06);
}

/* ════════════════ TESTIMONIALS ════════════════ */
.cm-testi {
    padding: 100px 0;
    background: var(--bg-light);
}

.cm-testi-rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 16px;
    margin-bottom: 32px;
    padding: 12px 18px;
    border-radius: 100px;
    background: var(--bg-white);
    border: 1px solid rgba(139, 6, 24, 0.08);
    box-shadow: 0 8px 24px rgba(77, 3, 11, 0.06);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.cm-testi-rating__score {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--bg-dark);
}

.cm-testi-rating__score i {
    font-size: 1.05rem;
    color: #4285f4;
}

.cm-testi-rating__sep {
    width: 1px;
    height: 18px;
    background: rgba(0, 0, 0, 0.1);
}

.cm-testi-rating__count {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-muted);
    letter-spacing: 0.02em;
}

.cm-testi-carousel-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 820px;
    margin: 0 auto;
}

.cm-testi-nav {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(139, 6, 24, 0.12);
    background: var(--bg-white);
    color: var(--brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    box-shadow: 0 4px 14px rgba(77, 3, 11, 0.08);
}

.cm-testi-nav:hover {
    background: var(--premium-gradient);
    color: var(--accent-gold-l);
    border-color: transparent;
    transform: scale(1.05);
}

.cm-testi-carousel-wrap .carousel {
    flex: 1;
    min-width: 0;
}

.cm-testi-carousel-wrap .carousel-inner {
    min-height: 0;
}

.cm-testi-carousel-wrap .carousel-item {
    padding: 0;
}

.cm-testi-card {
    text-align: center;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px 20px 18px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(139, 6, 24, 0.07);
    box-shadow: 0 10px 32px rgba(77, 3, 11, 0.07);
    position: relative;
}

.cm-testi-card__tag {
    display: inline-block;
    margin-bottom: 10px;
    padding: 4px 10px;
    border-radius: 100px;
    background: rgba(139, 6, 24, 0.08);
    color: var(--brand-red);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cm-testi-card__stars {
    color: var(--accent-gold-d);
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.cm-testi-card blockquote {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    line-height: 1.52;
    color: var(--bg-dark);
    margin: 0 0 14px;
    font-style: italic;
    font-weight: 400;
    position: relative;
}

.cm-testi-card blockquote::before {
    content: '\201C';
    display: block;
    font-size: 1.75rem;
    line-height: 1;
    color: rgba(139, 6, 24, 0.12);
    margin-bottom: 4px;
}

.cm-testi-card__author {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    text-align: left;
}

.cm-testi-card__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--premium-gradient);
    color: var(--accent-gold-l);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
    text-align: center;
}

.cm-testi-card__author-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
}

.cm-testi-card__author strong {
    display: block;
    font-family: 'IBM Plex Sans', var(--font-sans);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 0;
    line-height: 1.3;
}

.cm-testi-card__author-place {
    display: block;
    font-size: 0.7rem;
    color: var(--color-muted);
    letter-spacing: 0.03em;
    line-height: 1.3;
}

.cm-testi-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.cm-testi-dots {
    position: relative;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.cm-testi-dots button {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background: rgba(139, 6, 24, 0.15) !important;
    border: none !important;
    opacity: 1 !important;
    transition: background 0.25s ease, transform 0.25s ease;
}

.cm-testi-dots button.active {
    background: var(--brand-red) !important;
    transform: scale(1.15);
}

.cm-testi-counter {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--color-muted);
    min-width: 36px;
}

/* ════════════════ CTA ════════════════ */
.cm-cta {
    position: relative;
    padding: 110px 0;
    background: var(--bg-darker);
    overflow: hidden;
}

.cm-cta__bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1524492412937-b28074a5d7da?w=1600&q=80');
    background-size: cover;
    background-position: center;
}

.cm-cta__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--overlay-cta);
}

.cm-cta .container {
    position: relative;
    z-index: 2;
}

.cm-cta__title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    color: var(--bg-white);
    line-height: 1.1;
    margin-bottom: 0;
}

.cm-cta__title em {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 500;
    color: var(--accent-gold);
}

.cm-cta__sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.62);
    max-width: 480px;
    margin: 18px 0 24px;
    line-height: 1.7;
}

.cm-cta__trust {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cm-cta__trust li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.72);
}

.cm-cta__trust .bx {
    color: var(--accent-gold-m);
    font-size: 1.15rem;
}

.cm-cta__panel {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.cm-cta__panel-head {
    margin-bottom: 20px;
}

.cm-cta__panel-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-gold);
    background: rgba(247, 242, 232, 0.1);
    border: 1px solid rgba(232, 220, 196, 0.22);
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.cm-cta__panel-head h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--bg-white);
    margin-bottom: 8px;
}

.cm-cta__panel-head p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.52);
    margin: 0;
}

.cm-cta__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cm-cta__action {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.cm-cta__action:hover {
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(232, 220, 196, 0.28);
    color: var(--bg-white);
}

.cm-cta__action-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.cm-cta__action-text {
    flex: 1;
    text-align: left;
}

.cm-cta__action-text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--bg-white);
    margin-bottom: 2px;
}

.cm-cta__action-text small {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.48);
}

.cm-cta__action>.bx-chevron-right {
    color: rgba(255, 255, 255, 0.35);
    font-size: 1.3rem;
}

.cm-cta__action--call .cm-cta__action-icon {
    background: rgba(247, 242, 232, 0.12);
    color: var(--accent-gold);
}

.cm-cta__action--wa .cm-cta__action-icon {
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
}

.cm-cta__action--mail .cm-cta__action-icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--bg-white);
}

/* ════════════════ FOOTER ════════════════ */
.cm-footer {
    background: var(--bg-white);
    padding: 80px 0 20px;
    color: var(--color-muted);
}

.cm-footer__logo {
    display: inline-block;
    margin-bottom: 18px;
}

.cm-footer__logo-img {
    display: block;
    height: auto;
    max-width: 160px;
    width: 100%;
}

.cm-footer__about {
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 22px;
}

.cm-footer__socials {
    display: flex;
    gap: 10px;
}

.cm-footer__socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-size: 1.15rem;
}

.cm-footer__socials a:hover {
    background: var(--bg-dark);
    color: var(--bg-white);
}

.cm-footer h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--bg-dark);
    margin-bottom: 20px;
}

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

.cm-footer ul li {
    margin-bottom: 10px;
}

.cm-footer ul li a {
    font-size: 0.88rem;
}

.cm-footer ul li a:hover {
    color: var(--bg-dark);
}

.cm-footer__info {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.88rem;
}

.cm-footer__info .bx {
    font-size: 1.1rem;
    color: var(--bg-dark);
    margin-top: 2px;
}

.cm-footer__bottom {
    margin-top: 56px;
    padding-top: 22px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.82rem;
}

/* ════════════════ FLOAT CONTACT (Call + WhatsApp) ════════════════ */
.cm-float-contact {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 950;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    opacity: 0;
    transform: translateY(28px) scale(0.92);
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.45s ease, transform 0.45s var(--ease-out), visibility 0.45s;
}

.cm-float-contact.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
    pointer-events: auto;
}

.cm-float-contact__btn {
    position: relative;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cm-float-contact.is-visible .cm-float-contact__btn {
    animation: cm-float-pop 0.5s var(--ease-out) backwards;
}

.cm-float-contact.is-visible .cm-float-contact__btn:nth-child(1) {
    animation-delay: 0.05s;
}

.cm-float-contact.is-visible .cm-float-contact__btn:nth-child(2) {
    animation-delay: 0.15s;
}

.cm-float-contact__btn .bx {
    position: relative;
    z-index: 2;
    font-size: 1.45rem;
}

.cm-float-contact__btn:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
    color: var(--bg-white);
}

.cm-float-contact__btn--wa {
    background: #25D366;
}

.cm-float-contact__btn--wa:hover {
    background: #1da851;
}

.cm-float-contact__btn--call {
    background: var(--bg-dark);
}

.cm-float-contact__btn--call:hover {
    background: var(--brand-red-deep);
}

.cm-float-contact__wave {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.cm-float-contact:not(.is-visible) .cm-float-contact__wave {
    animation: none;
}

.cm-float-contact__btn--wa .cm-float-contact__wave {
    border: 2px solid rgba(37, 211, 102, 0.55);
    animation: cm-float-wave 2.4s ease-out infinite;
}

.cm-float-contact__btn--call .cm-float-contact__wave {
    border: 2px solid rgba(122, 11, 11, 0.45);
    animation: cm-float-wave 2.4s ease-out infinite;
}

.cm-float-contact__wave--delay {
    animation-delay: 1.2s !important;
}

@keyframes cm-float-wave {
    0% {
        transform: scale(1);
        opacity: 0.55;
    }

    100% {
        transform: scale(1.75);
        opacity: 0;
    }
}

@keyframes cm-float-pop {
    0% {
        opacity: 0;
        transform: translateY(16px) scale(0.85);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 575px) {
    .cm-float-contact {
        bottom: 18px;
        right: 18px;
        gap: 12px;
    }

    .cm-float-contact__btn {
        width: 50px;
        height: 50px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cm-float-contact__wave {
        animation: none;
        display: none;
    }

    .cm-float-contact.is-visible .cm-float-contact__btn {
        animation: none;
    }
}

/* ════════════════ REVEAL (lightweight) ════════════════ */
.cm-reveal {
    transform: translateY(18px);
    transition: transform 0.45s var(--ease-out);
    will-change: transform;
}

.cm-reveal.is-visible {
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .cm-reveal {
        transform: none;
        transition: none;
    }
}

/* ════════════════ RESPONSIVE ════════════════ */
@media (max-width: 991px) {
    .cm-nav {
        overflow: visible;
    }

    .cm-nav__inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
    }

    .cm-nav__slot--logo {
        flex: 1;
        min-width: 0;
        justify-content: flex-start;
    }

    .cm-nav__slot--call {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cm-nav__slot--toggle {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .cm-nav__logo-img {
        height: 40px;
        max-width: 132px;
    }

    .cm-nav__call,
    .cm-burger {
        height: 42px;
        margin: 0;
    }

    .cm-burger {
        width: 42px;
        flex-shrink: 0;
    }

    .cm-services-banner {
        padding: 70px 0 80px;
        min-height: auto;
    }

    .cm-services-banner__stats {
        padding: 1.25rem 1rem;
    }

    .cm-services-stat__line {
        display: none;
    }

    .cm-services-stat {
        min-width: calc(50% - 0.5rem);
    }

    .cm-services-premium--prefooter .cm-services-cards {
        margin-top: 0;
        padding-top: 40px;
    }

    .cm-story__text-col {
        order: 1;
    }

    .cm-fleet-scroll-outer {
        max-width: 100%;
        overscroll-behavior-x: contain;
    }

    .cm-fleet-card {
        flex: 0 0 calc(100svw - 40px);
        max-width: 320px;
    }

    .cm-fleet-card__visual {
        height: 175px;
    }
}

@media (max-width: 767px) {
    .cm-sec-header {
        margin-bottom: 32px;
    }

    .cm-sec-title {
        font-size: clamp(1.75rem, 7vw, 2.4rem);
    }

    .cm-hero {
        align-items: flex-end;
        min-height: 92svh;
    }

    .cm-hero__overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.72) 45%, rgba(8, 2, 4, 0.92) 100%);
    }

    .cm-hero__h1 {
        font-size: clamp(2.65rem, 12vw, 3.55rem);
        line-height: 1.05;
        margin-bottom: 14px;
    }

    .cm-hero__p {
        font-size: 0.92rem;
        max-width: 100%;
        margin-bottom: 16px;
        line-height: 1.55;
    }

    .cm-hero__content {
        padding: 20px 0 92px;
    }

    .cm-hero__pill {
        margin-bottom: 14px;
        font-size: 0.65rem;
        padding: 6px 14px;
    }

    .cm-hero__chips {
        margin-bottom: 14px;
    }

    .cm-hero__trust {
        margin-bottom: 18px;
        padding: 12px 10px;
    }

    .cm-hero__trust-item strong {
        font-size: 1rem;
    }

    .cm-hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .cm-hero__actions .cm-btn-primary,
    .cm-hero__actions .cm-btn-outline-white {
        width: 100%;
        justify-content: center;
    }

    .cm-hero__dots {
        bottom: 20px;
    }

    .cm-hero__scroll {
        display: none !important;
    }

    .cm-stats {
        padding: 2rem 0;
    }

    .cm-stats__num {
        font-size: clamp(1.8rem, 7vw, 2.4rem);
    }

    .cm-stats__label {
        font-size: 0.58rem;
        letter-spacing: 0.12em;
    }

    .cm-stats__divider {
        display: none;
    }

    .cm-loc-card {
        height: auto;
        min-height: 360px;
    }

    .cm-loc-card__overlay {
        padding: 1.25rem;
    }

    .cm-loc-card__overlay h3 {
        font-size: 1.45rem;
    }

    .cm-btn-primary--sm {
        font-size: 0.82rem;
        padding: 11px 16px;
    }

    .cm-fleet-card__body {
        padding: 12px 12px 14px;
    }

    .cm-fleet-card__visual {
        height: 220px;
        min-height: unset;
        padding: 0;
    }

    .cm-fleet-card__visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center bottom;
    }

    .cm-fleet-card__body h3 {
        font-size: 1.1rem;
    }

    .cm-fleet-card__feat {
        font-size: 0.62rem;
        padding: 4px 8px;
    }

    .cm-fleet-track {
        gap: 12px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .cm-fleet-card {
        flex: 0 0 calc(100svw - 60px);
        max-width: none;
    }

    .cm-stay-overlay {
        height: 280px;
    }

    .cm-stay-overlay__content {
        padding: 1.25rem;
    }

    .cm-stay-overlay__content h5 {
        font-size: 1.15rem;
    }

    .cm-stay-overlay__content p {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .cm-sacred--pooja::before {
        font-size: 5rem;
        top: 4%;
        right: 0;
    }

    .cm-pooja-grid {
        padding-left: 12px;
        padding-right: 12px;
        gap: 12px;
    }

    .cm-pooja-card--grid {
        flex: 0 0 calc(100svw - 36px);
        width: calc(100svw - 36px);
    }

    .cm-pooja-card__media {
        height: 172px;
    }

    .cm-pooja-card--grid .cm-pooja-card__overlay {
        padding: 0.9rem 0.95rem 1rem;
    }

    .cm-pooja-card--grid .cm-pooja-card__overlay h3 {
        font-size: 1rem;
    }

    .cm-pooja-grid-hint {
        margin-top: 16px;
        font-size: 0.72rem;
    }

    .cm-story__img-main {
        height: 280px;
    }

    .cm-story__img-accent {
        width: 52%;
        height: 140px;
        bottom: -50px;
        right: 0;
    }

    .cm-story__badge {
        top: 12px;
        left: 8px;
        padding: 12px 16px;
    }

    .cm-story__badge-num {
        font-size: 1.8rem;
    }

    .cm-story-tabs {
        flex-wrap: wrap;
    }

    .cm-story-tabs .nav-link {
        font-size: 0.75rem;
        padding: 7px 14px;
    }

    .cm-experience__thumb {
        height: 96px;
    }

    .cm-experience__visual img {
        aspect-ratio: 16 / 10;
        max-height: 200px;
    }

    .cm-exp-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 20px;
    }

    .cm-exp-feature {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 14px 12px;
        min-height: 100%;
    }

    .cm-exp-feature__step {
        top: 10px;
        right: 10px;
        font-size: 0.58rem;
    }

    .cm-exp-feature__icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .cm-exp-feature__body h6 {
        font-size: 0.82rem;
    }

    .cm-exp-feature__body p {
        font-size: 0.72rem;
        line-height: 1.45;
    }

    .cm-exp-cta {
        width: 100%;
        justify-content: center;
    }

    .cm-experience {
        padding: 70px 0;
    }

    .cm-experience__badge {
        left: 12px;
        bottom: 12px;
        font-size: 0.65rem;
        padding: 6px 12px;
    }

    .cm-testi {
        padding: 70px 0;
    }

    .cm-testi-rating {
        border-radius: var(--radius-lg);
        padding: 12px 14px;
        margin-bottom: 24px;
    }

    .cm-testi-rating__sep {
        display: none;
    }

    .cm-testi-rating__score,
    .cm-testi-rating__count {
        font-size: 0.75rem;
    }

    .cm-testi-carousel-wrap {
        flex-direction: column;
        gap: 16px;
    }

    .cm-testi-nav {
        display: none;
    }

    .cm-testi-carousel-wrap .carousel-inner {
        min-height: 0;
    }

    .cm-testi-card {
        max-width: none;
        padding: 16px 14px 14px;
        border-radius: var(--radius-md);
    }

    .cm-testi-card blockquote {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 14px;
    }

    .cm-testi-card blockquote::before {
        font-size: 1.4rem;
        margin-bottom: 2px;
    }

    .cm-testi-card__author {
        padding-top: 14px;
    }

    .cm-testi-footer {
        margin-top: 18px;
    }

    .cm-cta {
        padding: 70px 0;
    }

    .cm-cta__sub {
        max-width: none;
    }

    .cm-cta__trust {
        margin-bottom: 12px;
    }

    .cm-cta__panel {
        padding: 22px 18px;
    }

    .cm-cta__action {
        padding: 14px 14px;
    }

    .cm-services-banner__title {
        font-size: clamp(1.75rem, 7vw, 2.4rem);
    }

    .cm-services-banner__sub {
        font-size: 0.92rem;
    }

    .cm-services-cards {
        padding: 36px 0 60px;
    }

    .cm-svc-card {
        padding: 1.5rem 1.25rem;
    }

    .cm-destinations,
    .cm-fleet-sec,
    .cm-stays,
    .cm-sacred,
    .cm-story,
    .cm-experience,
    .cm-testi {
        padding: 64px 0;
    }

    .cm-footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .cm-drawer {
        width: 100%;
        max-width: 100%;
    }

    .cm-burger {
        z-index: 2;
    }
}

@media (max-width: 575px) {
    .cm-nav__logo-img {
        height: 56px;
        max-width: 108px;
    }

    .cm-nav__call {
        height: 40px;
        padding: 4px 12px 4px 4px;
        font-size: 0.84rem;
    }

    .cm-nav__call-icon {
        width: 32px;
        height: 32px;
        margin-right: 8px;
    }

    .cm-nav__call-icon i {
        font-size: 1.08rem;
    }

    .cm-nav__call,
    .cm-burger {
        height: 40px;
    }

    .cm-burger {
        width: 40px;
    }

    .cm-live-badge {
        font-size: 0.72rem;
        text-align: center;
        display: flex;
        justify-content: center;
    }

    .cm-services-stat {
        min-width: 100%;
    }

    .cm-loc-card {
        min-height: 340px;
    }
}

@media (max-width: 389px) {
    .cm-nav__inner.container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .cm-nav__logo-img {
        max-width: 92px;
        height: 34px;
    }

    .cm-nav__call {
        height: 38px;
        padding: 4px 10px 4px 4px;
        font-size: 0.8rem;
    }

    .cm-nav__call-icon {
        width: 30px;
        height: 30px;
        margin-right: 7px;
    }

    .cm-nav__call-icon i {
        font-size: 1rem;
    }

    .cm-nav__call-num {
        letter-spacing: -0.02em;
    }

    .cm-nav__call,
    .cm-burger {
        height: 38px;
    }

    .cm-burger {
        width: 38px;
    }
}

/* ════════════════ LEGAL / POLICY PAGES ════════════════ */
body.cm-page-legal {
    background: var(--bg-light);
}

body.cm-page-legal .cm-nav {
    background: rgba(250, 248, 245, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.04);
}

body.cm-page-legal .cm-nav__logo-img {
    filter: none;
}

body.cm-page-legal .cm-nav__links a {
    color: var(--color-text);
}

body.cm-page-legal .cm-nav__links a:hover,
body.cm-page-legal .cm-nav__links a.active {
    color: var(--brand-red);
}

body.cm-page-legal .cm-burger span {
    background: var(--bg-dark);
}

body.cm-page-legal .cm-nav__cta {
    background: var(--premium-gradient);
    color: var(--accent-gold-l);
}

.cm-legal-hero {
    padding: calc(var(--header-offset) + 40px) 0 56px;
    background: var(--bg-sacred);
    position: relative;
    overflow: hidden;
}

.cm-legal-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 80% 20%, rgba(139, 6, 24, 0.18) 0%, transparent 60%);
    pointer-events: none;
}

.cm-legal-hero .container {
    position: relative;
    z-index: 1;
}

.cm-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    margin-bottom: 22px;
    font-size: clamp(0.95rem, 2.2vw, 1.15rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
}

.cm-breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-gold-l);
    transition: color 0.25s ease;
}

.cm-breadcrumb a:hover {
    color: var(--bg-white);
}

.cm-breadcrumb__sep {
    color: rgba(255, 255, 255, 0.28);
    font-size: 1.1rem;
    line-height: 1;
}

.cm-breadcrumb__current {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
}

.cm-legal-hero__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.4rem, 7vw, 4.2rem);
    font-weight: 600;
    line-height: 1.08;
    color: var(--bg-white);
    margin: 0 0 14px;
    letter-spacing: -0.02em;
}

.cm-legal-hero__sub {
    max-width: 640px;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.58);
    margin: 0;
}

.cm-legal-body {
    padding: 56px 0 88px;
}

.cm-legal-layout {
    display: grid;
    grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.cm-legal-nav {
    position: sticky;
    top: calc(var(--header-offset) + 20px);
    padding: 22px 20px;
    border-radius: var(--radius-xl);
    background: var(--bg-white);
    border: 1px solid rgba(139, 6, 24, 0.08);
    box-shadow: 0 12px 36px rgba(77, 3, 11, 0.06);
}

.cm-legal-nav__title {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand-red);
    margin-bottom: 14px;
}

.cm-legal-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cm-legal-nav a {
    display: block;
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--color-muted);
    line-height: 1.4;
    transition: background 0.25s ease, color 0.25s ease;
}

.cm-legal-nav a:hover,
.cm-legal-nav a.is-active {
    background: rgba(139, 6, 24, 0.08);
    color: var(--brand-red);
}

.cm-legal-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cm-legal-intro {
    padding: 24px 26px;
    border-radius: var(--radius-xl);
    background: var(--bg-white);
    border: 1px solid rgba(139, 6, 24, 0.08);
    box-shadow: 0 10px 32px rgba(77, 3, 11, 0.05);
}

.cm-legal-intro p {
    margin: 0;
    color: var(--color-text);
    line-height: 1.7;
    font-size: 0.96rem;
}

.cm-legal-block {
    padding: 24px 26px;
    border-radius: var(--radius-xl);
    background: var(--bg-white);
    border: 1px solid rgba(139, 6, 24, 0.07);
    box-shadow: 0 8px 28px rgba(77, 3, 11, 0.04);
    scroll-margin-top: calc(var(--header-offset) + 20px);
}

.cm-legal-block__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 12px;
    margin-bottom: 12px;
}

.cm-legal-block__num {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--brand-red);
}

.cm-legal-block__tag {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 100px;
    background: rgba(139, 6, 24, 0.08);
    color: var(--brand-red);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cm-legal-block h2 {
    width: 100%;
    font-size: clamp(1.15rem, 2.5vw, 1.45rem);
    font-weight: 700;
    color: var(--bg-dark);
    margin: 0 0 12px;
    line-height: 1.3;
}

.cm-legal-block p {
    margin: 0 0 12px;
    color: var(--color-text);
    line-height: 1.7;
    font-size: 0.92rem;
}

.cm-legal-block p:last-child {
    margin-bottom: 0;
}

.cm-legal-block a,
.cm-legal-intro a {
    color: var(--brand-red);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cm-legal-block a:hover,
.cm-legal-intro a:hover {
    color: var(--bg-dark);
}

.cm-legal-block ul {
    margin: 0;
    padding-left: 1.15rem;
    color: var(--color-text);
}

.cm-legal-block li {
    margin-bottom: 8px;
    line-height: 1.65;
    font-size: 0.92rem;
}

.cm-legal-block li:last-child {
    margin-bottom: 0;
}

.cm-legal-callout {
    margin-top: 8px;
    padding: 24px 26px;
    border-radius: var(--radius-xl);
    background: var(--premium-gradient);
    color: var(--accent-gold-l);
    box-shadow: 0 16px 40px rgba(139, 6, 24, 0.22);
}

.cm-legal-callout h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.25rem, 3vw, 1.65rem);
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--bg-white);
}

.cm-legal-callout p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
    font-size: 0.92rem;
}

.cm-legal-callout__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cm-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.cm-legal-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 100px;
    background: var(--bg-white);
    border: 1px solid rgba(139, 6, 24, 0.1);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--brand-red);
    transition: background 0.25s ease, color 0.25s ease;
}

.cm-legal-links a:hover {
    background: rgba(139, 6, 24, 0.08);
}

@media (max-width: 991px) {
    .cm-legal-hero {
        padding: calc(var(--header-offset) + 28px) 0 44px;
    }

    .cm-legal-body {
        padding: 40px 0 72px;
    }

    .cm-legal-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cm-legal-nav {
        position: static;
    }

    .cm-legal-nav ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }
}

@media (max-width: 575px) {
    .cm-legal-nav ul {
        grid-template-columns: 1fr;
    }

    .cm-legal-block,
    .cm-legal-intro,
    .cm-legal-callout {
        padding: 18px 16px;
    }

    .cm-legal-callout__actions {
        flex-direction: column;
    }

    .cm-legal-callout__actions .cm-btn-primary,
    .cm-legal-callout__actions .cm-btn-outline-white {
        width: 100%;
        justify-content: center;
    }
}

/* ════════════════ ABOUT / CONTACT PAGES ════════════════ */
.cm-page-hero {
    padding-bottom: 56px;
}

.cm-page-hero--compact {
    padding-bottom: 48px;
}

.cm-page-hero .cm-legal-hero__title em {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 500;
    color: var(--accent-gold);
}

.cm-page-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-gold-l);
    margin-bottom: 16px;
}

.cm-page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
}

.cm-page-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.cm-page-hero__chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--bg-white);
    transition: background 0.25s ease, transform 0.25s ease;
}

.cm-page-hero__chip:hover {
    background: rgba(255, 255, 255, 0.18);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.cm-page-hero__chip--wa {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.35);
}

.cm-page-hero__chip--wa:hover {
    background: rgba(37, 211, 102, 0.25);
}

.cm-page-stats-bridge {
    position: relative;
    z-index: 3;
    margin-top: -32px;
    padding-bottom: 8px;
    background: transparent;
    pointer-events: none;
}

.cm-page-stats-bridge .container {
    pointer-events: auto;
}

.cm-page-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 22px 24px;
    border-radius: var(--radius-xl);
    background: var(--bg-white);
    border: 1px solid rgba(139, 6, 24, 0.08);
    box-shadow: 0 20px 56px rgba(77, 3, 11, 0.1);
}

.cm-page-hero-stat {
    text-align: center;
    padding: 8px 6px;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.cm-page-hero-stat:last-child {
    border-right: none;
}

.cm-page-hero-stat strong {
    display: block;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 700;
    color: var(--brand-red);
    line-height: 1.1;
    margin-bottom: 4px;
}

.cm-page-hero-stat span {
    display: block;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.cm-page-lead {
    font-size: 0.96rem;
    line-height: 1.75;
    color: var(--color-text);
    margin-bottom: 14px;
}

.cm-story--page {
    padding: 56px 0 88px;
    background: var(--bg-light);
}

.cm-about-pillars {
    padding: 100px 0;
    background: var(--bg-sacred);
    position: relative;
    overflow: hidden;
}

.cm-about-pillars::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 40% at 20% 80%, rgba(139, 6, 24, 0.2) 0%, transparent 55%);
    pointer-events: none;
}

.cm-about-pillars .container {
    position: relative;
    z-index: 1;
}

.cm-about-pillar {
    height: 100%;
    padding: 28px 24px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.cm-about-pillar:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.cm-about-pillar__num {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--accent-gold-m);
    margin-bottom: 14px;
}

.cm-about-pillar__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.12);
    color: var(--accent-gold);
    font-size: 1.45rem;
    margin-bottom: 16px;
}

.cm-about-pillar h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 12px;
}

.cm-about-pillar > p {
    font-size: 0.88rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.62);
    margin-bottom: 16px;
}

.cm-about-pillar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cm-about-pillar li {
    position: relative;
    padding-left: 18px;
    font-size: 0.8rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.55);
}

.cm-about-pillar li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-gold-m);
}

.cm-about-founder {
    padding: 100px 0;
    background: var(--bg-white);
}

.cm-about-founder__visual {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cm-about-founder__visual img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

.cm-about-founder__chip {
    position: absolute;
    top: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 100px;
    background: var(--premium-gradient);
    color: var(--accent-gold-l);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    box-shadow: var(--shadow-premium);
}

.cm-about-founder__stat {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 16px 20px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    text-align: center;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.cm-about-founder__stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-red);
    line-height: 1;
}

.cm-about-founder__stat span {
    display: block;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-top: 4px;
}

.cm-about-founder__highlights {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 24px 0;
}

.cm-about-founder__highlight {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    border-radius: var(--radius-lg);
    background: var(--bg-light);
    border: 1px solid rgba(139, 6, 24, 0.06);
}

.cm-about-founder__highlight > i {
    font-size: 1.5rem;
    color: var(--brand-red);
    flex-shrink: 0;
    margin-top: 2px;
}

.cm-about-founder__highlight strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 4px;
}

.cm-about-founder__highlight span {
    display: block;
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--color-muted);
}

.cm-about-founder__sign {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--brand-red);
    margin: 0;
}

.cm-experience--page {
    padding: 90px 0;
}

.cm-about-value-card {
    height: 100%;
    padding: 26px 22px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.cm-about-value-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.2);
}

.cm-about-value-card__step {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.25);
}

.cm-about-value-card i {
    font-size: 1.6rem;
    color: var(--accent-gold);
    margin-bottom: 14px;
}

.cm-about-value-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 8px;
}

.cm-about-value-card p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.55);
}

.cm-about-journey {
    padding: 90px 0;
    background: var(--bg-light);
}

.cm-about-journey__track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-top: 36px;
}

.cm-about-journey__track::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(139, 6, 24, 0.2), rgba(139, 6, 24, 0.2), transparent);
    z-index: 0;
}

.cm-about-journey__item {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 14px;
}

.cm-about-journey__item::before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--premium-gradient);
    border: 3px solid var(--bg-light);
    box-shadow: 0 0 0 3px rgba(139, 6, 24, 0.12);
    margin: 0 auto 18px;
}

.cm-about-journey__year {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    background: rgba(139, 6, 24, 0.08);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-red);
    margin-bottom: 10px;
}

.cm-about-journey__item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 8px;
}

.cm-about-journey__item p {
    font-size: 0.8rem;
    line-height: 1.55;
    color: var(--color-muted);
    margin: 0;
}

.cm-contact-connect {
    padding: 48px 0 72px;
    background: var(--bg-light);
}

.cm-contact-trust {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cm-contact-trust li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--color-text);
}

.cm-contact-trust .bx {
    color: var(--brand-red);
    font-size: 1.15rem;
}

.cm-contact-panel {
    background: var(--bg-white);
    border: 1px solid rgba(139, 6, 24, 0.08);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: 0 20px 56px rgba(77, 3, 11, 0.08);
}

.cm-contact-panel__head {
    margin-bottom: 20px;
}

.cm-contact-panel__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-red);
    background: rgba(139, 6, 24, 0.08);
    padding: 6px 12px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.cm-contact-panel__head h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 6px;
}

.cm-contact-panel__head p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--color-muted);
    line-height: 1.55;
}

.cm-contact-panel__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cm-contact-action {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: var(--radius-lg);
    background: var(--bg-light);
    border: 1px solid rgba(139, 6, 24, 0.06);
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.cm-contact-action:hover {
    transform: translateX(4px);
    box-shadow: 0 10px 28px rgba(77, 3, 11, 0.08);
    border-color: rgba(139, 6, 24, 0.14);
    color: inherit;
}

.cm-contact-action__icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.cm-contact-action__text {
    flex: 1;
    min-width: 0;
}

.cm-contact-action__text strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 2px;
}

.cm-contact-action__text small {
    display: block;
    font-size: 0.78rem;
    color: var(--color-muted);
}

.cm-contact-action > .bx-chevron-right {
    color: var(--color-muted);
    font-size: 1.25rem;
}

.cm-contact-action--call .cm-contact-action__icon {
    background: rgba(139, 6, 24, 0.1);
    color: var(--brand-red);
}

.cm-contact-action--wa .cm-contact-action__icon {
    background: rgba(37, 211, 102, 0.12);
    color: #25D366;
}

.cm-contact-action--mail .cm-contact-action__icon {
    background: rgba(66, 133, 244, 0.1);
    color: #4285f4;
}

.cm-page-contact .cm-page-hero {
    padding-bottom: 48px;
}

.cm-contact-locate {
    padding: 72px 0 90px;
    background: var(--bg-white);
}

.cm-contact-address-card {
    padding: 24px;
    border-radius: var(--radius-xl);
    background: var(--bg-white);
    border: 1px solid rgba(139, 6, 24, 0.08);
    box-shadow: 0 16px 48px rgba(77, 3, 11, 0.06);
    margin-top: 8px;
}

.cm-contact-address-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cm-contact-address-row:last-of-type {
    border-bottom: none;
    padding-bottom: 20px;
}

.cm-contact-address-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 6, 24, 0.08);
    color: var(--brand-red);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.cm-contact-address-row strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 4px;
}

.cm-contact-address-row p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--color-text);
}

.cm-contact-map-premium {
    position: relative;
    height: 100%;
    min-height: 420px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(139, 6, 24, 0.08);
    box-shadow: 0 20px 56px rgba(77, 3, 11, 0.1);
}

.cm-contact-map-premium iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
}

.cm-contact-map-premium__overlay {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--brand-red);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    pointer-events: none;
}

.cm-contact-help {
    padding: 90px 0;
    background: var(--bg-white);
}

.cm-contact-help-card {
    height: 100%;
    padding: 26px 22px;
    border-radius: var(--radius-xl);
    background: var(--bg-light);
    border: 1px solid rgba(139, 6, 24, 0.06);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cm-contact-help-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(77, 3, 11, 0.08);
}

.cm-contact-help-card__num {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(139, 6, 24, 0.2);
}

.cm-contact-help-card i {
    font-size: 1.5rem;
    color: var(--brand-red);
    margin-bottom: 14px;
}

.cm-contact-help-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 8px;
}

.cm-contact-help-card p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--color-muted);
}

.cm-contact-social-bar {
    padding: 0 0 90px;
    background: var(--bg-white);
}

.cm-contact-social-bar__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 32px 36px;
    border-radius: var(--radius-xl);
    background: var(--bg-sacred);
    position: relative;
    overflow: hidden;
}

.cm-contact-social-bar__inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(139, 6, 24, 0.25) 0%, transparent 60%);
    pointer-events: none;
}

.cm-contact-social-bar__text,
.cm-contact-social-bar__links {
    position: relative;
    z-index: 1;
}

.cm-contact-social-bar__text h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--bg-white);
    margin: 8px 0 6px;
}

.cm-contact-social-bar__text p {
    margin: 0;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
}

.cm-contact-social-bar__links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cm-contact-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--bg-white);
    transition: background 0.25s ease, transform 0.25s ease;
}

.cm-contact-social-link:hover {
    background: rgba(255, 255, 255, 0.16);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.cm-contact-social-link--wa {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.3);
}

.cm-contact-social-link--wa:hover {
    background: rgba(37, 211, 102, 0.25);
}

@media (max-width: 991px) {
    .cm-page-hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .cm-page-hero-stat {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        padding: 14px 10px;
    }

    .cm-page-hero-stat:nth-child(odd) {
        border-right: 1px solid rgba(0, 0, 0, 0.06);
    }

    .cm-page-hero-stat:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .cm-page-hero__chips {
        justify-content: flex-start;
    }

    .cm-about-founder__visual img {
        height: 340px;
    }

    .cm-about-journey__track {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .cm-about-journey__track::before {
        display: none;
    }

    .cm-contact-map-premium,
    .cm-contact-map-premium iframe {
        min-height: 320px;
    }

    .cm-contact-social-bar__inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 24px;
    }
}

@media (max-width: 575px) {
    .cm-page-hero {
        padding-bottom: 56px;
    }

    .cm-page-hero-stats {
        grid-template-columns: 1fr 1fr;
        padding: 16px;
    }

    .cm-page-hero-stat:nth-child(odd) {
        border-right: 1px solid rgba(0, 0, 0, 0.06);
    }

    .cm-page-hero-stat:nth-child(2),
    .cm-page-hero-stat:nth-child(3) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .cm-about-journey__track {
        grid-template-columns: 1fr;
    }

    .cm-about-founder__visual img {
        height: 280px;
    }

    .cm-page-hero__actions {
        flex-direction: column;
    }

    .cm-page-hero__actions .cm-btn-primary,
    .cm-page-hero__actions .cm-btn-outline-white {
        width: 100%;
        justify-content: center;
    }
}

.cm-about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.cm-about-tags span {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 100px;
    background: rgba(139, 6, 24, 0.07);
    border: 1px solid rgba(139, 6, 24, 0.1);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--brand-red);
}

.cm-about-journey--dual {
    padding: 88px 0;
    background: var(--bg-white);
}

.cm-about-journey-card {
    height: 100%;
    padding: 28px 24px;
    border-radius: var(--radius-xl);
    background: var(--bg-light);
    border: 1px solid rgba(139, 6, 24, 0.08);
    box-shadow: 0 12px 36px rgba(77, 3, 11, 0.05);
}

.cm-about-journey-card__num {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--brand-red);
    margin-bottom: 6px;
}

.cm-about-journey-card__label {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    background: rgba(139, 6, 24, 0.08);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-red);
    margin-bottom: 12px;
}

.cm-about-journey-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 10px;
}

.cm-about-journey-card p {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--color-text);
    margin-bottom: 16px;
}

.cm-about-route-chips {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.cm-about-route-chips span {
    padding: 7px 12px;
    border-radius: 100px;
    background: var(--bg-white);
    border: 1px solid rgba(139, 6, 24, 0.1);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text);
}

.cm-about-route-chips i {
    color: var(--brand-red);
    font-size: 1rem;
}

.cm-about-route-chips--wrap span {
    background: rgba(139, 6, 24, 0.06);
    color: var(--brand-red);
}

.cm-about-vision {
    padding: 88px 0;
    background: var(--bg-light);
}

.cm-about-vision-card {
    height: 100%;
    padding: 22px 16px;
    border-radius: var(--radius-lg);
    background: var(--bg-white);
    border: 1px solid rgba(139, 6, 24, 0.08);
    box-shadow: 0 10px 28px rgba(77, 3, 11, 0.05);
    text-align: center;
}

.cm-about-vision-card i {
    font-size: 1.5rem;
    color: var(--brand-red);
    margin-bottom: 10px;
}

.cm-about-vision-card strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 4px;
}

.cm-about-vision-card span {
    display: block;
    font-size: 0.75rem;
    line-height: 1.45;
    color: var(--color-muted);
}

.cm-about-founder--profiles {
    padding: 88px 0;
    background: var(--bg-light);
}

.cm-about-founder-card {
    position: relative;
    height: 100%;
    padding: 28px 26px 22px;
    border-radius: var(--radius-xl);
    background: var(--bg-white);
    border: 1px solid rgba(139, 6, 24, 0.08);
    box-shadow: 0 16px 44px rgba(77, 3, 11, 0.07);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cm-about-founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 52px rgba(77, 3, 11, 0.11);
}

.cm-about-founder-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--premium-gradient);
}

.cm-about-founder-card__top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.cm-about-founder-card__avatar-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.55), rgba(139, 6, 24, 0.85));
    flex-shrink: 0;
}

.cm-about-founder-card__avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-sacred);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.cm-about-founder-card__role {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 100px;
    background: rgba(139, 6, 24, 0.08);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-red);
    margin-bottom: 6px;
}

.cm-about-founder-card__meta h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--bg-dark);
    margin: 0 0 4px;
}

.cm-about-founder-card__focus {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-muted);
}

.cm-about-founder-card__bio {
    margin: 0 0 18px;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-text);
}

.cm-about-founder-card__foot {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--brand-red);
}

.cm-about-founder-card__foot i {
    font-size: 1.1rem;
}

.cm-about-rooted {
    padding:   88px 0;
    background: var(--bg-white);
}

.cm-about-rooted__inner {
    position: relative;
    padding: 42px 40px;
    border-radius: calc(var(--radius-xl) + 4px);
    background: var(--bg-sacred);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 28px 64px rgba(77, 3, 11, 0.18);
    overflow: hidden;
}

.cm-about-rooted__inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 70% at 100% 50%, rgba(139, 6, 24, 0.35) 0%, transparent 58%);
    pointer-events: none;
}

.cm-about-rooted__glow {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    pointer-events: none;
}

.cm-about-rooted__inner .row {
    position: relative;
    z-index: 1;
}

.cm-about-rooted__inner p {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    max-width: 580px;
}

.cm-about-rooted__inner .cm-divider {
    margin: 16px 0 18px;
}

.cm-about-rooted__points {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cm-about-rooted__points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.72);
}

.cm-about-rooted__points i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent-gold);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.cm-about-rooted__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 100px;
    background: var(--bg-white);
    color: var(--brand-red);
    font-size: 0.88rem;
    font-weight: 700;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cm-about-rooted__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
    color: var(--brand-red);
}

.cm-about-highlights {
    padding: 88px 0 96px;
    background: var(--bg-light);
}

.cm-about-highlight-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    height: 100%;
    padding: 22px 20px;
    border-radius: var(--radius-xl);
    background: var(--bg-white);
    border: 1px solid rgba(139, 6, 24, 0.07);
    box-shadow: 0 10px 32px rgba(77, 3, 11, 0.05);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.cm-about-highlight-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 6, 24, 0.14);
    box-shadow: 0 18px 44px rgba(77, 3, 11, 0.1);
}

.cm-about-highlight-card__num {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(139, 6, 24, 0.18);
}

.cm-about-highlight-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 6, 24, 0.08);
    color: var(--brand-red);
    font-size: 1.35rem;
    flex-shrink: 0;
}

.cm-about-highlight-card__body strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 5px;
}

.cm-about-highlight-card__body span {
    display: block;
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--color-muted);
}

@media (max-width: 991px) {
    .cm-about-rooted__inner {
        padding: 30px 24px;
    }

    .cm-about-rooted .text-lg-end {
        text-align: left !important;
        margin-top: 8px;
    }

    .cm-about-rooted__btn {
        width: 100%;
        justify-content: center;
    }
}