/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tajawal',system-ui,-apple-system,Segoe UI,Roboto,"Noto Kufi Arabic",sans-serif;
    direction: rtl;
    background-color: #f5f5f5;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar Styles */
.top-bar {
    background-color: #553B38;
    color: #C69488;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #C69488;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C69488;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #C69488;
    color: #553B38;
}

.user-links {
    display: flex;
    gap: 20px;
}

.user-links a {
    color: #C69488;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.user-links a:hover {
    opacity: 0.8;
}

.user-links i {
    margin-left: 5px;
}

/* Navigation Bar Styles */
.navbar {
    background-color: rgba(85, 59, 56, 0.95);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/* Logo Styles - Right Side */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #C69488;
    font-size: 28px;
    font-weight: bold;
    white-space: nowrap;
}

.logo i {
    font-size: 32px;
}

/* Navigation Menu - Right Side */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
    flex: 1;
}

.nav-menu li a {
    color: #C69488;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #ffffff;
}

.nav-menu li a i {
    font-size: 12px;
    margin-right: 5px;
}

/* Book Now Button - Left Side */
.book-now {
    margin-right: auto;
}

.btn-book {
    background-color: #553B38;
    color: #C69488;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid #C69488;
}

.btn-book:hover {
    background-color: #C69488;
    color: #553B38;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(198, 148, 136, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    color: #C69488;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Hero Slides */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Individual Slide Backgrounds */
.hero-slide-1 {
    background-image: url('QJ9A8907.jpg');
}

.hero-slide-2 {
    background-image: url('DSC_0231.jpg');
}

.hero-slide-3 {
    background-image: url('1.jpg');
}

.hero-slide-4 {
    background-image: url('2.jpg');
}

.hero-slide-5 {
    background-image: url('2.webp');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(85, 59, 56, 0.6), rgba(85, 59, 56, 0.4));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #C69488;
    padding: 40px 20px;
}

.hero-subtitle {
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    color: #ffffff;
}

.btn-discover {
    background-color: #553B38;
    color: #C69488;
    padding: 15px 50px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #C69488;
}

.btn-discover:hover {
    background-color: #C69488;
    color: #553B38;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(198, 148, 136, 0.4);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(85, 59, 56, 0.7);
    color: #C69488;
    border: 2px solid #C69488;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background-color: #C69488;
    color: #553B38;
}

.slider-arrow-right {
    right: 30px;
}

.slider-arrow-left {
    left: 30px;
}

.slider-arrow i {
    font-size: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 20px;
    }

    .hero-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .navbar-content {
        flex-wrap: wrap;
    }

    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .slider-arrow-right {
        right: 15px;
    }

    .slider-arrow-left {
        left: 15px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 24px;
    }

    .logo i {
        font-size: 28px;
    }

    .hero-title {
        font-size: 28px;
    }

    .btn-discover {
        padding: 12px 35px;
        font-size: 16px;
    }

    .social-icons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .user-links {
        flex-direction: column;
        gap: 10px;
    }
}
/* About Section Styles */
.about-section {
    padding: 100px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

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

/* About Image Styles */
.about-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-frame {
    position: relative;
    width: 100%;
    max-width: 500px;
    padding: 40px;
}

.about-image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #553B38;
    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
    z-index: 1;
}

