/* Fonts loaded via <link> in blade template */

/*
 * Kailash Mansarovar Yatra 2027 Custom Stylesheet
 * Author: Vivek Chandra Pandey - Special Event Page
 */
:root {
    --primary-color: #fd5056;
    --primary-hover: #e04046;
    --saffron-gradient: linear-gradient(135deg, #fd5056 0%, #ff787c 100%);
    --gold-color: #ffd700;
    --gold-gradient: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
    --dark-bg-solid: #090d16;
    --dark-bg-gradient: linear-gradient(135deg, #090d16 0%, #141b2d 100%);
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-hover: rgba(255, 255, 255, 0.08);
    --text-muted-light: rgba(255, 255, 255, 0.7);
    --card-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Base Styles & Utility Classes */
.text-gold {
    color: var(--gold-color) !important;
}
.bg-saffron {
    background-color: var(--primary-color) !important;
}
.bg-saffron-gradient {
    background: var(--saffron-gradient) !important;
}
.bg-dark-premium {
    background: var(--dark-bg-gradient) !important;
    color: #ffffff;
}

/* Custom Font Family Rules & Brand Red Colors */
.text-danger {
    color: #fd5056 !important;
}

.kailash-2027-font-serif {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    position: relative;
    padding-bottom: 0 !important;
    margin-bottom: 0.2rem !important;
}

.kailash-2027-font-serif::after,
.text-center .kailash-2027-font-serif::after {
    content: none !important;
    display: none !important;
}

.kailash-2027-font-serif::before,
.text-center .kailash-2027-font-serif::before {
    content: none !important;
}

@keyframes dividerExpandLeft {
    from {
        transform: scaleX(0);
        opacity: 0;
    }
    to {
        transform: scaleX(1);
        opacity: 1;
    }
}

@keyframes dividerExpandCenter {
    from {
        transform: translateX(-50%) scaleX(0);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) scaleX(1);
        opacity: 1;
    }
}

/* Responsive adjustments for headings and dividers */
@media (max-width: 767.98px) {
    .kailash-2027-font-serif {
        padding-bottom: 40px;
    }
    .kailash-2027-font-serif::after {
        width: 240px;
        height: 54px;
    }
}

/* Hero Section 2027 */
.kailash-hero-2027 {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--dark-bg-solid);
}

.hero-bg-2027 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    filter: brightness(0.4) contrast(1.15);
    animation: heroZoom2027 25s ease-in-out infinite;
}

@keyframes heroZoom2027 {
    0%, 100% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.08) translate(-1%, -1%); }
}

.hero-overlay-2027 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(9, 13, 22, 0.7) 0%,
        rgba(9, 13, 22, 0.85) 60%,
        rgba(9, 13, 22, 1) 100%
    );
    z-index: -2;
}

.z-index-10 {
    z-index: 10 !important;
}

.floating-elements-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.floating-om-2027 {
    position: absolute;
    top: 15%;
    right: 12%;
    font-size: 6rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(253, 80, 86, 0.05) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    animation: omFloat2027 10s ease-in-out infinite;
    user-select: none;
}

@keyframes omFloat2027 {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); filter: drop-shadow(0 0 0px rgba(255, 215, 0, 0)); }
    50% { transform: translateY(-25px) rotate(6deg) scale(1.05); filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.2)); }
}

.glow-shiva-trishul {
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 180px;
    opacity: 0.12;
    animation: trishulFloat 12s ease-in-out infinite;
    pointer-events: none;
    z-index: 3;
}

@keyframes trishulFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(-3deg); }
}

/* Glassmorphism Cards */
.glass-card-premium {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.glass-card-premium:hover {
    background: var(--glass-hover);
    border-color: rgba(255, 215, 0, 0.25);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35), 0 0 30px rgba(253, 80, 86, 0.15);
}

/* Section Badges */
.badge-premium-saffron {
    display: inline-flex;
    align-items: center;
    background: rgba(253, 80, 86, 0.15);
    border: 1px solid rgba(253, 80, 86, 0.3);
    color: #ff787c;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

/* Package Cards */
.package-card-2027 {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f1f3f7;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.package-card-2027:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 45px rgba(253, 80, 86, 0.08), 0 5px 15px rgba(0,0,0,0.05);
    border-color: rgba(253, 80, 86, 0.2);
}

.package-img-zoom {
    overflow: hidden;
    border-radius: 24px 24px 0 0;
    position: relative;
    height: 260px;
}

.package-img-zoom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.package-card-2027:hover .package-img-zoom img {
    transform: scale(1.1);
}

/* Plan Your 2027 Pilgrimage & Interactive Calendar Redesign */
@keyframes spinMandala {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes spinMandalaRev {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}

.kmy-calendar-section {
    background:
        radial-gradient(circle at 15% 20%, rgba(253, 80, 86, 0.05) 0%, transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #fffdf8 0%, #fef9ee 45%, #fbf4e6 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    position: relative;
    overflow: hidden;
}

.kmy-calendar-section .container {
    position: relative;
    z-index: 2;
}

.kmy-mandala-bg {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    filter: drop-shadow(0 8px 20px rgba(212, 175, 55, 0.12));
}

.kmy-mandala-bg.top-right {
    top: -160px;
    right: -150px;
    width: 580px;
    height: 580px;
    opacity: 0.26;
    animation: spinMandala 65s linear infinite;
}

.kmy-mandala-bg.left-side {
    bottom: -150px;
    left: -150px;
    width: 540px;
    height: 540px;
    opacity: 0.22;
    animation: spinMandalaRev 80s linear infinite;
}

.kmy-cal-highlight-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #fd5056;
    border-radius: 16px;
    padding: 1rem 1.25rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.kmy-cal-highlight-box:hover {
    box-shadow: 0 8px 25px rgba(253, 80, 86, 0.08);
    transform: translateY(-2px);
}

.kmy-cal-highlight-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: rgba(253, 80, 86, 0.1);
    color: #fd5056;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.kmy-price-mini-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.kmy-price-mini-card:hover {
    border-color: rgba(253, 80, 86, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.kmy-price-mini-card.active-heli {
    background: linear-gradient(145deg, #ffffff 0%, #fff5f5 100%);
    border-color: rgba(253, 80, 86, 0.25);
}

.kmy-price-tag-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #475569;
}

.kmy-price-amount {
    font-size: 1.35rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
}

.kmy-price-subtext {
    font-size: 0.72rem;
    color: #64748b;
    margin-top: 0.25rem;
}

/* Calendar Wrapper Card */
.kmy-calendar-wrapper {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 1.75rem 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05), 0 5px 15px rgba(253, 80, 86, 0.03);
}

/* Header & Switcher */
.kmy-calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
    flex-wrap: wrap;
}

.kmy-route-segmented-toggle {
    display: inline-flex;
    background: #f1f5f9;
    padding: 4px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
}

.kmy-route-tab-btn {
    border: none;
    background: transparent;
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    transition: all 0.25s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.kmy-route-tab-btn.active {
    background: #ffffff;
    color: #fd5056;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-weight: 700;
}

.kmy-month-nav {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.kmy-month-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.kmy-month-btn:hover {
    background: #fd5056;
    color: #ffffff;
    border-color: #fd5056;
    box-shadow: 0 3px 10px rgba(253, 80, 86, 0.3);
}

.kmy-month-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    min-width: 120px;
}

/* Days Grid Overrides */
.calendar-grid {
    width: 100%;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 700;
    color: #b45309;
    font-size: 0.78rem;
    margin-bottom: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calendar-days-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.calendar-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    flex: 1;
}

.calendar-day-box {
    height: 48px;
    min-height: 48px;
    aspect-ratio: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    font-size: 0.92rem;
    font-weight: 600;
    color: #475569;
    position: relative;
    cursor: default;
    transition: all 0.2s ease;
}

.calendar-day-box.empty {
    opacity: 0.1;
    background: transparent;
    border: none;
}

.calendar-day-box.active-date {
    background: rgba(253, 80, 86, 0.08);
    border-color: rgba(253, 80, 86, 0.35);
    color: #dc2626;
    font-weight: 700;
    cursor: pointer;
}

.calendar-day-box.active-date:hover {
    background: linear-gradient(135deg, #fd5056 0%, #e11d48 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(253, 80, 86, 0.35);
    transform: translateY(-2px);
    z-index: 5;
}

.calendar-day-box.fullmoon {
    background: rgba(245, 158, 11, 0.12);
    border-color: rgba(245, 158, 11, 0.5);
    color: #92400e;
    font-weight: 700;
    cursor: pointer;
}

.kmy-moon-icon {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 10px;
    height: 10px;
    color: #d97706;
}

.calendar-day-box.fullmoon:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
    transform: translateY(-2px);
    z-index: 5;
}

.calendar-day-box.fullmoon:hover .kmy-moon-icon {
    color: #ffffff;
}

/* Footer & Toolbar */
.kmy-calendar-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.85rem;
    border-top: 1px solid #f1f5f9;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.calendar-legend {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 0;
    font-size: 0.78rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #475569;
    font-weight: 600;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.legend-dot.departure-dot {
    background: #fd5056;
    box-shadow: 0 0 6px rgba(253, 80, 86, 0.4);
}

.legend-dot.fullmoon-dot {
    background: #f59e0b;
    box-shadow: 0 0 6px rgba(245, 158, 11, 0.4);
}

.kmy-availability-pill {
    font-size: 0.78rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    color: #475569;
}

.kmy-calendar-hint-banner {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.65rem 1rem;
    margin-top: 0.85rem;
    transition: all 0.3s ease;
}

.kmy-calendar-hint-banner:hover {
    border-color: rgba(253, 80, 86, 0.3);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(253, 80, 86, 0.05);
}

.kmy-hint-icon-badge {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(253, 80, 86, 0.1);
    color: #fd5056;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kmy-hint-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    font-style: normal !important;
    color: #475569;
}

/* Consultation Form Formats */
.premium-input {
    background: #ffffff !important;
    border: 1px solid #ced4da !important;
    color: #212529 !important;
    border-radius: 12px !important;
    padding: 0.8rem 1.2rem !important;
    transition: all 0.3s ease !important;
}

.premium-input:focus {
    background: #ffffff !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 15px rgba(253, 80, 86, 0.25) !important;
}

.premium-input::placeholder {
    color: #6c757d !important;
}

/* Timeline Custom Styles */
.timeline-item-2027 {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 2.5rem;
    border-left: 2px solid rgba(253, 80, 86, 0.2);
    transition: all 0.3s ease;
}

.timeline-item-2027::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 8px var(--primary-color);
    transition: all 0.3s ease;
}

.timeline-item-2027:hover::before {
    background: var(--primary-color);
    transform: scale(1.3);
}

.timeline-item-2027:hover {
    border-left-color: var(--primary-color);
}

/* Swiper / Reviews section override */
.review-card-modern {
    background: #ffffff;
    border: 1px solid #f0f2f5;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
    height: 100%;
}

.review-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    border-color: rgba(253, 80, 86, 0.1);
}

/* Interactive Tabs */
.nav-pills-saffron .nav-link {
    color: #4b5563;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    background: #ffffff;
}

.nav-pills-saffron .nav-link.active,
.nav-pills-saffron .show > .nav-link {
    background: var(--saffron-gradient);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(253, 80, 86, 0.25);
}

/* Sticky Right Booking Bar */
.sticky-expert-card {
    position: sticky;
    top: 100px;
}

/* Action Wave Animations */
.btn-hero-primary {
    background: var(--saffron-gradient);
    color: #ffffff;
    border: none;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(253, 80, 86, 0.3);
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(253, 80, 86, 0.45);
    color: #ffffff;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-weight: 600;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Floating WhatsApp / Booking Elements */
.wp-icon {
    z-index: 999;
}

/* Responsive fixes */
@media (max-width: 991px) {
    .floating-om-2027 {
        font-size: 4rem;
        top: 10%;
        right: 8%;
    }
    .kailash-hero-2027 {
        padding-top: 80px;
    }
}

/* Blue removal overrides */
.text-primary {
    color: var(--primary-color) !important;
}
.bg-primary {
    background-color: var(--primary-color) !important;
}
.bg-primary.bg-opacity-10 {
    background-color: rgba(253, 80, 86, 0.1) !important;
}
.calendar-header h5 {
    color: #212529 !important;
}
.calendar-header span {
    color: var(--primary-color) !important;
}
.calendar-weekdays {
    color: var(--primary-color) !important;
}
.legend-item {
    color: #4b5563 !important;
}

/* ===== LUXURY EXPEDITION HERO SECTION 2027 ===== */

.premium-luxury-hero {
    background-color: #0d0f14;
    position: relative;
    overflow: hidden;
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Background Image with Slow Zoom Ken Burns effect */
.premium-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    filter: brightness(0.65) contrast(1.05) saturate(1.05);
    z-index: -3;
    animation: luxuryZoom 14s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes luxuryZoom {
    0% { transform: scale(1.06); }
    100% { transform: scale(1); }
}

/* Dark Gradient Cinematic Overlay */
.premium-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(13, 15, 20, 0.5) 0%,
        rgba(13, 15, 20, 0.25) 45%,
        rgba(13, 15, 20, 0.65) 80%,
        rgba(13, 15, 20, 0.9) 100%
    );
    z-index: -2;
}

/* Content wrapper styling */
.premium-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Eyebrow Tagline */
.premium-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.85rem, 1.5vw, 1.05rem);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Main Two-Line Headline */
.premium-headline {
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-size: clamp(3.5rem, 12vw, 8.5rem);
    font-weight: 400;
    line-height: 0.88;
    letter-spacing: 0.05em;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.45), 0 8px 40px rgba(0, 0, 0, 0.3);
}

