/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e3a5f;
    --primary-mid: #2c5282;
    --primary-light: #3d5a80;
    --dark-color: #0a1628;
    --dark-secondary: #152642;
    --navy-deep: #050d18;
    --light-color: #e8eef7;
    --white: #FFFFFF;
    --text-color: #2d3748;
    --border-color: #dce4f0;
    --shadow: 0 10px 30px rgba(10, 22, 40, 0.12);
    --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.18);
    --hero-blend: #eef2f9;
    --hero-blend-soft: #f6f8fc;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    font-size: 1rem;
    color: #666;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--dark-color) 45%, var(--dark-secondary) 100%);
    box-shadow: var(--shadow);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
}

a.logo {
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 1rem 1.25rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    max-width: 920px;
}

.nav-menu a {
    color: var(--white);
    font-weight: 600;
    position: relative;
    font-size: 0.9rem;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--light-color), var(--white));
}

.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: calc(100vh - 80px);
    min-height: calc(100dvh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    margin-top: 80px;
    padding: 3rem 0 5rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background:
        linear-gradient(
            to bottom,
            rgba(5, 13, 24, 0) 0%,
            rgba(5, 13, 24, 0) 38%,
            rgba(10, 22, 40, 0.45) 62%,
            rgba(238, 242, 249, 0.88) 88%,
            var(--hero-blend) 100%
        ),
        linear-gradient(135deg, rgba(5, 13, 24, 0.88), rgba(10, 22, 40, 0.82), rgba(21, 38, 66, 0.76));
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 42rem;
    width: 100%;
    padding: 0 1.25rem;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 1rem;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
    letter-spacing: -0.02em;
}

.hero h2 {
    font-size: clamp(1.15rem, 2.2vw, 2rem);
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    line-height: 1.45;
}

.hero p {
    font-size: clamp(0.95rem, 1.35vw, 1.15rem);
    margin: 0 auto 2rem;
    max-width: 38rem;
    color: rgba(232, 238, 247, 0.92);
    line-height: 1.85;
}

.hero-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 36rem;
    margin: 0 auto;
}

/* أزرار الـ hero: نفس العائلة البصرية (كحلي + حواف بيضاء شفافة) */
.hero .hero-buttons .btn {
    border-radius: 10px;
    padding: 0.85rem 1.5rem;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero .hero-buttons .btn-primary {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.hero .hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(6px);
}

.hero .hero-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.65);
    color: var(--white);
}

.hero .hero-buttons .btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.42);
    background: transparent;
    color: var(--white);
}

.hero .hero-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.65);
    color: var(--white);
}

.scroll-indicator {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.45);
    z-index: 3;
    animation: bounce 2s infinite;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--dark-secondary), var(--primary-color), var(--primary-mid));
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(10, 22, 40, 0.35);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--dark-color);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--light-color);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.65);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* ===== Sections ===== */
.section {
    padding: 80px 0;
}

