/*
 * Kailash Mansarovar Yatra 2027 - Registration Page Stylesheet
 * Executive Luxury Travel UI/UX Design System + Full Width Form & Guidelines Card
 * Author: Vivek Chandra Pandey
 */

:root {
    --page-bg: #faf9f6;
    --card-bg: #ffffff;
    --card-bg-alt: #f8fafc;
    --card-border: #e2e8f0;
    --card-border-hover: #cbd5e1;
    --text-main: #0f172a;
    --text-muted: #475569;
    --text-light: #64748b;
    --brand-red: #fd5056;
    --brand-red-hover: #e04046;
    --brand-red-light: rgba(253, 80, 86, 0.08);
    --saffron-gradient: linear-gradient(135deg, #fd5056 0%, #ff787c 100%);
    --brand-gold: #c59b27;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    --card-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    --card-shadow-hover: 0 12px 35px rgba(15, 23, 42, 0.08);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
}

/* Base Page Setup */
.kmy27-reg-page {
    background-color: var(--page-bg);
    color: var(--text-main);
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

.kmy27-text-red {
    color: var(--brand-red) !important;
}

.kmy27-text-gold {
    color: var(--brand-gold) !important;
}

/* Section Background Variations */
.bg-kmy27-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.91) 0%, rgba(253, 248, 246, 0.87) 100%),
                url('../../images/kailash-mansarovar/abode-of-lord-shiva.webp') center/cover no-repeat;
    border-bottom: 1px solid var(--card-border);
    padding: 70px 0 65px;
}

.bg-kmy27-white {
    background: #ffffff;
}

.bg-kmy27-light {
    background: #f8fafc;
}

.bg-kmy27-highlight {
    background: #fff8f6;
}

/* Hero Section UI */
.kmy27-hero-banner-card {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kmy27-hero-banner-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.09);
}

.kmy27-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: var(--brand-red-light);
    border: 1px solid rgba(253, 80, 86, 0.25);
    border-radius: 50px;
    color: var(--brand-red);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.kmy27-hero-title-light {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.25;
    margin-bottom: 18px;
}

.kmy27-hero-title-light .highlight {
    color: var(--brand-red);
}

.kmy27-hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.kmy27-hero-feature-pills {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 12px;
    margin-bottom: 30px;
    padding: 4px 2px 8px 2px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.kmy27-hero-feature-pills::-webkit-scrollbar {
    display: none;
}

.kmy27-feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: all 0.25s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

.kmy27-feature-pill:hover {
    border-color: var(--brand-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(253, 80, 86, 0.08);
}

.kmy27-feature-pill i {
    color: var(--brand-red);
    font-size: 1.1rem;
}

/* Light Theme Buttons */
.kmy27-btn-red {
    background: var(--saffron-gradient);
    color: #ffffff !important;
    font-weight: 700;
    padding: 14px 34px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(253, 80, 86, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-size: 0.98rem;
    cursor: pointer;
}

.kmy27-btn-red:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(253, 80, 86, 0.4);
    color: #ffffff !important;
}

.kmy27-btn-outline-dark {
    background: #ffffff;
    color: var(--text-main) !important;
    font-weight: 600;
    padding: 14px 34px;
    border-radius: 50px;
    border: 1.5px solid var(--card-border);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-size: 0.98rem;
    cursor: pointer;
}

.kmy27-btn-outline-dark:hover {
    border-color: var(--brand-red);
    color: var(--brand-red) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
}

.kmy27-btn-prev {
    background: #f1f5f9;
    color: var(--text-main) !important;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    border: 1px solid var(--card-border);
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.kmy27-btn-prev:hover {
    background: #e2e8f0;
    color: #000000 !important;
}

/* WhatsApp Button */
.kmy27-whatsapp-btn {
    background: #25d366;
    color: #ffffff !important;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-size: 0.92rem;
}

.kmy27-whatsapp-btn:hover {
    background: #20bd5a;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35);
}

/* Section Intros */
.kmy27-section-intro-full {
    width: 100%;
    margin-bottom: 35px;
}

.kmy27-section-title-light {
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 14px;
}

.kmy27-section-title-light .highlight {
    color: var(--brand-red);
}

.kmy27-section-description-full {
    font-size: 1.04rem;
    color: var(--text-muted);
    line-height: 1.85;
    width: 100%;
    margin: 0;
}

/* ==========================================================================
   SINGLE UNIFIED FORM CARD DESIGN
   ========================================================================== */
.kmy27-single-form-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.05);
    position: relative;
    border: 2px solid transparent;
    background-image: linear-gradient(#ffffff, #ffffff), linear-gradient(135deg, #fd5056 0%, #ff787c 40%, #c59b27 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: box-shadow 0.3s ease;
}

.kmy27-single-form-card:hover {
    box-shadow: 0 15px 45px rgba(253, 80, 86, 0.1);
}

/* Real-Time Field Feedback Messages */
.kmy27-field-feedback {
    font-size: 0.84rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.kmy27-field-feedback:empty {
    min-height: 0 !important;
    margin-top: 0 !important;
    display: none !important;
}

.kmy27-field-feedback:not(:empty) {
    margin-top: 4px !important;
    min-height: 18px !important;
    display: block !important;
}

.kmy27-field-feedback.is-error,
.kmy27-field-feedback.is-error i {
    color: #ef4444 !important;
    font-weight: 600 !important;
}

.kmy27-field-feedback.is-valid,
.kmy27-field-feedback.is-valid i {
    color: #10b981 !important;
    font-weight: 600 !important;
}

.kmy27-input-light.field-valid {
    border-color: #10b981 !important;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12) !important;
}

.kmy27-input-light.field-error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12) !important;
}

/* Custom Country Selector & Phone Input Wrap */
.kmy27-phone-custom-wrap {
    display: flex;
    align-items: stretch;
    position: relative;
    border-radius: 12px;
}

.kmy27-country-picker {
    position: relative;
    flex-shrink: 0;
}

.kmy27-country-trigger {
    height: 100%;
    min-height: 48px;
    padding: 0 14px;
    background: #f8fafc;
    border: 1.5px solid var(--card-border);
    border-right: none;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
    outline: none;
}

.kmy27-country-trigger:hover,
.kmy27-country-trigger:focus,
.kmy27-country-picker.open .kmy27-country-trigger {
    background: #f1f5f9;
    border-color: var(--brand-red);
}

.kmy27-flag-selected {
    font-size: 1.25rem;
    line-height: 1;
}

.kmy27-code-selected {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main);
}