/* Supporting Lead Paragraph */
.premium-lead {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 620px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* Interactive CTA group */
.premium-cta-group {
    margin-top: 2rem;
}

/* Primary Button style */
.btn-premium-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fd5056;
    color: #ffffff !important;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 1.1rem 3.2rem;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(253, 80, 86, 0.4);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-premium-primary:hover {
    background: #ff6b70;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(253, 80, 86, 0.55);
}

/* Secondary Button glass style */
.btn-premium-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #ffffff !important;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 1.1rem 2.8rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-premium-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.45);
    transform: translateY(-2px);
}

.play-icon {
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.btn-premium-secondary:hover .play-icon {
    transform: scale(1.15);
}

/* Trust indicators Row */
.premium-trust-row {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1.8rem;
    margin-top: 1.5rem;
}

.premium-trust-item {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.85rem, 1.6vw, 1rem);
    font-weight: 400;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.85);
}

.trust-icon {
    font-size: 1.1rem;
}

/* ===== REVEAL & FADE TRANSITIONS ===== */
@keyframes revealFadeIn {
    0% { opacity: 0; transform: translateY(15px); }
    100% { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    opacity: 0;
    animation: revealFadeIn 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
    animation-delay: 0.2s;
}

.animate-slide-up {
    opacity: 0;
    animation: revealFadeIn 1.4s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
    animation-delay: 0.4s;
}

.animate-fade-in-delayed {
    opacity: 0;
    animation: revealFadeIn 1.4s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
    animation-delay: 0.7s;
}

.animate-slide-up-delayed {
    opacity: 0;
    animation: revealFadeIn 1.4s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
    animation-delay: 1s;
}

.animate-fade-in-bottom {
    opacity: 0;
    animation: revealFadeIn 1.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
    animation-delay: 1.3s;
}

.z-index-10 {
    z-index: 10 !important;
}

/* Mobile optimizations */
@media (max-width: 767.98px) {
    .premium-luxury-hero {
        padding-top: 60px;
        padding-bottom: 20px;
    }

    .premium-hero-content {
        padding: 0 15px;
    }

    .premium-headline {
        letter-spacing: 0.03em;
        line-height: 0.95;
    }

    .btn-premium-primary,
    .btn-premium-secondary {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .premium-cta-group {
        flex-direction: column;
        gap: 0.8rem;
        padding: 0 10px;
    }

    .premium-trust-row {
        padding-top: 1.2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .premium-trust-item {
        justify-content: center;
        background: rgba(255, 255, 255, 0.04);
        padding: 0.6rem;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.06);
    }
}


/* ===== LUXURY EDITORIAL EXPEDITION HERO REFINEMENT ===== */
.expedition-editorial-hero {
    position: relative;
    overflow: hidden;
    height: 85vh;
    min-height: 720px;
    max-height: 860px;
    display: flex;
    align-items: center;
    background-color: #080a0f;
    z-index: 1;
}

/* Background image with slow zoom and parallax feel */
.expedition-editorial-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    background-size: cover;
    background-position: center 40%;
    z-index: -3;
    animation: editorialZoom 36s cubic-bezier(0.1, 0.8, 0.25, 1) infinite alternate;
}

@keyframes editorialZoom {
    0% { transform: scale(1.02); }
    100% { transform: scale(1.08); }
}

/* Dark Cinematic Gradients & Subtle Vignette */
.expedition-editorial-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(8, 10, 15, 0.8) 0%,
        rgba(8, 10, 15, 0.45) 40%,
        rgba(8, 10, 15, 0.75) 75%,
        rgba(8, 10, 15, 0.98) 100%
    );
    z-index: -2;
}

.expedition-editorial-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle,
        rgba(8, 10, 15, 0) 40%,
        rgba(8, 10, 15, 0.5) 70%,
        rgba(8, 10, 15, 0.95) 100%
    );
    pointer-events: none;
    z-index: -1;
}

/* Main Container */
.expedition-editorial-container {
    width: 100%;
    max-width: 1260px;
    height: 100%;
    margin: 0 auto;
    padding: 3.5rem 2rem 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 10;
}

/* Grid Layout for Editorial Split (55/45) */
.expedition-editorial-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
    margin: auto 0;
    width: 100%;
}

/* Left Column: Typography & CTAs */
.expedition-editorial-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.expedition-editorial-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1.8rem;
    opacity: 0;
    transform: translateY(12px);
    animation: edFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.1s;
}

.expedition-editorial-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5.8vw, 4.8rem);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: 0.03em;
    color: #ffffff;
    margin-bottom: 2.2rem;
}

.expedition-editorial-title span {
    display: block;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(35px);
}

.expedition-editorial-title span:nth-child(1) {
    animation: edFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.3s;
}

.expedition-editorial-title span:nth-child(2) {
    animation: edFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.5s;
}

.expedition-editorial-lead {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.98rem, 1.4vw, 1.12rem);
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px; /* Limited to 600px */
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: edFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.7s;
}

/* Premium Buttons Layout */
.expedition-editorial-ctas {
    display: flex;
    align-items: center;
    gap: 2.5rem; /* Increased whitespace between buttons */
    opacity: 0;
    transform: translateY(15px);
    animation: edFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.9s;
}

/* Primary Accent Button */
.editorial-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fd5056;
    color: #ffffff !important;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1.15rem 3.2rem;
    border-radius: 100px;
    border: none;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 25px rgba(253, 80, 86, 0.25);
}

.editorial-btn-primary:hover {
    background: #ffffff;
    color: #080a0f !important;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

/* Secondary Button - Link Style (Four Seasons/Aman style) */
.editorial-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8) !important;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.editorial-btn-secondary::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    transition: background-color 0.3s ease, transform 0.3s ease;
    transform-origin: right;
    transform: scaleX(0.7);
}

.editorial-btn-secondary:hover {
    color: #ffffff !important;
}

.editorial-btn-secondary:hover::after {
    background-color: #ffffff;
    transform: scaleX(1);
    transform-origin: left;
}

.editorial-play-icon {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-btn-secondary:hover .editorial-play-icon {
    transform: scale(1.2);
}

/* Right Column: Premium Focal Element (Glass widget) */
.expedition-editorial-right {
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    transform: translateY(20px);
    animation: edFadeUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.8s;
}

/* Premium Glass Card Refinement (Aman/Four Seasons Booking Card Style) */
.expedition-focal-card {
    position: relative;
    width: 100%;
    max-width: 380px;
    background: rgba(8, 10, 15, 0.75); /* Darker glass effect */
    backdrop-filter: blur(24px); /* Softer blur */
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.05); /* Subtle border */
    border-radius: 16px; /* Refined radius */
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6); /* Elegant shadow */
}

