:root {
    --primary: #1b608d;
    --primary-light: #2d9cdb;
    --primary-dark: #0c182c;
    --secondary: #1e3a8a;
    --accent: #1b608d;
    --light: #ffffff;
    --dark: #1e293b;
    --gray: #64748b;
    --light-gray: #f8fafc;
    --dark-gray: #333333;
    --success: #10b981;
    --light-green: #d1fae5;
    --warning: #cea05159;
    --gradient: linear-gradient(135deg, var(--primary-light), var(--primary));
    --gradient-dark: linear-gradient(135deg, var(--secondary), var(--primary-dark));
    --gradient-green: linear-gradient(135deg, var(--success), #0da371);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: "Tajawal", "Almarai", sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "El Messiri", sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

.container {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 3.2rem;
    color: var(--secondary);
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.section-title h2 span {
    color: var(--primary);
}

.section-title h2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    right: 50%;
    transform: translateX(50%);
    width: 100px;
    height: 5px;
    background: var(--gradient);
    border-radius: 3px;
}

.section-title .head1 {
    color: var(--light-gray);
}

.section-title p {
    font-size: 1.3rem;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.6;
}

.section-title .pr {
    color: var(--light);
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border-bottom: 2px solid transparent;
}

header.scrolled {
    padding: 0;
    box-shadow: var(--shadow);
    border-bottom: 2px solid var(--primary);
    background: rgba(255, 255, 255, 0.98);
}

.stats-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.year-stats {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 8px;
    transition: var(--transition);
    min-width: 140px;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.stat-box i {
    color: #ffd700;
    font-size: 1.1rem;
}

.stat-number {
    font-weight: 800;
    font-size: 1.2rem;
    color: white;
    font-family: "El Messiri", sans-serif;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.contact-info-top {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-links-top {
    display: flex;
    gap: 15px;
}

.social-links-top a {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
}

.social-links-top a:hover {
    background: var(--primary);
    transform: translateY(-3px) rotate(5deg);
}

.contact-details-top {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    background: rgba(37, 211, 102, 0.2);
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
}

.whatsapp-link:hover {
    background: rgba(37, 211, 102, 0.3);
    transform: translateY(-2px);
}

.whatsapp-link i {
    color: #25d366;
    font-size: 1.2rem;
}

.address {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.address i {
    color: #ffd700;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
    flex: 0 0 auto;
    text-decoration: none;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-image {
    height: 70px;
    width: 70px;
    object-fit: cover;
    transition: var(--transition);
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.logo:hover .logo-image {
    transform: translateY(-2px);
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.15));
}

.logo-text h1 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 5px;
}

.logo-text p {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
}

nav {
    display: flex;
    align-items: center;
    gap: 35px;
    flex: 1;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
    flex-wrap: nowrap;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
    padding: 10px 5px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.nav-links a i {
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover i {
    transform: translateX(-5px);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.25);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    flex-shrink: 0;
}

.whatsapp-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: 0.5s;
}

.whatsapp-btn:hover::before {
    left: 100%;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.35);
}

.mobile-menu-btn {
    display: none;
    background: var(--gradient);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.mobile-menu-btn:hover {
    transform: scale(1.05);
}

.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
    margin-top: 80px;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide-image {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(1.1);
    transition: transform 12s ease;
    filter: brightness(0.8);
    min-height: 100vh;
}

.swiper-slide-active .slide-image {
    transform: scale(1);
    filter: brightness(0.7);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(45deg,
            rgba(30, 58, 138, 0.85),
            rgba(0, 0, 0, 0.6));
    min-height: 100vh;
}

.slide-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 900px;
    padding: 0 40px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 25px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    align-self: flex-start;
}

.slide-content h1 {
    font-size: 4.2rem;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp 1s ease 0.3s forwards;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.slide-content p {
    font-size: 1.4rem;
    margin-bottom: 35px;
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp 1s ease 0.6s forwards;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.9);
}

.slide-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: #fff;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp 1s ease 0.9s forwards;
    border-right: 3px solid var(--accent);
    padding-right: 15px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp 1s ease 1.2s forwards;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
}

.cta-button.primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.swiper-pagination {
    bottom: 40px !important;
}

.swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: var(--transition);
    border: 2px solid transparent;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    transform: scale(1.3);
    border-color: white;
}

.stats-section {
    background: var(--gradient-dark);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none" opacity="0.05"><polygon points="0,0 100,0 100,100"/></svg>');
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 30px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #f1f5f9;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 10px;
    font-family: Arial, Helvetica, sans-serif
}

.stat-text {
    font-size: 1.3rem;
    opacity: 0.9;
    color: var(--light);
}

.destinations {
    background: white;
    padding: 100px 0;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.destination-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.destination-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.destination-card:hover .destination-image {
    transform: scale(1.05);
}

.destination-content {
    padding: 25px;
    text-align: right;
}

.destination-content h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.destination-content p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.destination-stats {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
}

.destination-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--gray);
    font-size: 0.9rem;
}

.destination-stats i {
    color: var(--success);
}

.services {
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.service-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    border: 1px solid #f1f5f9;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
    z-index: 2;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-content {
    padding: 35px;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--light-gray), #f1f5f9);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient);
    color: white;
    transform: rotateY(180deg) scale(1.1);
}

.service-content h3 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.service-content h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
    transition: var(--transition);
}

