/* ========================================
   NextAgent.tech - Booking Page CSS
   ======================================== */

/* ============ Booking Hero ============ */
.booking-hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--tertiary-color) 100%);
    padding: 120px 0 80px;
    margin-top: 70px;
    text-align: center;
    color: white;
}

.booking-hero .hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.booking-hero .hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ============ Booking Content ============ */
.booking-content {
    padding: 80px 0;
    background: var(--bg-light);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

/* ============ Booking Form ============ */
.booking-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.booking-form-wrapper h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.booking-form-wrapper > p {
    color: #666;
    margin-bottom: 30px;
}

.booking-form {
    position: relative;
}

.form-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-step.active {
    display: block;
}

.form-step h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
}

.next-btn,
.prev-btn {
    display: flex;
    align-items: center;
    gap: 10px;
}

body[dir="rtl"] .next-btn i {
    transform: rotate(180deg);
}

body[dir="rtl"] .prev-btn i {
    transform: rotate(180deg);
}

/* ============ Progress Bar ============ */
.form-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.4;
    transition: var(--transition);
}

.progress-step.active {
    opacity: 1;
}

.progress-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: #999;
    transition: var(--transition);
}

.progress-step.active .progress-circle {
    background: var(--primary-color);
    color: white;
}

.progress-step span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
}

.progress-line {
    width: 100px;
    height: 2px;
    background: #e9ecef;
    margin: 0 20px;
}

/* ============ Booking Info ============ */
.booking-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.info-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.info-card p {
    color: #666;
    line-height: 1.6;
}

/* ============ Contact Card ============ */
.contact-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #e39410 100%);
    padding: 30px;
    border-radius: var(--border-radius);
    color: white;
    box-shadow: var(--shadow-lg);
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.contact-option:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

body[dir="rtl"] .contact-option:hover {
    transform: translateX(-5px);
}

.contact-option i {
    font-size: 1.3rem;
}

/* ============ Form Message ============ */
.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

/* ============ Responsive Design ============ */
@media (max-width: 992px) {
    .booking-wrapper {
        grid-template-columns: 1fr;
    }

    .booking-info {
        order: -1;
    }
}

@media (max-width: 768px) {
    .booking-hero .hero-title {
        font-size: 2rem;
    }

    .booking-form-wrapper {
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions button {
        width: 100%;
    }

    .progress-line {
        width: 50px;
        margin: 0 10px;
    }

    .progress-step span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .form-progress {
        flex-direction: column;
        gap: 20px;
    }

    .progress-line {
        width: 2px;
        height: 40px;
    }

    .progress-circle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}