.kmy27-caret {
    font-size: 0.75rem;
    color: #64748b;
    transition: transform 0.25s ease;
}

.kmy27-country-picker.open .kmy27-caret {
    transform: rotate(180deg);
}

.kmy27-phone-input {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    flex-grow: 1;
}

/* Floating Custom Dropdown Menu */
.kmy27-country-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 310px;
    max-width: 88vw;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.15);
    z-index: 9999;
    display: none;
    overflow: hidden;
    animation: dropdownFadeIn 0.2s ease forwards;
}

.kmy27-country-picker.open .kmy27-country-dropdown {
    display: block;
}

@keyframes dropdownFadeIn {
    0% { opacity: 0; transform: translateY(-8px); }
    100% { opacity: 1; transform: translateY(0); }
}

.kmy27-dropdown-search-box {
    padding: 10px 12px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    display: flex;
    align-items: center;
}

.kmy27-search-icon {
    position: absolute;
    left: 22px;
    font-size: 0.85rem;
    color: #94a3b8;
    pointer-events: none;
}

.kmy27-search-input {
    width: 100%;
    padding: 8px 12px 8px 34px;
    font-size: 0.85rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s ease;
    background: #ffffff;
}

.kmy27-search-input:focus {
    border-color: var(--brand-red);
}

.kmy27-country-list {
    max-height: 230px;
    overflow-y: auto;
    padding: 6px 0;
}

.kmy27-country-list::-webkit-scrollbar {
    width: 5px;
}

.kmy27-country-list::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.kmy27-country-item {
    padding: 9px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background 0.15s ease;
    user-select: none;
}

.kmy27-country-item:hover,
.kmy27-country-item.selected {
    background: #fff5f5;
}

.kmy27-country-item-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.kmy27-item-flag {
    font-size: 1.2rem;
}

.kmy27-item-name {
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--text-main);
}

.kmy27-item-code {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--brand-red);
}

.kmy27-no-results {
    padding: 16px;
    text-align: center;
    font-size: 0.85rem;
    color: #94a3b8;
}

/* ==========================================================================
   SECTION 3 DOCUMENT UPLOAD DROPZONES & PREVIEWS
   ========================================================================== */
.kmy27-privacy-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 14px;
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 50px;
}

/* Document Upload Guidelines Info Row (Unhoverable Info Text) */
.kmy27-guidelines-info-row {
    user-select: none;
    pointer-events: none;
}

.kmy27-guide-info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 6px;
    background: transparent;
    border: none;
    cursor: default;
}

.kmy27-guide-info-text {
    font-size: 0.82rem;
    color: #475569;
}

.kmy27-guide-info-text strong {
    color: var(--text-main);
}

/* Solid Separator Line Below Guidelines with Spacing Gap */
.kmy27-section-subdivider {
    border-bottom: 1px solid #e2e8f0;
    margin: 16px 0 32px;
}

/* Dropzone Outer Wrapper - Compact & Clean */
.kmy27-file-dropzone-light {
    position: relative;
    border: 1.5px dashed #cbd5e1;
    border-radius: 12px;
    background: #ffffff;
    padding: 10px 14px;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.2s ease;
    cursor: pointer;
    overflow: hidden;
}

.kmy27-file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.kmy27-file-dropzone-light:hover,
.kmy27-file-dropzone-light.drag-over {
    border-color: var(--brand-red);
    background: #fffcfc;
    box-shadow: 0 4px 12px rgba(253, 80, 86, 0.08);
}

