html {
    font-size: 100%;
}

@media (max-width: 576px) {
    html {
        font-size: 85%;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    html {
        font-size: 88%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    html {
        font-size: 90%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    html {
        font-size: 95%;
    }
}

@media (min-width: 1200px) {
    html {
        font-size: 100%;
    }
}

/* ── GLOBAL STYLES ── */
:root {
    --red: #DA281C;
    --bg: #1a1a1a;
    --card-bg: #232323;
    --bg-left: #161616;
    --bg-right: #1e1e1e;
    --font-family: 'Montserrat', sans-serif;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.60);
    --text-muted: rgba(255, 255, 255, 0.40);
}

body {
    background-color: var(--bg);
    color: var(--text-primary);
    font-family: var(--font-family);
    margin: 0;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: all 0.2s;
}

/* ── UTILITIES ── */
.btn-citroen {
    background: var(--red);
    color: #fff;
    border: none;
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    font-weight: 700;
    padding: 1.125rem 2.25rem;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    justify-content: center;
}

.btn-citroen:hover {
    background: #c0201a;
    /* box-shadow: 0 0.625rem 2.75rem rgba(218,40,28,0.42); */
    color: #fff;
}

.section-padding {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0;
    }
}

/* ── NAVIGATION ── */
.navbar {
    padding: 1.25rem 0;
    transition: background 0.3s;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar-brand img {
    height: 80px;
    filter: brightness(0) invert(1);
    transition: height 0.3s;
}

.navbar.scrolled .navbar-brand img {
    height: 60px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.48) !important;
    font-size: 0.656rem;
    letter-spacing: 0.20em;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.25rem 0 !important;
    margin: 0 1.25rem;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: rgba(255, 255, 255, 0.95) !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1.5px;
    background: var(--red);
}
.nav-link {
    display: inline-block;
}
@media (max-width: 768px) {
    .nav-item {
        margin-bottom: 0.5rem;
    }
  .nav-item:last-child {
        margin-bottom: 0;
    }
    .nav-link {
        margin: 0;
    }
}

/* ── HERO ── */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.38) 30%, rgba(0, 0, 0, 0.18) 62%, rgba(0, 0, 0, 0.08) 100%);
}

.hero-grad-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 36%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.70) 0%, rgba(10, 10, 10, 0.20) 50%, transparent 100%);
}

.hero-grad-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 45%;
    background: linear-gradient(to bottom, transparent 0%, rgba(26, 26, 26, 0.62) 60%, rgba(26, 26, 26, 1) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.eyebrow-line {
    width: 24px;
    height: 1.5px;
    background: var(--red);
}

.eyebrow-text {
    color: rgba(255, 255, 255, 0.50);
    font-size: 0.6875rem;
    letter-spacing: 0.28em;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
}

.hero-title-img {
    height: clamp(5rem, 9vw, 6.75rem);
    width: auto;
    filter: drop-shadow(0 0.125rem 0.75rem rgba(0, 0, 0, 0.50));
    margin-bottom: 0.625rem;
}

.hero-title-text {
    color: #ffffff;
    font-size: clamp(2.125rem, 3.8vw, 3.125rem);
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    line-height: 1;
    text-shadow: 0 0.125rem 1rem rgba(0, 0, 0, 0.55);
}

.accent-bar {
    width: 3rem;
    height: 0.125rem;
    background: linear-gradient(90deg, var(--red), rgba(218, 40, 28, 0.50));
    margin: 1.75rem 0;
}

.hero-tagline {
    color: rgba(255, 255, 255, 0.80);
    font-size: clamp(1rem, 1.35vw, 1.125rem);
    line-height: 1.9;
    letter-spacing: 0.015em;
    text-shadow: 0 0.0625rem 0.75rem rgba(0, 0, 0, 0.55);
    margin-bottom: 2.75rem;
}


/* ── EVENT INFO ── */
.info-grid {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-top: 3px solid var(--red);
    border-radius: 4px;
    overflow: hidden;
}

.info-item {
    padding: 2.5rem 2.75rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.10);
}

.info-item:last-child {
    border-right: none;
}

