:root {
    --primary-dark: #0d1b2a; /* أزرق داكن - 30% */
    --primary-light: #1b4965; /* أزرق متوسط */
    --accent-sky: #62b6cb; /* سماوي - 10% */
    --accent-orange: #f39c12; /* برتقالي - بديل للسماوي */
    --light-bg: #ffffff; /* أبيض - 60% */
    --light-text: #f8f9fa;
    --dark-text: #333333;
}

* {
    font-family: 'Cairo', sans-serif;
}

body {
    background-color: var(--light-bg);
    color: var(--dark-text);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', 'Cairo', sans-serif;
    font-weight: 600;
}

/* الهيدر والتوبار */
.top-bar {
    background-color: var(--primary-dark);
    color: var(--light-text);
    padding: 8px 0;
    font-size: 0.9rem;
}

.top-bar a {
    color: var(--accent-sky);
    text-decoration: none;
    margin-left: 15px;
}

.navbar {
    background-color: var(--primary-dark);
    padding-top: 15px;
    padding-bottom: 15px;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding-top: 10px;
    padding-bottom: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--light-text);
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--accent-sky);
}

.logo i {
    margin-left: 8px;
    color: var(--accent-sky);
}

.navbar-nav .nav-link {
    color: var(--light-text) !important;
    margin: 0 8px;
    font-weight: 500;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-sky) !important;
}

/* قسم من نحن */
.about-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.about-img {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-img:hover img {
    transform: scale(1.05);
}

.about-content h2 {
    color: var(--primary-dark);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.about-content h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--accent-sky);
    bottom: 0;
    right: 0;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    margin-top: 30px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(98, 182, 203, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    flex-shrink: 0;
}

.about-feature-icon i {
    font-size: 20px;
    color: var(--accent-sky);
}

/* أزرار باستخدام 10% من الألوان */
.btn-primary {
    background-color: var(--accent-sky);
    border-color: var(--accent-sky);
    color: var(--light-text);
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 5px;
}

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

.btn-accent {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
    color: var(--light-text);
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 5px;
}

.btn-accent:hover {
    background-color: #e67e22;
    border-color: #e67e22;
}

/* موجة SVG */
.wave-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin: 0;
    padding: 0;
}

.wave-divider svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.wave-divider-top {
    transform: rotate(180deg);
}

.wave-fill-dark {
    fill: var(--primary-dark);
}

.wave-fill-light {
    fill: var(--light-bg);
}

.wave-fill-sky {
    fill: var(--accent-sky);
}

/* قسم الهيرو */
.hero-section {
    background: linear-gradient(rgba(13, 27, 42, 0.7), rgba(13, 27, 42, 0.8)), url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    color: var(--light-text);
    padding: 120px 0;
    position: relative;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
}

/* قسم المميزات */
.features-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.section-title {
    color: var(--primary-dark);
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

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

.feature-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(98, 182, 203, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 30px;
    color: var(--accent-sky);
}

/* قسم الوجهات */
.destinations-section {
    padding: 100px 0;
    background-color: rgba(98, 182, 203, 0.05);
}

.destination-card-item {
    margin-bottom: 30px;
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.destination-card {
    border-radius: 15px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.destination-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.destination-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover .destination-img img {
    transform: scale(1.1);
}

.destination-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-orange);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.destination-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.destination-info h4 {
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-size: 1.4rem;
    font-weight: 700;
}

.destination-info p {
    color: var(--dark-text);
    margin-bottom: 20px;
    line-height: 1.8;
    flex-grow: 1;
}

.destination-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.destination-price {
    color: var(--accent-sky);
    font-weight: 700;
    font-size: 1.5rem;
}

.destination-price .price-label {
    font-size: 0.9rem;
    color: var(--dark-text);
    display: block;
    margin-bottom: 5px;
}

.destination-card .btn-primary {
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 5px;
}

/* Category Labels */
.category-label {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.category-label.honeymoon {
    background-color: rgba(243, 156, 18, 0.2);
    color: #e67e22;
}

.category-label.adventure {
    background-color: rgba(27, 73, 101, 0.2);
    color: var(--primary-light);
}

/* قسم العروض */
.offers-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.offer-banner {
    background: linear-gradient(rgba(13, 27, 42, 0.8), rgba(13, 27, 42, 0.8)), url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1335&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    color: var(--light-text);
    padding: 60px;
    margin-top: 50px;
}

.offer-banner h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.countdown {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.countdown-item {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    margin: 0 10px;
    min-width: 90px;
    text-align: center;
}

.countdown-number {
    font-size: 2rem;
    font-weight: 700;
}

/* الفوتر */
.footer {
    background-color: var(--primary-dark);
    color: var(--light-text);
    padding-top: 80px;
}

.footer h5 {
    color: var(--accent-sky);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h5:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--accent-sky);
    bottom: 0;
    right: 0;
}

.footer-links a {
    color: var(--light-text);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-sky);
    padding-right: 5px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-left: 10px;
    color: var(--light-text);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--accent-sky);
    transform: translateY(-5px);
}

.copyright {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 60px;
    text-align: center;
}

.maay {
    color: chocolate;
    text-decoration: none;
    font-weight: 600;
}

.maay:hover {
    color: var(--accent-sky);
}

/* القواعد للجوال */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .offer-banner {
        padding: 30px;
    }
    
    .offer-banner h3 {
        font-size: 1.8rem;
    }
    
    .countdown-item {
        min-width: 70px;
        margin: 0 5px;
        padding: 10px;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
}