/* صفحة رحلة العودة */
.return-trip-page {
    background: #f8f9fa;
    min-height: 100vh;
}

/* هيرو الصفحة */
.return-hero {
    background: linear-gradient(135deg, #4a9b8e 0%, #2c3e50 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.return-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

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

/* محتوى الصفحة */
.return-content {
    padding: 4rem 0;
    background: #f8f9fa;
}

/* صف الميزات في الأعلى */
.features-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* الشبكة الرئيسية */
.main-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4a9b8e, #5fb3a3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.feature-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* العمود الأيسر */
.left-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* العمود الأيمن */
.right-column {
    display: flex;
    flex-direction: column;
}

.details-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.details-card h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.details-card h3 i {
    color: #4a9b8e;
}

.details-card ul {
    list-style: none;
    padding: 0;
}

.details-card li {
    color: #495057;
    margin-bottom: 0.8rem;
    padding-right: 1rem;
    line-height: 1.6;
}

/* معلومات التواصل */
.contact-info {
    background: linear-gradient(135deg, #4a9b8e, #5fb3a3);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25d366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.contact-info p {
    margin: 0.5rem 0;
    opacity: 0.9;
}

.phone-number {
    font-size: 1.1rem;
    font-weight: 600;
    direction: ltr;
    text-align: center;
}

/* نموذج الحجز */
.booking-form-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    height: fit-content;
}

.booking-form-card h3 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.return-booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a9b8e;
    background: white;
    box-shadow: 0 0 0 3px rgba(74, 155, 142, 0.1);
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.submit-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

/* الاستجابة للشاشات الصغيرة */
@media (max-width: 768px) {
    .return-hero-content h1 {
        font-size: 2rem;
    }

    .features-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .main-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .booking-form-card {
        padding: 1.5rem;
    }

    .return-content {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .return-hero {
        padding: 6rem 0 3rem;
    }
    
    .return-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}
