/* =========================================
   CONTACT PAGE — Luxury Black Edition
   Visual migration of legacy booking form.
   
   RULES:
   - No Bootstrap CSS loaded.
   - All Bootstrap classes used by the legacy form 
     are redefined here, scoped to .booking-form-section.
   - No IDs, names, or structural classes are changed.
   ========================================= */

/* --- SECTION 1: HERO HEADER --- */
.contact-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 2rem;
    background: linear-gradient(180deg, #000000 0%, #0d0d0d 60%, #111111 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(213, 175, 54, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.contact-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    color: var(--clr-accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    font-weight: var(--fw-medium);
}

.contact-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    color: var(--clr-secondary);
    max-width: 700px;
}

.hero-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--clr-text-secondary);
    max-width: 550px;
    margin-bottom: 0;
}

/* --- SECTION 2: BOOKING FORM SECTION --- */
.booking-form-section {
    background-color: var(--clr-primary);
}

/* ===========================================
   BOOTSTRAP CLASS OVERRIDES (Scoped)
   These redefine Bootstrap utility/component 
   classes used by the legacy form HTML.
   =========================================== */

/* Layout: row / col */
.booking-form-section .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.booking-form-section .col-md-8 {
    width: 100%;
    max-width: 800px;
}

.booking-form-section .offset-md-2 {
    /* Centering handled by row justify-content */
}

/* Spacing Utilities */
.booking-form-section .mb-3 {
    margin-bottom: 1.25rem;
}

.booking-form-section .mb-4 {
    margin-bottom: 2rem;
}

.booking-form-section .mt-2 {
    margin-top: 0.75rem;
}

.booking-form-section .mt-3 {
    margin-top: 1rem;
}

.booking-form-section .ms-2 {
    margin-left: 0.5rem;
}

/* --- Notes / Description Blocks --- */
.booking-form-section .form-desc,
.booking-form-section .form-desc-2 {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid var(--clr-accent);
    padding: 2rem 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--clr-text-secondary);
}

.booking-form-section .form-desc ul {
    list-style: disc;
}

.booking-form-section .form-desc-2 {
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.booking-form-section .form-desc strong,
.booking-form-section .form-desc-2 strong {
    color: var(--clr-secondary);
}

.booking-form-section #notes-title {
    font-size: 1.1rem;
    display: block;
    text-align: center;
    color: var(--clr-accent);
    margin-bottom: 0.5rem;
}

.booking-form-section #rekeningNumber {
    font-weight: 600;
    color: var(--clr-accent);
    font-size: 2rem;
    letter-spacing: 2px;
    display: inline-block;
    margin: 0.5rem 0;
}

