/* إعدادات عامة */
:root {
    --primary-color: #2C5C3B;
    --secondary-color: #9B8E3F;
    --accent-color: #FFD700;
    --text-color: #333;
    --bg-color: #fff;
    --light-bg: #f9f9f9;
    --border-color: #ddd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tajawal', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
    background-color: var(--bg-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* القائمة الرئيسية */
header {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--bg-color);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar {
    height: 80px;
    display: flex;
    align-items: center;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu li {
    margin-right: 5px;
}

.nav-menu a {
    display: block;
    padding: 10px 15px;
    color: var(--text-color);
    font-weight: 500;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.contact-btn {
    background-color: var(--primary-color);
    color: #fff !important;
    border-radius: 30px;
    padding: 10px 20px !important;
}

.contact-btn:hover {
    background-color: var(--secondary-color);
}

.burger {
    display: none;
    cursor: pointer;
}

.burger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

/* القسم الرئيسي - الغلاف */
.hero {
    height: 100vh;
    background-image: url('img/hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    position: relative;
    text-align: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 92, 59, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #fff;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 25px;
    color: #fff;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary-color);
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    text-align: center;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* القسم العام */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-description {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    color: #666;
    font-size: 18px;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--secondary-color);
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-center {
    text-align: center;
    margin-top: 30px;
}

/* قسم الخدمات */
.services {
    background-color: var(--light-bg);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.service-card h3 {
    padding: 20px 20px 10px;
    font-size: 22px;
    color: var(--primary-color);
}

.service-card p {
    padding: 0 20px 20px;
    color: #666;
}

.service-card .btn {
    margin: 0 20px 20px;
}

/* قسم من نحن */
.about {
    background-color: var(--bg-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text {
    text-align: right;
}

.about-text p {
    margin-bottom: 20px;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.features {
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    flex-shrink: 0;
}

.feature-icon i {
    color: #fff;
    font-size: 20px;
}

.feature-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.feature-text p {
    margin-bottom: 0;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* قسم الفنادق */
.hotels {
    background-color: var(--light-bg);
}

.hotels-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.hotel-card {
    background-color: var(--bg-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.hotel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.hotel-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.hotel-card h3 {
    padding: 20px 20px 10px;
    font-size: 20px;
    color: var(--primary-color);
}

.hotel-card p {
    padding: 0 20px 20px;
    color: #666;
}

.hotel-card .btn {
    margin: 0 20px 20px;
}

/* قسم الرحلات الاقتصادية */
.economy-trips {
    background-color: var(--bg-color);
}

.trip-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    text-align: center;
}

.trip-features .feature {
    flex-direction: column;
    max-width: 300px;
    margin: 0;
    padding: 20px;
}

.trip-features .feature-icon {
    margin: 0 auto 15px;
    width: 70px;
    height: 70px;
}

.trip-features h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.trip-details {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.trip-item {
    background-color: var(--light-bg);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.trip-item img {
    height: 200px;
    width : 100%;

    object-fit: cover;
    margin: 0 auto 15px;
    border-radius: 8px;
}

.trip-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.features-list {
    text-align: right;
}

.features-list li {
    margin-bottom: 10px;
    position: relative;
    padding-right: 25px;
}

.features-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    right: 0;
}

.table-title {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-align: center;
}

.table-description {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    background-color: var(--bg-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.schedule-table th,
.schedule-table td {
    padding: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.schedule-table thead {
    background-color: var(--primary-color);
    color: #fff;
}

.schedule-table tbody tr:nth-child(even) {
    background-color: var(--light-bg);
}

/* قسم رحلات VIP */
.vip-trips {
    background-color: var(--light-bg);
}

.vip-details {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.vip-item {
    background-color: var(--bg-color);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.vip-label {
    position: absolute;
    top: 20px;
    right: -35px;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 5px 40px;
    font-size: 14px;
    transform: rotate(45deg);
    z-index: 1;
}

.vip-item img {
    height: 200px;
    width:100%;
    object-fit: cover;
    margin: 0 auto 15px;
    border-radius: 8px;
}

.vip-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.vip-table thead {
    background-color: var(--secondary-color);
}

.vip-btn {
    background-color: var(--secondary-color);
}

.vip-btn:hover {
    background-color: var(--primary-color);
}

/* قسم اتصل بنا */
.contact {
    background-color: var(--bg-color);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 24px;
    color: #fff;
}

.info-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.contact-form {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Tajawal', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(44, 92, 59, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Tajawal', sans-serif;
}

.submit-btn:hover {
    background-color: var(--secondary-color);
}

/* تذييل الصفحة */
.footer {
    background-color: #222;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-about h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.footer-about p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-services a {
    color: #fff;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-services a:hover {
    opacity: 1;
    color: var(--secondary-color);
    padding-right: 5px;
}

.footer-contact ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-contact ul li i {
    margin-left: 10px;
    color: var(--secondary-color);
    min-width: 20px;
}

.footer .social-links {
    margin-top: 20px;
}

.footer .social-link {
    background-color: rgba(255, 255, 255, 0.1);
}

.footer .social-link:hover {
    background-color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}

/* أزرار الاتصال العائمة */
.floating-buttons {
    position: fixed;
    left: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.phone-btn {
    background-color: var(--primary-color);
}

.whatsapp-btn {
    background-color: #25D366;
}

.float-btn:hover {
    transform: scale(1.1);
}

/* زر العودة للأعلى */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-color);
}

/* التصميم المتجاوب */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .trip-features {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
    
    .trip-features .feature {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .burger {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--bg-color);
        width: 100%;
        height: calc(100vh - 80px);
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .hero-content h2 {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .services-container,
    .hotels-container {
        grid-template-columns: 1fr;
    }
    
    .trip-features .feature {
        width: 100%;
    }
    
    .trip-details,
    .vip-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-content h2 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 16px;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin: 0 auto 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-contact ul li {
        justify-content: center;
    }
    
    .footer .social-links {
        justify-content: center;
    }
    
    .feature {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto 15px;
    }
}