/* Book Demo Page Specific Styles */

.book-demo-section {
    margin: 50px 0;
}

.booking-container {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
}

.rtl .booking-container {
    flex-direction: row-reverse;
}

.booking-info, .booking-form {
    flex: 1;
}

.booking-info h2, .booking-form h2 {
    color: var(--accent-orange);
    font-size: 28px;
    margin-bottom: 20px;
}

.booking-info p {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.6;
}

/* Benefits */
.benefits {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    margin-bottom: 15px;
    align-items: center;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-icon {
    color: var(--accent-orange);
    font-size: 20px;
    margin-right: 15px;
    font-weight: bold;
}

.rtl .benefit-icon {
    margin-right: 0;
    margin-left: 15px;
}

.benefit-item p {
    margin-bottom: 0;
    font-size: 16px;
}

/* Booking Form */
.booking-form {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    color: var(--white);
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--accent-orange);
    outline: none;
}

/* Phone input with country code */
.phone-input-container {
    display: flex;
}

.phone-input-container select {
    width: 35%;
    border-radius: 5px 0 0 5px;
}

.rtl .phone-input-container select {
    border-radius: 0 5px 5px 0;
}

.phone-input-container input {
    width: 65%;
    border-radius: 0 5px 5px 0;
}

.rtl .phone-input-container input {
    border-radius: 5px 0 0 5px;
}

.submit-button {
    background-color: var(--accent-orange);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background-color: #d38019;
    transform: translateY(-3px);
}

/* Success Message */
.success-message {
    background-color: rgba(46, 204, 113, 0.1);
    border: 2px solid rgba(46, 204, 113, 0.3);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
}

.success-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(46, 204, 113, 0.2);
    border-radius: 50%;
    color: #2ecc71;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.success-message h3 {
    color: #2ecc71;
    font-size: 24px;
    margin-bottom: 15px;
}

.success-message p {
    font-size: 16px;
    line-height: 1.6;
}

/* Form validation styles */
.form-group.error input, .form-group.error textarea, .form-group.error select {
    border-color: #ff3860;
}

.error-message {
    color: #ff3860;
    font-size: 14px;
    margin-top: 5px;
}

/* Responsive design */
@media (max-width: 992px) {
    .booking-container {
        flex-direction: column;
    }
    
    .rtl .booking-container {
        flex-direction: column;
    }
    
    .booking-info, .booking-form {
        width: 100%;
    }
    
    .phone-input-container select {
        width: 40%;
    }
    
    .phone-input-container input {
        width: 60%;
    }
}