.service-card:hover .service-content h3::after {
    width: 100px;
}

.service-content p {
    color: var(--gray);
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.service-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 10px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.service-stats span {
    background: var(--light-green);
    color: var(--success);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.service-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary-dark);
    gap: 15px;
}

.service-link:hover::after {
    width: 100%;
}

.packages {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    position: relative;
}

.packages::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none" opacity="0.02"><circle cx="50" cy="50" r="40"/></svg>');
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.package-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
    padding-bottom: 20px;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.package-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--success);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.package-header {
    background: var(--gradient-dark);
    color: white;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.package-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.package-card:hover .package-header::before {
    transform: translateX(100%);
}

.package-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    color: #ffd700;
}

.package-period {
    font-size: 1rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.package-features {
    padding: 35px;
    list-style: none;
}

.package-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    transition: var(--transition);
}

.package-features li:hover {
    padding-right: 10px;
    color: var(--primary);
}

.package-features li i {
    color: var(--success);
    font-size: 1.2rem;
    transition: var(--transition);
}

.package-features li:hover i {
    transform: scale(1.2);
}

.package-stats {
    display: flex;
    gap: 20px;
    margin: 0 35px 20px;
    padding: 10px 20px;
    background: var(--light-green);
    border-radius: 10px;
    justify-content: center;
}

.package-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--success);
    font-weight: 600;
    font-size: 0.9rem;
}

.package-button {
    display: block;
    text-align: center;
    background: var(--gradient-green);
    color: white;
    padding: 18px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    margin: 0 35px 35px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.package-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: 0.5s;
}

.package-button:hover::before {
    left: 100%;
}

.package-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.booking {
    background: white;
    padding: 100px 0;
}

.booking-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.booking-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--light-green);
    padding: 15px 25px;
    border-radius: 50px;
    color: var(--success);
    font-weight: 600;
    transition: var(--transition);
}

.booking-stat:hover {
    transform: translateY(-5px);
    background: var(--success);
    color: white;
}

.booking-stat:hover i {
    color: white;
}

.booking-stat i {
    color: var(--success);
    font-size: 1.2rem;
}

.booking-form-container {
    background: var(--light-gray);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid #f1f5f9;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--secondary);
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: "Tajawal", sans-serif;
    font-size: 1.1rem;
    transition: var(--transition);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(27, 96, 141, 0.1);
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-check input[type="checkbox"] {
    width: auto;
    transform: scale(1.2);
}

.booking-submit-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 12px;
    font-family: "Tajawal", sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.booking-submit-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: 0.5s;
}

.booking-submit-btn:hover::before {
    left: 100%;
}

.booking-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.35);
}

.about-preview {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    transform: scale(1.2);
}

.about-image:hover img {
    transform: scale(1.05);
    box-shadow: 1px 1px 10px var(--gray);
}

.about-image::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary);
    border-radius: var(--border-radius);
    z-index: -1;
    transition: var(--transition);
}

.about-image:hover::after {
    top: 15px;
    right: 15px;
}

.about-text h3 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 25px;
}

.about-text p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.8;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
    padding: 30px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    border: 2px solid var(--light-green);
}