.expedition-focal-card:hover {
    transform: translateY(-6px);
    border-color: rgba(253, 80, 86, 0.2);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7);
}

.focal-card-badge {
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fd5056; /* Accent color heading */
    display: inline-block;
    margin-bottom: 0.4rem;
}

.expedition-focal-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 300; /* Editorial weight */
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.01em;
}

.focal-card-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
    margin: 2rem 0;
}

.focal-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.2rem 1.8rem;
}

.focal-detail-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.focal-detail-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.4rem;
}

.focal-detail-value {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem; /* Larger values than labels */
    font-weight: 400;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.focal-card-action {
    margin-top: 0.5rem;
}

.focal-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    color: #ffffff !important;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.focal-action-btn svg {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    color: rgba(255, 255, 255, 0.45);
}

.focal-action-btn:hover {
    color: #fd5056 !important;
}

.focal-action-btn:hover svg {
    transform: translateX(6px);
    color: #fd5056;
}

/* Premium Segmented Information Strip at bottom */
.expedition-editorial-strip {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 1.8rem 0 0.5rem 0;
    margin-top: auto;
    opacity: 0;
    transform: translateY(15px);
    animation: edFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1.1s;
}

.strip-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.strip-item:first-child {
    padding-left: 0;
}

.strip-item:last-child {
    border-right: none;
    padding-right: 0;
}

.strip-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    color: #fd5056;
    letter-spacing: 0.1em;
}

.strip-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

/* Animations */
@keyframes edFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Responsive Overrides for Hero Section & Feature Strip */
@media (max-width: 1199.98px) {
    .expedition-editorial-grid {
        gap: 2.5rem;
    }
}

@media (max-width: 991.98px) {
    .expedition-editorial-hero {
        position: relative;
        height: auto;
        min-height: auto;
        max-height: none;
        padding-top: 3rem;
        padding-bottom: 2rem;
    }

    .expedition-editorial-bg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        min-height: 100%;
        object-fit: cover;
        object-position: center top;
        background-size: cover;
        background-position: center top;
    }

    .expedition-editorial-overlay {
        background: linear-gradient(
            180deg,
            rgba(8, 10, 15, 0.75) 0%,
            rgba(8, 10, 15, 0.4) 30%,
            rgba(8, 10, 15, 0.6) 70%,
            rgba(8, 10, 15, 0.95) 100%
        );
    }

    .expedition-editorial-container {
        padding: 0 1.25rem;
        gap: 2.5rem;
    }

    .expedition-editorial-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .expedition-editorial-left {
        align-items: center;
        text-align: center;
    }

    .expedition-editorial-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .expedition-editorial-right {
        justify-content: center;
        width: 100%;
    }

    .expedition-focal-card {
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }

    .expedition-editorial-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem 0.85rem;
        padding-top: 1.5rem;
        margin-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .strip-item {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 0.65rem;
        border-right: none !important;
        border-left: none !important;
        padding: 0.65rem 0.85rem !important;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
    }

    .strip-num {
        font-size: 0.95rem;
        line-height: 1.3;
        min-width: 20px;
    }

    .strip-label {
        font-size: 0.78rem;
        line-height: 1.35;
    }
}

@media (max-width: 767.98px) {
    .expedition-editorial-eyebrow {
        font-size: 0.8rem;
        padding: 0.35rem 0.95rem;
        letter-spacing: 0.12em;
    }

    .expedition-editorial-title {
        font-size: 2.8rem;
        line-height: 1.05;
    }

    .expedition-editorial-lead {
        font-size: 1.05rem;
        line-height: 1.6;
        max-width: 95%;
        color: rgba(255, 255, 255, 0.85);
    }

    .expedition-editorial-ctas {
        flex-direction: row;
        gap: 0.75rem;
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }

    .editorial-btn-primary,
    .editorial-btn-secondary {
        flex: 1;
        padding: 0.8rem 1rem;
        font-size: 0.88rem;
        justify-content: center;
        text-align: center;
    }

    .expedition-focal-card {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .focal-details-grid {
        gap: 0.85rem;
    }

    .focal-detail-label {
        font-size: 0.75rem;
    }

    .focal-detail-value {
        font-size: 0.95rem;
    }
}

@media (max-width: 575.98px) {
    .expedition-editorial-hero {
        padding-top: 2.5rem;
        padding-bottom: 1.75rem;
    }

    .expedition-editorial-title {
        font-size: 2.4rem;
        line-height: 1.1;
    }

    .expedition-editorial-lead {
        font-size: 0.98rem;
        line-height: 1.5;
    }

    .expedition-editorial-ctas {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .editorial-btn-primary,
    .editorial-btn-secondary {
        width: 100%;
        padding: 0.85rem;
    }

    .expedition-editorial-right {
        padding: 0;
        width: 100%;
    }

    .expedition-focal-card {
        padding: 1.25rem;
        border-radius: 14px;
        width: 100%;
        max-width: 100%;
    }

    .focal-details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .expedition-editorial-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.65rem;
        padding-top: 1.25rem;
    }

    .strip-item {
        padding: 0.5rem 0.65rem !important;
        gap: 0.45rem;
        border-radius: 10px;
    }

    .strip-num {
        font-size: 0.85rem;
    }

    .strip-label {
        font-size: 0.72rem;
        line-height: 1.3;
    }
}


/* ===== LUXURY EDITORIAL INTRO SECTION ===== */
.intro-editorial-section {
    background-color: #FAF8F5; /* Warm luxury off-white tint */
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}

.intro-flags-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../../images/special-pages/kmy-landing/prayer-flags-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.22;
    filter: blur(1.5px);
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 1;
}

.intro-editorial-section::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 360px;
    height: 110%;
    background-image: url('../../images/special-pages/kmy-landing/prayer-flags-left.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left top;
    opacity: 0.32;
    filter: blur(1px);
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 1;
}

.intro-editorial-section::after {
    content: '';
    position: absolute;
    top: -20px;
    right: 0;
    width: 360px;
    height: 110%;
    background-image: url('../../images/special-pages/kmy-landing/prayer-flags-right.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right top;
    opacity: 0.32;
    filter: blur(1px);
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 1;
}

.intro-editorial-section .container {
    position: relative;
    z-index: 2;
}

/* Header styling */
.intro-editorial-header {
    max-width: 100%;
    margin: 0 auto;
}

.intro-editorial-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #fd5056;
    display: inline-block;
    margin-bottom: 0.8rem;
}

.intro-editorial-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 700;
    line-height: 1.25;
    color: #111111;
    margin-bottom: 0.75rem;
    letter-spacing: -0.015em;
    white-space: nowrap;
    padding-bottom: 0 !important;
}

.intro-editorial-headline::after {
    content: none !important;
    display: none !important;
}

.intro-gold-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.2rem !important;
    margin-bottom: 1.25rem !important;
}

/* Narrative Storytelling styling */
.intro-story-wrapper {
    padding: 1.2rem;
    border-radius: 16px;
    background: rgb(250 248 245 / 23%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    position: relative;
    z-index: 3;
}

.intro-story-paragraph {
    font-family: 'Inter', sans-serif;
    font-size: 1.02rem;
    font-weight: 500;
    line-height: 1.75;
    color: #1a202c;
    margin-bottom: 1.4rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.intro-story-paragraph strong {
    font-weight: 600;
    color: #111111;
}

/* Pill Call-To-Action Button */
.editorial-subtle-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: #fd5056;
    background-color: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.6rem 1.6rem;
    border: 1.5px solid #fd5056;
    border-radius: 50px;
    box-shadow: 0 2px 6px rgba(253, 80, 86, 0.08);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-subtle-cta svg {
    color: #fd5056;
    stroke: currentColor;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

.editorial-subtle-cta:hover {
    color: #ffffff;
    background-color: #fd5056;
    border-color: #fd5056;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(253, 80, 86, 0.28);
    transform: translateY(-2px);
}

.editorial-subtle-cta:hover svg {
    transform: translateX(4px);
    color: #ffffff;
    stroke: #ffffff;
}

/* Cinematic Image Layout */
.cinematic-image-container {
    position: relative;
    border-radius: 18px;
    background: #ffffff;
    padding: 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.cinematic-image-inner {
    border-radius: 18px 18px 0 0;
    overflow: hidden;
    position: relative;
}

.cinematic-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.cinematic-image-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.cinematic-image-container:hover .cinematic-img {
    transform: scale(1.025);
}

.cinematic-image-caption {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.9rem 1.2rem;
    background-color: #ffffff;
    border-radius: 0 0 18px 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.caption-coords {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    color: #2d3748;
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* Premium Feature Cards Grid */
.intro-feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.premium-feature-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 2.2rem 1.6rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-top: 4px solid #fd5056; /* Website brand red accent */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(253, 80, 86, 0.12), 0 4px 12px rgba(0, 0, 0, 0.03);
    border-color: rgba(253, 80, 86, 0.25);
    border-top-color: #fd5056;
}

.feature-card-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #fef8e7;
    color: #c9a227;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-feature-card:hover .feature-card-icon-wrap {
    background-color: #c9a227;
    color: #ffffff;
    transform: scale(1.06);
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.3);
}

.feature-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.feature-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 400;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1199.98px) {
    .intro-feature-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 1.5rem;
        padding-top: 1.8rem;
    }
}

@media (max-width: 991.98px) {
    .intro-editorial-section {
        padding: 32px 0; /* Reduced from 48px */
    }

    .intro-story-wrapper {
        padding-right: 0;
        margin-bottom: 1rem;
    }

    .intro-editorial-header {
        margin-bottom: 3rem;
    }

    .intro-editorial-headline {
        white-space: normal; /* Allow wrap on mobile/tablets */
    }
}

@media (max-width: 575.98px) {
    .intro-feature-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .premium-feature-card {
        padding: 1.8rem 1.5rem;
    }
}

/* ===== KMY 2027 PACKAGES EDITORIAL SECTION ===== */
.kmy-packages-editorial-section {
    background-color: #ffffff; /* Clean pure white background distinct from #FAF8F5 */
    padding: 40px 0; /* Reduced top & bottom spacing */
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.kmy-editorial-badge {
    display: inline-flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #fd5056;
    background: rgba(253, 80, 86, 0.08);
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    border: 1px solid rgba(253, 80, 86, 0.15);
}

.kmy-packages-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: #111111;
    margin-bottom: 0.5rem;
    padding-bottom: 0 !important;
}

.kmy-packages-title::after {
    content: none !important;
    display: none !important;
}

.kmy-packages-lead-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.75;
    color: #4a5568;
    width: 100%;
    max-width: 100%; /* Full width of container */
    margin: 1.2rem 0 0 0;
    text-align: center;
}

