/* أنماط مخصصة لصفحة السياحة */

/* قسم الصفحة الرئيسية (Page Header) */
.page-header {
    position: relative;
    padding: 120px 0;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
    z-index: -1;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    font-size: 1.1rem;
}

.page-breadcrumb li {
    margin: 0 5px;
}

.page-breadcrumb li a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.page-breadcrumb li a:hover {
    opacity: 1;
}

.page-breadcrumb li:last-child {
    font-weight: 600;
}

.page-breadcrumb li:last-child::before {
    content: "/";
    margin-left: 10px;
    opacity: 0.8;
}

/* الأنماط العامة للأقسام */
.section {
    padding: 80px 0;
}

.section.bg-light {
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* قسم الخدمات السياحية (Services Grid) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card-inner {
    padding: 30px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #fff;
    font-size: 36px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    background-color: #e9ecef;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}

.service-link:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.service-link i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(-5px);
}

/* قسم نبذة عن الخدمات (Tourism About) */
.tourism-about-image {
    position: relative;
    text-align: center;
}

.tourism-about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(45deg, var(--secondary-color), #D4AF37);
    color: #fff;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 5px solid #fff;
}

.exp-number {
    font-size: 2.5rem;
    line-height: 1;
}

.exp-text {
    font-size: 1rem;
    line-height: 1.2;
    text-align: center;
}

.tourism-about-content {
    padding-left: 30px;
}

.tourism-features {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.tourism-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.tourism-feature .feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background-color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tourism-feature .feature-text h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.tourism-feature .feature-text p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* قسم الرحلات المميزة (Featured Tours) */
.featured-tours {
    background-color: #f8f9fa;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tour-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.tour-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.05);
}

.tour-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.tour-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tour-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.tour-meta {
    display: flex;
    gap: 15px;
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 15px;
}

.tour-meta i {
    color: var(--primary-color);
    margin-left: 5px;
}

.tour-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.tour-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.tour-title a:hover {
    color: var(--secondary-color);
}

.tour-description {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.tour-card .btn {
    align-self: flex-start;
}

/* قسم نماذج الطلبات (Forms Section) */
.tourism-forms {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.tourism-form-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 40px;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.tourism-form-card .form-header {
    text-align: center;
    margin-bottom: 30px;
}

.tourism-form-card .form-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 32px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.tourism-form-card .form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
}

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

.tourism-form-card .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.tourism-form-card .form-control {
    border-radius: 10px;
    padding: 12px 18px;
    border: 1px solid #ddd;
    font-size: 1rem;
}

.tourism-form-card .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(46, 40, 87, 0.25);
}

.tourism-form-card .btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tourism-form-card .btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* أزرار التبديل بين النماذج */
.show-form {
    /* استخدم الأنماط الموجودة في service-link */
}

/* استجابة التصميم */
@media (max-width: 991px) {
    .page-header-title {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .tourism-about-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .experience-badge {
        width: 100px;
        height: 100px;
        font-size: 0.9rem;
        bottom: 10px;
        right: 10px;
    }

    .exp-number {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 80px 0;
    }

    .page-header-title {
        font-size: 2.2rem;
    }

    .page-breadcrumb {
        font-size: 0.9rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-description {
        font-size: 0.95rem;
    }

    .services-grid, .tours-grid {
        grid-template-columns: 1fr;
    }

    .service-card-inner {
        padding: 25px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }

    .service-title {
        font-size: 1.5rem;
    }

    .tourism-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .tourism-feature .feature-icon {
        margin-bottom: 15px;
    }

    .tourism-form-card {
        padding: 30px;
    }

    .tourism-form-card .form-title {
        font-size: 1.6rem;
    }
}


