/* Enhanced Corporate Booking Form Styles */

/* Main Form Container */
.corporate-booking-section {
    background: linear-gradient(135deg, #057837 0%, #006015 100%);
    min-height: 100vh;
    padding: 80px 0;
    position: relative;
}

.corporate-booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.corporate-booking-section .container {
    position: relative;
    z-index: 2;
}

/* Header Styling */
.corporate-booking-header {
    text-align: center;
    margin-bottom: 50px;
}

.corporate-booking-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.corporate-booking-header h2 i {
    background: linear-gradient(45deg, #ffffff, #e8f5e8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 15px;
    animation: pulse 2s infinite;
}

.corporate-booking-header p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Main Form Card */
.corporate-booking-card {
    background: #ffffff;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border: none;
    overflow: hidden;
    position: relative;
}

.corporate-booking-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #057837, #00a651, #057837);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.corporate-booking-card .card-body {
    padding: 60px;
}

/* Form Sections */
.form-section {
    margin-bottom: 40px;
    padding: 30px;
    background: #f8fffe;
    border-radius: 15px;
    border-left: 5px solid #057837;
    position: relative;
    transition: all 0.3s ease;
}

.form-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5,120,55,0.1);
}

.form-section-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #057837;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.form-section-title i {
    margin-right: 12px;
    font-size: 1.2rem;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #057837, #00a651);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Enhanced Form Controls */
.enhanced-form-group {
    position: relative;
    margin-bottom: 30px;
}

.enhanced-form-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.enhanced-form-label i {
    margin-right: 8px;
    color: #057837;
    width: 16px;
}

.enhanced-form-label .required {
    color: #e74c3c;
    margin-left: 4px;
}

.enhanced-form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.enhanced-form-control:focus {
    border-color: #057837;
    box-shadow: 0 0 0 0.2rem rgba(5,120,55,0.15);
    transform: translateY(-1px);
}

.enhanced-form-control:hover {
    border-color: #00a651;
}

/* Select Styling */
.enhanced-form-select {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="%23057837" d="M8 11L3 6h10l-5 5z"/></svg>') no-repeat right 15px center;
    background-size: 16px;
    appearance: none;
}

.enhanced-form-select:focus {
    border-color: #057837;
    box-shadow: 0 0 0 0.2rem rgba(5,120,55,0.15);
}

/* Textarea Styling */
.enhanced-textarea {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    resize: vertical;
    min-height: 120px;
}

.enhanced-textarea:focus {
    border-color: #057837;
    box-shadow: 0 0 0 0.2rem rgba(5,120,55,0.15);
}

/* Staff Registration Section */
.staff-registration-card {
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%);
    border: 2px solid #d4edda;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
}

.staff-registration-header {
    background: linear-gradient(135deg, #057837 0%, #00a651 100%);
    color: white;
    padding: 20px 30px;
    border: none;
}

.staff-registration-header h5 {
    margin: 0;
    font-weight: 600;
    font-size: 1.2rem;
}

.staff-registration-header i {
    margin-right: 10px;
    font-size: 1.1rem;
}

.staff-registration-body {
    padding: 30px;
}

/* Add Staff Button */
.add-staff-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
    border-radius: 12px;
    padding: 12px 25px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40,167,69,0.3);
}

.add-staff-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40,167,69,0.4);
    background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
}

/* Total Cost Card */
.total-cost-card {
    background: linear-gradient(135deg, #057837 0%, #00a651 100%);
    border: none;
    border-radius: 20px;
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
}

.total-cost-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
}

.total-cost-card .card-body {
    padding: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.total-cost-card h4 {
    color: white;
    font-weight: 700;
    font-size: 2rem;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.total-cost-card i {
    margin-right: 15px;
    font-size: 1.8rem;
}

#total-cost {
    font-size: 2.5rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Submit Button */
.submit-btn-container {
    text-align: center;
    margin-top: 40px;
}

.enhanced-submit-btn {
    background: linear-gradient(135deg, #057837 0%, #00a651 100%);
    border: none;
    border-radius: 15px;
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(5,120,55,0.3);
    position: relative;
    overflow: hidden;
}

.enhanced-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.enhanced-submit-btn:hover::before {
    left: 100%;
}

.enhanced-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(5,120,55,0.4);
    background: linear-gradient(135deg, #00a651 0%, #057837 100%);
}

.enhanced-submit-btn i {
    margin-right: 12px;
    font-size: 1rem;
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Success/Error Messages */
.booking-message {
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border: none;
    font-weight: 500;
}

.booking-message.success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border-left: 5px solid #28a745;
}

.booking-message.error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border-left: 5px solid #dc3545;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .corporate-booking-card .card-body {
        padding: 40px;
    }
    
    .corporate-booking-header h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .corporate-booking-section {
        padding: 40px 0;
    }
    
    .corporate-booking-header h2 {
        font-size: 2.5rem;
    }
    
    .corporate-booking-header p {
        font-size: 1.1rem;
    }
    
    .corporate-booking-card .card-body {
        padding: 30px 20px;
    }
    
    .form-section {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .enhanced-form-control,
    .enhanced-form-select,
    .enhanced-textarea {
        padding: 12px 15px;
    }
    
    .enhanced-submit-btn {
        padding: 15px 35px;
        font-size: 1rem;
    }
    
    .total-cost-card h4 {
        font-size: 1.6rem;
    }
    
    #total-cost {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .corporate-booking-header h2 {
        font-size: 2rem;
    }
    
    .corporate-booking-card .card-body {
        padding: 20px 15px;
    }
    
    .form-section {
        padding: 15px;
    }
    
    .form-section-title {
        font-size: 1.2rem;
    }
    
    .enhanced-submit-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
        width: 100%;
    }
}