.kmy27-file-dropzone-light.has-file {
    border-style: solid;
    border-color: #10b981;
    background: #f0fdf4;
}

.kmy27-file-dropzone-light.has-file .kmy27-file-input {
    z-index: 1; /* Allow remove button clicks */
}

/* Initial State */
.kmy27-dz-state-init {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    pointer-events: none;
}

.kmy27-dropzone-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--brand-red-light);
    color: var(--brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.kmy27-dropzone-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-main);
    margin: 0 0 1px 0;
}

.kmy27-dropzone-sub {
    font-size: 0.76rem;
    color: var(--text-muted);
    margin: 0;
}

/* Preview State Card */
.kmy27-dz-state-preview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    z-index: 3;
}

.kmy27-preview-thumb-box {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #a7f3d0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kmy27-preview-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kmy27-preview-meta {
    flex-grow: 1;
    text-align: left;
    overflow: hidden;
}

.kmy27-preview-filename {
    font-size: 0.84rem;
    font-weight: 800;
    color: #065f46;
    margin-bottom: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.kmy27-preview-size {
    font-size: 0.74rem;
    color: #047857;
}

.kmy27-preview-badge-verified {
    display: inline-flex;
    align-items: center;
    padding: 1px 6px;
    background: #dcfce7;
    color: #15803d;
    border: 1px solid #86efac;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50px;
}

.kmy27-btn-remove-file {
    padding: 4px 10px;
    font-size: 0.74rem;
    font-weight: 700;
    border-radius: 6px;
    background: #fee2e2;
    color: #dc2626;
    border: 1px solid #fca5a5;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

.kmy27-btn-remove-file:hover {
    background: #dc2626;
    color: #ffffff;
    border-color: #dc2626;
}

/* ==========================================================================
   PACKAGE TOGGLE SELECTION CARDS
   ========================================================================== */
.kmy27-pkg-toggle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

@media (max-width: 767.98px) {
    .kmy27-pkg-toggle-grid {
        grid-template-columns: 1fr;
    }
}

.kmy27-pkg-choice {
    position: relative;
    cursor: pointer;
    user-select: none;
    display: block;
}

.kmy27-pkg-choice input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.kmy27-pkg-card-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 18px;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.02);
}

/* Radio Indicator Circle (Top-Right) */
.kmy27-pkg-radio-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

/* Hover state */
.kmy27-pkg-choice:hover .kmy27-pkg-card-inner {
    border-color: #fca5a5;
    background: #fffcfc;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(253, 80, 86, 0.08);
}

.kmy27-pkg-choice:hover .kmy27-pkg-radio-icon {
    border-color: var(--brand-red);
}

/* Checked / Active State */
.kmy27-pkg-choice input[type="radio"]:checked + .kmy27-pkg-card-inner {
    background: #fff5f5;
    border-color: var(--brand-red);
    box-shadow: 0 8px 25px rgba(253, 80, 86, 0.16);
    transform: scale(1.01);
}

.kmy27-pkg-choice input[type="radio"]:checked + .kmy27-pkg-card-inner .kmy27-pkg-radio-icon {
    background: var(--brand-red);
    border-color: var(--brand-red);
    box-shadow: 0 0 0 3px rgba(253, 80, 86, 0.2);
}

.kmy27-pkg-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.kmy27-pkg-choice input[type="radio"]:checked + .kmy27-pkg-card-inner .kmy27-pkg-icon-box {
    background: var(--brand-red-light);
    border-color: rgba(253, 80, 86, 0.3);
    color: var(--brand-red);
}

.kmy27-pkg-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-right: 28px;
}

.kmy27-pkg-name {
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
}

.kmy27-pkg-cost {
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--brand-red);
}

/* ==========================================================================
   MONTH TABS PILLS
   ========================================================================== */
.kmy27-month-scroll-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 0;
}

.kmy27-month-scroll-wrap::-webkit-scrollbar {
    display: none;
}

.kmy27-month-tabs-light {
    gap: 10px;
    border: none !important;
    flex-wrap: nowrap !important;
    min-width: max-content;
}

.kmy27-month-tabs-light .nav-link {
    border-radius: 50px !important;
    padding: 10px 22px;
    font-size: 0.92rem;
    font-weight: 700;
    color: #64748b;
    background: #ffffff;
    border: 1.5px solid #cbd5e1 !important;
    transition: all 0.25s ease;
    cursor: pointer;
}

.kmy27-month-tabs-light .nav-link:hover {
    background: #fff5f5;
    color: var(--brand-red);
    border-color: #fca5a5 !important;
    transform: translateY(-2px);
}