.section-dark {
    background: linear-gradient(160deg, var(--navy-deep) 0%, var(--dark-color) 40%, var(--dark-secondary) 100%);
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

.section-dark .section-header p {
    color: var(--light-color);
}

/* أول قسم بعد الـ hero: يكمل التدرج بسلاسة */
.section.section-first {
    padding-top: 2.75rem;
    padding-bottom: 5rem;
    background: linear-gradient(180deg, var(--hero-blend) 0%, var(--hero-blend-soft) 18%, var(--white) 45%);
    margin-top: -2px;
}

.section.section-first .section-header {
    margin-bottom: 3rem;
}

.section.section-first .section-header h2 {
    color: var(--dark-color);
}

.section.section-first .section-header p {
    color: #4a5568;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

.section-header-cta {
    margin-top: 1.5rem;
}

/* ===== Services Grid ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: linear-gradient(145deg, var(--white) 0%, var(--light-color) 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.service-card p {
    color: #666;
}

/* ===== Two Column Section ===== */
.section-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.section-two-col.reverse {
    direction: ltr;
}

.section-text h2 {
    margin-bottom: 1.5rem;
}

.section-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.section-image {
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.section-image.large {
    height: 500px;
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
}

.features-list li {
    padding: 0.5rem 0;
    padding-right: 1.5rem;
    position: relative;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--primary-mid);
    font-weight: bold;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.feature-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===== Statistics Section ===== */
.stats-section {
    background: linear-gradient(135deg, var(--dark-color), var(--dark-secondary));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-card {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--light-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--light-color);
}

/* ===== Destinations Grid ===== */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.destination-card {
    background: linear-gradient(135deg, var(--dark-secondary), var(--primary-color));
    color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.destination-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 28px rgba(10, 22, 40, 0.35);
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--navy-deep), var(--dark-color), var(--primary-color));
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--light-color);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Page Header ===== */
.page-header {
    background: linear-gradient(145deg, var(--navy-deep) 0%, var(--dark-color) 35%, var(--dark-secondary) 70%, var(--primary-color) 100%);
    color: var(--white);
    padding: 100px 20px 50px;
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    margin-bottom: 0.5rem;
}

.page-header p {
    color: var(--light-color);
    font-size: 1.2rem;
}

/* رأس الصفحة مع صورة خلفية */
.page-header.page-header-visual {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: linear-gradient(145deg, var(--navy-deep) 0%, var(--dark-color) 50%, var(--dark-secondary) 100%);
}

.page-header.page-header-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--header-bg);
    background-size: cover;
    background-position: center;
    opacity: 0.38;
    z-index: 0;
}

.page-header.page-header-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 13, 24, 0.65) 0%, rgba(10, 22, 40, 0.9) 100%);
    z-index: 1;
}

.page-header.page-header-visual h1,
.page-header.page-header-visual p {
    position: relative;
    z-index: 2;
}

.page-header.page-header-visual h1 {
    animation: headerTitleIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    opacity: 0;
}

.page-header.page-header-visual p {
    animation: headerTitleIn 0.75s 0.12s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    opacity: 0;
}

@keyframes headerTitleIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* صورة عرض واسعة داخل الصفحة */
.page-showcase {
    margin: 0 auto 2.5rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    line-height: 0;
}

.page-showcase img {
    width: 100%;
    height: auto;
    max-height: min(420px, 55vw);
    object-fit: cover;
    display: block;
}

.page-showcase--tall img {
    max-height: min(480px, 60vw);
}

/* صورتان جنباً */
.media-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.media-duo figure {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
    line-height: 0;
}

.media-duo img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* ظهور عند التمرير */
.reveal-once,
.service-card,
.value-card,
.achievement-card,
.detail-card,
.hub-card,
.destination-card,
.employment-spotlight,
.page-showcase,
.faq-card,
.contact-info-card,
.vision-box,
.mission-box,
.section-image,
.media-duo,
.stat-card,
.section.section-dark.reveal-once,
.section-text {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-once.is-visible,
.service-card.is-visible,
.value-card.is-visible,
.achievement-card.is-visible,
.detail-card.is-visible,
.hub-card.is-visible,
.destination-card.is-visible,
.employment-spotlight.is-visible,
.page-showcase.is-visible,
.faq-card.is-visible,
.contact-info-card.is-visible,
.vision-box.is-visible,
.mission-box.is-visible,
.section-image.is-visible,
.media-duo.is-visible,
.stat-card.is-visible,
.section.section-dark.reveal-once.is-visible,
.section-text.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.4s; }
.reveal-stagger > *:nth-child(7) { transition-delay: 0.48s; }
.reveal-stagger > *:nth-child(8) { transition-delay: 0.56s; }
.reveal-stagger > *:nth-child(9) { transition-delay: 0.64s; }

/* بطاقات الملخص مع صورة */
.hub-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    background: linear-gradient(145deg, var(--white), var(--light-color));
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
    text-decoration: none;
    color: inherit;
}

