/* Booking Hero Section */
.booking-hero-section {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #296BB4 0%, #1a4a7a 100%);
    overflow: hidden;
}

.booking-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.booking-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(241, 187, 27, 0.15) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

.booking-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.booking-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 1000px;
    margin: 0 auto;
}

.booking-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: fadeInDown 0.8s ease-out;
}

.booking-hero-badge i {
    font-size: 1.2rem;
    color: #F1BB1B;
}

.booking-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.booking-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Hero Stats */
.booking-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0 2.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.booking-stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 150px;
    justify-content: center;
}

.booking-stat-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(241, 187, 27, 0.3), rgba(241, 187, 27, 0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #F1BB1B;
    border: 2px solid rgba(241, 187, 27, 0.3);
    box-shadow: 0 4px 15px rgba(241, 187, 27, 0.2);
}

.booking-stat-content {
    text-align: left;
}

.booking-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.booking-stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.booking-stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

/* Hero Features */
.booking-hero-features {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.booking-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.booking-feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.booking-feature-item i {
    color: #2CAB4A;
    font-size: 1.1rem;
}

.booking-hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.booking-hero-shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation: pulse 8s ease-in-out infinite;
}

.booking-hero-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation: pulse 6s ease-in-out infinite;
}

.booking-hero-shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    animation: pulse 10s ease-in-out infinite;
}

/* Booking Section */
.booking-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.booking-alert {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.booking-alert.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.booking-alert.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Calendar Section */
.booking-calendar-section {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.booking-calendar-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.calendar-nav-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: #f0f0f0;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #296BB4;
}

.calendar-nav-btn:hover {
    background: #296BB4;
    color: white;
    transform: scale(1.1);
}

.calendar-month-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #296BB4;
    margin: 0;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.calendar-day-header {
    text-align: center;
    font-weight: 600;
    color: #666;
    font-size: 0.85rem;
    padding: 0.5rem 0;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    background: #f8f9fa;
    color: #333;
    border: 2px solid transparent;
}

.calendar-day:hover:not(.disabled):not(.selected) {
    background: #e9ecef;
    transform: scale(1.05);
}

.calendar-day.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: #f0f0f0;
    color: #999;
}

.calendar-day.unavailable {
    background: #ffebee;
    color: #c62828;
    cursor: not-allowed;
}

.calendar-day.available {
    background: #e8f5e9;
    color: #2e7d32;
}

.calendar-day.selected {
    background: #296BB4;
    color: white;
    border-color: #F1BB1B;
    box-shadow: 0 4px 15px rgba(41, 107, 180, 0.4);
    transform: scale(1.1);
}

.calendar-day.other-month {
    opacity: 0.3;
    cursor: not-allowed;
}

.calendar-legend {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #666;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    border: 2px solid transparent;
}

.legend-color.available {
    background: #e8f5e9;
}

.legend-color.unavailable {
    background: #ffebee;
}

.legend-color.selected {
    background: #296BB4;
    border-color: #F1BB1B;
}

/* Form Section */
.booking-form-section {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.booking-form-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.booking-form-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.booking-form-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #296BB4;
    margin-bottom: 0.5rem;
}

.booking-form-subtitle {
    color: #666;
    font-size: 0.95rem;
}

/* Time Slots */
.time-slots-container {
    margin-bottom: 2rem;
}

.time-slots-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.time-slot-btn {
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    background: white;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #333;
    text-align: center;
}

.time-slot-btn:hover:not(.disabled):not(.selected) {
    border-color: #296BB4;
    background: #f0f7ff;
    color: #296BB4;
}

.time-slot-btn.selected {
    background: #296BB4;
    color: white;
    border-color: #F1BB1B;
    box-shadow: 0 4px 15px rgba(41, 107, 180, 0.3);
}

.time-slot-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f0f0f0;
}

/* Booking Form */
.booking-form {
    margin-top: 2rem;
}

.booking-form-group {
    margin-bottom: 1.5rem;
}

.booking-form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.booking-form-label i {
    color: #296BB4;
}

.required {
    color: #dc3545;
}

.booking-form-input,
.booking-form-select,
.booking-form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.booking-form-input:focus,
.booking-form-select:focus,
.booking-form-textarea:focus {
    outline: none;
    border-color: #296BB4;
    box-shadow: 0 0 0 3px rgba(41, 107, 180, 0.1);
}

.booking-form-textarea {
    resize: vertical;
    min-height: 100px;
}

.booking-form-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #296BB4 0%, #1a4a7a 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.booking-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(41, 107, 180, 0.4);
}

.booking-form-submit:active {
    transform: translateY(0);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(5deg);
    }
    66% {
        transform: translateY(20px) rotate(-5deg);
    }
}

/* Responsive */
@media (max-width: 968px) {
    .booking-container {
        grid-template-columns: 1fr;
    }
    
    .booking-calendar-section,
    .booking-form-section {
        position: static;
    }
    
    .booking-hero-title {
        font-size: 2.5rem;
    }
    
    .booking-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .booking-hero-stats {
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .booking-stat-item {
        min-width: 120px;
    }
    
    .booking-hero-features {
        gap: 1rem;
    }
    
    .time-slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .booking-hero-section {
        padding: 100px 0 60px;
    }
    
    .booking-hero-badge {
        padding: 0.625rem 1.5rem;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .booking-hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .booking-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .booking-hero-stats {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 1rem;
    }
    
    .booking-stat-divider {
        display: none;
    }
    
    .booking-stat-item {
        width: 100%;
        justify-content: flex-start;
        min-width: auto;
    }
    
    .booking-stat-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    
    .booking-stat-number {
        font-size: 1.25rem;
    }
    
    .booking-stat-label {
        font-size: 0.85rem;
    }
    
    .booking-hero-features {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }
    
    .booking-feature-item {
        justify-content: center;
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .time-slots-grid {
        grid-template-columns: 1fr;
    }
    
    .calendar-grid {
        gap: 0.25rem;
    }
    
    .calendar-day {
        font-size: 0.85rem;
    }
}