/* Copy Rekening Button */
.btn-copy-rekening {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    margin-top: 0.5rem;
    background: transparent;
    color: var(--clr-accent);
    border: 1px solid var(--clr-accent);
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: var(--fw-medium);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-copy-rekening:hover {
    background: var(--clr-accent);
    color: #111;
}

/* --- Card Component --- */
.booking-form-section .card {
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
    transition: border-color 0.4s ease;
}

.booking-form-section .card:hover {
    border-color: rgba(213, 175, 54, 0.2);
}

.booking-form-section .card-header {
    background: linear-gradient(135deg, #1A1A1A 0%, #222222 100%);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.booking-form-section .card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--clr-accent), transparent);
    opacity: 0.4;
}

.booking-form-section .card-header h4 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: var(--fw-semibold);
    color: var(--clr-secondary);
    margin: 0;
    letter-spacing: 0.5px;
    text-align: center;
}

.booking-form-section .card-body {
    padding: 2rem;
}

/* --- Form Controls --- */
.booking-form-section .form-label {
    display: block;
    font-weight: var(--fw-medium);
    color: var(--clr-secondary);
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.booking-form-section .form-control {
    display: block;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--clr-secondary);
    padding: 0.9rem 1.2rem;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.booking-form-section .form-control:focus {
    outline: none;
    border-color: var(--clr-accent);
    box-shadow: 0 0 0 2px rgba(213, 175, 54, 0.15);
}

.booking-form-section .form-control::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.booking-form-section textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.booking-form-section .form-control[type="file"] {
    padding: 0.8rem 1rem;
    cursor: pointer;
}

/* File input fix for dark theme */
.booking-form-section .form-control[type="file"]::-webkit-file-upload-button {
    background: var(--clr-accent);
    color: #111;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-weight: var(--fw-medium);
    cursor: pointer;
    margin-right: 1rem;
    transition: background 0.3s ease;
}

.booking-form-section .form-control[type="file"]::-webkit-file-upload-button:hover {
    background: var(--clr-accent-hover);
}

/* --- Radio / Checkbox --- */
.booking-form-section .form-check {
    padding: 1rem 1.25rem;
    margin-bottom: 0.6rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.booking-form-section .form-check:hover {
    background: rgba(213, 175, 54, 0.06);
    border-color: rgba(213, 175, 54, 0.25);
    transform: translateX(4px);
}

.booking-form-section .form-check-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid rgba(213, 175, 54, 0.5);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    pointer-events: none;
    position: relative;
    transition: all 0.3s ease;
}

.booking-form-section .form-check-input:checked {
    background-color: var(--clr-accent);
    border-color: var(--clr-accent);
}

.booking-form-section .form-check-input:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #111;
}

.booking-form-section .form-check-label {
    color: var(--clr-secondary);
    font-size: 1rem;
    font-weight: var(--fw-regular);
    cursor: pointer;
    flex: 1;
}

/* --- Text Utilities --- */
.booking-form-section .text-danger {
    color: var(--clr-accent) !important;
    font-weight: var(--fw-bold);
}

.booking-form-section .form-text {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.booking-form-section .fw-bold {
    display: block;
    color: var(--clr-accent);
    font-size: 1rem;
    font-weight: var(--fw-semibold);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(213, 175, 54, 0.2);
    letter-spacing: 0.5px;
}

/* --- Submit Button --- */
.booking-form-section .submit-btn-wrapper {
    text-align: center;
    padding: 2.5rem 0 1rem;
}

.booking-form-section .btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-weight: var(--fw-medium);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.booking-form-section .btn-primary {
    background: var(--clr-accent);
    color: #111;
    border: 1px solid var(--clr-accent);
}

.booking-form-section .btn-primary:hover {
    background: var(--clr-accent-hover);
    box-shadow: 0 8px 30px rgba(213, 175, 54, 0.3);
    transform: translateY(-2px);
}

.booking-form-section .btn-lg {
    padding: 1.2rem 3.5rem;
    font-size: 1.05rem;
    letter-spacing: 0.12em;
}

/* --- Alert (used by upload status) --- */
.booking-form-section .alert {
    border: none;
    border-radius: 6px;
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.booking-form-section .alert-info {
    background: rgba(213, 175, 54, 0.1);
    color: var(--clr-accent);
    border-left: 3px solid var(--clr-accent);
}

.booking-form-section .alert-success {
    background: rgba(40, 167, 69, 0.1);
    color: #6fcf97;
    border-left: 3px solid #6fcf97;
}

.booking-form-section .alert-danger {
    background: rgba(220, 53, 69, 0.1);
    color: #ff6b6b;
    border-left: 3px solid #ff6b6b;
}

/* --- Loading Spinner --- */
.booking-form-section .loading {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(213, 175, 54, 0.3);
    border-radius: 50%;
    border-top-color: var(--clr-accent);
    animation: contact-spin 0.8s ease-in-out infinite;
}

@keyframes contact-spin {
    to { transform: rotate(360deg); }
}

/* --- Field Validation Error --- */
.booking-form-section .field-incomplete {
    border: 2px solid #ff6b6b !important;
    animation: contact-shake 0.5s ease;
}

@keyframes contact-shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(8px); }
}

/* =========================================
   FILE PREVIEW (Legacy Upload UI)
   ========================================= */
.file-preview-container {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.file-preview-container.show {
    display: block;
}

.file-preview-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 0;
}

.file-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--clr-accent), #B8960C);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    flex-shrink: 0;
}

.file-icon svg {
    width: 20px;
    height: 20px;
}

.file-details {
    flex: 1;
    min-width: 0;
}

.file-name {
    font-weight: var(--fw-semibold);
    color: var(--clr-secondary);
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.file-size {
    font-size: 0.85rem;
    color: var(--clr-text-secondary);
}

.btn-remove-file {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(220, 53, 69, 0.15);
    color: #ff6b6b;
    border: 1px solid rgba(220, 53, 69, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
    padding: 0;
}

.btn-remove-file:hover {
    background: #dc3545;
    color: white;
    border-color: #dc3545;
    transform: scale(1.1) rotate(90deg);
}

/* =========================================
   DATE PICKER MODAL (Legacy — Dark Theme)
   ========================================= */
.date-display {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 0.9rem 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 56px;
    display: flex;
    align-items: center;
}

.date-display:hover {
    border-color: var(--clr-accent);
    background: rgba(213, 175, 54, 0.04);
}

.date-display-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.calendar-icon {
    color: var(--clr-accent);
    flex-shrink: 0;
}

#selectedDateText {
    font-size: 1rem;
    color: var(--clr-text-secondary);
    font-weight: var(--fw-regular);
}

.date-display.selected #selectedDateText {
    color: var(--clr-secondary);
    font-weight: var(--fw-semibold);
}

/* Date Picker Overlay */
.date-picker-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10001;
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.date-picker-overlay.show {
    display: flex !important;
    opacity: 1 !important;
}

