/* =================================================
   AL RAJHI LUXURY – HAJJ 2026 (FINAL CSS – CLEAN)
================================================= */

/* ---------- ROOT COLORS ---------- */
:root {
    --navy: #1e3a5f;
    --navy-dark: #0f2744;
    --gold: #b88737;
    --gold-soft: rgba(184,135,55,.18);
    --text: #1f2937;
    --muted: #6b7280;
    --border: #e5e7eb;
    --bg: #f8f9fa;
    --danger: #dc2626;
}

/* ---------- GLOBAL ---------- */
html, body {
    height: 100%;
}

body {
    margin: 0;
    background: var(--bg);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
}

/* =================================================
   HEADER
================================================= */
.lux-header {
    width: 100%;
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    padding: 28px 0 60px;
    position: relative;
}

.lux-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: var(--bg);
    border-top-left-radius: 100% 40px;
    border-top-right-radius: 100% 40px;
}

.lux-header-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lux-brand span:first-child {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .05em;
}

.lux-brand span:last-child {
    font-size: 13px;
    color: var(--gold);
    margin-top: 2px;
}

/* ---------- NAV ---------- */
.lux-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.lux-nav a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    transition: .25s ease;
}

.lux-nav a:hover {
    color: #fff;
}

/* ---------- CTA ---------- */
.lux-cta {
    padding: 8px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #b88737, #e0c27a);
    color: #000 !important;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(184,135,55,.35);
    transition: .25s ease;
}

.lux-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(184,135,55,.45);
}

/* =================================================
   FORM
================================================= */
#msform {
    max-width: 760px;
    margin: -20px auto 80px;
    background: #fff;
    padding: 50px;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(0,0,0,.06);
    position: relative;
    z-index: 2;
}

/* ---------- TITLES ---------- */
.fs-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 14px;
}

/* ---------- REQUIRED ---------- */
.required-note {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 20px;
}

.required-star {
    color: var(--danger);
    font-weight: 600;
}

/* ---------- HELPERS ---------- */
.helper-text {
    font-size: 13px;
    color: var(--muted);
    margin: -6px 0 12px;
}

/* ---------- PROGRESS ---------- */
#progressbar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    padding: 0;
    list-style: none;
    counter-reset: step;
}

#progressbar li {
    width: 33.33%;
    text-align: center;
    font-size: 13px;
    color: var(--muted);
}

#progressbar li::before {
    content: counter(step);
    counter-increment: step;
    display: block;
    width: 34px;
    height: 34px;
    margin: auto auto 8px;
    border-radius: 50%;
    line-height: 34px;
    background: #e5e7eb;
    color: #6b7280;
}

#progressbar li.active {
    color: var(--navy);
}

#progressbar li.active::before {
    background: var(--navy);
    color: #fff;
}

#progressbar li.completed::before {
    background: var(--gold);
    color: #fff;
}

/* ---------- INPUTS ---------- */
#msform input,
#msform select,
#msform textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid var(--border);
    font-size: 14px;
}

#msform input:focus,
#msform select:focus,
#msform textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px var(--gold-soft);
}

/* ---------- VALIDATION ---------- */
.input-error {
    border-color: var(--danger) !important;
    box-shadow: 0 0 0 2px rgba(220,38,38,.15);
}

.error-message {
    display: none;
    font-size: 13px;
    color: var(--danger);
    margin-bottom: 8px;
}

/* ---------- BUTTONS ---------- */
.action-button {
    background: var(--navy);
    color: #fff;
    border: none;
    padding: 14px 40px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: .25s ease;
}

.action-button:hover {
    background: #2d4a6f;
}

.previous {
    background: #f3f4f6;
    color: var(--navy);
    border: 1px solid var(--border);
}

/* ---------- MOBILE ---------- */
@media (max-width: 768px) {
    .lux-header-container {
        flex-direction: column;
        gap: 14px;
    }

    #msform {
        padding: 24px;
        margin: -30px 12px 60px;
    }

    .action-button,
    .previous {
        width: 100%;
    }
}
/* ===============================
   RADIO BUTTONS (FLIGHT TYPE)
================================ */

.block-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text);
}

.radio-group {
    display: flex;
    gap: 28px;
    margin: 8px 0 16px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
    color: var(--text);
}

.radio-option input[type="radio"] {
    accent-color: var(--navy);
    cursor: pointer;
}