.company-stat {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    transition: var(--transition);
}

.company-stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.company-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: "El Messiri", sans-serif;
    margin-bottom: 5px;
}

.company-stat-label {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 600;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(-10px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    transform: rotate(360deg);
}

.feature-text h4 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

.testimonials {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 100px 0;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    transition: var(--transition);
    position: relative;
}


textarea {
    max-width: 100%;
}


.testimonial-card:hover {
    box-shadow: 0 0 1px var(--gray);
    transform: translateY(-10px);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.1;
    font-family: "El Messiri", sans-serif;
    line-height: 1;
}

.testimonial-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.testimonial-stats span {
    background: var(--light-green);
    color: var(--success);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.testimonial-rating {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    transition: var(--transition);
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.1);
    border-color: var(--accent);
}

.author-info h4 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 5px;
}

.author-info p {
    color: var(--gray);
    font-size: 1rem;
}

.contact {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: grid;
    gap: 30px;
}

.contact-stats {
    background: var(--light-gray);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 2px solid var(--light-green);
}

.contact-stats h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
    text-align: center;
}

.contact-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: var(--transition);
}

.contact-stat:hover {
    transform: translateX(-10px);
    box-shadow: var(--shadow);
}

.contact-stat i {
    color: var(--primary);
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary);
    font-family: "El Messiri", sans-serif;
    display: block;
}

.contact-stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    display: block;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid transparent;
}

.contact-item:hover {
    transform: translateX(-10px);
    background: white;
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    transform: rotateY(180deg);
}

.contact-details h3 {
    font-size: 1.4rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.contact-details p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.whatsapp-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #25d366;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    padding: 8px 15px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 8px;
    transition: var(--transition);
}

.whatsapp-contact-link:hover {
    background: rgba(37, 211, 102, 0.2);
    transform: translateY(-2px);
}

.contact-form {
    background: var(--light-gray);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid #f1f5f9;
}

.contact-form:hover {
    border-color: var(--primary);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--secondary);
    font-weight: 600;
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: "Tajawal", sans-serif;
    font-size: 1.1rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0 var(--primary-light);
}

.submit-btn {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-family: "Tajawal", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

footer {
    background: var(--gradient-dark);
    color: white;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none" opacity="0.05"><polygon points="0,100 100,0 100,100"/></svg>');
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
    padding-bottom: 15px;
}

/* .footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
} */

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 8px;
    transition: var(--transition);
}

.footer-stat:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-5px);
}

.footer-stat i {
    color: #ffd700;
    font-size: 1.1rem;
}

.footer-stat span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px) rotate(5deg);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
    transition: var(--transition);
}

.footer-links li:hover {
    transform: translateX(-10px);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: #ffd700;
}

.contact-info-footer {
    margin-bottom: 25px;
}

.contact-info-footer p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1rem;
}

.contact-info-footer i {
    color: #ffd700;
    width: 20px;
}

.footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.footer-social-icons a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social-icons a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
}

.final-stats {
    margin-top: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 8px;
    display: inline-block;
}

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.floating-whatsapp a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background: #25d366;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    text-decoration: none;
    position: relative;
}

.floating-whatsapp a::after {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid #25d366;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.floating-whatsapp a:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

::-webkit-scrollbar {
    width: 0.88rem;
}

::-webkit-scrollbar-track {
    border: 7px solid #292c3b;
    box-shadow: inset 0 0 2.5px 2px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    background-color: #d4d4d8;
}

::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

html {
    scrollbar-color: #9e4673 #3d4a59;
}

::selection {
    background: var(--primary);
    color: white;
}

@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }

    .hero-slider {
        height: 90vh;
    }

    .slide-content h1 {
        font-size: 5rem;
    }

    .section-title h2 {
        font-size: 4rem;
    }
}