.kmy-package-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-top: 4px solid #fd5056;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.kmy-package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(253, 80, 86, 0.14), 0 4px 12px rgba(0, 0, 0, 0.03);
    border-color: rgba(253, 80, 86, 0.25);
    border-top-color: #fd5056;
}

.kmy-card-banner {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.kmy-card-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.kmy-package-card:hover .kmy-card-banner img {
    transform: scale(1.05);
}

.kmy-card-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 17, 17, 0.75) 0%, rgba(17, 17, 17, 0.15) 60%, transparent 100%);
}

.kmy-card-badge-left {
    position: absolute;
    top: 1.1rem;
    left: 1.1rem;
    background: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.45rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.kmy-card-badge-left.heli {
    background: #fd5056;
    border-color: transparent;
}

.kmy-card-badge-right {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    background: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    padding: 0.4rem 0.95rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: right;
    z-index: 2;
}

.kmy-card-badge-right small {
    display: block;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.85;
}

.kmy-card-badge-right strong {
    font-size: 1.15rem;
    color: #f6ad55;
    font-weight: 700;
}

.kmy-card-banner-title {
    position: absolute;
    bottom: 1.2rem;
    left: 1.4rem;
    right: 1.4rem;
    color: #ffffff;
    z-index: 2;
}

.kmy-card-banner-title h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.kmy-card-body {
    padding: 1.8rem 1.6rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.kmy-card-route-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #4a5568;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    line-height: 1.45;
}

.kmy-card-route-tag i {
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.kmy-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.kmy-stat-box {
    background: #f8fafc;
    border-radius: 12px;
    padding: 0.75rem 0.5rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.kmy-stat-icon {
    font-size: 1rem;
    color: #fd5056;
    margin-bottom: 0.3rem;
}

.kmy-stat-val {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: #1a202c;
}

.kmy-stat-lbl {
    font-size: 0.68rem;
    color: #718096;
}

.kmy-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.8rem 0;
    flex-grow: 1;
}

.kmy-features-list li {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #2d3748;
    margin-bottom: 0.65rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    line-height: 1.5;
}

.kmy-features-list li i {
    color: #fd5056;
    font-size: 0.88rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.kmy-card-actions {
    display: flex;
    gap: 0.8rem;
    margin-top: auto;
}

.kmy-btn-primary {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: #fd5056;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    padding: 0.8rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(253, 80, 86, 0.25);
    transition: all 0.3s ease;
}

.kmy-btn-primary:hover {
    background-color: #e03e44;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(253, 80, 86, 0.35);
    transform: translateY(-2px);
}

.kmy-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: #2d3748;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    text-decoration: none;
    transition: all 0.3s ease;
}

.kmy-btn-secondary:hover {
    border-color: #fd5056;
    color: #fd5056;
    text-decoration: none;
    background: rgba(253, 80, 86, 0.04);
}

/* Comprehensive Mobile & Responsive Adjustments */
@media (max-width: 991.98px) {
    .kmy-packages-editorial-section {
        padding: 32px 0;
    }
    .kmy-card-banner {
        height: 220px;
    }
    .kmy-card-body {
        padding: 1.5rem 1.4rem;
    }
}

@media (max-width: 767.98px) {
    .kmy-packages-editorial-section {
        padding: 28px 0;
    }
    .kmy-packages-lead-text {
        font-size: 0.98rem;
        line-height: 1.65;
    }
    .kmy-card-banner {
        height: 200px;
    }
    .kmy-card-banner-title h3 {
        font-size: 1.3rem;
    }
    .kmy-card-badge-left {
        font-size: 0.72rem;
        padding: 0.35rem 0.8rem;
    }
    .kmy-card-badge-right {
        padding: 0.35rem 0.75rem;
    }
    .kmy-card-badge-right strong {
        font-size: 1.05rem;
    }
    .kmy-card-actions {
        flex-direction: column;
        gap: 0.65rem;
    }
    .kmy-btn-primary, .kmy-btn-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .kmy-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.4rem;
    }
    .kmy-stat-box {
        padding: 0.6rem 0.3rem;
    }
    .kmy-stat-val {
        font-size: 0.75rem;
    }
    .kmy-stat-lbl {
        font-size: 0.62rem;
    }
    .kmy-features-list li {
        font-size: 0.85rem;
    }
}

/* ===== KMY 2027 CONSULTATION SECTION ===== */
.kmy-consultation-section {
    background-color: #FAF8F5;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.kmy-consultation-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    font-weight: 700;
    color: #111111;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    padding-bottom: 0 !important;
}

.kmy-consultation-title::after {
    content: none !important;
    display: none !important;
}

.kmy-consultation-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.02rem;
    font-weight: 400;
    line-height: 1.75;
    color: #4a5568;
    margin-bottom: 1.8rem;
}

.kmy-value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.kmy-value-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 1.1rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kmy-value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border-color: rgba(253, 80, 86, 0.2);
}

.kmy-value-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(253, 80, 86, 0.08);
    color: #fd5056;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.kmy-value-text h6 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 0.2rem 0;
}

.kmy-value-text p {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    color: #718096;
    margin: 0;
    line-height: 1.35;
}

/* Consultation Form Card */
.kmy-consultation-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.2rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.05);
}

.kmy-form-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 0.4rem;
}

.kmy-form-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #718096;
    margin-bottom: 1.5rem;
}

.kmy-form-group {
    margin-bottom: 1.1rem;
}

.kmy-form-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #4a5568;
    margin-bottom: 0.4rem;
    display: block;
}

.kmy-form-input {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    color: #1a202c;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.kmy-form-input:focus {
    background: #ffffff;
    border-color: #fd5056;
    box-shadow: 0 0 0 3.5px rgba(253, 80, 86, 0.12);
}

.kmy-form-select {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    color: #1a202c;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    outline: none;
    cursor: pointer;
}

.kmy-form-select:focus {
    background: #ffffff;
    border-color: #fd5056;
    box-shadow: 0 0 0 3.5px rgba(253, 80, 86, 0.12);
}

.kmy-form-submit-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background-color: #fd5056;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    padding: 0.9rem 1.6rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 6px 18px rgba(253, 80, 86, 0.28);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.kmy-form-submit-btn:hover {
    background-color: #e03e44;
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(253, 80, 86, 0.38);
    transform: translateY(-2px);
}

@media (max-width: 767.98px) {
    .kmy-consultation-section {
        padding: 36px 0;
    }
    .kmy-value-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    .kmy-consultation-card {
        padding: 1.6rem 1.2rem;
    }
}

/* Custom Luxury Select Dropdown Component */
.kmy-custom-select-trigger {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 500;
    color: #1a202c;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    height: 48px;
    line-height: 1.2;
}

.kmy-custom-select-trigger:hover,
.kmy-custom-select-trigger.active {
    background: #ffffff;
    border-color: #fd5056;
    box-shadow: 0 0 0 3.5px rgba(253, 80, 86, 0.12);
}

.kmy-select-arrow {
    font-size: 0.8rem;
    color: #718096;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 0.5rem;
}

.kmy-custom-select-trigger.active .kmy-select-arrow {
    transform: rotate(180deg);
    color: #fd5056;
}

.kmy-custom-select-options {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    z-index: 1000;
    display: none;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.kmy-custom-select-options.open {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.kmy-select-option {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #2d3748;
    padding: 0.8rem 1.1rem;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.kmy-select-option:last-child {
    border-bottom: none;
}

.kmy-select-option:hover {
    background: #fff5f5;
    color: #fd5056;
}

.kmy-select-option.active {
    background: #feefef;
    color: #fd5056;
    font-weight: 600;
}

/* ===== KMY 2027 SACRED PILLARS SECTION ===== */
.kmy-pillars-section {
    background-color: #FAF8F5; /* Warm luxury off-white tint */
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.kmy-pillars-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 3.5vw, 2.7rem);
    font-weight: 700;
    color: #111111;
    margin-bottom: 0.5rem;
    padding-bottom: 0 !important;
}

.kmy-pillars-title::after {
    content: none !important;
    display: none !important;
}

.kmy-pillars-lead-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.75;
    color: #4a5568;
    width: 100%;
    max-width: 100%;
    margin: 1rem 0 0 0;
    text-align: center;
}

.kmy-pillar-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.kmy-pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(253, 80, 86, 0.08);
    border-color: rgba(253, 80, 86, 0.25);
}

.kmy-pillar-banner {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.kmy-pillar-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.kmy-pillar-card:hover .kmy-pillar-banner img {
    transform: scale(1.06);
}

.kmy-pillar-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 17, 17, 0.7) 0%, rgba(17, 17, 17, 0.1) 60%, transparent 100%);
}