.info-icon-box {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(218, 40, 28, 0.10);
    border-radius: 4px;
    flex-shrink: 0;
}

.info-label {
    color: var(--text-secondary);
    font-size: 0.6875rem;
    letter-spacing: 0.20em;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.625rem;
    line-height: 1;
}

.info-primary {
    color: #fff;
    font-size: 1.625rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1.1;
    margin: 0;
}

.info-secondary {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 400;
    margin: 0;
}

@media (max-width: 991px) {
    .info-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .info-item:last-child {
        border-bottom: none;
    }
}

/* ── BOOKING SECTION ── */
.section-header {
    margin-bottom: 3rem;
    padding-bottom: 3.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.section-eyebrow {
    color: var(--red);
    font-size: 0.75rem;
    letter-spacing: 0.28em;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.625rem);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.card-oryzo {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-top: 3px solid var(--red);
    border-radius: 4px;
    margin-bottom: 3rem;
}

.card-oryzo-header {
    padding: 2rem 3rem 1.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.step-num {
    width: 2.125rem;
    height: 2.125rem;
    background: var(--red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border-radius: 3px;
    margin-right: 1.125rem;
}

.card-title {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0;
}

.card-subtitle {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-top: 0.5rem;
}

.card-body-oryzo {
    padding: 3rem;
}

/* ── SLOTS ── */
.slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(8.75rem, 1fr));
    gap: 0.875rem;
    margin-bottom: 2rem;
}

.slot-btn {
    padding: 1.375rem 0.75rem;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.15s;
    cursor: pointer;
}

.slot-btn:hover:not(:disabled) {
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
}

.slot-btn.active {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    font-weight: 700;
}

.slot-btn:disabled {
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.20);
    position: relative;
}

.slot-btn:disabled::after {
    content: '';
    position: absolute;
    left: 10%;
    right: 10%;
    top: 50%;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
}

/* ── LEGEND ── */
.slot-legend {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-box {
    width: 1.375rem;
    height: 0.875rem;
    border-radius: 3px;
    border: 1.5px solid transparent;
}

.legend-box.available {
    border-color: rgba(255, 255, 255, 0.40);
    background: rgba(255, 255, 255, 0.05);
}

.legend-box.selected {
    border-color: var(--red);
    background: var(--red);
}

.legend-box.full {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
}

.legend-label {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

/* ── FORM INPUTS ── */
.field-group {
    margin-bottom: 1.75rem;
    margin-top: 0;
}

.field-label {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.718rem;
    letter-spacing: 0.20em;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.75rem;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.55);
    transition: all 0.2s;
    pointer-events: none;
    display: flex;
    align-items: center;
}

.form-control-oryzo {
    width: 100%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 1rem;
    padding: 1rem 1rem 1rem 3.25rem;
    border-radius: 4px;
    outline: none;
    transition: all 0.18s;
}

.form-control-oryzo:focus {
    background: rgba(255, 255, 255, 0.10);
    /* border: 1.5px solid var(--red); */
}

.form-control-oryzo:focus+.input-icon {
    color: var(--red);
    transform: translateY(-50%) scale(1.1);
}

.select-wrapper {
    position: relative;
}

.select-wrapper .form-control-oryzo {
    appearance: none;
    padding-right: 3rem;
}

.select-arrow {
    position: absolute;
    right: 1.125rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.50);
}

.select-wrapper .form-control-oryzo:focus~.select-arrow svg path {
    stroke: var(--red);
}

.select-wrapper select.form-control-oryzo option {
    background-color: #2a2a2a;
    color: #ffffff;
}

.select-wrapper select.form-control-oryzo option:checked {
    background-color: #141414;
    color: #ffffff;
}

.field-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.10);
    margin-top: 0 !important;
}

.label-optional {
    color: rgba(255, 255, 255, 0.40);
    font-weight: 500;
    font-size: 0.625rem;
    text-transform: none;
    margin-left: 0.25rem;
}

.pill-icon {
    flex-shrink: 0;
    transition: color 0.18s;
}

.pill-btn.active .pill-icon {
    color: var(--red);
}

.form-disclaimer {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.8125rem;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    padding-top: 1.25rem;
    margin-top: 2rem;
}