@media (max-width: 1400px) {
    .nav-container {
        padding: 0 30px;
    }

    .nav-links {
        gap: 25px;
    }

    .hero-slider {
        height: 85vh;
    }

    .slide-content h1 {
        font-size: 4rem;
    }

    .services-grid,
    .packages-grid,
    .destinations-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

@media (max-width: 1200px) {
    .section-title h2 {
        font-size: 2.8rem;
    }

    .slide-content h1 {
        font-size: 3.5rem;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 1rem;
        padding: 10px 6px;
    }

    .logo-image {
        height: 65px;
    }

    .logo-text h1 {
        font-size: 1.6rem;
    }

    .hero-slider {
        margin-top: 110px;
        height: 80vh;
    }

    .contact-grid,
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .packages-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

@media (max-width: 1100px) {
    .nav-links {
        gap: 15px;
    }

    .nav-links a span {
        display: none;
    }

    .nav-links a i {
        font-size: 1.3rem;
        margin: 0;
        transition: transform 0.3s ease;
    }

    .nav-links a:hover i {
        transform: scale(1.2);
    }

    .whatsapp-btn span {
        display: none;
    }

    .whatsapp-btn {
        padding: 12px 15px;
        border-radius: 15px;
    }

    .whatsapp-btn i {
        font-size: 1.4rem;
    }

    .logo-text h1 {
        font-size: 1.4rem;
    }

    .logo-text p {
        font-size: 0.9rem;
    }

    .slide-content h1 {
        font-size: 3rem;
    }

    .slide-content p {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 16px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .nav-container {
        padding: 0 25px;
        height: 90px;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        background: var(--gradient);
        border-radius: 15px;
        font-size: 1.8rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 5px 20px rgba(27, 96, 141, 0.2);
    }

    .mobile-menu-btn:hover {
        transform: rotate(90deg);
        box-shadow: 0 8px 25px rgba(27, 96, 141, 0.3);
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 90px;
        right: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 25px 25px;
        padding: 30px;
        flex-direction: column;
        z-index: 999;
        gap: 15px;
        max-height: calc(100vh - 90px);
        overflow-y: auto;
        animation: slideDown 0.4s ease forwards;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        animation: fadeInUp 0.5s ease forwards;
        opacity: 0;
        transform: translateY(20px);
    }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-links li:nth-child(1) {
        animation-delay: 0.1s;
    }

    .nav-links li:nth-child(2) {
        animation-delay: 0.2s;
    }

    .nav-links li:nth-child(3) {
        animation-delay: 0.3s;
    }

    .nav-links li:nth-child(4) {
        animation-delay: 0.4s;
    }

    .nav-links li:nth-child(5) {
        animation-delay: 0.5s;
    }

    .nav-links li:nth-child(6) {
        animation-delay: 0.6s;
    }

    .nav-links li:nth-child(7) {
        animation-delay: 0.7s;
    }

    .nav-links li:nth-child(8) {
        animation-delay: 0.8s;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 18px 25px;
        justify-content: flex-end;
        border-radius: 12px;
        background: rgba(27, 96, 141, 0.05);
        transition: all 0.3s ease;
        border: 1px solid transparent;
    }

    .nav-links a:hover {
        background: rgba(27, 96, 141, 0.1);
        border-color: rgba(27, 96, 141, 0.2);
        transform: translateX(-10px);
    }

    .nav-links a span {
        display: inline;
        font-weight: 600;
    }

    .logo-image {
        height: 55px;
    }

    .hero-slider {
        margin-top: 90px;
        height: 75vh;
    }

    .slide-content h1 {
        font-size: 2.8rem;
        line-height: 1.2;
    }

    .slide-content p {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .slide-badge {
        font-size: 0.9rem;
        padding: 10px 20px;
        backdrop-filter: blur(15px);
    }

    .cta-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 0.95rem;
        flex: 1;
        min-width: 200px;
    }

    .services-grid,
    .packages-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }

    .destinations-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .booking-form-container {
        padding: 35px;
        border-radius: 20px;
    }

    section {
        padding: 80px 0;
    }

    .section-title {
        margin-bottom: 50px;
    }

    .section-title h2 {
        font-size: 2.5rem;
    }

    .section-title p {
        font-size: 1.1rem;
        max-width: 600px;
    }

    .service-card,
    .package-card,
    .destination-card,
    .testimonial-card {
        border-radius: 20px;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-text {
        font-size: 1.1rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 0.95rem;
    }

    .container {
        padding: 0 25px;
    }

    .nav-container {
        padding: 0 20px;
        height: 85px;
    }

    .logo-image {
        height: 50px;
    }

    .logo-text h1 {
        font-size: 1.2rem;
    }

    .logo-text p {
        font-size: 0.8rem;
    }

    .whatsapp-btn {
        padding: 12px;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu-btn {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }

    .hero-slider {
        height: 70vh;
        margin-top: 85px;
    }

    .slide-content {
        padding: 0 30px;
    }

    .slide-content h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .slide-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .slide-quote {
        font-size: 0.9rem;
        margin-top: 15px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-button {
        width: 100%;
        padding: 16px 25px;
        font-size: 0.95rem;
    }

    section {
        padding: 70px 0;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .section-title p {
        font-size: 1rem;
    }

    .services-grid,
    .packages-grid,
    .destinations-grid,
    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .contact-grid {
        gap: 35px;
    }

    .about-image img {
        height: 350px;
        border-radius: 20px;
    }

    .service-card,
    .package-card,
    .destination-card,
    .testimonial-card {
        padding: 25px;
    }

    .service-content,
    .package-features {
        padding: 25px;
    }

    .package-header {
        padding: 30px 25px;
    }

    .contact-item {
        padding: 25px;
    }

    .contact-form {
        padding: 30px;
        border-radius: 20px;
    }

    .booking-form-container {
        padding: 30px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-column {
        text-align: center;
    }

    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .footer-links li {
        width: auto;
    }

    .footer-links li:hover {
        transform: translateY(-5px);
    }

    .footer-links a {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .stat-text {
        font-size: 1rem;
    }

    .floating-whatsapp {
        bottom: 25px;
        left: 25px;
    }

    .floating-whatsapp a {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .nav-container {
        padding: 0 15px;
        height: 80px;
    }

    .logo-image {
        height: 45px;
    }

    .logo-text h1 {
        font-size: 1.1rem;
    }

    .logo-text p {
        font-size: 0.75rem;
    }

    .mobile-menu-btn {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        padding: 10px;
    }

    .hero-slider {
        height: 65vh;
        margin-top: 80px;
    }

    .slide-content {
        padding: 0 20px;
    }

    .slide-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .slide-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .slide-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
        margin-bottom: 20px;
    }

    .slide-quote {
        font-size: 0.85rem;
        padding-right: 10px;
    }

    .cta-button {
        padding: 14px 20px;
        font-size: 0.9rem;
    }

    .cta-button i {
        font-size: 0.9rem;
    }

    section {
        padding: 60px 0;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .section-title p {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .services-grid,
    .packages-grid {
        gap: 20px;
    }

    .destinations-grid {
        gap: 15px;
    }

    .service-card,
    .package-card,
    .destination-card,
    .testimonial-card {
        padding: 20px;
        border-radius: 15px;
    }

    .service-content,
    .package-features {
        padding: 20px;
    }

    .package-header {
        padding: 25px 20px;
    }

    .package-features li {
        padding: 10px 0;
        font-size: 1rem;
    }

    .package-button {
        margin: 0 20px 25px;
        padding: 15px;
        font-size: 1rem;
    }

    .contact-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .contact-details h3 {
        font-size: 1.2rem;
    }

    .contact-details p {
        font-size: 1rem;
    }

    .booking-form-container,
    .contact-form {
        padding: 25px;
        border-radius: 15px;
    }

    .booking-form input,
    .booking-form select,
    .booking-form textarea,
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 15px;
        font-size: 1rem;
    }

    .booking-submit-btn,
    .submit-btn {
        padding: 16px 20px;
        font-size: 1.1rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item {
        padding: 20px;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-text {
        font-size: 0.9rem;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-column h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .footer-stats {
        gap: 10px;
    }

    .footer-stat {
        padding: 10px 15px;
    }

    .copyright {
        padding-top: 30px;
    }

    .copyright p {
        font-size: 0.85rem;
    }

    .final-stats {
        font-size: 0.8rem;
        padding: 8px 12px;
        margin-top: 8px;
    }

    .floating-whatsapp {
        bottom: 20px;
        left: 20px;
    }

    .floating-whatsapp a {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-slider {
        height: 60vh;
    }

    .slide-content h1 {
        font-size: 1.6rem;
    }

    .slide-content p {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 12px 18px;
        font-size: 0.85rem;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }

    .services-grid,
    .packages-grid {
        gap: 15px;
    }

    .package-stats {
        flex-direction: column;
        gap: 10px;
    }

    .company-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }

    .company-stat {
        padding: 15px;
    }

    .company-stat-number {
        font-size: 2rem;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .feature-text h4 {
        font-size: 1.1rem;
    }

    .feature-text p {
        font-size: 0.8rem;
    }
}

@media (max-width: 375px) {
    .nav-container {
        padding: 0 10px;
    }

    .logo-image {
        height: 40px;
    }

    .logo-text h1 {
        font-size: 1rem;
    }

    .mobile-menu-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .whatsapp-btn {
        width: 45px;
        height: 45px;
    }

    .hero-slider {
        height: 55vh;
    }

    .slide-content h1 {
        font-size: 1.4rem;
    }

    .slide-content p {
        font-size: 0.85rem;
    }

    .section-title h2 {
        font-size: 1.4rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .package-header {
        padding: 20px 15px;
    }

    .package-title {
        font-size: 1.5rem;
    }

    .package-price {
        font-size: 2rem;
    }
}

@media (max-width: 992px) and (orientation: landscape) {
    .hero-slider {
        height: 100vh;
    }

    .slide-content {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .cta-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .cta-button {
        flex: 0 0 calc(50% - 10px);
    }

    .nav-links {
        max-height: 60vh;
    }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .logo-image {
        filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.15));
    }

    .nav-links a,
    .whatsapp-btn,
    .cta-button {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

@media print {

    .floating-whatsapp,
    .mobile-menu-btn,
    .whatsapp-btn,
    .booking-submit-btn,
    .submit-btn {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
        font-size: 12pt;
    }

    .nav-links {
        display: none;
    }

    .hero-slider {
        height: auto;
    }

    .slide-overlay {
        opacity: 0.3;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .nav-links li {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}













/* سكشن العروض الحصرية */
.offers-section {
    background: linear-gradient(135deg, #f1f8ff, #e6f7ff);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.offers-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none" opacity="0.03"><path d="M0,0 L100,0 L100,100" fill="%231b608d"/></svg>');
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.offer-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid #f1f5f9;
}

.offer-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.offer-image-container {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.offer-image-container img {


    height: 100%;
    width: 100%;
    object-fit: cover;


}

.offer-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.offer-card:hover .offer-image {
    transform: scale(1.1);
}

.offer-badge {
    position: absolute;
    top: 8px;
    right: 5px;
    background: var(--gradient-green);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.offer-content {
    padding: 30px;
    text-align: right;
}

.offer-content h3 {
    font-size: 1.6rem;
    color: var(--secondary);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.offer-content h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.offer-content p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.offer-details {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 10px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.offer-details span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
}

.offer-details i {
    color: var(--success);
}

.offer-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    width: 100%;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.offer-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: 0.5s;
}

.offer-button:hover::before {
    left: 100%;
}

.offer-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.offers-cta {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
    margin-top: 30px;
}

.offers-cta p {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 25px;
    font-weight: 600;
}

.offers-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(27, 96, 141, 0.2);
}

.offers-whatsapp-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(27, 96, 141, 0.3);
}

/* استجابية سكشن العروض */
@media (max-width: 1200px) {
    .offers-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .offers-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }

    .offer-content {
        padding: 25px;
    }

    .offers-cta {
        padding: 30px;
    }

    .offers-cta p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .offer-image-container {
        height: 220px;
    }

    .offer-content h3 {
        font-size: 1.4rem;
    }

    .offer-content p {
        font-size: 1rem;
    }

    .offer-details {
        flex-direction: column;
        gap: 10px;
    }

    .offers-cta {
        padding: 25px;
    }

    .offers-cta p {
        font-size: 1.1rem;
    }

    .offers-whatsapp-btn {
        padding: 16px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .offers-section {
        padding: 70px 0;
    }

    .offer-card {
        border-radius: 20px;
    }

    .offer-image-container {
        height: 200px;
    }

    .offer-content {
        padding: 20px;
    }

    .offer-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .offers-cta {
        padding: 20px;
        border-radius: 20px;
    }

    .offers-cta p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .offers-whatsapp-btn {
        padding: 14px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 375px) {
    .offer-image-container {
        height: 180px;
    }

    .offer-content h3 {
        font-size: 1.3rem;
    }

    .offer-content p {
        font-size: 0.95rem;
    }

    .offers-whatsapp-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}