/* ===== ADORE-style Enquire Now + Plan Your Stay wizard ===== */
.enquire-float-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #005cb9;
    color: #ffffff;
    font-family: 'Tenor Sans', sans-serif;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 14px 26px;
    border-radius: 999px 0 0 999px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 92, 185, 0.45);
    border: none;
    opacity: 0;
    pointer-events: none;
    transform: translateX(40px);
    transition: opacity 0.4s ease, transform 0.4s ease, background 0.3s ease;
    z-index: 60;
}

.enquire-float-btn.enquire-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.enquire-float-btn:hover {
    background: #0b2f61;
}

@media (max-width: 767px) {
    .enquire-float-btn {
        border-radius: 999px;
        padding: 14px 30px;
        position: fixed;
        left: auto;
        right: 14px;
        bottom: 104px;
        transform: translateX(40px);
    }

    .enquire-float-btn.enquire-visible {
        transform: translateX(0);
    }
}

@media (min-width: 768px) {
    .enquire-float-btn {
        position: fixed;
        right: -6px;
        bottom: 92px;
    }
}

/* ---------- Drawer ---------- */
.eq-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.eq-overlay.eq-open {
    opacity: 1;
    pointer-events: auto;
}

.eq-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 600px;
    background: #ffffff;
    z-index: 95;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.35s;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.18);
}

.eq-drawer.eq-open {
    transform: translateX(0);
    visibility: visible;
}

@media (max-width: 767px) {
    .eq-drawer {
        top: auto;
        right: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
        height: 92vh;
        border-radius: 24px 24px 0 0;
        transform: translateY(100%);
        box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.22);
    }

    .eq-drawer.eq-open {
        transform: translateY(0);
    }
}

.eq-drawer-body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 24px 28px 32px;
}

/* ---------- Header + progress ---------- */
.eq-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid #eef0f3;
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 5;
}

.eq-close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #0b1c1e;
    color: #fff;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.eq-progress {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 18px 0 6px;
}

.eq-progress-label {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #9aa1aa;
    margin-bottom: 8px;
}

.eq-progress-label strong {
    color: #005cb9;
}

.eq-progress-bar {
    flex: 1;
    height: 4px;
    border-radius: 99px;
    background: #eef0f3;
    overflow: hidden;
}

.eq-progress-fill {
    height: 100%;
    width: 25%;
    background: #005cb9;
    border-radius: 99px;
    transition: width 0.4s ease;
}

.eq-title {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 26px;
    line-height: 1.2;
    color: #0b1c1e;
    margin: 18px 0 4px;
}

.eq-sub {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 22px;
}

/* ---------- Options / chips ---------- */
.eq-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    margin-bottom: 10px;
    transition: all 0.2s ease;
    background: #f8fafc;
    font-family: 'Tenor Sans', sans-serif;
}

.eq-option:hover {
    border-color: #005cb9;
}

.eq-option.eq-selected {
    border-color: #005cb9;
    background: #eef5ff;
    box-shadow: 0 4px 14px rgba(0, 92, 185, 0.12);
}

.eq-option .eq-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #005cb9;
}

.eq-option.eq-selected .eq-icon {
    background: #005cb9;
    color: #fff;
    border-color: #005cb9;
}

.eq-chip {
    display: inline-flex;
    align-items: center;
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
    color: #374151;
    cursor: pointer;
    font-family: 'Tenor Sans', sans-serif;
    font-size: 13px;
    transition: all 0.2s ease;
    margin: 0 8px 10px 0;
}

.eq-chip:hover {
    border-color: #005cb9;
}

.eq-chip.eq-selected {
    background: #005cb9;
    border-color: #005cb9;
    color: #ffffff;
}

/* ---------- Fields ---------- */
.eq-field {
    margin-bottom: 16px;
}

.eq-label {
    display: block;
    font-family: 'Tenor Sans', sans-serif;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4b5563;
    margin-bottom: 7px;
}

.eq-input,
.eq-select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #dfe3e8;
    border-radius: 10px;
    font-size: 14px;
    color: #111827;
    background: #ffffff;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-family: 'Tenor Sans', sans-serif;
}

.eq-input:focus,
.eq-select:focus {
    border-color: #005cb9;
    box-shadow: 0 0 0 3px rgba(0, 92, 185, 0.12);
}

.eq-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

@media (max-width: 420px) {
    .eq-row {
        grid-template-columns: 1fr;
    }
}

.eq-error {
    color: #dc2626;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

/* ---------- Nav ---------- */
.eq-nav {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.eq-btn {
    flex: 1;
    padding: 13px 18px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-family: 'Tenor Sans', sans-serif;
    font-weight: 700;
    letter-spacing: 0.05em;
    font-size: 14px;
    transition: all 0.2s ease;
}

.eq-btn-primary {
    background: #005cb9;
    color: #fff;
}

.eq-btn-primary:hover {
    background: #0b2f61;
}

.eq-btn-ghost {
    background: transparent;
    color: #005cb9;
    border: 1px solid #005cb9;
}

.eq-btn-ghost:hover {
    background: #eef5ff;
}

.eq-btn-disabled {
    background: #e5e7eb;
    color: #9ca3af;
    pointer-events: none;
}

/* ---------- Success ---------- */
.eq-success {
    text-align: center;
    padding: 48px 8px;
}

.eq-success .eq-check {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: #e7f6ec;
    color: #16a34a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 22px;
}

.eq-success h3 {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 26px;
    color: #0b1c1e;
    margin-bottom: 10px;
}

.eq-success p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 24px;
}