.kmy27-month-tabs-light .nav-link.active {
    background: linear-gradient(135deg, #fd5056 0%, #e63946 100%) !important;
    color: #ffffff !important;
    border-color: #fd5056 !important;
    box-shadow: 0 4px 15px rgba(253, 80, 86, 0.3);
}

/* ==========================================================================
   DEPARTURE DATE CHIPS & SELECTION BOX
   ========================================================================== */
.kmy27-date-box-light {
    background: #fafbfc;
    border: 1.5px solid #e2e8f0;
    border-radius: 18px;
    padding: 22px 24px;
    min-height: 90px;
}

.kmy27-dates-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.kmy27-dates-grid .date-btn {
    padding: 10px 20px;
    min-width: 72px;
    min-height: 50px;
    border-radius: 14px;
    background: #ffffff;
    border: 2px solid #cbd5e1;
    color: var(--text-main);
    font-size: 1.08rem;
    font-weight: 800;
    cursor: pointer;
    user-select: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
}

.kmy27-dates-grid .date-btn:hover {
    border-color: var(--brand-red);
    background: #fff5f5;
    color: var(--brand-red);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(253, 80, 86, 0.15);
}

/* Selected Date Chip */
.kmy27-dates-grid .date-btn.active-date-chip,
.kmy27-dates-grid .date-btn.btn-primary {
    background: var(--brand-red) !important;
    border-color: var(--brand-red) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(253, 80, 86, 0.35) !important;
    transform: scale(1.05);
}

.kmy27-dates-grid .date-btn.active-date-chip .badge {
    background: #ffffff !important;
    color: var(--brand-red) !important;
}

/* Full Moon Auspicious Date Chip */
.kmy27-dates-grid .date-btn.full-moon {
    border: 2px solid #eab308;
    background: #fefce8;
    color: #713f12;
}

.kmy27-dates-grid .date-btn.full-moon:hover {
    background: #fef08a;
    border-color: #ca8a04;
}

.kmy27-dates-grid .date-btn.full-moon.active-date-chip {
    background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%) !important;
    border-color: #ca8a04 !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(234, 179, 8, 0.4) !important;
}

.kmy27-dates-grid .date-btn.full-moon.active-date-chip .badge {
    background: #ffffff !important;
    color: #854d0e !important;
}

.kmy27-form-section {
    position: relative;
}

.kmy27-section-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 20px;
}

.kmy27-section-header-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.kmy27-section-num {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--brand-red-light);
    color: var(--brand-red);
    font-size: 1.05rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(253, 80, 86, 0.2);
}

.kmy27-section-heading {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-main);
    margin: 0;
    line-height: 1.25;
}

.kmy27-section-subtext {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.kmy27-divider {
    margin: 20px 0 24px;
    border: 0;
    border-top: 1px dashed #cbd5e1;
    opacity: 0.6;
}

/* Luxury Warm Gold Full-Moon Badge */
.kmy27-fullmoon-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    color: #b45309 !important;
    border: 1px solid #fde68a;
    font-size: 0.74rem;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 0.2px;
    box-shadow: 0 1px 4px rgba(251, 191, 36, 0.15);
}

.kmy27-fullmoon-badge i {
    color: #d97706 !important;
}

/* Date Legend Box */
.kmy27-date-legend {
    font-size: 0.84rem;
    color: #475569;
    background: #fefce8;
    border: 1px solid #fef08a;
    border-radius: 10px;
    padding: 9px 14px;
    line-height: 1.45;
}

.kmy27-date-legend strong {
    color: #854d0e;
}

/* Submit Section Footer */
.kmy27-form-submit-footer {
    display: flex;
    justify-content: center;
}

.kmy27-btn-submit-main {
    width: 100%;
    max-width: 480px;
    padding: 16px 36px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 25px rgba(253, 80, 86, 0.3);
    transition: all 0.3s ease;
}

.kmy27-btn-submit-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(253, 80, 86, 0.45);
}

/* ==========================================================================
   NEW REGISTRATION GUIDELINES FULL-WIDTH ROUNDED CARD
   ========================================================================== */
.kmy27-guidelines-card-light {
    background: #ffffff;
    border: none;
    border-radius: 0;
    padding: 36px 0;
    margin-top: 35px;
    box-shadow: none;
    transition: all 0.3s ease;
}

.kmy27-guidelines-card-light:hover {
    box-shadow: none;
    border-color: transparent;
}

.kmy27-guidelines-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.01em;
}

.kmy27-guidelines-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

@media (max-width: 1199px) {
    .kmy27-guidelines-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .kmy27-guidelines-grid {
        grid-template-columns: 1fr;
    }
}

.kmy27-guideline-box {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
}

.kmy27-guideline-box:hover {
    background: #ffffff;
    border-color: var(--brand-red);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(253, 80, 86, 0.09);
}