.main-submit-btn {
    padding: 2rem !important;
    font-size: 0.9375rem !important;
}

.selected-pill {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.375rem;
    background: rgba(218, 40, 28, 0.10);
    border: 1px solid rgba(218, 40, 28, 0.35);
    border-radius: 4px;
}

.selected-pill .pill-text {
    color: rgba(255, 255, 255, 0.80);
    font-size: 0.9375rem;
    font-weight: 500;
}

.slot-hint {
    color: rgba(255, 255, 255, 0.60);
    font-size: 0.9375rem;
}

/* ── PILLS ── */
.pill-group {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.pill-btn {
    padding: 0.875rem 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.72);
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.56rem;
    transition: all 0.16s;
    min-width: 8.75rem;
    justify-content: center;
}

.pill-btn2 {
    width: calc(100% / 3 - 0.75rem) !important;
}

.pill-btn:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.40);
    color: #fff;
}

.pill-btn.active {
    background: rgba(218, 40, 28, 0.13);
    border: 1.5px solid var(--red);
    color: #fff;
    font-weight: 600;
}

.pill-btn.pill-sm {
    padding: 0.75rem 1.25rem;
    font-size: 0.8125rem;
    min-width: auto;
    flex: 0 1 auto;
}

/* ── BOOK FOR LATER ── */
.later-section {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    padding: 2.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .later-section {
        flex-direction: column;
        align-items: start;
    }
}

.later-title {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.later-desc {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.btn-later {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.20);
    color: #fff;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    font-weight: 600;
    padding: 0.875rem 1.5rem;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
}

.btn-later:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.40);
}

/* ── MODAL ── */
.modal-oryzo .modal-content {
    background: #1e1e1e;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-top: 3px solid var(--red);
    border-radius: 6px;
    color: #fff;
    overflow: hidden;
    box-shadow: 0 3rem 7.5rem rgba(0, 0, 0, 0.80), 0 1rem 2.5rem rgba(0, 0, 0, 0.55);
}

.modal-split-left {
    background: #161616;
    padding: 3.25rem 3rem 3.25rem 2.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
}

.modal-split-right {
    padding: 3.25rem;
    position: relative;
    background: #1e1e1e;
}

.modal-close-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 2.25rem;
    height: 2.25rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.18s;
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
}

/* ── FOOTER ── */
footer {
    background: #181818;
    padding: 4.25rem 0 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-logo img {
    height: 5rem;
    filter: brightness(0) invert(1);
}

.footer-info-text {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9375rem;
    text-align: center;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.8125rem;
    text-align: right;
}

.branding {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    opacity: 0.55;
}

.branding img {
    height: 1rem;
}

.branding span {
    color: #fff;
    font-size: 0.8125rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .hero-title-text {
        font-size: 2.125rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .card-body-oryzo {
        padding: 2rem 1.5rem 2.75rem;
    }

    .card-oryzo-header {
        padding: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-copy {
        text-align: center;
        margin-top: 1.25rem;
    }
}

/* ── MODAL ── */
.modal-oryzo .modal-backdrop {
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(10px);
}

.modal-oryzo .modal-dialog {
    max-width: 58.75rem;
    /* 940px */
}



.info-icon-wrap {
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    flex-shrink: 0;
}

.btn-submit-request {
    background: var(--red);
    color: #fff;
    padding: 1.25rem;
    border-radius: 4px;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.2s;
    border: none;
}

.btn-submit-request:hover {
    background: #c22016;
    transform: translateY(-1px);
}

.modal-form-disclaimer {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.75rem;
    line-height: 1.6;
}

.pill-group {
    display: flex;
    gap: 0.75rem;
}

.pill-btn {
    /* flex: 1; */
    min-height: 3.25rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.60);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.18s;
}

.pill-btn.active {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.40);
    color: #fff;
}

.select-wrapper .input-icon {
    left: 1rem;
    color: rgba(255, 255, 255, 0.55);
}

.select-arrow {
    right: 1.25rem;
}

.modal-close-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 2.25rem;
    height: 2.25rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.18s;
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
}

.modal-accent-line {
    width: 1.125rem;
    height: 1.5px;
    background: var(--red);
}