.about-image {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* About Text Styles */
.about-text {
    padding: 20px 0;
}

.about-subtitle {
    color: #553B38;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.about-subtitle::after {
    content: '';
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 2px;
    background-color: #553B38;
}

.about-title {
    color: #553B38;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

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

/* About Features Styles */
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #666;
    font-size: 15px;
}

.feature-item i {
    color: #553B38;
    font-size: 14px;
}

/* Read More Button */
.btn-read-more {
    background-color: #553B38;
    color: #C69488;
    padding: 15px 45px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #553B38;
    margin-top: 20px;
}

.btn-read-more:hover {
    background-color: #C69488;
    color: #553B38;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(85, 59, 56, 0.3);
}

/* Airplane Background Decorations */
.airplane-bg {
    position: absolute;
    color: #e0e0e0;
    font-size: 80px;
    opacity: 0.15;
    z-index: 1;
    animation: float 20s infinite ease-in-out;
}

.airplane-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.airplane-2 {
    top: 30%;
    left: 80%;
    animation-delay: 5s;
    transform: rotate(45deg);
}

.airplane-3 {
    top: 70%;
    left: 15%;
    animation-delay: 10s;
    transform: rotate(-30deg);
}

.airplane-4 {
    top: 50%;
    left: 70%;
    animation-delay: 15s;
    transform: rotate(60deg);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: #553B38;
    color: #C69488;
    border: 2px solid #C69488;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(85, 59, 56, 0.3);
}

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

.scroll-to-top:hover {
    background-color: #C69488;
    color: #553B38;
    transform: translateY(-5px);
}

.scroll-to-top i {
    font-size: 20px;
}

/* Responsive Design for About Section */
@media (max-width: 1024px) {
    .about-content {
        gap: 40px;
    }

    .about-title {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-wrapper {
        order: 2;
    }

    .about-text {
        order: 1;
    }

    .about-title {
        font-size: 32px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .airplane-bg {
        font-size: 50px;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 28px;
    }

    .about-subtitle::after {
        display: none;
    }

    .btn-read-more {
        padding: 12px 35px;
        font-size: 14px;
    }

    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        left: 20px;
    }
}
/* Explore Tour Section Styles */
.explore-tour-section {
    padding: 100px 0;
    background-color: #553B38;
}

/* Section Header Styles */
.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.section-subtitle {
    color: #553B38;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 2px;
    background-color: #553B38;
}

.section-subtitle::before {
    right: calc(100% + 20px);
}

.section-subtitle::after {
    left: calc(100% + 20px);
}

.section-title {
    color: #553B38;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Category Buttons Styles */
.category-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 35px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #553B38;
    background-color: transparent;
    color: #553B38;
}

.category-btn.active {
    background-color: #553B38;
    color: #C69488;
}

.category-btn:hover {
    background-color: #553B38;
    color: #C69488;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(85, 59, 56, 0.3);
}

/* Tour Cards Grid */
.tour-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Tour Card Styles */
.tour-card {
    position: relative;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

.tour-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.tour-card-content {
    position: absolute;
    bottom: 30px;
    right: 30px;
    left: 30px;
    z-index: 2;
    text-align: center;
}

.tour-card-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.tour-card-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.tour-card-link:hover {
    color: #C69488;
    gap: 12px;
}

.tour-card-link i {
    font-size: 14px;
}

/* Discount Badge Styles */
.discount-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    z-index: 3;
    color: #ffffff;
}

.discount-badge.discount-cyan {
    background-color: #00bcd4;
}

.discount-badge.discount-yellow {
    background-color: #ffc107;
}

/* Responsive Design for Explore Tour Section */
@media (max-width: 1024px) {
    .tour-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .section-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .explore-tour-section {
        padding: 60px 0;
    }

    .tour-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-subtitle::before,
    .section-subtitle::after {
        width: 50px;
    }

    .tour-card {
        height: 300px;
    }

    .category-buttons {
        flex-direction: column;
        align-items: center;
    }

    .category-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }

    .section-subtitle::before,
    .section-subtitle::after {
        display: none;
    }

    .tour-card {
        height: 250px;
    }

    .tour-card-title {
        font-size: 20px;
    }

    .tour-card-content {
        bottom: 20px;
        right: 20px;
        left: 20px;
    }
}
/* Packages Section Styles */
.packages-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

/* Packages Header Styles */
.packages-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    gap: 30px;
}

.packages-header-content {
    text-align: center;
    flex: 1;
}

.slider-nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #553B38;
    background-color: transparent;
    color: #553B38;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
}

