/* ============================================
   FACILITY BOOKING - CLEAN MYIKMAS THEME
   ============================================ */

:root {
    --primary-purple: #764ba2;
    --primary-gradient: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
}

/* Header Styles */
.program-header {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 100px 0 40px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid #e2e8f0;
}

.program-header h1 {
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

/* Card Styles */
.booking-card {
    background: white;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    padding: 35px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.booking-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(118, 75, 162, 0.1);
    border-color: rgba(118, 75, 162, 0.1);
}

.booking-code {
    background: rgba(118, 75, 162, 0.08);
    color: var(--primary-purple);
    padding: 6px 16px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
    width: fit-content;
}

.booking-name {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 18px;
}

/* Modal Styles */
.modal-content {
    border-radius: 30px !important;
}

.form-control-premium {
    width: 100%;
    padding: 14px 20px;
    border: 1.5px solid #f1f5f9;
    border-radius: 14px;
    font-weight: 600;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.form-control-premium:focus {
    border-color: var(--primary-purple);
    background: white;
    box-shadow: 0 0 0 4px rgba(118, 75, 162, 0.1);
    outline: none;
}

/* Button Styles */
.btn-primary-premium {
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 16px;
    padding: 14px 30px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(118, 75, 162, 0.2);
    transition: all 0.3s ease;
}

.btn-primary-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(118, 75, 162, 0.3);
    color: white;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}