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

.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.booking-form-section {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
    animation: slideInLeft 0.8s ease-out;
}

.booking-form-section h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.booking-form-section h3 i {
    font-size: 2.2rem;
}

.booking-form-detailed {
    color: var(--text-color);
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.booking-form-detailed .form-group {
    margin-bottom: 1.5rem;
}

.booking-form-detailed label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.booking-form-detailed label i {
    color: var(--primary-color);
}

.booking-form-detailed input,
.booking-form-detailed select,
.booking-form-detailed textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    transition: all 0.3s ease;
    color: var(--text-color);
}

.booking-form-detailed input:focus,
.booking-form-detailed select:focus,
.booking-form-detailed textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.booking-form-detailed textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 500 !important;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
    transform: scale(1.2);
}

.booking-summary {
    background: linear-gradient(135deg, rgba(246, 211, 101, 0.1), rgba(253, 160, 133, 0.1));
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.booking-summary h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.summary-item.total {
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding: 1rem 0;
    margin-top: 0.5rem;
    font-size: 1.2rem;
}

.summary-item span {
    color: var(--text-color);
    font-weight: 500;
}

.summary-item strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.summary-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.btn-submit-booking {
    width: 100%;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
    background-size: 200% 200%;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 5px 20px rgba(253, 160, 133, 0.4);
    animation: gradientShift 3s ease infinite;
    margin-top: 2rem;
}

.btn-submit-booking:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(253, 160, 133, 0.5);
}

.btn-submit-booking i {
    font-size: 1.3rem;
}

.divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    margin: 3rem 0;
}

.contact-form-wrapper h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Link styling for book buttons */
a {
    text-decoration: none;
    display: inline-block;
}

a button {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .form-row-3 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .booking-form-section {
        padding: 2rem 1.5rem;
    }
    
    .form-row-2,
    .form-row-3 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .booking-form-section h3 {
        font-size: 1.5rem;
    }
    
    .booking-summary {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .booking-form-section {
        padding: 1.5rem 1rem;
    }
    
    .btn-submit-booking {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}