.slider-nav-btn:hover {
    background-color: #553B38;
    color: #C69488;
    transform: scale(1.1);
}

/* Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Package Card Styles */
.package-card {
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

/* Package Image Wrapper */
.package-image-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

.package-card:hover .package-image {
    transform: scale(1.1);
}

/* Package Price Badge */
.package-price {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #553B38;
    color: #C69488;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    z-index: 2;
}

/* Package Info Overlay */
.package-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: space-around;
    padding: 15px 10px;
    z-index: 2;
}

.package-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #ffffff;
    font-size: 13px;
}

.package-info-item i {
    font-size: 16px;
}

/* Package Content */
.package-content {
    padding: 25px;
}

.package-title {
    color: #553B38;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.package-category {
    color: #999;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.package-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.package-rating i {
    color: #553B38;
    font-size: 14px;
}

.package-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Package Buttons */
.package-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.btn-read-more-pkg,
.btn-book-now-pkg {
    padding: 12px 20px;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-read-more-pkg {
    background-color: transparent;
    color: #553B38;
    border: 2px solid #553B38;
    border-radius: 8px 0 0 8px;
}

.btn-book-now-pkg {
    background-color: #553B38;
    color: #C69488;
    border: 2px solid #553B38;
    border-radius: 0 8px 8px 0;
}

.btn-read-more-pkg:hover {
    background-color: #553B38;
    color: #C69488;
}

.btn-book-now-pkg:hover {
    background-color: #C69488;
    color: #553B38;
}

/* Responsive Design for Packages Section */
@media (max-width: 1200px) {
    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .package-image-wrapper {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .packages-section {
        padding: 60px 0;
    }

    .packages-header {
        flex-direction: column;
        gap: 20px;
    }

    .slider-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .package-image-wrapper {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .package-content {
        padding: 20px;
    }

    .package-title {
        font-size: 20px;
    }

    .package-buttons {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .btn-read-more-pkg,
    .btn-book-now-pkg {
        border-radius: 8px;
        border: 2px solid #553B38;
    }

    .package-info-overlay {
        padding: 12px 8px;
    }

    .package-info-item {
        font-size: 11px;
    }

    .package-info-item i {
        font-size: 14px;
    }
}
/* Services Section Styles */
.services-section {
    padding: 100px 0;
    background-color: #f5f5f5;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* Service Card Styles */
.service-card {
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 40px 35px;
    display: flex;
    align-items: center;
    gap: 30px;
    transition: all 0.3s ease;
    min-height: 200px;
}

.service-card:hover {
    border-color: #553B38;
    box-shadow: 0 10px 30px rgba(85, 59, 56, 0.15);
    transform: translateY(-5px);
}

/* Service Content - Left Aligned */
.service-content-left {
    flex: 1;
    text-align: right;
}

/* Service Content - Right Aligned */
.service-content-right {
    flex: 1;
    text-align: left;
}

.service-title {
    color: #553B38;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-description {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

/* Service Icon */
.service-icon {
    width: 100px;
    height: 100px;
    background-color: #553B38;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 45px;
    color: #C69488;
}

.service-card:hover .service-icon {
    background-color: #C69488;
    transform: scale(1.1) rotate(10deg);
}

.service-card:hover .service-icon i {
    color: #553B38;
}

/* Service Card Full Width (Card 5) */
.service-card-full {
    grid-column: 1 / -1;
    flex-direction: column;
    text-align: center;
    padding: 50px 40px;
}

.service-content-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.service-card-full .service-icon {
    margin-bottom: 10px;
}

.service-card-full .service-title {
    text-align: center;
    font-size: 28px;
}

.service-card-full .service-description {
    text-align: center;
    max-width: 700px;
}

/* Responsive Design for Services Section */
@media (max-width: 1024px) {
    .services-grid {
        gap: 25px;
    }

    .service-card {
        padding: 35px 30px;
    }

    .service-icon {
        width: 90px;
        height: 90px;
    }

    .service-icon i {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
        min-height: auto;
    }

    .service-content-left,
    .service-content-right {
        text-align: center;
    }

    .service-icon {
        width: 80px;
        height: 80px;
    }

    .service-icon i {
        font-size: 35px;
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: 25px 20px;
    }

    .service-title {
        font-size: 20px;
    }

    .service-description {
        font-size: 14px;
    }

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

    .service-icon i {
        font-size: 30px;
    }
}
/* Booking Section Styles */
.booking-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #553B38 0%, #3d2a28 100%);
    position: relative;
    overflow: hidden;
}

/* Balloon Background Animation */
.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(198, 148, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(198, 148, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(198, 148, 136, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Booking Content (Left Side) */
.booking-content {
    color: #ffffff;
}

.booking-subtitle {
    color: #C69488;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.booking-subtitle::before,
.booking-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background-color: #C69488;
}

.booking-subtitle::before {
    right: calc(100% + 15px);
}

.booking-subtitle::after {
    left: calc(100% + 15px);
}

.booking-title {
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
}

.booking-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.btn-read-more-booking {
    display: inline-block;
    padding: 15px 40px;
    background-color: transparent;
    color: #C69488;
    border: 2px solid #C69488;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-read-more-booking:hover {
    background-color: #C69488;
    color: #553B38;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(198, 148, 136, 0.3);
}

/* Booking Form (Right Side) */
.booking-form-wrapper {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.booking-form-header {
    margin-bottom: 30px;
}

.form-title {
    color: #553B38;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-subtitle {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.form-subtitle .highlight {
    color: #C69488;
    font-weight: 700;
}

/* Form Styles */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #553B38;
    box-shadow: 0 0 0 3px rgba(85, 59, 56, 0.1);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23553B38' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 15px center;
    padding-left: 40px;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.btn-book-now-form {
    width: 100%;
    padding: 15px 30px;
    background-color: #553B38;
    color: #C69488;
    border: 2px solid #553B38;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-book-now-form:hover {
    background-color: #C69488;
    color: #553B38;
    border-color: #C69488;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(85, 59, 56, 0.3);
}

/* Responsive Design for Booking Section */
@media (max-width: 1024px) {
    .booking-wrapper {
        gap: 40px;
    }

    .booking-title {
        font-size: 36px;
    }

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

@media (max-width: 768px) {
    .booking-section {
        padding: 60px 0;
    }

    .booking-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .booking-content {
        text-align: center;
    }

    .booking-subtitle::before,
    .booking-subtitle::after {
        display: none;
    }

    .booking-title {
        font-size: 32px;
    }

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

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

@media (max-width: 480px) {
    .booking-title {
        font-size: 28px;
    }

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

    .form-title {
        font-size: 24px;
    }

    .form-input,
    .form-select,
    .form-textarea {
        padding: 12px 15px;
        font-size: 14px;
    }

    .btn-book-now-form {
        padding: 12px 25px;
        font-size: 15px;
    }
}
/* Atlas Section Styles */
.atlas-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #553B38 0%, #6b4a46 100%);
    position: relative;
}

/* Atlas Header */
.atlas-header {
    text-align: center;
    margin-bottom: 50px;
}

.atlas-subtitle {
    color: #C69488;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.atlas-title {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Atlas Banner */
.atlas-banner {
    width: 100%;
    margin-bottom: 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.atlas-banner-image {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    display: block;
}

/* Atlas Grid */
.atlas-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 30px;
}

.atlas-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.atlas-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.atlas-grid-1 {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Atlas Card */
.atlas-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid rgba(198, 148, 136, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
}

.atlas-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(198, 148, 136, 0.3);
    border-color: rgba(198, 148, 136, 0.5);
}

/* Atlas Card Number */
.atlas-card-number {
    position: relative;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #C69488 0%, #d4a599 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(198, 148, 136, 0.4);
    margin-bottom: 20px;
}

/* Atlas Card Text */
.atlas-card-text {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    text-align: center;
    direction: rtl;
}

/* Large Card */
.atlas-card-large {
    min-height: 200px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .atlas-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .atlas-title {
        font-size: 36px;
    }

    .atlas-grid-4,
    .atlas-grid-3 {
        grid-template-columns: 1fr;
    }

    .atlas-banner-image {
        max-height: 200px;
    }

    .atlas-card {
        min-height: 200px;
        padding: 25px;
    }

    .atlas-card-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 15px;
    }

    .atlas-card-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .atlas-section {
        padding: 60px 0;
    }

    .atlas-title {
        font-size: 28px;
    }

    .atlas-card {
        padding: 20px;
        min-height: 180px;
    }
}

/* ============================================================
   قسم الهيكل الإداري — بألوان تامبلت الأطلس
   ============================================================ */
.org-chart-section {
  background: #FAF6F4;
  padding: 80px 0 90px;
  direction: rtl;
  position: relative;
  overflow: hidden;
}

.org-chart-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #553B38, #C69488, #553B38);
}

.org-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.org-header {
  text-align: center;
  margin-bottom: 56px;
}

.org-badge {
  display: inline-block;
  background: #553B38;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 20px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.org-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #553B38;
  margin: 0 0 12px;
  line-height: 1.3;
}

.org-subtitle {
  font-size: 1rem;
  color: #8B5E58;
  margin: 0;
}

.org-tree {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.org-level {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.org-node {
  background: #fff;
  border: 1.5px solid #E8D5D0;
  border-radius: 14px;
  padding: 22px 20px 18px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(85,59,56,0.12);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}

.org-node:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(85,59,56,0.18);
}

.org-node-top {
  background: linear-gradient(145deg, #553B38 0%, #8B5E58 100%);
  border-color: #553B38;
  color: #fff;
  max-width: 480px;
  width: 100%;
  padding: 30px 28px 24px;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(85,59,56,0.3);
}

.org-node-top .org-node-name { color: #fff; font-size: 1.05rem; }
.org-node-top .org-node-role { color: rgba(255,255,255,0.82); }

.org-node-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(198,148,136,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: #C69488;
}

.org-node-top .org-node-icon {
  background: rgba(255,255,255,0.18);
  color: #F5D5CC;
  width: 52px;
  height: 52px;
}

.org-node-icon svg { width: 22px; height: 22px; }
.org-node-top .org-node-icon svg { width: 26px; height: 26px; }

/* صورة الأمير الدائرية */
.org-node-photo {
  width: 90px !important;
  height: 90px !important;
  border-radius: 50% !important;
  overflow: hidden;
  border: 3px solid #C69488;
  box-shadow: 0 4px 16px rgba(85,59,56,0.35);
  background: transparent !important;
  padding: 0 !important;
}

.org-node-badge {
  display: inline-block;
  background: rgba(255,255,255,0.22);
  color: #F5D5CC;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 12px;
  margin-bottom: 10px;
  border: 1px solid rgba(255,255,255,0.3);
}

.org-node-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #3A2826;
  margin: 0 0 6px;
  line-height: 1.45;
}

.org-node-role {
  font-size: 0.78rem;
  color: #7A5A56;
  margin: 0 0 10px;
  line-height: 1.5;
}

.org-node-tag {
  display: inline-block;
  background: #FAF6F4;
  color: #553B38;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 10px;
  border: 1px solid #E8D5D0;
}

.org-node-sm {
  padding: 16px 14px 14px;
}

.org-node-sm .org-node-icon { width: 36px; height: 36px; margin-bottom: 8px; }
.org-node-sm .org-node-icon svg { width: 18px; height: 18px; }
.org-node-sm .org-node-name { font-size: 0.82rem; }
.org-node-sm .org-node-role { font-size: 0.72rem; }

.org-connector-v {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, #553B38, #C69488);
  margin: 0 auto;
}

.org-connector-h {
  width: 75%;
  height: 2px;
  background: linear-gradient(to right, transparent, #C69488, #553B38, #C69488, transparent);
  margin: 0 auto;
}

.org-connector-v-up {
  width: 2px;
  height: 30px;
  background: linear-gradient(to bottom, #C69488, #553B38);
  margin: 0 auto;
}

.org-nodes-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
}

.org-nodes-row-3 {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 24px;
  padding-top: 20px;
  border-top: 2px dashed #E8D5D0;
}

.org-branch {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 1024px) {
  .org-nodes-row,
  .org-nodes-row-3 { grid-template-columns: repeat(2, 1fr); }
  .org-connector-h { width: 50%; }
}

@media (max-width: 640px) {
  .org-chart-section { padding: 50px 0 60px; }
  .org-header { margin-bottom: 36px; }
  .org-nodes-row,
  .org-nodes-row-3 { grid-template-columns: 1fr; gap: 12px; }
  .org-node-top { max-width: 100%; padding: 22px 18px 18px; }
  .org-connector-h { display: none; }
  .org-connector-v { height: 24px; }
  .org-connector-v-up { height: 0; }
}
/* ================================================
   قسم مخرجات المشروع — بألوان تامبلت الأطلس
   ================================================ */

/* --- الحاوية الرئيسية --- */
.outputs-section {
  background-color: #F5EFE8;
  padding: 80px 0 90px;
  direction: rtl;
  font-family: 'Tajawal', 'Noto Kufi Arabic', sans-serif;
}

/* --- عنوان القسم --- */
.outputs-header {
  text-align: center;
  margin-bottom: 60px;
}

.outputs-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #3a2520;
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}

.outputs-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #C69488, #8B5E52);
  border-radius: 2px;
}

/* --- شبكة البطاقات --- */
.outputs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- البطاقة الفردية --- */
.output-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 24px 32px;
  text-align: center;
  border: 1px solid rgba(198, 148, 136, 0.2);
  box-shadow: 0 4px 20px rgba(85, 59, 56, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.output-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(85, 59, 56, 0.14);
  border-color: rgba(198, 148, 136, 0.5);
}

/* البطاقة السابعة تتمركز في المنتصف */
.output-card-center {
  grid-column: 2;
}

/* --- دائرة الأيقونة --- */
.output-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #C69488;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(198, 148, 136, 0.06);
  color: #C69488;
  transition: background 0.3s ease, border-color 0.3s ease;
  flex-shrink: 0;
}

.output-card:hover .output-icon-wrap {
  background: rgba(198, 148, 136, 0.15);
  border-color: #8B5E52;
  color: #8B5E52;
}

.output-icon-wrap svg {
  width: 36px;
  height: 36px;
  stroke: currentColor;
}

/* --- اسم المخرج --- */
.output-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #3a2520;
  line-height: 1.5;
  margin: 0;
}

/* --- وصف المخرج --- */
.output-desc {
  font-size: 0.88rem;
  color: #7a5c58;
  line-height: 1.7;
  margin: 0;
}

/* ================================================
   Responsive Breakpoints
   ================================================ */

/* تابلت */
@media (max-width: 900px) {
  .outputs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .output-card-center {
    grid-column: 1 / -1;
    max-width: 380px;
    margin: 0 auto;
    width: 100%;
  }
}

/* جوال */
@media (max-width: 560px) {
  .outputs-section {
    padding: 50px 0 60px;
  }

  .outputs-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 16px;
  }

  .output-card-center {
    grid-column: 1;
    max-width: 100%;
  }

  .output-icon-wrap {
    width: 68px;
    height: 68px;
  }

  .output-icon-wrap svg {
    width: 30px;
    height: 30px;
  }

  .outputs-title {
    font-size: 1.6rem;
  }
}