.kmy-pillar-badge-left {
    position: absolute;
    top: 1.1rem;
    left: 1.1rem;
    background: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.76rem;
    font-weight: 600;
    padding: 0.4rem 0.95rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.kmy-pillar-badge-right {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    background: #fd5056;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    padding: 0.4rem 0.95rem;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(253, 80, 86, 0.3);
    z-index: 2;
}

.kmy-pillar-banner-title {
    position: absolute;
    bottom: 1.1rem;
    left: 1.3rem;
    right: 1.3rem;
    color: #ffffff;
    z-index: 2;
}

.kmy-pillar-banner-title h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.45rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.kmy-pillar-body {
    padding: 1.6rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.kmy-pillar-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.4rem;
    flex-grow: 1;
}

.kmy-pillar-features {
    background: #f8fafc;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.kmy-pillar-feature-item {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.4rem;
}

.kmy-pillar-feature-item:last-child {
    margin-bottom: 0;
}

.kmy-pillar-feature-item i {
    color: #fd5056;
    font-size: 0.85rem;
}

@media (max-width: 991.98px) {
    .kmy-pillars-section {
        padding: 40px 0;
    }
    .kmy-pillar-banner {
        height: 220px;
    }
}

@media (max-width: 767.98px) {
    .kmy-pillars-section {
        padding: 32px 0;
    }
    .kmy-pillars-lead-text {
        font-size: 0.98rem;
        line-height: 1.65;
    }
    .kmy-pillar-body {
        padding: 1.4rem 1.2rem;
    }
}

/* ===== KMY 2027 YEAR OF RENEWAL SECTION ===== */
.kmy-renewal-section {
    background-color: #ffffff;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.kmy-renewal-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: #111111;
    margin-bottom: 0.15rem;
    line-height: 1.25;
}

.kmy-renewal-title::after {
    content: none !important;
    display: none !important;
}

.kmy-renewal-lead {
    font-family: 'Inter', sans-serif;
    font-size: 1.02rem;
    line-height: 1.75;
    color: #4a5568;
    margin-bottom: 1.25rem;
}

.kmy-renewal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.75rem;
}

.kmy-renewal-feature-card {
    background: #FAF8F5;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 14px;
    padding: 1.1rem 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.kmy-renewal-feature-card:hover {
    transform: translateY(-4px);
    background: #ffffff;
    border-color: rgba(253, 80, 86, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.kmy-renewal-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #feefef;
    color: #fd5056;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.kmy-renewal-feature-card h6 {
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.35rem;
}

.kmy-renewal-feature-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    line-height: 1.5;
    color: #718096;
    margin: 0;
}

/* Right Side Showcase Card */
.kmy-showcase-card {
    background: linear-gradient(145deg, #111111 0%, #1a202c 100%);
    border-radius: 24px;
    padding: 2.2rem;
    color: #ffffff;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.25);
    position: relative;
    overflow: hidden;
}

.kmy-showcase-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.kmy-showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: #e6ca65;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.kmy-showcase-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.kmy-showcase-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: #a0aec0;
    margin-bottom: 1.5rem;
}

.kmy-showcase-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.kmy-showcase-stat-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1rem;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.kmy-showcase-stat-box:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(212, 175, 55, 0.4);
}

.kmy-showcase-stat-val {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 0.2rem;
}

.kmy-showcase-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    color: #cbd5e0;
    line-height: 1.4;
}

.kmy-showcase-callout {
    background: rgba(253, 80, 86, 0.12);
    border-left: 3px solid #fd5056;
    border-radius: 0 10px 10px 0;
    padding: 1rem 1.25rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
}

.kmy-showcase-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #fd5056;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 0.85rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(253, 80, 86, 0.35);
    transition: all 0.3s ease;
}

.kmy-showcase-btn:hover {
    background: #e03e44;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(253, 80, 86, 0.45);
}

@media (max-width: 991.98px) {
    .kmy-renewal-section {
        padding: 40px 0;
    }
    .kmy-renewal-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        gap: 0.85rem !important;
        padding: 0.25rem 0.5rem 0.85rem 0.5rem !important;
        margin-top: 1.5rem !important;
        width: 100%;
        scroll-snap-type: x mandatory;
        scrollbar-width: none; /* Firefox */
    }
    .kmy-renewal-grid::-webkit-scrollbar {
        display: none; /* Safari and Chrome */
    }
    .kmy-showcase-card {
        padding: 1.75rem;
    }
}

@media (max-width: 575.98px) {
    .kmy-showcase-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Tour Inclusions & Exclusions Redesign
   ========================================================================== */
.kmy-ie-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    border-bottom: 1px solid #e2e8f0;
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
}

.kmy-ie-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.kmy-ie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    border-color: rgba(212, 175, 55, 0.35);
}

/* Card Headers */
.kmy-ie-header {
    padding: 1.1rem 1.25rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.kmy-ie-header.success-header {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1px solid #bbf7d0;
}

.kmy-ie-header.danger-header {
    background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 100%);
    border: 1px solid #fecdd3;
}

.kmy-ie-icon-badge {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.kmy-ie-icon-badge.success {
    background: #ffffff;
    color: #16a34a;
    box-shadow: 0 4px 10px rgba(22, 163, 74, 0.15);
}

.kmy-ie-icon-badge.danger {
    background: #ffffff;
    color: #e11d48;
    box-shadow: 0 4px 10px rgba(225, 29, 72, 0.15);
}

.kmy-ie-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.kmy-ie-subtitle {
    font-size: 0.78rem;
    color: #64748b;
    margin-top: 0.15rem;
    display: block;
}

/* Item List */
.kmy-ie-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.kmy-ie-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 0.85rem 1.1rem;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    transition: all 0.25s ease;
}

.kmy-ie-item:hover {
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    border-color: #e2e8f0;
    transform: translateX(4px);
}

.kmy-ie-item-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    margin-top: 0.05rem;
}

.kmy-ie-item-icon.success {
    background: rgba(22, 163, 74, 0.1);
    color: #16a34a;
}

.kmy-ie-item-icon.danger {
    background: rgba(225, 29, 72, 0.1);
    color: #e11d48;
}

.kmy-ie-item-content {
    flex: 1;
}

.kmy-ie-item-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #1e293b;
    display: block;
    line-height: 1.3;
}

.kmy-ie-item-desc {
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.4;
    display: block;
    margin-top: 0.15rem;
}

/* Bottom Ribbon */
.kmy-ie-ribbon {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
}