.kmy27-guideline-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.kmy27-guideline-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(253, 80, 86, 0.08);
    color: var(--brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.kmy27-guideline-box:hover .kmy27-guideline-icon {
    background: var(--brand-red);
    color: #ffffff;
}

.kmy27-guideline-step {
    font-size: 0.8rem;
    font-weight: 800;
    color: #94a3b8;
    background: #f1f5f9;
    padding: 3px 9px;
    border-radius: 50px;
    font-family: monospace;
    letter-spacing: 0.5px;
}

.kmy27-guideline-head {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
    line-height: 1.3;
}

.kmy27-guideline-desc {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.kmy27-guideline-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.76rem;
    font-weight: 700;
    color: #059669;
    background: #ecfdf5;
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 4px 10px;
    border-radius: 6px;
    width: fit-content;
}

.kmy27-guidelines-footer {
    background: linear-gradient(135deg, #fffcfb 0%, #fff5f5 100%);
    border: 1px solid rgba(253, 80, 86, 0.15);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.kmy27-helpline-box {
    display: flex;
    align-items: center;
    gap: 14px;
}

.kmy27-helpline-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(253, 80, 86, 0.1);
    color: var(--brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.kmy27-helpline-tag {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 2px;
}

.kmy27-helpline-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.kmy27-contact-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.kmy27-contact-link:hover {
    color: var(--brand-red);
}

.kmy27-contact-divider {
    color: #cbd5e1;
    font-size: 0.85rem;
}

.kmy27-guidelines-btns {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.kmy27-whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff !important;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    cursor: pointer;
}

.kmy27-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    color: #ffffff !important;
}

.kmy27-btn-outline-red {
    background: #ffffff;
    color: var(--brand-red) !important;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 50px;
    border: 1.5px solid var(--brand-red);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    cursor: pointer;
}

.kmy27-btn-outline-red:hover {
    background: var(--brand-red);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(253, 80, 86, 0.3);
}

@media (max-width: 991px) {
    .kmy27-guidelines-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 20px 16px;
        text-align: center;
    }
    
    .kmy27-helpline-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .kmy27-helpline-links {
        justify-content: center;
        gap: 4px 10px;
    }

    .kmy27-contact-divider {
        display: none;
    }

    .kmy27-contact-link {
        display: block;
        width: 100%;
        font-size: 0.88rem;
    }

    .kmy27-guidelines-btns {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .kmy27-whatsapp-btn,
    .kmy27-btn-outline-red {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 12px 16px !important;
        font-size: 0.9rem !important;
    }
}

/* Form Card Setup */
.kmy27-light-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 38px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.kmy27-light-card:hover {
    box-shadow: var(--card-shadow-hover);
    border-color: var(--card-border-hover);
}

/* Form Controls & Labels */
.kmy27-form-group {
    margin-bottom: 22px;
}

.kmy27-label-light {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
}

.kmy27-label-light .required-star {
    color: var(--brand-red);
    margin-left: 2px;
}

.kmy27-input-light {
    width: 100%;
    background: #ffffff !important;
    border: 1.5px solid var(--card-border) !important;
    color: var(--text-main) !important;
    border-radius: 12px !important;
    padding: 13px 18px !important;
    font-size: 0.95rem;
    transition: all 0.25s ease !important;
}

.kmy27-input-light::placeholder {
    color: #94a3b8 !important;
}

.kmy27-input-light:focus {
    border-color: var(--brand-red) !important;
    box-shadow: 0 0 0 4px rgba(253, 80, 86, 0.12) !important;
    outline: none !important;
}

.kmy27-input-light.is-invalid {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15) !important;
}

/* Package Selection Toggle Cards */
.kmy27-pkg-toggle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 8px;
}

@media (max-width: 576px) {
    .kmy27-pkg-toggle-grid {
        grid-template-columns: 1fr;
    }
}

.kmy27-pkg-choice {
    position: relative;
    cursor: pointer;
    user-select: none;
}

.kmy27-pkg-choice input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.kmy27-pkg-card-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: #ffffff;
    border: 1.5px solid var(--card-border);
    border-radius: 16px;
    transition: all 0.25s ease;
}

.kmy27-pkg-choice:hover .kmy27-pkg-card-inner {
    border-color: #cbd5e1;
    background: #f8fafc;
    transform: translateY(-2px);
}

.kmy27-pkg-choice input[type="radio"]:checked + .kmy27-pkg-card-inner {
    background: #fff5f5;
    border-color: var(--brand-red);
    box-shadow: 0 4px 15px rgba(253, 80, 86, 0.12);
}

.kmy27-pkg-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #f1f5f9;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.kmy27-pkg-choice input[type="radio"]:checked + .kmy27-pkg-card-inner .kmy27-pkg-icon-box {
    background: var(--saffron-gradient);
    color: #ffffff;
}

.kmy27-pkg-meta {
    display: flex;
    flex-direction: column;
}

.kmy27-pkg-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-main);
}

.kmy27-pkg-cost {
    font-size: 0.85rem;
    color: var(--brand-red);
    font-weight: 600;
}

/* Month Tabs Light Mode */
.kmy27-month-tabs-light {
    border-bottom: 1px solid var(--card-border) !important;
    gap: 8px;
    margin-bottom: 16px !important;
}

.kmy27-month-tabs-light .nav-link {
    background: #f1f5f9 !important;
    border: 1px solid var(--card-border) !important;
    color: var(--text-muted) !important;
    border-radius: 10px 10px 0 0 !important;
    padding: 10px 20px !important;
    font-weight: 600 !important;
    font-size: 0.9rem;
    transition: all 0.25s ease !important;
}

.kmy27-month-tabs-light .nav-link:hover {
    color: var(--brand-red) !important;
    background: #ffffff !important;
}