.date-picker-content {
    background: #1A1A1A;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    max-width: 800px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(213, 175, 54, 0.08);
    position: relative;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.date-picker-overlay.show .date-picker-content {
    transform: scale(1);
}

.date-picker-header {
    background: linear-gradient(135deg, #111111 0%, #1A1A1A 100%);
    color: var(--clr-secondary);
    padding: 1.5rem 2rem;
    border-radius: 16px 16px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid rgba(213, 175, 54, 0.15);
}

.date-picker-header h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: var(--fw-semibold);
    margin: 0;
    letter-spacing: 0.5px;
    color: var(--clr-secondary);
}

.date-picker-close {
    background: transparent;
    border: none;
    color: var(--clr-text-secondary);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.date-picker-close:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--clr-accent);
    transform: rotate(90deg);
}

.date-picker-body {
    padding: 2rem;
}

.booking-form-section .section-title,
.date-picker-body .section-title {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: var(--fw-semibold);
    color: var(--clr-accent);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(213, 175, 54, 0.2);
}

.month-section {
    margin-bottom: 2.5rem;
}

.month-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.75rem;
}

.month-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.month-item:hover {
    border-color: rgba(213, 175, 54, 0.4);
    background: rgba(213, 175, 54, 0.05);
    transform: translateY(-2px);
}

.month-item.selected {
    background: var(--clr-accent);
    border-color: var(--clr-accent);
    color: #111;
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(213, 175, 54, 0.3);
}

.month-name {
    font-size: 0.95rem;
    font-weight: var(--fw-medium);
    color: var(--clr-secondary);
    letter-spacing: 0.3px;
}

.month-item.selected .month-name {
    color: #111;
}

.date-section {
    margin-top: 1.5rem;
}

.date-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(55px, 1fr));
    gap: 0.5rem;
}

.date-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 0.8rem 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: var(--fw-semibold);
    color: var(--clr-secondary);
    min-height: 50px;
}

.date-item:hover {
    border-color: rgba(213, 175, 54, 0.4);
    background: rgba(213, 175, 54, 0.08);
    transform: scale(1.05);
}

.date-item.selected {
    background: var(--clr-accent);
    border-color: var(--clr-accent);
    color: #111;
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(213, 175, 54, 0.3);
}

.date-item.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.date-picker-footer {
    padding: 1.25rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0 0 16px 16px;
    position: sticky;
    bottom: 0;
}

.btn-date-cancel,
.btn-date-confirm {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-weight: var(--fw-medium);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.btn-date-cancel {
    background: #1A1A1A;
    color: #FFFFFF;
    border: 1px solid rgba(213, 175, 54, 0.3);
}

.btn-date-cancel:hover {
    background: #222222;
    color: #FFFFFF;
}

.btn-date-confirm {
    background: var(--clr-accent);
    color: #111;
}

.btn-date-confirm:hover {
    background: var(--clr-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(213, 175, 54, 0.3);
}

.btn-date-confirm:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* =========================================
   MODAL POP-UP (Legacy — Dark Theme)
   ========================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.show {
    display: flex !important;
    opacity: 1 !important;
}

.modal-content {
    background: #1A1A1A;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(213, 175, 54, 0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.show .modal-content {
    transform: scale(1);
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-accent), #B8960C);
}

.modal-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    animation: contact-icon-pop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.modal-icon.success {
    background: rgba(40, 167, 69, 0.15);
    color: #6fcf97;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.modal-icon.warning {
    background: rgba(255, 193, 7, 0.12);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

@keyframes contact-icon-pop {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}

.modal-title {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: var(--fw-bold);
    color: var(--clr-secondary);
    margin-bottom: 0.75rem;
}

.modal-message {
    font-size: 1rem;
    color: var(--clr-text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.modal-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-weight: var(--fw-medium);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.modal-btn-primary {
    background: var(--clr-accent);
    color: #111;
}

.modal-btn-primary:hover {
    background: var(--clr-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(213, 175, 54, 0.3);
}

.modal-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--clr-text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--clr-secondary);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
    .contact-hero {
        min-height: 50vh;
        padding-top: 100px;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .booking-form-section .card-header h4 {
        font-size: 1.2rem;
    }

    .booking-form-section .card-body {
        padding: 1.5rem 1.25rem;
    }

    .booking-form-section .form-desc,
    .booking-form-section .form-desc-2 {
        padding: 1.25rem;
        font-size: 0.9rem;
    }

    .booking-form-section #rekeningNumber {
        font-size: 1.5rem;
    }

    .file-preview-content {
        flex-direction: column;
        align-items: stretch;
    }

    .file-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-remove-file {
        align-self: center;
    }

    .date-picker-content {
        max-width: 95%;
        width: 95%;
    }

    .month-grid {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
        gap: 0.5rem;
    }

    .date-grid {
        grid-template-columns: repeat(auto-fill, minmax(45px, 1fr));
        gap: 0.4rem;
    }

    .date-picker-header h3 {
        font-size: 1.2rem;
    }

    .date-picker-body {
        padding: 1.25rem;
    }
}
