/* ============================================
   BOOKING PAGE SPECIFIC STYLES
   ============================================ */

.booking-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    padding: calc(80px + var(--spacing-lg)) var(--spacing-md) var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

.booking-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    animation: gradientShift 8s ease infinite;
}

.booking-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.booking-icon-large {
    font-size: 5rem;
    margin-bottom: var(--spacing-md);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.booking-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: var(--spacing-sm);
    animation: slideInLeft 0.8s ease;
}

.booking-subtitle {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
    animation: slideInLeft 0.8s ease 0.2s backwards;
}

.booking-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    animation: slideInLeft 0.8s ease 0.4s backwards;
}


/* ============================================
   AVAILABILITY INFO SECTION
   ============================================ */

.scheduler-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0f1433 100%);
    display: flex;
    align-items: center;
    min-height: 40vh; /* Adds vertical space to center content */
}

.scheduler-section .container {
    width: 100%;
}

.scheduler-section .section-title {
    margin-bottom: var(--spacing-lg);
}

.availability-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.availability-card {
    background: var(--bg-card);
    padding: var(--spacing-lg);
    border-radius: 15px;
    border: 2px solid rgba(0, 255, 136, 0.2);
    text-align: center;
    transition: var(--transition-normal);
}

.availability-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.availability-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.availability-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.phone-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

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

.availability-schedule {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.schedule-item .day {
    color: var(--text-secondary);
    font-weight: 600;
}

.schedule-item .time {
    color: var(--primary);
    font-weight: 700;
}


/* ============================================
   BOOKING FORM STYLES
   ============================================ */

.booking-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: var(--spacing-lg);
    border-radius: 20px;
    border: 2px solid rgba(0, 255, 136, 0.2);
}

.form-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.form-header h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.form-header p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-group label {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9375rem;
}

.required {
    color: var(--secondary);
    margin-left: 2px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 0.875rem 1rem;
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition-normal);
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 0.875rem 1rem;
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition-normal);
    cursor: pointer;
    /* Force dark background for dropdown */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300ff88' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

/* Style the dropdown options */
.form-group select option {
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 0.75rem;
    font-size: 1rem;
}

/* Style the first (placeholder) option */
.form-group select option:first-child {
    color: var(--text-muted);
}

/* Hover state for options (works in some browsers) */
.form-group select option:hover {
    background: rgba(0, 255, 136, 0.1);
}

/* Focus state */
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

/* ============================================
   FILE UPLOAD STYLES
   ============================================ */

.file-upload-wrapper {
    position: relative;
}

.file-input {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
    border: 2px dashed rgba(0, 255, 136, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: var(--transition-normal);
}

.file-upload-label:hover {
    border-color: var(--primary);
    background: rgba(0, 255, 136, 0.05);
}

.file-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-xs);
}

.file-text {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.file-size-info {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.file-name-display {
    margin-top: var(--spacing-sm);
    padding: var(--spacing-xs) var(--spacing-sm);
    background: rgba(0, 255, 136, 0.1);
    border-radius: 5px;
    color: var(--primary);
    font-size: 0.9375rem;
    display: none;
}

.file-name-display.active {
    display: block;
}

/* ============================================
   FORM ACTIONS & STATUS
   ============================================ */

.form-actions {
    margin-top: var(--spacing-sm);
}

.submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    font-size: 1.125rem;
    padding: 1.125rem 2rem;
    cursor: pointer;
    border: none;
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-icon {
    font-size: 1.25rem;
}

.form-status {
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 10px;
    text-align: center;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
}

.form-status.error {
    display: block;
    background: rgba(255, 0, 85, 0.1);
    border: 1px solid var(--secondary);
    color: var(--secondary);
}

/* ============================================
   RESPONSIVE - FORM
   ============================================ */

@media (max-width: 768px) {
    .availability-info {
        grid-template-columns: 1fr;
    }
    
    .booking-form-container {
        padding: var(--spacing-md);
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .schedule-item {
        flex-direction: column;
        gap: 0.25rem;
    }
}

@media (max-width: 480px) {
    .phone-number {
        font-size: 1.5rem;
    }
    
    .submit-btn {
        font-size: 1rem;
        padding: 1rem;
    }
}

/* ============================================
   ALTERNATIVE CONTACT SECTION
   ============================================ */

.alt-contact-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-dark);
}

.alt-contact-box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: var(--spacing-lg);
    border-radius: 20px;
    border: 2px solid var(--accent);
    text-align: center;
}

.alt-contact-box h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.alt-contact-box > p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
}

.alt-contact-options {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.alt-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition-normal);
}

.alt-contact-btn:hover {
    background: var(--primary);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.alt-icon {
    font-size: 1.5rem;
}

/* ============================================
   RESPONSIVE - BOOKING PAGE
   ============================================ */

@media (max-width: 768px) {
    .booking-title {
        font-size: 2.5rem;
    }
    
    .booking-icon-large {
        font-size: 4rem;
    }
    
    .expect-grid {
        grid-template-columns: 1fr;
    }
    
    .alt-contact-options {
        flex-direction: column;
    }
    
    .alt-contact-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .booking-title {
        font-size: 2rem;
    }
    
    .alt-contact-box h3 {
        font-size: 1.5rem;
    }
}