.kmy27-month-tabs-light .nav-link.active {
    background: #ffffff !important;
    color: var(--brand-red) !important;
    border-color: var(--card-border) var(--card-border) #ffffff var(--card-border) !important;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.03);
}

.kmy27-date-box-light {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 20px;
    min-height: 85px;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.02);
}

/* Date Pills Dynamic Classes */
.date-btn {
    background: #ffffff !important;
    border: 1.5px solid var(--card-border) !important;
    color: var(--text-main) !important;
    border-radius: 10px !important;
    padding: 9px 14px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    transition: all 0.2s ease !important;
    cursor: pointer;
}

.date-btn:hover {
    border-color: var(--brand-red) !important;
    color: var(--brand-red) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(253, 80, 86, 0.15) !important;
}

.date-btn.btn-primary,
.date-btn.active-date-chip {
    background: var(--saffron-gradient) !important;
    border-color: var(--brand-red) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(253, 80, 86, 0.35) !important;
    transform: scale(1.03);
}

.full-moon .badge {
    background: #fef3c7 !important;
    color: #92400e !important;
    font-weight: 700 !important;
    border: 1px solid #fde68a;
    border-radius: 6px;
    padding: 3px 6px;
    font-size: 0.68rem;
}

/* File Upload Boxes Light */
.kmy27-file-dropzone-light {
    position: relative;
    background: #ffffff;
    border: 1.5px dashed #cbd5e1;
    border-radius: 14px;
    padding: 15px 18px;
    transition: all 0.25s ease;
}

.kmy27-file-dropzone-light:hover {
    border-color: var(--brand-red);
    background: #fff5f5;
    transform: translateY(-2px);
}

.kmy27-file-dropzone-light input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
}

.kmy27-dropzone-content {
    display: flex;
    align-items: center;
    gap: 14px;
}

.kmy27-dropzone-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--brand-red-light);
    color: var(--brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.kmy27-dropzone-text {
    flex-grow: 1;
    overflow: hidden;
}

.kmy27-dropzone-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.kmy27-dropzone-sub {
    font-size: 0.76rem;
    color: var(--text-light);
    margin: 2px 0 0 0;
}

/* Step 2 Booking Deposit Section - Compact */
.bg-kmy27-deposit-section {
    background: linear-gradient(135deg, #fff5f5 0%, #fff1f2 100%);
    border-top: 1px solid #fecdd3;
    border-bottom: 1px solid #fecdd3;
    position: relative;
    padding: 65px 0;
}

.kmy27-section-description-full {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.75;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 24px 0;
}

.kmy27-deposit-card-light {
    background: #ffffff;
    border: 1px solid #fecdd3;
    border-radius: 20px;
    padding: 32px 36px;
    box-shadow: 0 10px 30px rgba(253, 80, 86, 0.06), 0 4px 12px rgba(15, 23, 42, 0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.kmy27-deposit-card-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(253, 80, 86, 0.12), 0 6px 16px rgba(15, 23, 42, 0.05);
}

.kmy27-deposit-price-big {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--brand-red);
    line-height: 1;
    letter-spacing: -0.5px;
}

.kmy27-deposit-currency {
    font-size: 1rem;
    font-weight: 700;
    color: #475569;
}

.kmy27-deposit-card-desc {
    font-size: 0.94rem;
    color: #475569;
    line-height: 1.6;
    max-width: 520px;
}

.kmy27-pay-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #334155;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 8px;
}

.kmy27-deposit-card-action {
    min-width: 280px;
}

.kmy27-security-subtext {
    font-size: 0.78rem;
    font-weight: 600;
    color: #64748b;
}

/* Direct Bank Transfer Details Section - Darkened Red & Golden Gradient Background */
.bg-kmy27-bank-section {
    background: linear-gradient(135deg, #3b0709 0%, #640d14 38%, #8a131b 70%, #583507 100%);
    color: #ffffff;
    border-top: 4px solid #d4af37;
    border-bottom: 4px solid #d4af37;
    position: relative;
}

.bg-kmy27-bank-section .kmy27-section-title-light {
    color: #ffffff !important;
}

.bg-kmy27-bank-section .kmy27-section-title-light .highlight {
    color: #fbbf24 !important;
}

.bg-kmy27-bank-section .kmy27-section-description-full {
    color: #f3f4f6 !important;
}

.kmy27-bank-note {
    color: #f1f5f9 !important;
    font-size: 0.88rem;
    font-weight: 500;
}

.kmy27-copy-btn {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    width: 26px;
    height: 26px;
    padding: 0;
    font-size: 0.76rem;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.kmy27-copy-btn:hover {
    background: #fdf2f2;
    color: var(--brand-red);
    border-color: var(--brand-red);
}

.kmy27-copy-btn.copied {
    background: #ecfdf5 !important;
    border-color: #10b981 !important;
    color: #047857 !important;
}

.kmy27-badge-inr {
    display: inline-block;
    padding: 3px 8px;
    font-size: 0.71rem;
    font-weight: 700;
    color: #1e3a8a !important;
    background: #dbeafe !important;
    border: 1px solid #93c5fd;
    border-radius: 50px;
    line-height: 1.2;
    margin-left: 6px;
    vertical-align: middle;
}

.kmy27-badge-intl {
    display: inline-block;
    padding: 3px 8px;
    font-size: 0.71rem;
    font-weight: 700;
    color: #991b1b !important;
    background: #fee2e2 !important;
    border: 1px solid #fca5a5;
    border-radius: 50px;
    line-height: 1.2;
    margin-left: 6px;
    vertical-align: middle;
}

/* Bank Details Grid Light */
.kmy27-bank-card-light {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--card-shadow);
    height: 100%;
    transition: all 0.3s ease;
}

.kmy27-bank-card-light:hover {
    border-color: var(--brand-red);
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-3px);
}

.kmy27-bank-title-light {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brand-red);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.kmy27-bank-table-light {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 6px;
}

.kmy27-bank-table-light td {
    padding: 8px 12px;
    font-size: 0.9rem;
    vertical-align: middle;
}

.kmy27-bank-table-light tr td:first-child {
    color: var(--text-light);
    width: 38%;
    font-weight: 500;
    background: #f8fafc;
    border-radius: 6px 0 0 6px;
}

.kmy27-bank-table-light tr td:last-child {
    color: var(--text-main);
    font-weight: 600;
    background: #f1f5f9;
    border-radius: 0 6px 6px 0;
}

/* Payment Terms Schedule Cards Light */
.kmy27-schedule-grid-light {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media (max-width: 991px) {
    .kmy27-schedule-grid-light {
        grid-template-columns: 1fr;
    }
}

.kmy27-plan-card-light {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.kmy27-plan-card-light:hover {
    border-color: var(--brand-red);
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-3px);
}

.kmy27-plan-header-light {
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--card-border);
}

.kmy27-plan-title-light {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--brand-red);
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}