.kmy-ie-ribbon.success {
    background: rgba(16, 185, 129, 0.08);
    color: #065f46;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.kmy-ie-ribbon.danger {
    background: rgba(239, 68, 68, 0.08);
    color: #991b1b;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ==========================================================================
   Registration Steps Section Redesign & Golden Shiny Om Animation
   ========================================================================== */
.kmy-steps-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #090d16 0%, #111827 45%, #1e1b4b 100%);
    padding: 4.5rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.kmy-gold-text {
    background: linear-gradient(135deg, #ffe066 0%, #d4af37 50%, #fef08a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Editorial badge dark variant */
.kmy-editorial-badge.dark-badge {
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: #fef08a;
}

/* 7-Column Golden Shiny Floating Om (ॐ) Animation */
.kmy-om-anim-bg {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.kmy-om-col {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    height: 140%;
    width: 60px;
}

.kmy-om-col.col-1 { left: 2%; animation: omFloatDown 14s linear infinite; }
.kmy-om-col.col-2 { left: 17%; animation: omFloatUp 16s linear infinite; }
.kmy-om-col.col-3 { left: 32%; animation: omFloatDown 13s linear infinite; }
.kmy-om-col.col-4 { left: 48%; animation: omFloatUp 15s linear infinite; }
.kmy-om-col.col-5 { left: 63%; animation: omFloatDown 14s linear infinite; }
.kmy-om-col.col-6 { left: 78%; animation: omFloatUp 16s linear infinite; }
.kmy-om-col.col-7 { left: 92%; animation: omFloatDown 13s linear infinite; }

.kmy-om-icon {
    font-size: 2.6rem;
    font-weight: 900;
    font-family: serif, 'Times New Roman', Georgia;
    background: linear-gradient(135deg, #ffe066 0%, #d4af37 50%, #fff8dc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.6));
    opacity: 0.28;
    user-select: none;
}

/* Fast motion animations */
@keyframes omFloatDown {
    0% { transform: translateY(-30%); }
    100% { transform: translateY(20%); }
}

@keyframes omFloatUp {
    0% { transform: translateY(20%); }
    100% { transform: translateY(-30%); }
}

/* Luxury Steps Table Card Container & Text Color Enforcement */
.kmy-steps-table-card {
    background: #0f172a !important;
    border: 1px solid rgba(253, 80, 86, 0.35) !important;
    border-radius: 24px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(253, 80, 86, 0.12);
    overflow: hidden !important;
}

.kmy-steps-table-card .table-responsive {
    overflow-x: hidden !important;
    overflow-y: hidden !important;
    background: #0f172a !important;
    border-radius: 24px;
}

.kmy-custom-steps-table {
    border-collapse: separate;
    border-spacing: 0;
    background: #0f172a !important;
    width: 100%;
    margin-bottom: 0 !important;
}

.kmy-custom-steps-table thead tr {
    background: linear-gradient(90deg, rgba(253, 80, 86, 0.25) 0%, rgba(220, 38, 38, 0.15) 100%) !important;
    border-bottom: 1px solid rgba(253, 80, 86, 0.3) !important;
}

.kmy-custom-steps-table thead th {
    color: #ff999d !important;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none !important;
    background: transparent !important;
}

.kmy-custom-steps-table tbody tr.kmy-step-row {
    background: #0f172a !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    transition: all 0.25s ease;
}

/* Hover Row Effect - Clean background, left red border & icon glow without horizontal shift */
.kmy-custom-steps-table tbody tr.kmy-step-row:hover {
    background: rgba(253, 80, 86, 0.14) !important;
    box-shadow: inset 4px 0 0 #fd5056 !important;
}

.kmy-custom-steps-table tbody tr.kmy-step-row:hover td {
    background: transparent !important;
}

.kmy-custom-steps-table tbody tr.kmy-step-row:hover .kmy-step-num-pill.red-pill {
    background: #fd5056 !important;
    color: #ffffff !important;
    border-color: #fd5056 !important;
    box-shadow: 0 0 15px rgba(253, 80, 86, 0.5);
    transform: scale(1.08);
}

.kmy-custom-steps-table tbody tr.kmy-step-row:hover .kmy-step-icon.red-icon {
    background: rgba(253, 80, 86, 0.3) !important;
    color: #ffffff !important;
    transform: scale(1.08);
}

.kmy-custom-steps-table tbody tr.kmy-step-row:hover .kmy-step-desc {
    color: #ffffff !important;
}

.kmy-custom-steps-table tbody td {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    border: none !important;
    background: transparent !important;
}

.kmy-step-desc {
    color: #cbd5e1 !important;
    line-height: 1.5;
}

/* Step Number Pill - Red Theme */
.kmy-step-num-pill.red-pill {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(253, 80, 86, 0.15);
    border: 1px solid rgba(253, 80, 86, 0.4);
    color: #fd5056;
    font-size: 0.9rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(253, 80, 86, 0.15);
    transition: all 0.3s ease;
}

.kmy-step-num-pill.ready-pill {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fd5056 0%, #dc2626 100%);
    border: 1px solid #ff999d;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(253, 80, 86, 0.4);
    transition: all 0.3s ease;
}

/* Action Icon - Red Theme */
.kmy-step-icon.red-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 12px;
    background: rgba(253, 80, 86, 0.12);
    border: 1px solid rgba(253, 80, 86, 0.25);
    color: #fd5056;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
}

/* Timeline Pill Badge */
.kmy-timeline-badge {
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #e2e8f0;
    font-size: 0.78rem;
    font-weight: 600;
    display: inline-block;
}

.kmy-timeline-badge.instant {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.4);
    color: #34d399;
}

/* Final Ready Row */
.kmy-step-ready-row {
    background: linear-gradient(90deg, rgba(253, 80, 86, 0.18) 0%, rgba(220, 38, 38, 0.08) 100%) !important;
    border-top: 1px solid rgba(253, 80, 86, 0.35) !important;
}

/* ==========================================================================
   Mobile Responsiveness for All Mobile & Tablet Devices
   ========================================================================== */

@media (max-width: 991.98px) {
    .kmy-steps-section {
        padding: 3.5rem 0;
    }

    .kmy-ie-card {
        padding: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .kmy-steps-section {
        padding: 2.75rem 0;
    }

    .kmy-steps-table-card .table-responsive {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
    }

    .kmy-custom-steps-table {
        min-width: 620px;
    }

    .kmy-custom-steps-table thead th {
        font-size: 0.72rem !important;
        padding: 0.75rem 0.6rem !important;
    }

    .kmy-custom-steps-table tbody td {
        padding: 0.9rem 0.6rem !important;
    }

    .kmy-step-num-pill.red-pill,
    .kmy-step-num-pill.ready-red {
        width: 34px !important;
        height: 34px !important;
        font-size: 0.8rem !important;
    }

    .kmy-step-icon.red-icon,
    .kmy-step-icon.ready-red {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        font-size: 0.85rem !important;
    }

    .kmy-timeline-badge {
        padding: 0.25rem 0.65rem !important;
        font-size: 0.72rem !important;
    }

    .kmy-om-icon {
        font-size: 2rem !important;
        opacity: 0.22 !important;
    }
}

@media (max-width: 575.98px) {
    .kmy-steps-section {
        padding: 2.25rem 0;
    }

    .kmy-steps-table-card {
        border-radius: 18px !important;
    }

    .kmy-ie-card {
        padding: 1.25rem 1rem !important;
        border-radius: 18px !important;
    }

    .kmy-ie-header {
        padding: 0.9rem 0.85rem !important;
        border-radius: 12px !important;
        margin-bottom: 1.1rem !important;
    }

    .kmy-ie-header .d-flex.justify-content-between {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.75rem !important;
    }

    .kmy-ie-header .badge {
        align-self: flex-start !important;
        margin-left: 0 !important;
    }

    .kmy-ie-title {
        font-size: 1.15rem !important;
    }

    .kmy-ie-subtitle {
        font-size: 0.74rem !important;
        line-height: 1.35 !important;
    }

    .kmy-ie-item {
        padding: 0.65rem 0.85rem !important;
        gap: 0.65rem !important;
    }

    .kmy-ie-item-title {
        font-size: 0.82rem !important;
    }

    .kmy-ie-item-desc {
        font-size: 0.74rem !important;
    }

    /* Streamline Om columns for small screens */
    .kmy-om-col.col-2,
    .kmy-om-col.col-4,
    .kmy-om-col.col-6 {
        display: none !important;
    }

    .kmy-om-col.col-1 { left: 4% !important; }
    .kmy-om-col.col-3 { left: 34% !important; }
    .kmy-om-col.col-5 { left: 66% !important; }
    .kmy-om-col.col-7 { left: 92% !important; }

    .kmy-om-icon {
        font-size: 1.7rem !important;
        opacity: 0.2 !important;
    }
}

@media (max-width: 420px) {
    .kmy-ie-section {
        padding-top: 1.75rem !important;
        padding-bottom: 1.75rem !important;
    }

    .kmy-ie-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .kmy-ie-ribbon {
        font-size: 0.74rem !important;
        padding: 0.6rem 0.75rem !important;
    }
}

/* Consultation Section Mobile Alignment Centering */
@media (max-width: 991.98px) {
    .kmy-consultation-title {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .kmy-consultation-section .intro-gold-divider {
        justify-content: center !important;
        text-align: center !important;
        margin: 1rem auto !important;
    }

    .kmy-consultation-desc {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* Renewal/Significance Section Mobile Alignment Centering */
    .kmy-renewal-section .col-lg-6 {
        text-align: center !important;
    }

    .kmy-renewal-section .kmy-editorial-badge {
        display: inline-flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 auto 1.2rem auto !important;
    }

    .kmy-renewal-title {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .kmy-renewal-section .intro-gold-divider {
        justify-content: center !important;
        text-align: center !important;
        margin: 1rem auto !important;
    }

    .kmy-renewal-lead {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .kmy-renewal-feature-card {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 1.25rem 1rem !important;
        flex: 0 0 240px !important;
        width: 240px !important;
        scroll-snap-align: start;
    }

    .kmy-renewal-icon {
        margin: 0 auto 0.85rem auto !important;
    }
}

/* Calendar Section Mobile Responsiveness */
@media (max-width: 991.98px) {
    .kmy-calendar-wrapper {
        padding: 1.25rem !important;
        border-radius: 20px !important;
    }
}

@media (max-width: 767.98px) {
    .kmy-calendar-header {
        flex-direction: column;
        align-items: stretch !important;
        gap: 0.85rem;
    }

    .kmy-route-segmented-toggle {
        display: flex !important;
        width: 100% !important;
        padding: 4px !important;
    }

    .kmy-route-tab-btn {
        flex: 1 !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .kmy-month-nav {
        justify-content: center !important;
        width: 100% !important;
        margin: 0.25rem 0 !important;
    }

    .calendar-weekdays span {
        font-size: 0.72rem !important;
    }

    .calendar-row {
        gap: 6px !important;
    }

    .calendar-day-box {
        height: 38px !important;
        min-height: 38px !important;
        font-size: 0.82rem !important;
        border-radius: 6px !important;
    }

    .kmy-moon-icon {
        font-size: 0.7rem !important;
        bottom: 2px !important;
        right: 2px !important;
    }

    .kmy-calendar-footer {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0.75rem !important;
    }

    .calendar-legend {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 1.25rem !important;
        width: 100% !important;
        margin: 0 auto !important;
    }

    .legend-item {
        font-size: 0.76rem !important;
        white-space: nowrap !important;
    }

    .kmy-availability-pill {
        text-align: center;
        width: 100%;
        margin-top: 0.25rem;
    }

    .kmy-calendar-hint-banner {
        padding: 0.5rem 0.75rem !important;
        margin-top: 0.65rem !important;
    }

    .kmy-calendar-hint-banner .d-flex {
        gap: 0.5rem !important;
    }

    .kmy-calendar-hint-banner span {
        font-size: 0.78rem !important;
    }
}

@media (max-width: 575.98px) {
    .calendar-row {
        gap: 4px !important;
    }

    .calendar-day-box {
        height: 34px !important;
        min-height: 34px !important;
        font-size: 0.78rem !important;
        border-radius: 5px !important;
    }
}

/* Calendar Section Left Column Organizing (Centered Title/Description on Mobile) */
@media (max-width: 991.98px) {
    .kmy-calendar-section .col-lg-5 {
        text-align: center !important;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center !important;
    }

    .kmy-calendar-section .intro-gold-divider {
        justify-content: center !important;
        text-align: center !important;
        margin: 1rem auto !important;
    }

    .kmy-calendar-section h2 {
        text-align: center !important;
        font-size: 2.2rem !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .kmy-calendar-section p.text-muted {
        text-align: center !important;
        font-size: 0.95rem !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .kmy-cal-highlight-box {
        width: 100%;
        padding: 1rem !important;
        text-align: left !important; /* Keep internal text clean */
    }

    .kmy-price-mini-card {
        padding: 0.75rem !important;
        text-align: left !important; /* Keep price tags left aligned for numbers */
    }

    .kmy-price-amount {
        font-size: 1.25rem !important;
    }
}

/* ==========================================================================
   Luxury Blog Section Redesign
   ========================================================================== */
.kmy-blog-section {
    background: linear-gradient(135deg, #fffdf8 0%, #fef9ee 45%, #fbf4e6 100%);
    position: relative;
    overflow: hidden;
}

.kmy-blog-card {
    background: #ffffff !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    overflow: hidden !important;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    display: flex !important;
    flex-direction: column !important;
}

.kmy-blog-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(253, 80, 86, 0.08) !important;
    border-color: rgba(253, 80, 86, 0.25) !important;
}

.kmy-blog-img-wrapper {
    position: relative !important;
    height: 210px !important;
    overflow: hidden !important;
    width: 100% !important;
}

.kmy-blog-img-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.kmy-blog-card:hover .kmy-blog-img-wrapper img {
    transform: scale(1.08) !important;
}

.kmy-blog-tag {
    position: absolute !important;
    top: 1rem !important;
    left: 1rem !important;
    background: #ffffff !important;
    color: #fd5056 !important;
    padding: 0.35rem 0.95rem !important;
    border-radius: 50px !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid rgba(253, 80, 86, 0.15) !important;
    z-index: 2 !important;
}

.kmy-blog-body {
    padding: 1.5rem 1.75rem 1.75rem 1.75rem !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
}

.kmy-blog-title {
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    margin-bottom: 0.75rem !important;
}

.kmy-blog-title a {
    color: #1e293b !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.kmy-blog-title a:hover {
    color: #fd5056 !important;
}

.kmy-blog-excerpt {
    font-size: 0.85rem !important;
    line-height: 1.6 !important;
    color: #64748b !important;
    margin-bottom: 1.5rem !important;
    flex: 1 !important;
}

.kmy-blog-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    color: #fd5056 !important;
    text-decoration: none !important;
    transition: gap 0.2s ease !important;
}

.kmy-blog-link:hover {
    gap: 0.75rem !important;
    color: #dc2626 !important;
}

@media (max-width: 991.98px) {
    .kmy-blog-card {
        margin-bottom: 0.5rem !important;
    }
}

/* ==========================================================================
   Luxury FAQ Section Redesign
   ========================================================================== */
.kmy-faq-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.kmy-faq-accordion .accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    background: #ffffff !important;
    border-radius: 16px !important;
    margin-bottom: 1.25rem !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
    transition: all 0.3s ease !important;
    overflow: hidden !important;
}

.kmy-faq-accordion .accordion-item:hover {
    border-color: rgba(253, 80, 86, 0.2) !important;
    box-shadow: 0 10px 25px rgba(253, 80, 86, 0.05) !important;
}

.kmy-faq-btn {
    padding: 1.25rem 1.5rem !important;
    font-size: 1.02rem !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    background: #ffffff !important;
    border: none !important;
    box-shadow: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
}

.kmy-faq-btn::after {
    background-size: 1rem !important;
    transition: transform 0.3s ease !important;
}

.kmy-faq-btn:not(.collapsed) {
    background: #fffdf5 !important;
    color: #fd5056 !important;
    border-bottom: 1px solid rgba(253, 80, 86, 0.08) !important;
}

.kmy-faq-icon-box {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(253, 80, 86, 0.08);
    color: #fd5056;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    min-width: 34px;
}

.kmy-faq-btn:not(.collapsed) .kmy-faq-icon-box {
    background: #fd5056;
    color: #ffffff;
}

.kmy-faq-body {
    padding: 1.25rem 1.75rem 1.5rem 4.5rem !important;
    font-size: 0.88rem !important;
    line-height: 1.65 !important;
    color: #64748b !important;
    background: #ffffff !important;
}

@media (max-width: 767.98px) {
    .kmy-faq-btn {
        padding: 1rem !important;
        font-size: 0.92rem !important;
        gap: 0.75rem !important;
    }
    .kmy-faq-body {
        padding: 1rem 1rem 1.25rem 1rem !important;
        font-size: 0.84rem !important;
    }
    .kmy-faq-icon-box {
        width: 30px;
        height: 30px;
        min-width: 30px;
        font-size: 0.85rem;
    }
}

/* Smoother open and close transition curve for Accordions */
.kmy-faq-accordion .collapsing {
    transition: height 0.45s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.kmy-faq-accordion .accordion-collapse {
    transition: height 0.45s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

/* ==========================================================================
   Master Call-to-action Section Redesign
   ========================================================================== */
.kmy-master-cta-section {
    background: #0f172a !important;
    border-top: 1px solid rgba(212, 175, 55, 0.2) !important;
    position: relative !important;
    margin-bottom: 0 !important;
}

.kmy-cta-bg-image {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    opacity: 0.55 !important;
    filter: brightness(0.95) contrast(1.15) !important;
    z-index: 1 !important;
}

.kmy-cta-gradient-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.72) 0%, rgba(30, 27, 75, 0.68) 45%, rgba(49, 16, 47, 0.65) 75%, rgba(69, 10, 10, 0.72) 100%) !important;
    z-index: 2 !important;
}

.kmy-cta-glow-overlay {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 650px !important;
    height: 380px !important;
    background: radial-gradient(circle, rgba(253, 80, 86, 0.25) 0%, rgba(212, 175, 55, 0.15) 50%, transparent 70%) !important;
    pointer-events: none !important;
    z-index: 3 !important;
}

.kmy-cta-badge {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(212, 175, 55, 0.35) !important;
    padding: 0.45rem 1.25rem !important;
    border-radius: 50px !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.8px !important;
    color: #e2e8f0 !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
}

.kmy-gold-gradient-text {
    background: linear-gradient(135deg, #FFF59D 0%, #FFE57F 30%, #D4AF37 70%, #FFD54F 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    display: inline-block !important;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.35)) !important;
}

.kmy-cta-lead {
    color: #cbd5e1 !important;
    font-size: 1.05rem !important;
    line-height: 1.7 !important;
    max-width: 760px !important;
}

.btn-kmy-cta-gold {
    background: linear-gradient(135deg, #fd5056 0%, #e11d48 100%) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 8px 25px rgba(253, 80, 86, 0.4) !important;
    font-size: 0.98rem !important;
    letter-spacing: 0.3px !important;
    transition: all 0.3s ease !important;
}

.btn-kmy-cta-gold:hover {
    background: linear-gradient(135deg, #e11d48 0%, #be123c 100%) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 30px rgba(253, 80, 86, 0.55) !important;
    color: #ffffff !important;
}

.btn-kmy-cta-glass {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    border: 1px solid rgba(212, 175, 55, 0.45) !important;
    backdrop-filter: blur(12px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
    font-size: 0.98rem !important;
    letter-spacing: 0.3px !important;
    transition: all 0.3s ease !important;
}

.btn-kmy-cta-glass:hover {
    background: rgba(212, 175, 55, 0.2) !important;
    border-color: #D4AF37 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.3) !important;
    color: #ffffff !important;
}

.kmy-cta-trust-item {
    font-size: 0.85rem !important;
    color: #cbd5e1 !important;
    font-weight: 500 !important;
}

/* CTA Mobile Responsive Override */
@media (max-width: 767.98px) {
    .kmy-master-cta-section {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
    }
    .kmy-cta-mandala {
        display: none !important;
    }
    .btn-kmy-cta-gold,
    .btn-kmy-cta-glass {
        width: 100% !important;
        justify-content: center !important;
    }
    .kmy-cta-trust-item {
        font-size: 0.78rem !important;
    }
}

/* ==========================================================================
   Luxury Reviews Section Redesign
   ========================================================================== */
.kmy-reviews-section {
    background: #FAF7F2 !important;
    position: relative !important;
    overflow: hidden !important;
}

/* ── Premium Quote Card ── */
.kmy-quote-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 28px 24px;
    border: 1px solid #f0ede8;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.kmy-quote-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 5rem;
    font-family: Georgia, 'Times New Roman', serif;
    color: #D4AF37;
    opacity: 0.1;
    line-height: 1;
    pointer-events: none;
}

.kmy-quote-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(212, 175, 55, 0.1), 0 4px 12px rgba(0, 0, 0, 0.04);
    border-color: rgba(212, 175, 55, 0.3);
}

/* Author top section */
.kmy-quote-author-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.kmy-quote-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFECD2 100%);
    color: #C2410C;
    font-weight: 700;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.kmy-quote-author-info h6 {
    margin: 0;
    font-weight: 700;
    font-size: 0.95rem;
    color: #1a1a2e;
    font-family: 'Inter', sans-serif;
    line-height: 1.3;
}

.kmy-quote-stars {
    display: flex;
    gap: 2px;
    margin-top: 2px;
}

.kmy-quote-stars i {
    font-size: 0.7rem;
    color: #FFB400;
}

/* Quote body */
.kmy-quote-body {
    font-size: 0.9rem;
    line-height: 1.75;
    color: #475569;
    flex: 1;
    font-family: 'Inter', sans-serif;
    text-align: left;
}

/* Google footer */
.kmy-quote-google-footer {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    margin-top: auto !important;
    padding-top: 16px !important;
    border-top: 1px solid #f1f0ed !important;
}

.kmy-quote-google-footer img {
    height: 18px !important;
    width: auto !important;
    object-fit: contain !important;
    flex-shrink: 0 !important;
    display: inline-block !important;
}

.kmy-quote-google-footer span {
    font-size: 0.72rem !important;
    color: #94a3b8 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    font-weight: 500 !important;
    font-family: 'Inter', sans-serif !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}

/* Carousel equal height + breathing room */
.kmy-reviews-carousel {
    padding: 8px 0 20px !important;
    overflow: visible !important;
}

.kmy-reviews-carousel .owl-stage-outer {
    overflow: visible !important;
    padding: 10px 0 !important;
}

.kmy-reviews-carousel .owl-stage {
    display: flex !important;
}

.kmy-reviews-carousel .owl-item {
    display: flex !important;
    flex: 1 0 auto !important;
}

.kmy-reviews-carousel .owl-item > div {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
}

/* Carousel dots */
.kmy-reviews-carousel .owl-dots {
    margin-top: 2rem !important;
}

.kmy-reviews-carousel .owl-dot span {
    width: 10px !important;
    height: 10px !important;
    background: rgba(212, 175, 55, 0.35) !important;
    transition: all 0.3s ease !important;
}

.kmy-reviews-carousel .owl-dot.active span {
    width: 28px !important;
    background: #fd5056 !important;
    border-radius: 50px !important;
}

.kmy-review-card .quote-watermark {
    position: absolute !important;
    right: 1.25rem !important;
    bottom: 1rem !important;
    font-size: 3.5rem !important;
    color: rgba(253, 80, 86, 0.04) !important;
    pointer-events: none !important;
    transition: all 0.35s ease !important;
}

.kmy-review-card:hover .quote-watermark {
    color: rgba(253, 80, 86, 0.12) !important;
    transform: scale(1.12) rotate(-5deg) !important;
}

.kmy-reviews-carousel .owl-dots {
    margin-top: 2rem !important;
}

.kmy-reviews-carousel .owl-dot span {
    width: 10px !important;
    height: 10px !important;
    background: rgba(212, 175, 55, 0.35) !important;
    transition: all 0.3s ease !important;
}

.kmy-reviews-carousel .owl-dot.active span {
    width: 28px !important;
    background: #fd5056 !important;
    border-radius: 50px !important;
}

/* ===== KMY 2027 PREVIOUS BATCH MEMORIES SECTION RED VIBE ===== */
.kmy-memories-section {
    background: linear-gradient(180deg, #ffffff 0%, #fffaf5 100%);
    border-top: 1px solid rgba(253, 80, 86, 0.15);
    border-bottom: 1px solid rgba(253, 80, 86, 0.15);
    position: relative;
    overflow: hidden;
}

.kmy-memories-section .kmy-img-card {
    border: 3px solid #d4af37;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s ease;
}

.kmy-memories-section .kmy-marquee-item:hover .kmy-img-card {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(253, 80, 86, 0.22);
    border-color: #fd5056;
}

.kmy-memories-section .overlay-icon {
    color: #fd5056;
}

/* ===== KMY 2027 CUSTOM VIDEO MODAL FRAME, CLOSE BUTTON & SPINNER PRELOADER ===== */
.kmy-video-modal-wrap .mfp-container,
.kmy-video-modal-wrap .mfp-content,
.kmy-video-modal-container {
    overflow: visible !important;
}

.kmy-video-modal-wrap .mfp-content {
    max-width: 960px !important;
    width: 92% !important;
    margin: 0 auto !important;
}

.kmy-video-modal-container {
    position: relative !important;
    padding-top: 10px !important;
    overflow: visible !important;
}

.kmy-video-frame-inner {
    position: relative !important;
    background: #0d0f12 !important;
    border-radius: 20px !important;
    border: 3px solid #d4af37 !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 35px rgba(253, 80, 86, 0.35) !important;
    overflow: hidden !important;
}

.kmy-video-frame-inner .mfp-iframe-scaler {
    border-radius: 17px !important;
    overflow: hidden !important;
    position: relative !important;
    z-index: 2 !important;
    background: transparent !important;
}

.kmy-video-modal-wrap .mfp-iframe-scaler iframe,
.kmy-video-frame-inner .mfp-iframe-scaler iframe {
    background: transparent !important;
}

/* Spinner Preloader */
.kmy-video-spinner-wrapper {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 14px !important;
    pointer-events: none !important;
}

.kmy-video-spinner {
    width: 48px !important;
    height: 48px !important;
    border: 4px solid rgba(255, 255, 255, 0.15) !important;
    border-top: 4px solid #fd5056 !important;
    border-right: 4px solid #d4af37 !important;
    border-radius: 50% !important;
    animation: kmyVideoSpin 0.9s linear infinite !important;
}

@keyframes kmyVideoSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.kmy-video-spinner-text {
    color: #e2e8f0 !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.5px !important;
    font-family: 'Poppins', sans-serif !important;
}

/* Close Button */
.kmy-video-modal-wrap button.mfp-close.kmy-video-close-btn,
.kmy-video-modal-wrap .kmy-video-close-btn,
.kmy-video-close-btn {
    position: absolute !important;
    top: -18px !important;
    right: -18px !important;
    width: 44px !important;
    height: 44px !important;
    line-height: 40px !important;
    border-radius: 50% !important;
    background: #fd5056 !important;
    background: linear-gradient(135deg, #fd5056 0%, #dc2626 100%) !important;
    color: #ffffff !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    font-family: Arial, sans-serif !important;
    opacity: 1 !important;
    padding: 0 !important;
    text-align: center !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6), 0 0 15px rgba(253, 80, 86, 0.5) !important;
    border: 2px solid #ffffff !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    z-index: 100000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.kmy-video-modal-wrap button.mfp-close.kmy-video-close-btn:hover,
.kmy-video-modal-wrap .kmy-video-close-btn:hover {
    transform: scale(1.12) rotate(90deg) !important;
    background: #ffffff !important;
    color: #fd5056 !important;
    border-color: #fd5056 !important;
    box-shadow: 0 8px 25px rgba(253, 80, 86, 0.6) !important;
}

/* ===== HARDWARE ACCELERATION & LOW-END SMARTPHONE PERFORMANCE ===== */
.kmy-memories-section {
    contain: content;
}

.kmy-marquee-wrapper {
    will-change: scroll-position;
    -webkit-overflow-scrolling: touch;
    contain: layout style paint;
    touch-action: pan-x;
}

.kmy-marquee-track {
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.kmy-img-card {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    contain: layout paint;
}

.kmy-img-card img {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
}

/* Mobile GPU Optimizations */
@media (max-width: 768px) {
    .kmy-marquee-item {
        width: 270px !important;
    }

    .kmy-img-card {
        height: 200px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    }

    .kmy-marquee-track {
        gap: 16px !important;
    }
}

/* ===== KMY 2027 CONCEPT 3: FLOATING JOURNEY NAVIGATOR CAPSULE ===== */
.kmy-capsule-nav {
    position: fixed !important;
    bottom: 24px !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(30px) !important;
    z-index: 9980 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.kmy-capsule-nav.visible {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(0) !important;
}

.kmy-capsule-container {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 6px 10px !important;
    background: rgba(15, 23, 42, 0.82) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    border-top: 1px solid rgba(212, 175, 55, 0.45) !important;
    border-radius: 50px !important;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.65), 
                inset 0 1px 1px rgba(255, 255, 255, 0.25), 
                0 0 25px rgba(253, 80, 86, 0.18) !important;
}

/* Prev / Next Arrow Buttons */
.kmy-capsule-btn {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    color: #e2e8f0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.85rem !important;
    cursor: pointer !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    outline: none !important;
}

.kmy-capsule-btn:hover {
    background: linear-gradient(135deg, #fd5056 0%, #dc2626 100%) !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
    box-shadow: 0 0 14px rgba(253, 80, 86, 0.6) !important;
    transform: scale(1.08) !important;
}

/* Center Title Trigger */
.kmy-capsule-trigger {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 6px 14px !important;
    border-radius: 30px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    user-select: none !important;
}

.kmy-capsule-trigger:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(212, 175, 55, 0.4) !important;
}

.capsule-step-pill {
    background: #fd5056 !important;
    color: #ffffff !important;
    font-size: 0.72rem !important;
    font-weight: 800 !important;
    padding: 2px 7px !important;
    border-radius: 20px !important;
    font-family: 'Outfit', sans-serif !important;
    letter-spacing: 0.5px !important;
}

.capsule-divider {
    width: 1px !important;
    height: 14px !important;
    background: rgba(255, 255, 255, 0.2) !important;
}

.capsule-title {
    color: #ffffff !important;
    font-size: 0.84rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    font-family: 'Poppins', sans-serif !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
}

.capsule-caret {
    color: #d4af37 !important;
    font-size: 0.78rem !important;
    transition: transform 0.3s ease !important;
}

.kmy-capsule-container.open .capsule-caret {
    transform: rotate(180deg) !important;
}

/* Unfolding Glass Dropdown Menu */
.kmy-capsule-dropdown {
    position: absolute !important;
    bottom: calc(100% + 14px) !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(10px) scale(0.95) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 270px !important;
    background: rgba(15, 23, 42, 0.94) !important;
    backdrop-filter: blur(24px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    border-top: 1px solid rgba(212, 175, 55, 0.5) !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 
                0 0 30px rgba(253, 80, 86, 0.2) !important;
    padding: 12px !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.kmy-capsule-container.open .kmy-capsule-dropdown {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(0) scale(1) !important;
}

.dropdown-header {
    font-size: 0.68rem !important;
    font-weight: 800 !important;
    letter-spacing: 1.2px !important;
    color: #d4af37 !important;
    padding: 4px 8px 8px 8px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    margin-bottom: 6px !important;
}

.dropdown-menu-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
}

.capsule-dropdown-item {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 8px 12px !important;
    border-radius: 12px !important;
    color: #cbd5e1 !important;
    text-decoration: none !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    font-family: 'Poppins', sans-serif !important;
    transition: all 0.25s ease !important;
}

.capsule-dropdown-item .item-step {
    font-size: 0.72rem !important;
    font-weight: 800 !important;
    color: #fd5056 !important;
    background: rgba(253, 80, 86, 0.15) !important;
    padding: 2px 6px !important;
    border-radius: 6px !important;
}

.capsule-dropdown-item .item-name {
    flex-grow: 1 !important;
}

.capsule-dropdown-item .item-arrow {
    font-size: 0.75rem !important;
    opacity: 0 !important;
    transform: translateX(-6px) !important;
    transition: all 0.25s ease !important;
}

.capsule-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
}

.capsule-dropdown-item:hover .item-arrow {
    opacity: 1 !important;
    transform: translateX(0) !important;
    color: #d4af37 !important;
}

.capsule-dropdown-item.active {
    background: linear-gradient(135deg, rgba(253, 80, 86, 0.3) 0%, rgba(220, 38, 38, 0.2) 100%) !important;
    border: 1px solid rgba(253, 80, 86, 0.4) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
}

.capsule-dropdown-item.active .item-step {
    background: #fd5056 !important;
    color: #ffffff !important;
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 768px) {
    .kmy-capsule-nav {
        bottom: 16px !important;
        width: calc(100% - 24px) !important;
        max-width: 380px !important;
    }

    .kmy-capsule-container {
        justify-content: space-between !important;
        padding: 5px 8px !important;
    }

    .kmy-capsule-trigger {
        padding: 5px 10px !important;
        gap: 8px !important;
    }

    .capsule-title {
        font-size: 0.76rem !important;
    }

    .kmy-capsule-dropdown {
        width: 100% !important;
        max-width: 320px !important;
    }
}

/* Prevent CSS margin collapse and white body background bleed between CTA and Footer */
.kmy-master-cta-section {
    margin-bottom: 0 !important;
}

.footer-area {
    margin-top: 0 !important;
    padding-top: 1px !important;
    background: #090031 !important;
}