.hub-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.hub-card-body h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.hub-card-body p {
    margin: 0;
    font-size: 0.95rem;
}

.hub-card-body .hub-arrow {
    display: inline-block;
    margin-top: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

.hub-card-visual {
    height: 150px;
    overflow: hidden;
    line-height: 0;
}

.hub-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.hub-card:hover .hub-card-visual img {
    transform: scale(1.06);
}

.hub-card-body {
    padding: 1.35rem 1.75rem 1.75rem;
}

.services-hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0 3rem;
}

@media (max-width: 640px) {
    .media-duo {
        grid-template-columns: 1fr;
    }

    .media-duo img {
        height: 200px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal-once,
    .service-card,
    .value-card,
    .achievement-card,
    .detail-card,
    .hub-card,
    .destination-card,
    .employment-spotlight,
    .page-showcase,
    .faq-card,
    .contact-info-card,
    .vision-box,
    .mission-box,
    .section-image,
    .media-duo,
    .stat-card,
    .section.section-dark.reveal-once,
    .section-text {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .reveal-stagger > * {
        transition-delay: 0s !important;
    }

    .page-header.page-header-visual h1,
    .page-header.page-header-visual p {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .hub-card:hover .hub-card-visual img {
        transform: none;
    }
}

/* ===== Services Page ===== */
.service-nav {
    background-color: var(--white);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 80px;
    z-index: 100;
}

.service-nav .container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.service-btn {
    background: none;
    border: 2px solid var(--border-color);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    color: var(--text-color);
}

.service-btn:hover,
.service-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.service-content {
    padding: 3rem 0;
}

.service-item {
    display: none;
}

.service-item.active {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

.service-header {
    text-align: center;
    margin-bottom: 3rem;
}

.service-header h2 {
    margin-bottom: 1rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-feature {
    background: linear-gradient(135deg, var(--light-color), var(--white));
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: var(--dark-color);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.products-section,
.destinations-section {
    margin-top: 3rem;
}

.products-section h3,
.destinations-section h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.products-grid,
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.product-box,
.destination-box {
    background: linear-gradient(135deg, var(--dark-secondary), var(--primary-color));
    color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-box:hover,
.destination-box:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 28px rgba(10, 22, 40, 0.35);
}

/* ===== About Page ===== */
.about-section {
    padding: 3rem 0;
}

.about-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.about-intro h2 {
    margin-bottom: 1rem;
}

.about-intro p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.vision-box,
.mission-box {
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.vision-box {
    background: linear-gradient(135deg, var(--light-color), var(--white));
}

.mission-box {
    background: linear-gradient(135deg, var(--dark-color), var(--dark-secondary));
    color: var(--white);
}

.vision-box h3,
.mission-box h3 {
    margin-bottom: 1rem;
}

.values-section {
    margin-bottom: 3rem;
}

.values-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: linear-gradient(135deg, var(--light-color), var(--white));
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.achievements-section {
    background: linear-gradient(135deg, var(--dark-color), var(--dark-secondary));
    color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.achievements-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    text-align: center;
}

.achievement-card {
    padding: 1.5rem;
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.achievement-label {
    font-size: 1rem;
    color: var(--light-color);
}

.why-choose-section {
    background: linear-gradient(135deg, var(--light-color), var(--white));
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.why-choose-section h2 {
    margin-bottom: 2rem;
    text-align: center;
}

.why-choose-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.why-choose-list li {
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

/* ===== Contact Page ===== */
.contact-info-section {
    padding: 3rem 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--light-color), var(--white));
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info-card h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.contact-info-card p {
    color: #666;
}

.contact-info-card a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-form-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem 0;
}

.form-wrapper {
    background: linear-gradient(135deg, var(--light-color), var(--white));
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.form-wrapper h2 {
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-mid);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.15);
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background-color: #D1FAE5;
    color: #065F46;
    border: 1px solid #6EE7B7;
}

.form-message.error {
    display: block;
    background-color: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FCA5A5;
}

.additional-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.additional-info h2 {
    margin-bottom: 1rem;
}

.info-box {
    background: linear-gradient(135deg, var(--dark-color), var(--dark-secondary));
    color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.info-box h3 {
    margin-bottom: 0.5rem;
}

.info-box p {
    color: var(--light-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.info-box ul {
    list-style: none;
    margin-top: 1rem;
}

.info-box ul li {
    padding: 0.5rem 0;
}

.info-box ul a {
    color: var(--light-color);
}

.info-box ul a:hover {
    color: var(--primary-color);
}

.faq-section {
    padding: 3rem 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.faq-card {
    background: linear-gradient(135deg, var(--light-color), var(--white));
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.faq-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.faq-card p {
    color: #666;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    padding: 0.5rem 0;
}

.footer-col a {
    color: var(--light-color);
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-color);
}

/* ===== Compact Footer ===== */
.footer-compact {
    padding: 1rem 0;
}

.footer-compact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

.footer-compact-text {
    color: var(--light-color);
}

.footer-compact-text p {
    margin: 0;
}

.footer-compact-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-compact-links a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-compact-links a:hover {
    color: var(--primary-color);
}

.footer-compact-links span {
    color: rgba(255, 255, 255, 0.3);
}

/* ===== Footer Social Links ===== */
.footer-social-links {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    justify-content: center;
}

.footer-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
    color: var(--light-color);
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    font-size: 1.1rem;
    text-decoration: none;
}

.footer-social-links a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-mid));
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(30, 58, 95, 0.35);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in-delay {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.fade-in-delay-2 {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* ===== Utility Classes ===== */
.text-center {
    text-align: center;
}

/* ===== Dedicated service pages ===== */
.page-intro-block {
    max-width: 860px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.page-intro-block .lead {
    font-size: 1.12rem;
    line-height: 1.95;
    color: var(--text-color);
}

.section-dark .page-intro-block .lead {
    color: var(--light-color);
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.detail-card {
    background: linear-gradient(145deg, var(--white), var(--light-color));
    padding: 1.75rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.detail-card h3 {
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.detail-card p {
    margin: 0;
    line-height: 1.75;
}

.section-dark .detail-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.section-dark .detail-card h3 {
    color: var(--white);
}

.section-dark .detail-card p {
    color: var(--light-color);
}

.employment-spotlight {
    background: linear-gradient(160deg, var(--white) 0%, var(--light-color) 50%, var(--white) 100%);
    border: 2px solid var(--dark-secondary);
    border-radius: 16px;
    padding: 2.75rem 2rem;
    text-align: center;
    margin: 2.5rem 0;
    box-shadow: var(--shadow-lg);
}

.employment-spotlight h2 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.employment-spotlight p {
    max-width: 640px;
    margin: 0 auto 1.5rem;
    font-size: 1.05rem;
    line-height: 1.85;
}

.btn-cta-lg {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
}

.bullet-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.bullet-list li {
    padding: 0.4rem 1.5rem 0.4rem 0;
    position: relative;
    line-height: 1.7;
}

.bullet-list li::before {
    content: '◆';
    position: absolute;
    right: 0;
    color: var(--primary-mid);
    font-size: 0.65rem;
    top: 0.55rem;
}


/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        right: 0;
        background-color: var(--dark-secondary);
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        min-height: calc(100svh - 60px);
        height: auto;
        margin-top: 60px;
        padding: 3.5rem 0 4.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1.3rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 22rem;
    }

    .btn {
        width: 100%;
    }

    .section-two-col {
        grid-template-columns: 1fr;
    }

    .section-image {
        height: 300px;
    }

    .section-image.large {
        height: 400px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .vision-mission {
        grid-template-columns: 1fr;
    }

    .contact-form-section {
        grid-template-columns: 1fr;
    }

    .service-nav .container {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
    }

    .service-btn {
        white-space: nowrap;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .hero {
        min-height: calc(100svh - 56px);
        padding: 3rem 0 4rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero h2 {
        font-size: 1rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .section.section-first {
        padding-top: 2rem;
        padding-bottom: 3rem;
    }

    .section {
        padding: 40px 0;
    }

    .services-grid,
    .values-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .page-header {
        padding: 80px 20px 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}
@keyframes slideUp {
    from {
        opacity:0;
        transform:translateY(60px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes slideRight {
    from{
        opacity:0;
        transform:translateX(-80px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes slideLeft {
    from{
        opacity:0;
        transform:translateX(80px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes zoomIn{
    from{
        opacity:0;
        transform:scale(.8);
    }
    to{
        opacity:1;
        transform:scale(1);
    }
}

/* حركة عائمة */
@keyframes floating{
    0%,100%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-12px);
    }
}

/* نبض للأزرار */
@keyframes pulse{
    0%{
        box-shadow:0 0 0 0 rgba(255,255,255,.4);
    }

    70%{
        box-shadow:0 0 0 15px rgba(255,255,255,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(255,255,255,0);
    }
}

/* لمعان */
@keyframes shine {
    from{
        left:-100%;
    }
    to{
        left:100%;
    }
}

/* حركة للخلفية */
@keyframes backgroundMove{
    0%{
        background-position:0% 50%;
    }
    50%{
        background-position:100% 50%;
    }
    100%{
        background-position:0% 50%;
    }
}

/* Hero Animation */

.hero-content{
    animation:
    slideUp 1.2s ease;
}

.hero-background{
    animation: backgroundMove 20s infinite linear;
    background-size:120%;
}

/* عناصر الصفحة */

.section-header{
    animation:slideUp 1s ease;
}

.section-image{
    animation:zoomIn 1.3s ease;
}

/* بطاقات الخدمات */

.service-card,
.value-card,
.contact-info-card,
.faq-card,
.detail-card,
.destination-card,
.hub-card{

    animation:slideUp .8s ease;
}

.service-card:hover,
.value-card:hover,
.contact-info-card:hover,
.detail-card:hover,
.destination-card:hover,
.hub-card:hover{

    transform:
    translateY(-15px)
    scale(1.04);

}

/* الأيقونات */

.service-icon,
.value-icon,
.contact-icon{

    animation:floating 3s ease infinite;
}


/* أزرار */

.btn-primary{
    animation:pulse 2s infinite;
}

.btn:hover{

transform:
translateY(-5px)
scale(1.05);

}


/* لمعان البطاقات */

.service-card,
.value-card,
.hub-card{

position:relative;
overflow:hidden;

}

.service-card::before,
.value-card::before,
.hub-card::before{

content:"";
position:absolute;

top:0;
left:-100%;

width:60%;
height:100%;

background:

linear-gradient(
90deg,
transparent,
rgba(255,255,255,.4),
transparent
);

transform:skewX(-25deg);

}

.service-card:hover::before,
.value-card:hover::before,
.hub-card:hover::before{

animation:shine .8s;
}


/* إحصائيات */

.stat-card{

animation:floating 4s ease infinite;

}

.stat-number{

animation:pulse 2.5s infinite;

}


/* القائمة */

.nav-menu a{

transition:all .4s ease;

}

.nav-menu a:hover{

transform:translateY(-3px);

}


/* صور الصفحة */

.page-showcase img,
.media-duo img{

transition:all .7s ease;

}

.page-showcase:hover img,
.media-duo:hover img{

transform:scale(1.08);

}


/* Scroll */

html{

scroll-behavior:smooth;

}


/* تأخير للعناصر */

.services-grid .service-card:nth-child(1){
animation-delay:.2s;
}

.services-grid .service-card:nth-child(2){
animation-delay:.4s;
}

.services-grid .service-card:nth-child(3){
animation-delay:.6s;
}

.services-grid .service-card:nth-child(4){
animation-delay:.8s;
}

.services-grid .service-card:nth-child(5){
animation-delay:1s;
}

.services-grid .service-card:nth-child(6){
animation-delay:1.2s;
}