.kmy27-plan-subtitle {
    font-size: 0.86rem;
    color: #475569;
}

.kmy27-plan-subtitle strong {
    color: #0f172a;
    font-weight: 700;
}

.kmy27-milestones-list-light {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kmy27-milestones-list-light li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed #e2e8f0;
    font-size: 0.92rem;
}

.kmy27-milestones-list-light li:last-child {
    border-bottom: none;
}

.kmy27-milestones-list-light li .m-label {
    font-weight: 600;
    color: #334155;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.kmy27-milestones-list-light li .m-label i {
    margin-right: 8px !important;
    flex-shrink: 0;
}

.kmy27-milestones-list-light li .m-val {
    color: var(--text-main);
    font-weight: 700;
}

.m-usd-val {
    font-weight: 800;
    color: #0f172a;
}

.m-inr-sub {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: #64748b;
    margin-top: 2px;
}

.kmy27-total-cost-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    margin-top: 12px;
    border-top: 2px solid #e2e8f0;
}

.m-total-title {
    font-weight: 700;
    color: #0f172a;
    font-size: 0.94rem;
}

.m-total-amount {
    font-weight: 800;
    color: var(--brand-red);
    font-size: 1.3rem;
}

.kmy27-notice-box-light {
    background: #fafaf9;
    border: 1px solid #e7e5e4;
    border-radius: 12px;
    padding: 16px 24px;
    color: #44403c;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 991.98px) {
    .bg-kmy27-hero {
        padding: 45px 0 40px;
    }
    .kmy27-hero-left-content {
        text-align: center;
        padding-right: 0 !important;
    }
    .kmy27-trust-badge {
        margin-left: auto;
        margin-right: auto;
    }
    .kmy27-hero-title-light {
        text-align: center;
    }
    .kmy27-hero-desc {
        text-align: center;
        max-width: 620px;
        margin-left: auto;
        margin-right: auto;
    }
    .kmy27-hero-feature-pills {
        justify-content: flex-start;
        padding-left: 5px;
        padding-right: 5px;
    }
    .kmy27-hero-actions {
        justify-content: center;
    }
    .kmy27-hero-banner-card {
        padding: 26px 20px;
    }
    .kmy27-light-card {
        padding: 20px 14px;
    }
    .kmy27-guidelines-card-light {
        padding: 24px 18px;
    }
    .kmy27-stepper {
        padding: 28px 0 32px;
    }
    .kmy27-stepper-track {
        width: 60%;
        top: 52px;
    }
    .kmy27-stepper-indicator {
        width: 46px;
        height: 46px;
    }
    .kmy27-stepper-number {
        font-size: 1rem;
    }
    .kmy27-stepper-title {
        font-size: 0.82rem;
    }
    .kmy27-stepper-subtitle {
        font-size: 0.7rem;
    }
    .kmy27-step-card-header {
        padding: 20px 18px;
    }
    .kmy27-step-card-body {
        padding: 20px 18px;
    }
    .kmy27-step-card-footer {
        padding: 16px 18px;
    }
}