.modal-eyebrow-text {
    font-size: 0.625rem;
    letter-spacing: 0.3em;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
}

.modal-title {
    font-size: 1.375rem;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.modal-desc {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.01em;
}

.modal-label-sm {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.59rem;
    letter-spacing: 0.20em;
    font-weight: 700;
    text-transform: uppercase;
}

.modal-value {
    color: rgba(255, 255, 255, 0.80);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.modal-brand-mark {
    margin-top: auto;
    padding-top: 5rem;
    color: rgba(255, 255, 255, 0.18);
    font-size: 0.59rem;
    letter-spacing: 0.32em;
    font-weight: 700;
    text-transform: uppercase;
}

.modal-left-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    width: 100%;
}

.modal-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.modal-contact-group {
    display: flex;
    gap: 1rem;
}

.modal-contact-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
    cursor: pointer;
}

.modal-contact-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

.modal-contact-btn.active {
    border-color: var(--red);
    background: rgba(218, 40, 28, 0.1);
    color: #fff;
}

/* ── FORM REFINEMENTS ── */
.form-control-oryzo {
    min-height: 3.5rem;
    /* 56px */
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.28);
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 1rem 1rem 1rem 3.125rem;
    /* 50px left pad for icon */
}

.form-control-oryzo:focus {
    background: rgba(218, 40, 28, 0.07);
    border: 2px solid var(--red);
    box-shadow: 0 0 0 0.1875rem rgba(218, 40, 28, 0.12);
}

.input-icon {
    left: 0.9375rem;
    /* 15px */
}

.pill-btn {
    min-height: 3.5rem;
    padding: 1rem 1.125rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
}

.pill-btn.active {
    background: rgba(218, 40, 28, 0.16);
    border: 2px solid var(--red);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 0 0 0.1875rem rgba(218, 40, 28, 0.10);
}

.later-success-box {
    text-align: center;
    padding: 5rem 4rem 4rem;
}

.success-icon-wrap {
    width: 5rem;
    height: 5rem;
    border: 2px solid var(--red);
    border-radius: 50%;
    margin-bottom: 2.25rem;
    align-items: center;
    justify-content: center;
}

.modal-request-received {
    color: var(--red);
    font-size: 0.6875rem;
    letter-spacing: 0.30em;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.modal-thank-you {
    color: #ffffff;
    font-size: 1.625rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 1.25rem;
}

.modal-success-divider {
    width: 2.25rem;
    height: 2px;
    background: var(--red);
    margin: 0 auto 1.75rem;
}

.modal-success-desc {
    color: rgba(255, 255, 255, 0.68);
    font-size: 1rem;
    line-height: 1.85;
    max-width: 27.5rem;
    margin: 0 auto 3rem;
}

.modal-close-final {
    padding: 1rem 3.25rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.60);
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    min-height: 3.125rem;
}

.modal-close-final:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.38);
    color: #fff;
}

/* ── ADDITIONAL REFINEMENTS ── */
.pill-group-full {
    display: flex;
    gap: 0.75rem;
    width: 100%;
}

/* .pill-group-full .pill-btn {
    flex: 1;
} */

.slot-legend .legend-item {
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
    padding: 2px 8px;
    border-radius: 4px;
}

.slot-legend .legend-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.slot-legend .legend-item.active {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.20);
}

/* ── EVENT BADGE ── */
.event-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    /* border-radius: 100px; */
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--red);
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.8);
}

.flexible-booking-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.flexible-booking-badge .flexible-booking-badge-subTitle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    color: rgba(255, 255, 255, 0.45);
    font-size: 10.5px;
    letter-spacing: 0.26em;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    padding-left: 24px;
}

.flexible-booking-badge .flexible-booking-badge-subTitle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 16px;
    height: 2px;
    background: rgba(255, 255, 255, 0.45);
    flex-shrink: 0;
}

/* ── BRANDING FULL WIDTH ── */
.branding {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    /* padding: 3rem 0 0; */
    text-align: center;
}

.dateParent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.dateParent .container {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    padding-bottom: 2rem;
}

.dateParent .event-badge {
    pointer-events: auto;
}