/* Booking Page Styles */
.booking-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.booking-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.booking-logo {
    height: 100px;
    width: auto;
    margin-bottom: 1rem;
}

.booking-intro h1 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 2.2rem;
}

.subtitle {
    color: #7f8c8d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #ecf0f1;
}

.section-title {
    color: #4CAF50;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 1rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #34495e;
    cursor: pointer;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #7f8c8d;
    pointer-events: none;
}

.input-with-icon input:not(.clickable-input),
.select-wrapper select {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.select-wrapper {
    position: relative;
}

.select-wrapper i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #7f8c8d;
    pointer-events: none;
}

.select-wrapper select {
    appearance: none;
    background-color: white;
    padding-right: 40px;
}

/* Textarea Specific Styles */
.textarea-wrapper {
    position: relative;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s;
}

.textarea-wrapper i {
    position: absolute;
    left: 15px;
    top: 15px;
    color: #7f8c8d;
    pointer-events: none;
}

.textarea-wrapper textarea {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    min-height: 120px;
    resize: vertical;
    line-height: 1.5;
    background: transparent;
}

.textarea-wrapper textarea:focus {
    outline: none;
}

.clickable-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    cursor: pointer;
}

input:focus,
select:focus,
.textarea-wrapper:focus-within,
.clickable-input:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
    outline: none;
}

.form-footer {
    margin-top: 2rem;
    text-align: center;
}

.submit-btn {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    background-color: #3e8e41;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.submit-btn:disabled {
    background-color: #95a5a6;
    transform: none;
    box-shadow: none;
}

.form-message {
    margin: 1.5rem 0;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.form-message.success {
    background-color: #d5f5e3;
    color: #27ae60;
}

.form-message.error {
    background-color: #fadbd8;
    color: #e74c3c;
}

.form-note {
    color: #95a5a6;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Error state */
input.error,
select.error,
textarea.error,
.textarea-wrapper.error {
    border-color: #e74c3c;
    background-color: #fef0ef;
}

/* Other Visit Type Animation */
#otherVisitTypeContainer {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .booking-container {
        padding: 1.5rem;
        margin: 1rem;
    }
}

@media (max-width: 480px) {
    .textarea-wrapper i {
        top: 12px;
        left: 12px;
    }
    .textarea-wrapper textarea {
        padding-left: 40px;
    }
}