@media (max-width: 575.98px) {
    .kmy27-hero-title-light {
        font-size: 1.8rem;
    }
    .kmy27-btn-red, .kmy27-btn-outline-dark, .kmy27-btn-prev {
        width: 100%;
        justify-content: center;
    }
    .kmy27-step-card-footer {
        flex-direction: column;
    }
    .bg-kmy27-deposit-section {
        padding: 48px 0;
    }

    .kmy27-deposit-card-light {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .kmy27-deposit-price-big {
        font-size: 2.1rem;
    }

    .kmy27-deposit-currency {
        font-size: 0.88rem;
    }

    .kmy27-deposit-card-action {
        width: 100%;
        min-width: unset;
    }

    .kmy27-plan-card-light {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .kmy27-plan-title-light {
        font-size: 1.1rem;
    }

    .kmy27-milestones-list-light li {
        flex-wrap: wrap;
        gap: 4px;
        padding: 10px 0;
    }

    .kmy27-milestones-list-light li.m-tibet-row {
        align-items: flex-start;
    }

    .kmy27-milestones-list-light li.m-tibet-row .m-val {
        text-align: left !important;
    }

    .kmy27-total-cost-row {
        padding-top: 10px;
    }

    .m-total-amount {
        font-size: 1.15rem;
    }

    .kmy27-pm-item {
        font-size: 0.78rem;
        padding: 5px 12px;
    }

    .kmy27-step-card-title {
        font-size: 1.1rem;
    }
    .kmy27-step-card-desc {
        font-size: 0.84rem;
    }
    .kmy27-stepper {
        padding: 20px 0 24px;
    }
    .kmy27-stepper-track {
        width: 66%;
        top: 44px;
    }
    .kmy27-stepper-indicator {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }
    .kmy27-stepper-number {
        font-size: 0.88rem;
    }
    .kmy27-stepper-title {
        font-size: 0.74rem;
    }
    .kmy27-stepper-subtitle {
        display: none;
    }
    .kmy27-stepper-item {
        max-width: 120px;
    }

    /* Registration Form Mobile Enhancements */
    .kmy27-single-form-card {
        padding: 20px 14px;
        border-radius: 16px;
    }
    
    .kmy27-section-header {
        margin-bottom: 16px;
        padding-bottom: 12px;
        border-bottom: 1px solid #e2e8f0;
        gap: 4px;
    }
    
    .kmy27-section-header-top {
        gap: 8px;
    }
    
    .kmy27-section-num {
        display: none !important;
    }
    
    .kmy27-section-heading {
        font-size: 1.1rem;
        line-height: 1.25;
        margin: 0;
    }

    .kmy27-section-subtext {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-top: 2px;
    }

    .kmy27-fm-text {
        display: none !important; /* Hide Full Moon text inside mobile date chips so all date chips stay uniform square buttons */
    }

    .row.g-3 {
        --bs-gutter-y: 0.75rem !important;
        --bs-gutter-x: 0.75rem !important;
    }

    .kmy27-form-group {
        margin-bottom: 0 !important;
    }

    .kmy27-label-light {
        font-size: 0.84rem;
        margin-bottom: 4px;
        font-weight: 600;
    }

    .kmy27-input-light {
        height: 46px;
        font-size: 0.9rem;
        padding: 10px 12px;
    }

    .kmy27-divider {
        margin: 16px 0;
    }

    .kmy27-pkg-icon-box {
        display: none !important; /* Remove heavy icon box on mobile to create breathing room */
    }

    .kmy27-pkg-card-inner {
        padding: 12px 14px;
        gap: 0;
        border-radius: 12px;
    }

    .kmy27-pkg-meta {
        padding-right: 28px;
        gap: 2px;
    }

    .kmy27-pkg-name {
        font-size: 0.94rem;
        font-weight: 800;
    }

    .kmy27-pkg-cost {
        font-size: 0.81rem;
        font-weight: 700;
        color: var(--brand-red);
        margin-top: 2px;
        display: block;
    }

    .kmy27-pkg-duration {
        color: #64748b;
        font-weight: 500;
        margin-left: 2px;
    }

    .kmy27-pkg-radio-icon {
        top: 14px;
        right: 12px;
        width: 22px;
        height: 22px;
        font-size: 0.68rem;
    }

    .kmy27-date-legend {
        align-items: flex-start !important;
        gap: 8px;
    }

    .kmy27-fullmoon-badge {
        font-size: 0.72rem;
        padding: 3px 8px;
        margin-top: 1px;
    }

    .kmy27-date-box-light {
        padding: 14px 12px;
        border-radius: 14px;
    }

    .kmy27-month-tabs-light .nav-link {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .kmy27-file-dropzone-light {
        min-height: 58px;
        padding: 8px 12px;
    }

    .kmy27-dropzone-title {
        font-size: 0.85rem;
    }

    .kmy27-dropzone-sub {
        font-size: 0.75rem;
    }

    .kmy27-guidelines-info-row {
        margin-bottom: 12px;
    }

    .kmy27-guide-info-item {
        padding: 3px 0;
        font-size: 0.81rem;
    }
}
