@import url('https://fonts.googleapis.com/css2?family=Anta&family=Cairo:wght@200..1000&display=swap');

/* Color Variables - brand palette (yellow + blue from logo) */
:root {
    /* Brand Colors */
    --brand-yellow: #F8E600;
    --brand-yellow-dark: #e0cf00;
    --brand-yellow-light: #fff58a;

    --brand-blue: #2B53A7;
    --brand-blue-dark: #214082;
    --brand-blue-light: #4c6fcc;

    /* Primary = blue (2B53A7), yellow as accent */
    --primary-color: var(--brand-blue);
    --primary-light: var(--brand-blue-light);
    --primary-dark: var(--brand-blue-dark);
    --primary-gradient-start: var(--brand-blue);
    --primary-gradient-end:   var(--brand-yellow);

    /* Text Colors */
    --text-dark: #111827;
    --text-medium: #1f2937;
    --text-light: #6b7280;
    --text-lighter: #9ca3af;

    /* Background Colors */
    --bg-light: #f3f4f6;
    --bg-card: #f9fafb;
    --bg-white: #ffffff;

    /* Neutral Colors */
    --white: #ffffff;
    --black: #020617;
    --border-light: rgba(148, 163, 184, 0.4);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.12);
    --shadow-lg: 0 8px 32px rgba(15, 23, 42, 0.16);
    --shadow-primary: 0 4px 20px rgba(43, 83, 167, 0.25);

    /* Hover accent (use blue mainly) */
    --primary-hover: var(--brand-blue);
    --accent-bright: var(--brand-blue);
}

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

body {
    font-family: 'Playfair Display', serif;

    background-color: var(--bg-light);
    color: var(--text-dark);
    padding: 0;
    direction: ltr;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

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

/* Scroll progress bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(15, 23, 42, 0.18);
    z-index: 2000;
    pointer-events: none;
}

.scroll-progress-bar {
    width: 0;
    height: 100%;
    background: var(--brand-blue-light);
    box-shadow: 0 0 8px var(--brand-blue-light);
    transition: width 0.15s ease-out;
}

/* Generic page hero banner */
.page-hero {
    position: relative;
    padding: 80px 0 70px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.9));
    color: #fff;
    overflow: hidden;
    margin-top: 72px; /* below fixed navbar */
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55);
    transform: scale(1.02);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(248, 230, 0, 0.18), transparent 55%),
                radial-gradient(circle at bottom right, rgba(43, 83, 167, 0.4), transparent 55%);
    mix-blend-mode: soft-light;
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.page-hero-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.page-hero-subtitle {
    font-size: 1.02rem;
    color: rgba(226, 232, 240, 0.9);
    max-width: 620px;
    margin-bottom: 1.5rem;
}

.page-hero-cta {
    padding-inline: 1.6rem;
    padding-block: 0.7rem;
    border-radius: 999px;
    font-weight: 600;
}

/* Brand brown buttons utility (use in Trip Planner, etc.) */
.btn-brand {
    background-color: var(--brand-brown);
    border-color: var(--brand-brown);
    color: #fff;
}

.btn-brand:hover {
    background-color: var(--brand-brown-dark);
    border-color: var(--brand-brown-dark);
    color: #fff;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 70px 0 60px;
        margin-top: 64px;
    }
    .page-hero-title {
        font-size: 1.9rem;
    }
    .page-hero-subtitle {
        font-size: 0.96rem;
    }
}

/* Navigation Bar - يُتحكم به من "Updated Navbar" (شفاف ثم ملون عند السكرول) */

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c2c2c;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

/* Navbar social icons (right side) */
.navbar-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 12px;
}

.navbar-social-link {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e5e7eb;
    color: var(--text-medium);
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.navbar-social-link:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    left: 0;
    height: 2px;
    background: var(--primary-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* فوق الهيرو النافبار شفاف فالنص والأيقونات بيضاء */
.navbar:not(.scrolled) .nav-toggle span {
    background: rgba(255, 255, 255, 0.95);
}

/* Top Bar */
.top-bar {
    background: var(--black);
    padding: 10px 0;
    font-size: 14px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    transition: transform 0.35s ease;
}

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

.top-bar-left {
    display: flex;
    gap: 25px;
}

.top-bar-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.top-bar-link:hover {
    color: var(--accent-bright);
}

.top-bar-icon {
    font-size: 16px;
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-social-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.top-bar-social-link:hover {
    color: var(--accent-bright);
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.15);
}

.top-bar-social-link i {
    font-size: 1rem;
}

/* Announcement strip above fixed navbar — infinite horizontal marquee */
:root {
    --announcement-bar-height: 42px;
    --announcement-marquee-duration: 60s;
}

.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1031;
    height: var(--announcement-bar-height);
    background-color: #f9e600;
    color: #8b7138;
    border-bottom: 2px solid #2d3748;
    box-sizing: border-box;
    overflow: hidden;
}

.announcement-bar__mask {
    height: 100%;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.announcement-bar__track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: announcement-marquee-move linear infinite;
    animation-duration: var(--announcement-marquee-duration, 60s);
}

.announcement-bar:hover .announcement-bar__track {
    animation-play-state: paused;
}

.announcement-bar__loop {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding-right: 2rem;
}

.announcement-bar__text {
    margin: 0;
    font-weight: 700;
    font-size: clamp(0.8125rem, 2.2vw, 1rem);
    line-height: 1.25;
    color: #8b7138;
    white-space: nowrap;
}

@keyframes announcement-marquee-move {
    0% {
        transform: translateX(100vw);
    }
    100% {
        transform: translateX(-100%);
    }
}

body.has-announcement-bar .main-navbar.fixed-top {
    top: var(--announcement-bar-height);
}

@media (prefers-reduced-motion: reduce) {
    .announcement-bar__track {
        animation: none;
        transform: none;
        margin: 0 auto;
    }

    .announcement-bar__mask {
        justify-content: center;
    }

    .announcement-bar__loop {
        padding-right: 0;
        justify-content: center;
    }

    .announcement-bar__text {
        text-align: center;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

/* Bootstrap navbar theming */
.navbar.bg-body-tertiary {
    /* background-color: rgba(255, 255, 255, 0.96) !important; */
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    border-bottom: 1px solid rgba(43, 83, 167, 0.12);
    z-index: 1030 !important;
}

.navbar.bg-body-tertiary .navbar-brand {
    font-weight: 700;
    letter-spacing: 0.4px;
    color: var(--text-dark);
}

.brand-logo-img {
    height: 75px;
    width: auto;
}

.navbar.bg-body-tertiary .navbar-nav .nav-link {
    color: #1f2937;
    font-weight: 500;
    padding: 0.75rem 1rem;
    transition: color 0.2s ease;
    border-radius: 10px;
}

.navbar.bg-body-tertiary .navbar-nav .nav-link:hover,
.navbar.bg-body-tertiary .navbar-nav .nav-link:focus,
.navbar.bg-body-tertiary .navbar-nav .nav-link.active {
    color: var(--brand-blue-light);
}

.main-navbar .navbar-nav .nav-link:hover,
.main-navbar .navbar-nav .nav-link:focus,
.main-navbar .navbar-nav .nav-link.active {
    color: var(--brand-blue-light);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.25s ease, background 0.25s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    left: 0;
    height: 2px;
    background: var(--brand-blue-light);
    transform: scaleX(0);
    transition: transform 0.25s ease;
    border-radius: 2px;
}

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

/* Dropdown toggle arrow icon in navbar */
.navbar .dropdown-toggle::after {
    content: '\f107'; /* Font Awesome chevron-down */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 10px;
    margin-left: 6px;
    border: 0;
    vertical-align: middle;
}

.navbar .dropdown-toggle.show::after,
.navbar .dropdown:hover .dropdown-toggle::after {
    content: '\f106'; /* chevron-up when open */
}

/* Open dropdown on hover (desktop) */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* Active nav link: small blue pill around tab */
.navbar-nav .nav-link.active {
    background-color: var(--brand-blue);
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(43, 83, 167, 0.25);
    border-radius: 999px;
    padding-inline: 18px;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(0); /* لا نحتاج الخط مع البيل */
}

.nav-cta-btn {
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}

.nav-cta-btn:hover {
    background: var(--accent-bright);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(255, 193, 7, 0.45);
}

/* Hero Section - يبدأ من تحت التوب بار والنافبار فوقه شفاف */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    will-change: transform;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 0.3s ease-out, filter 0.3s ease, opacity 0.3s ease;
    filter: brightness(1) blur(0);
    opacity: 1;
}

.hero-bg-image.img-loading {
    opacity: 0.7;
}

.hero-bg-image.loaded {
    opacity: 1;
}

/* Vimeo background: cover viewport like object-fit: cover */
.hero-video-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.hero-video-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-width: 177.78vh;
    min-height: 100vh;
    transform: translate(-50%, -50%);
    border: 0;
    transition: transform 0.3s ease-out, filter 0.3s ease, opacity 0.3s ease;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.5) 0%, rgba(26, 26, 26, 0.2) 100%);
    z-index: 2;
    transition: opacity 0.3s ease;
}

.hero-overlay.hero-overlay--light {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.14) 0%, rgba(26, 26, 26, 0.05) 100%);
}

.hero-darkening-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 2.5;
    transition: background 0.3s ease;
    pointer-events: none;
}

.hero-section.scrolling .hero-darkening-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.hero-section.scrolling .hero-overlay {
    opacity: 0.8;
}

.hero-section.scrolling .hero-bg-image,
.hero-section.scrolling .hero-video-iframe {
    filter: brightness(0.6) blur(2px);
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 140px 0 80px;
    transition: transform 0.3s ease;
}

.hero-section.scrolling .hero-content {
    transform: translateY(-30px);
}

.hero-text {
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-family: "Cairo", sans-serif;
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 3;
}

.hero-title.animate {
    opacity: 1;
    transform: translateY(0);
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 50px;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 3;
}

.hero-subtitle.animate {
    opacity: 1;
    transform: translateY(0);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s;
    position: relative;
    z-index: 3;
}

.hero-buttons.animate {
    opacity: 1;
    transform: translateY(0);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s;
    position: relative;
    z-index: 3;
}

.hero-features.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Hero feature pills مثل الصورة المرجعية */
.feature-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    background: rgba(34, 26, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.feature-item:hover {
    background: rgba(34, 26, 20, 0.95);
    border-color: rgba(212, 165, 116, 0.7);
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 20%, #fff 0%, rgba(255, 255, 255, 0.1) 35%, transparent 60%), linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.45);
}

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

.feature-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    opacity: 0;
    animation: fadeInScroll 1s ease 1.5s forwards;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid rgba(255, 255, 255, 0.8);
    border-bottom: 3px solid rgba(255, 255, 255, 0.8);
    transform: rotate(45deg);
    animation: bounceArrow 2s infinite;
}

@keyframes fadeInScroll {
    to {
        opacity: 1;
    }
}

@keyframes bounceArrow {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    40% {
        transform: rotate(45deg) translateY(-10px);
    }
    60% {
        transform: rotate(45deg) translateY(-5px);
    }
}

.btn {
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navbar primary button a bit smaller */
.main-navbar .btn-primary {
    padding: 10px 24px;
    font-size: 14px;
    border-radius: 10px;
    background: #8b7138;
    border-color: #8b7138;
    box-shadow: 0 8px 24px rgba(196, 122, 44, 0.45);
}

.main-navbar .btn-primary:hover {
    background: #a48644;
    border-color: #a48644;
    box-shadow: 0 10px 28px rgba(168, 100, 31, 0.5);
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    color: #fff;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-brown {
    background: #8b7138;
    border-color: #8b7138;
    color: #fff;
    font-weight: 700;
}

.btn-brown:hover {
    background: #a48644;
    border-color: #a48644;
    color: #fff;
    box-shadow: 0 10px 28px rgba(168, 100, 31, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    font-weight: 700;
    border: 2px solid var(--brand-blue);
    position: relative;
    overflow: hidden;
}

.btn-secondary:hover {
    background: var(--brand-blue);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(212, 165, 116, 0.45);
}

/* Scroll Animation Classes */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate.fadeInLeft {
    transform: translateX(-50px);
}

.scroll-animate.fadeInLeft.animate {
    transform: translateX(0);
}

.scroll-animate.fadeInRight {
    transform: translateX(50px);
}

.scroll-animate.fadeInRight.animate {
    transform: translateX(0);
}

.scroll-animate.scaleIn {
    transform: scale(0.8);
}

.scroll-animate.scaleIn.animate {
    transform: scale(1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Featured Packages Section - تحفة */
.featured-packages {
    padding: 120px 0 140px;
    background: linear-gradient(180deg, var(--bg-light) 0%, #f5f2ed 50%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.featured-packages.section-visible {
    opacity: 1;
    transform: translateY(0);
}

.featured-packages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212, 165, 116, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 50% 100%, rgba(212, 165, 116, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.featured-packages::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 3px;
    opacity: 0.6;
    pointer-events: none;
}

.section-header {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.featured-packages.section-visible .section-header {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.packages-carousel {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.featured-packages.section-visible .packages-carousel {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

/* Header Section */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 16px;
    padding: 8px 20px;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 30px;
}

.star-icon {
    font-size: 10px;
    color: var(--primary-color);
    opacity: 0.9;
}

.section-title {
    font-family: "Playfair Display", serif;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.section-title .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(212, 165, 116, 0.25);
    border-radius: 4px;
    z-index: -1;
}

.section-description {
    font-size: 16px;
    color: var(--text-light);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.75;
}

/* Swiper Container */
.packages-carousel {
    padding: 48px 0 120px;
    overflow: visible;
    width: 100%;
    position: relative;
}

.packages-carousel .swiper-wrapper {
    align-items: stretch;
    padding: 24px 0;
}

.packages-carousel .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
    width: 400px !important;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    perspective: 1200px;
}

/* Package Card */
.package-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.04),
        0 12px 24px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.package-card:hover {
    box-shadow:
        0 12px 24px rgba(0, 0, 0, 0.08),
        0 24px 48px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(212, 165, 116, 0.2);
}

/* Active slide (center card) */
.packages-carousel .swiper-slide-active .package-card {
    transform: scale(1.02) translateZ(0);
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.1),
        0 32px 64px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(212, 165, 116, 0.15);
    z-index: 10;
}

.packages-carousel .swiper-slide-active .package-card:hover {
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 40px 80px rgba(0, 0, 0, 0.14);
}

/* Previous and next slides */
.packages-carousel .swiper-slide-prev .package-card,
.packages-carousel .swiper-slide-next .package-card {
    transform: scale(0.92) translateZ(-30px);
    opacity: 0.9;
    filter: brightness(0.97);
}

/* Other slides (further away) */
.packages-carousel .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev):not(.swiper-slide-next) .package-card {
    opacity: 0.6;
    transform: scale(0.85);
    filter: brightness(0.9);
}

.packages-carousel .swiper-wrapper {
    transform-style: preserve-3d;
}

/* Card Image */
.card-image {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
    background: var(--primary-color);
    display: block;
}

.card-image img.img-loading {
    opacity: 0.5;
}

.card-image img.loaded {
    opacity: 1;
}

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

.location-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--brand-blue-dark);
    padding: 10px 16px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 20px var(--brand-blue-dark);
    z-index: 2;
}

.pin-icon {
    font-size: 12px;
    opacity: 1;
    color: #f8e600;
    line-height: 1;
}

.category-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--primary-color);
    color: #fff;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    z-index: 2;
    box-shadow: 0 2px 12px rgba(212, 165, 116, 0.35);
}

#packages .category-badge {
    display: none !important;
}

/* Card Content */
.card-content {
    padding: 28px 26px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.price-section {
    margin-bottom: 10px;
}

.price-label {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    display: block;
    margin-bottom: 2px;
}

.price {
    font-size: 34px;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    letter-spacing: -0.5px;
}

.price-old {
    display: inline-block;
    margin-right: 6px;
    font-size: 16px;
    color: var(--text-light);
    text-decoration: line-through;
}

.rating-section {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.stars {
    font-size: 16px;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.rating-number {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
}

.reviews {
    font-size: 13px;
    color: var(--text-light);
}

.package-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 18px;
    line-height: 1.35;
    flex: 1;
    letter-spacing: -0.2px;
}

.package-details {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 22px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 500;
}

.detail-icon {
    font-size: 15px;
    color: var(--primary-color);
}

.explore-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 18px 28px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 100%;
    margin-top: auto;
}

.explore-btn:hover {
    background: var(--text-dark);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(212, 165, 116, 0.35);
}

.explore-btn:active {
    transform: translateY(-1px);
}

/* Swiper Navigation */
.packages-carousel .swiper-button-next,
.packages-carousel .swiper-button-prev {
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.06);
    color: var(--text-dark);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 20;
    opacity: 1;
    visibility: visible;
}

.packages-carousel .swiper-button-next:after,
.packages-carousel .swiper-button-prev:after {
    font-size: 18px;
    font-weight: 700;
}

.packages-carousel .swiper-button-next:hover,
.packages-carousel .swiper-button-prev:hover {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(212, 165, 116, 0.4);
}

.packages-carousel .swiper-button-prev {
    right: auto;
    left: 24px;
}

.packages-carousel .swiper-button-next {
    left: auto;
    right: 24px;
}

/* Coverflow shadow effect */
.packages-carousel .swiper-slide-shadow-left,
.packages-carousel .swiper-slide-shadow-right {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.06), transparent);
    border-radius: 24px;
}

/* Swiper Pagination */
.packages-carousel .swiper-pagination {
    bottom: 28px;
}

.packages-carousel .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    opacity: 0.25;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.packages-carousel .swiper-pagination-bullet:hover {
    opacity: 0.5;
}

.packages-carousel .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.4);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.3);
}

/* Shared Section Padding */
.section-padding {
    padding: 20px 0;
}

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

/* Nile Cruises Section */
.nile-cruises-section {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.nile-cruises-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 140, 66, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 165, 116, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.nile-cruises-section .container {
    position: relative;
    z-index: 1;
}

/* Nile Cruises: header block (title + description + cover image) */
.cruises-header-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 56px;
}

.cruises-header-content {
    padding-right: 24px;
}

.cruises-cover {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
}

.cruises-cover-image {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}

/* Nile Cruises: 3-col cards grid (no ratings) */
.cruise-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.cruise-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(148, 163, 184, 0.25);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.cruise-card:hover {
    box-shadow: 0 24px 56px rgba(148, 163, 184, 0.3);
    transform: translateY(-4px);
}

.cruise-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.cruise-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.cruise-card:hover .cruise-card-image img {
    transform: scale(1.06);
}

.cruise-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #ffffff;
}

.cruise-card-badge--blue {
    background: var(--brand-blue);
}

.cruise-card-location {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.75);
}

.cruise-card-location i {
    margin-right: 4px;
}

.cruise-card-body {
    padding: 22px 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.cruise-card-price-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin: 0;
}

.cruise-card-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--brand-blue);
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.cruise-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 6px 0;
    line-height: 1.35;
}

.cruise-card-text {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.65;
    margin: 0 0 8px 0;
}

.cruise-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
    font-size: 13px;
    color: var(--text-light);
    margin-top: auto;
}

.cruise-card-meta i {
    margin-right: 6px;
}

.cruise-card-btn {
    display: block;
    margin-top: 14px;
    padding: 12px 0;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand-blue-dark);
    text-decoration: none;
    border-bottom: 2px solid var(--brand-blue);
    text-align: center;
    transition: color 0.2s ease, background 0.2s ease;
}

.cruise-card-btn:hover {
    color: var(--brand-blue);
    background: rgba(43, 83, 167, 0.06);
}

/* Red Sea Experience Section */
.redsea-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: #ffffff;
    overflow: hidden;
}

/* Variant for Egypt Day Tours (uses museum/city image) */
.redsea-section--daytours {
    background: #0f172a;
}

.redsea-section--daytours .redsea-bg {
    background-image: url('../images/Egypt_Day_Tours.jpeg');
}

.redsea-section--daytours .btn-primary {
    background: #C47A2C;
    border-color: #C47A2C;
    box-shadow: 0 8px 24px rgba(196, 122, 44, 0.45);
}

.redsea-section--daytours .btn-primary:hover {
    background: #A8641F;
    border-color: #A8641F;
    box-shadow: 0 10px 28px rgba(168, 100, 31, 0.5);
}

.redsea-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.03);
}

.redsea-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(5, 41, 122, 0.55),
        rgba(5, 41, 122, 0.25)
    );
    pointer-events: none;
}

.redsea-inner {
    position: relative;
    z-index: 1;
    padding: 80px 0;
    text-align: center;
}

.redsea-header {
    max-width: 760px;
    margin: 0 auto 40px;
}

.redsea-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(248, 230, 0, 0.15);
    border: 1px solid rgba(248, 230, 0, 0.4);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fef9c3;
    margin-bottom: 14px;
}

.redsea-tag-icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: rgba(248, 230, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.redsea-tag-icon i {
    font-size: 13px;
    color: var(--brand-yellow);
}

.redsea-title {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.03em;
}

.redsea-title .highlight {
    color: var(--brand-yellow);
}

.redsea-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 640px;
    margin: 0 auto;
}

.redsea-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin: 40px auto 32px;
    max-width: 900px;
}

.redsea-stat-card {
    background: rgba(15, 23, 42, 0.55);
    border-radius: 18px;
    padding: 18px 16px 20px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(148, 163, 184, 0.55);
    backdrop-filter: blur(18px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.35s ease,
                border-color 0.35s ease,
                background 0.35s ease;
}

.redsea-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(248, 230, 0, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
}

.redsea-stat-icon i {
    color: var(--brand-yellow);
    font-size: 20px;
}

.redsea-stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(248, 230, 0, 0.9);
    background: rgba(15, 23, 42, 0.85);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.8);
}

.redsea-stat-card:hover .redsea-stat-icon {
    background: rgba(248, 230, 0, 0.28);
    transform: translateY(-2px) scale(1.05);
}

.redsea-stat-card:hover .redsea-stat-number {
    color: #ffffff;
}

.redsea-stats-grid .redsea-stat-card:nth-child(1) .redsea-stat-icon i {
    color: var(--brand-yellow);
}

.redsea-stats-grid .redsea-stat-card:nth-child(2) .redsea-stat-icon i {
    color: var(--brand-blue-light);
}

.redsea-stats-grid .redsea-stat-card:nth-child(3) .redsea-stat-icon i {
    color: var(--brand-yellow-light);
}

.redsea-stats-grid .redsea-stat-card:nth-child(4) .redsea-stat-icon i {
    color: #7dd3fc;
}

.redsea-stat-number {
    font-size: 22px;
    font-weight: 800;
    color: #fefce8;
}

.redsea-stat-label {
    font-size: 13px;
    color: rgba(226, 232, 240, 0.95);
}

.redsea-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 10px;
}

.redsea-cta .btn-primary {
    background: var(--brand-blue-dark);
    color: var(--white);
    border-color: var(--brand-yellow);
}

.redsea-cta .btn-primary:hover {
    background: var(--brand-blue-light);
    border-color: var(--brand-blue-dark);
}

.redsea-cta .btn-outline {
    border-color: rgba(255, 255, 255, 0.8);
    color: #ffffff;
    background: transparent;
}

.redsea-cta .btn-outline:hover {
    background: rgba(15, 23, 42, 0.7);
    border-color: #ffffff;
}

@media (max-width: 992px) {
    .redsea-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    .redsea-section {
        min-height: auto;
    }

    .redsea-inner {
        padding: 60px 0;
    }

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

    .redsea-stats-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
}

.cruises-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.cruises-image-col {
    position: relative;
}

.cruises-image-container {
    position: relative;
    border-radius: 0 20px 20px 0;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cruises-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cruises-image-container:hover::before {
    opacity: 1;
}

.cruises-image-container:hover {
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.cruises-main-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.cruises-image-container:hover .cruises-main-image {
    transform: scale(1.05);
}

.cruises-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 14px 22px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: var(--shadow-md);
    z-index: 3;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.cruises-badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.badge-icon {
    font-size: 20px;
    color: var(--primary-color);
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.badge-text strong {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
}

.badge-text span {
    color: var(--text-light);
    font-size: 13px;
    font-weight: 500;
}

.badge-icon {
    font-size: 18px;
}

.cruises-content-col {
    padding: 40px 0;
    position: relative;
}

.cruises-content-col::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.cruises-content-col.scroll-animate.animate::before {
    opacity: 1;
}

.cruises-subheading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    padding: 6px 12px;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 20px;
}

.cruises-subheading .star-icon {
    font-size: 14px;
    color: var(--primary-color);
}

.cruises-title {
    font-family: "Cairo", sans-serif;
    font-size: 52px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.cruises-title .highlight {
    color: var(--primary-color);
    display: inline-block;
    position: relative;
}

.cruises-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gradient-start), var(--primary-gradient-end));
    opacity: 0.3;
    border-radius: 2px;
}

.cruises-description {
    font-size: 17px;
    line-height: 1.85;
    color: var(--text-medium);
    margin-bottom: 45px;
    max-width: 95%;
    font-weight: 400;
}

.cruises-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    border: 1px solid rgba(212, 165, 116, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    background: var(--bg-white);
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 165, 116, 0.3);
}

.feature-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 0, 0.12) 0%, rgba(255, 208, 90, 0.12) 100%);
    border-radius: 14px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
}

.feature-card-icon i {
    font-size: 26px;
    color: var(--brand-blue);
}

.feature-card:hover .feature-card-icon {
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.2) 0%, rgba(212, 165, 116, 0.2) 100%);
    transform: scale(1.1) rotate(5deg);
}

.feature-card-content {
    flex: 1;
}

.feature-card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
    letter-spacing: -0.2px;
}

.feature-card-subtitle {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.4;
}

.cruises-cta-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.cruises-cta-buttons .btn {
    min-width: 200px;
    text-align: center;
    justify-content: center;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #C47A2C;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.btn-outline:hover::before {
    width: 300px;
    height: 300px;
}

.btn-outline:hover {
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #020617 0%, #020617 40%, var(--brand-blue-dark) 100%);
    color: #f9fafb;
    padding: 60px 0 20px;
    margin-top: 0;
    border-top: 1px solid rgba(148, 163, 184, 0.3);
}

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

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    font-family: "Cairo", sans-serif;
    color: var(--brand-yellow);
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    color: var(--brand-blue);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.social-link:hover {
    background: var(--brand-blue);
    transform: translateY(-2px);
    color: #ffffff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.45);
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--brand-yellow);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    display: inline-block;
    color: rgba(226, 232, 240, 0.9);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.25s ease;
}

.footer-links a:hover {
    color: var(--brand-yellow);
    transform: translateX(6px);
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-icon {
    font-size: 20px;
    color: var(--brand-yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 0;
    }

    .d-none-mobile {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 110px;
        right: -100%;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.98);
        width: 100%;
        padding: 30px 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        gap: 20px;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-section {
        margin-top: 0;
        min-height: 600px;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-features {
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
    }

    /* خليهم أصغر ويتقسموا 3 جنب بعض تقريباً */
    .feature-item {
        min-width: 0;
        padding: 8px 14px;
    }

    .feature-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
        font-size: 16px;
    }

    .feature-text {
        font-size: 12px;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

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

    .featured-packages {
        padding: 60px 0;
    }

    .packages-carousel {
        padding: 20px 0 60px;
    }

    .package-card {
        max-width: 100%;
    }

    .card-image {
        height: 240px;
    }

    .price {
        font-size: 32px;
    }

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

    .packages-carousel .swiper-button-next,
    .packages-carousel .swiper-button-prev {
        width: 40px;
        height: 40px;
        top: 32%;
    }

    .packages-carousel .swiper-button-next:after,
    .packages-carousel .swiper-button-prev:after {
        font-size: 16px;
    }

    .packages-carousel .swiper-button-prev {
        left: 10px;
    }

    .packages-carousel .swiper-button-next {
        right: 10px;
    }

    /* Nile Cruises Section Responsive */
    .cruises-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cruises-header-block {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 40px;
    }

    .cruises-header-content {
        padding-right: 0;
    }

    .cruises-cover-image {
        height: 280px;
    }

    .cruise-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .cruises-main-image {
        height: 400px;
    }

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

    .cruises-features-grid {
        grid-template-columns: 1fr;
    }

    .cruises-cta-buttons {
        flex-direction: column;
    }

    .btn-outline {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .cruise-cards-grid {
        grid-template-columns: 1fr;
    }

    .cruises-cover-image {
        height: 220px;
    }

    .cruise-card-price {
        font-size: 24px;
    }

    .cruise-card-title {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 500px;
        margin-top: 0;
    }

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

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

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

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

    .hero-features {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }

    .feature-item {
        padding: 8px 10px;
    }

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

    .section-label {
        font-size: 12px;
    }

    .card-content {
        padding: 20px;
    }

    .price {
        font-size: 28px;
    }

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

/* Desert Safari Section */
.desert-section {
    /* Desert Luxury Palette */
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.85) 0%, rgba(245, 230, 211, 0.95) 45%),
        linear-gradient(135deg, #ffffff 0%, #F5E6D3 35%, #EAD5B8 80%);
    color: #444444;
    padding: 80px 0;
}

.desert-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 60px;
    align-items: center;
}

/* Mirror layout for Egypt & Jordan section: text left, image right */
#egypt-jordan .desert-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
}

#egypt-jordan .desert-content-col {
    margin-left: 0;
    max-width: 520px;
}

.desert-image-col {
    position: relative;
}

.desert-image-wrapper {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.75);
}

.desert-image {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
    transform: scale(1.04);
    transition: transform 1.2s ease-out;
}

.desert-image-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.9) 0%, transparent 45%, rgba(148, 27, 0, 0.4) 100%);
    mix-blend-mode: multiply;
}

.desert-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at left, rgba(248, 230, 0, 0.18), transparent 55%);
    pointer-events: none;
}

.desert-image-wrapper:hover .desert-image {
    transform: scale(1.06);
}

.desert-content-col {
    max-width: 520px;
    margin-left: auto;
}

.desert-kicker {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #D4A017; /* highlight */
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.desert-kicker-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #D4A017;
    box-shadow: 0 0 0 6px rgba(212, 160, 23, 0.18);
}

.desert-title {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 14px;
    color: #2B2B2B; /* heading */
}

.desert-title-highlight {
    color: #D4A017;
}

.desert-description {
    font-size: 15px;
    color: #444444;
    line-height: 1.8;
    margin-bottom: 22px;
}

.desert-feature-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 26px;
}

.desert-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.desert-feature-item i {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.9);
    color: var(--brand-yellow);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.9);
}

.desert-feature-title {
    font-size: 15px;
    font-weight: 600;
    color: #2B2B2B;
}

.desert-feature-subtitle {
    font-size: 13px;
    color: #666666;
}

/* Desert-specific buttons using Desert Luxury Palette */
.desert-section .btn-primary {
    background: #8b7138;
    border-color: #8b7138;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(196, 122, 44, 0.45);
}

.desert-section .btn-primary:hover {
    background: #a48644; /* Hover from palette */
    border-color: #a48644;
    box-shadow: 0 12px 34px rgba(168, 100, 31, 0.55);
    transform: translateY(-2px);
}

.desert-section .desert-cta-secondary.btn.btn-outline {
    border-color: #8b7138;
    color: #8b7138;
}

.desert-section .desert-cta-secondary.btn.btn-outline:hover {
    background: #8b7138;
    color: #ffffff;
    box-shadow: 0 10px 26px rgba(196, 122, 44, 0.4);
}

.desert-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.desert-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.desert-cta-secondary i {
    font-size: 12px;
}

@media (max-width: 992px) {
    .desert-section {
        padding: 70px 0;
    }

    .desert-inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 40px;
    }

    /* Override higher-specificity rule on small screens */
    #egypt-jordan .desert-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .desert-content-col {
        margin-left: 0;
        max-width: 100%;
    }

    .desert-image {
        height: 360px;
    }

    /* On smaller screens, show image first then content */
    #egypt-jordan .desert-image-col {
        order: 1;
    }

    #egypt-jordan .desert-content-col {
        order: 2;
    }
}

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

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

    .desert-inner {
        gap: 28px;
    }

    .desert-image-wrapper {
        border-radius: 22px;
        box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
    }

    .desert-image {
        height: 300px;
        transform: scale(1.02);
    }

    .desert-description {
        margin-bottom: 18px;
    }

    .desert-feature-list {
        margin-bottom: 20px;
    }

    .desert-cta {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Generic Video Modal */
.video-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1080;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.video-modal.open {
    opacity: 1;
    visibility: visible;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
}

.video-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(900px, 92vw);
    background: #020617;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.4);
    padding: 20px 22px 22px;
}

.video-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: none;
    background: rgba(15, 23, 42, 0.9);
    color: #e5e7eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.video-modal-close i {
    font-size: 14px;
}

.video-modal-close:hover {
    background: rgba(248, 230, 0, 0.9);
    color: #111827;
    transform: translateY(-1px);
}

.video-modal-body {
    margin-top: 12px;
}

.video-modal-title {
    font-size: 18px;
    font-weight: 600;
    color: #e5e7eb;
    margin-bottom: 10px;
}

.video-modal-frame-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    border-radius: 14px;
    overflow: hidden;
    background: #000;
}

.video-modal-frame-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

body.modal-open {
    overflow: hidden;
}

/* Testimonials Section */
.testimonials-section {
    background: #f8f5ef;
}

.testimonials-section .section-title .highlight {
    color: var(--brand-blue);
}

.testimonials-section .section-description {
    max-width: 720px;
}

.testimonials-carousel {
    padding-bottom: 80px;
    position: relative;
}

.testimonials-carousel .swiper-wrapper {
    align-items: stretch;
}

.testimonials-carousel .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
    transition: transform 0.4s ease, opacity 0.4s ease, filter 0.4s ease;
}

.testimonials-carousel .swiper-slide:not(.swiper-slide-active) {
    opacity: 0.35;
    filter: blur(1px);
    transform: scale(0.9);
}

.testimonial-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px 28px 26px;
    max-width: 480px;
    width: 100%;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(15, 23, 42, 0.04);
    position: relative;
}

.testimonial-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.testimonial-rating span {
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--brand-yellow-dark);
}

.testimonial-quote-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(43, 83, 167, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-blue);
    box-shadow: 0 10px 20px rgba(43, 83, 167, 0.25);
}

.testimonial-quote-icon i {
    font-size: 14px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 22px;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: var(--brand-blue);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.5);
}

.testimonial-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
}

.testimonial-location {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-light);
}

.testimonials-pagination {
    bottom: 10px !important;
}

.testimonials-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #d4d4d8;
    opacity: 1;
}

.testimonials-pagination .swiper-pagination-bullet-active {
    background: var(--brand-blue);
    transform: scale(1.6);
}

@media (max-width: 768px) {
    .testimonials-carousel .swiper-slide:not(.swiper-slide-active) {
        opacity: 0.15;
        filter: blur(1.5px);
    }

    .testimonial-card {
        padding: 24px 20px 22px;
    }
}

/* Contact / Get in Touch Section */
.contact-section {
    background:
        radial-gradient(circle at top left, rgba(248, 230, 0, 0.08) 0%, transparent 55%),
        linear-gradient(135deg, var(--brand-blue-dark) 0%, #020617 45%, var(--brand-blue) 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: -40%;
    background-image:
        radial-gradient(circle at 0 0, rgba(248, 230, 0, 0.12), transparent 55%),
        radial-gradient(circle at 100% 0, rgba(76, 111, 204, 0.25), transparent 55%);
    opacity: 1;
    pointer-events: none;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-section .section-label {
    background: rgba(15, 23, 42, 0.85);
    color: var(--brand-yellow);
    border-radius: 999px;
}

.contact-section .section-title {
    color: #f9fafb;
}

.contact-section .section-title .highlight {
    color: var(--brand-yellow);
}

.contact-section .section-description {
    color: rgba(209, 213, 219, 0.9);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 36px;
}

/* Contact section: Review/Trust cards (Trustpilot, Google, TripAdvisor) */
.contact-grid--reviews {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-trust-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    border: 2px solid rgba(148, 163, 184, 0.35);
    border-radius: 16px;
    padding: 24px 28px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.review-trust-card:hover {
    border-color: var(--brand-blue);
    box-shadow: 0 12px 32px rgba(43, 83, 167, 0.2);
    transform: translateY(-4px);
}

.review-trust-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.review-trust-icon--trustpilot {
    background: #00B67A;
}

.review-trust-icon--trustpilot .review-trust-img,
.review-trust-icon--tripadvisor .review-trust-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.review-trust-icon--google {
    background: #ffffff;
    border: 2px solid #4285F4;
}

.review-trust-icon--google i {
    font-size: 28px;
    color: #4285F4;
}

.review-trust-icon--tripadvisor {
    background: #00AF87;
}

.review-trust-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.review-trust-content {
    flex: 1;
}

.review-trust-label {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.review-trust-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-trust-score {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

.review-trust-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.review-trust-stars i {
    font-size: 14px;
    color: var(--brand-yellow-dark);
}

.review-trust-stars .fa-star-last {
    opacity: 0.5;
}

.review-trust-strip {
    background: #ffffff;
    padding: 40px 0 70px;
}

.review-badges-wrapper {
    margin-top: 30px;
}

.review-badges-carousel {
    padding: 4px 0 8px;
}

.review-badge-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
    padding: 18px 16px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.review-badge-logo {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-badge-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.review-badge-logo-text {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-medium);
    text-align: center;
}

.review-badge-label {
    font-size: 13px;
    color: var(--text-medium);
    text-align: center;
    margin: 0;
}

@media (max-width: 768px) {
    .review-badges-carousel .swiper-slide {
        width: auto;
    }
}

.contact-card {
    background:
        radial-gradient(circle at top left, rgba(248, 230, 0, 0.08), transparent 55%),
        radial-gradient(circle at bottom right, rgba(43, 83, 167, 0.3), rgba(15, 23, 42, 0.98));
    border-radius: 24px;
    padding: 24px 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border: 1px solid rgba(248, 230, 0, 0.35);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.9);
}

.contact-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--brand-yellow), #facc15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    margin-bottom: 4px;
}

.contact-card-icon i {
    font-size: 20px;
}

.contact-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #f9fafb;
    margin-bottom: 2px;
}

.contact-card-text {
    font-size: 14px;
    color: rgba(209, 213, 219, 0.9);
}

.contact-card-cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--brand-yellow);
}

.contact-card-cta i {
    font-size: 12px;
}

.contact-card-cta:hover {
    color: #fefce8;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-grid--reviews {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    .contact-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .contact-grid--reviews {
        grid-template-columns: minmax(0, 1fr);
    }

    .review-trust-card {
        padding: 20px 22px;
    }

    .review-trust-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }
}

/* ========== Blog Pages ========== */
.blogs-page {
    background: #f3f4f6;
}

.blogs-hero {
    padding-top: 140px;
    padding-bottom: 40px;
}

.blogs-hero-inner {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.blogs-hero-title {
    font-family: "Playfair Display", serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.blogs-hero-subtitle {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.8;
    margin: 0;
}

.blogs-main {
    padding-top: 20px;
}

.blogs-layout {
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) minmax(0, 1fr);
    gap: 32px;
    align-items: flex-start;
}

.blogs-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.blog-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.35);
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
    border-color: rgba(43, 83, 167, 0.45);
}

.blog-card-image {
    height: 190px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.03);
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

.blog-card-body {
    padding: 20px 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    font-size: 12px;
    color: var(--text-light);
}

.blog-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-card-meta i {
    font-size: 12px;
    color: var(--brand-blue);
}

.blog-card-title {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 2px 0 2px;
    line-height: 1.4;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-card-title a:hover {
    color: var(--brand-blue);
}

.blog-card-excerpt {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.75;
    margin: 0;
}

.blog-card-btn {
    margin-top: 12px;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    background: #ffffff;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.blog-card-btn i {
    font-size: 12px;
}

.blog-card-btn:hover {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-1px);
}

.blogs-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-sidebar-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px 22px 22px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(148, 163, 184, 0.35);
}

.blog-sidebar-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.blog-search-box {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px 8px 14px;
    border-radius: 999px;
    background: #f3f4f6;
}

.blog-search-box input {
    border: none;
    background: transparent;
    flex: 1;
    min-width: 0;
    font-size: 14px;
}

.blog-search-box input:focus {
    outline: none;
}

.blog-search-actions {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.blog-search-submit {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: none;
    background: var(--brand-blue);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}

.blog-search-submit:hover {
    background: #1d4ed8;
}

.blog-search-clear {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-medium);
    text-decoration: none;
}

.blog-search-clear:hover {
    color: var(--brand-blue);
}

.blog-category-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
    color: var(--text-medium);
}

.blog-category-list li {
    display: flex;
    align-items: center;
    cursor: pointer;
    border: 1px solid rgba(148, 163, 184, 0.45);
    border-radius: 10px;
    padding: 0;
    background: #ffffff;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.blog-category-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 8px 12px;
    font-family: "Playfair Display", serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-category-list li:hover {
    border-color: rgba(43, 83, 167, 0.5);
    background: rgba(43, 83, 167, 0.06);
}

.blog-category-list li a:hover {
    color: var(--brand-blue);
}

.blog-category-list .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.6);
}

.blog-category-list li.active .dot {
    background: #ffffff;
}

.blog-category-list li.active {
    color: #ffffff;
    font-weight: 600;
    background: var(--brand-blue);
    border-color: var(--brand-blue);
}

.blog-category-list li.active a {
    color: #ffffff;
}

.blog-sidebar-text {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 12px;
}

.blog-sidebar-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-blue);
    text-decoration: none;
}

.blog-sidebar-cta i {
    font-size: 12px;
}

.blog-sidebar-cta:hover {
    color: var(--brand-blue-dark);
}

.blog-details-page {
    background: #f3f4f6;
}

.blog-details-hero {
    padding-top: 140px;
    padding-bottom: 20px;
}

.blog-details-breadcrumb {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.blog-details-breadcrumb a {
    color: var(--brand-blue);
    text-decoration: none;
}

.blog-details-breadcrumb span {
    margin: 0 4px;
}

.blog-details-hero-card {
    background: #ffffff;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(148, 163, 184, 0.35);
}

.blog-details-hero-image {
    height: 400px;
    overflow: hidden;
}

.blog-details-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-details-hero-body {
    padding: 24px 26px 26px;
}

.blog-card-meta--hero {
    margin-bottom: 10px;
}

.blog-details-title {
    font-family: "Playfair Display", serif;
    font-size: 30px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.blog-details-intro {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.8;
    margin: 0;
}

.blog-details-main {
    padding-top: 32px;
}

.blog-details-layout {
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) minmax(0, 1fr);
    gap: 32px;
}

.blog-details-content {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 26px 30px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.35);
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.8;
}

.blog-details-content h2,
.blog-details-content h3 {
    color: var(--text-dark);
    margin-top: 10px;
    margin-bottom: 8px;
    font-weight: 700;
}

.blog-details-content h2 {
    font-size: 22px;
}

.blog-details-content h3 {
    font-size: 18px;
}

.blog-details-content p {
    margin-bottom: 14px;
}

.blog-details-content ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.blog-details-content li {
    margin-bottom: 6px;
}

.blog-quote {
    margin: 18px 0;
    padding: 14px 18px;
    border-left: 4px solid var(--brand-blue);
    background: #eef2ff;
    border-radius: 12px;
}

.blog-quote p {
    margin: 0;
    font-style: italic;
}

.blog-recent-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
}

.blog-recent-list a {
    text-decoration: none;
    color: var(--text-medium);
}

.blog-recent-list a:hover {
    color: var(--brand-blue);
}

@media (max-width: 992px) {
    .blogs-layout,
    .blog-details-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .blogs-list {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 768px) {
    .blogs-hero-title {
        font-size: 30px;
    }

    .blog-details-title {
        font-size: 24px;
    }
}

/* ========== FAQ Section ========== */
/* Frontend FAQs full page */
.faqs-page {
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 55%),
        radial-gradient(circle at bottom right, rgba(220, 220, 220, 0.25), transparent 55%),
        #f9fafb;
    min-height: 100vh;
}

.faqs-hero {
    padding-top: 140px;
    padding-bottom: 40px;
}

.faqs-hero-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.faqs-hero-title {
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.faqs-hero-subtitle {
    max-width: 620px;
    margin: 0 auto;
    font-size: 15px;
    color: var(--text-medium);
}

.faqs-main {
    padding-top: 10px;
    padding-bottom: 80px;
}

.faqs-layout {
    display: grid;
    grid-template-columns: minmax(0, 2.3fr) minmax(0, 1fr);
    gap: 32px;
    align-items: flex-start;
}

@media (max-width: 992px) {
    .faqs-layout {
        grid-template-columns: minmax(0, 1fr);
    }
}

.faqs-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.faq-item:hover {
    border-color: rgba(139, 113, 56, 0.4);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    border: none;
    background: transparent;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
}

.faq-question-text {
    text-align: start;
}

.faq-question i {
    font-size: 13px;
    color: var(--text-light);
    transition: transform 0.2s ease;
}

.faq-answer {
    padding: 0 18px 0;
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
    border-top: 1px solid rgba(148, 163, 184, 0.3);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.25s ease, opacity 0.25s ease, padding 0.25s ease;
}

.faq-item.active .faq-answer {
    max-height: 260px;
    opacity: 1;
    padding: 0 18px 14px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.no-faqs-message {
    font-size: 14px;
    color: var(--text-medium);
}

.faqs-sidebar {
    position: sticky;
    top: 130px;
}

.faq-sidebar-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px 22px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.35);
}

.faq-sidebar-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.faq-sidebar-text {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 14px;
}

.faq-sidebar-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--brand-brown);
    color: #000000;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.faq-sidebar-cta i {
    font-size: 13px;
}

/* ========== Contact Us Page ========== */
.contact-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0.5;
    z-index: 1;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero-inner {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 18px;
    border-radius: 999px;
    background: rgba(248, 230, 0, 0.15);
    border: 1px solid rgba(248, 230, 0, 0.4);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--brand-yellow);
    margin-bottom: 16px;
}

.contact-hero-title {
    font-family: "Cairo", sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.contact-hero-title .highlight {
    position: relative;
    color: var(--brand-yellow);
}

.contact-hero-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

/* Contact Main Grid */
.contact-main {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    justify-items: center;
}

/* New Contact CTA Card */
.contact-cta-card {
    max-width: 900px;
    width: 100%;
    background: #8b7138;
    border-radius: 32px;
    padding: 40px 40px 32px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
    color: #fff;
    text-align: center;
}

.contact-cta-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-cta-subtitle {
    font-size: 15px;
    opacity: 0.9;
    max-width: 560px;
    margin: 0 auto 26px;
}

.contact-cta-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.contact-cta-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-cta-number {
    font-size: 30px;
    font-weight: 800;
}

.contact-cta-label {
    font-size: 13px;
    opacity: 0.9;
}

.contact-cta-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    margin: 8px 0 18px;
}

.contact-cta-question {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 18px;
}

.contact-cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.contact-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.contact-cta-btn--primary {
    background: #ffffff;
    color: #000;
}

.contact-cta-btn--primary:hover {
    background: #f3e6c7;
    color: #8b7138;
}

.contact-cta-btn--outline {
    background: transparent;
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.9);
}

.contact-cta-btn--outline:hover {
    background: rgba(0, 0, 0, 0.06);
}

.contact-cta-footer {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 13px;
    opacity: 0.95;
    margin-top: 6px;
}

.contact-cta-footer-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Contact Form Card */
.contact-form-wrapper {
    position: relative;
}

.contact-form-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 44px 44px;
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(43, 83, 167, 0.08);
}

.contact-form-title {
    font-family: "Cairo", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-form-title i {
    color: var(--brand-blue);
}

.contact-form-desc {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

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

.contact-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form-group--full {
    grid-column: 1 / -1;
}

.contact-form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-form-group .required {
    color: #ef4444;
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    font-size: 15px;
    font-family: "Cairo", sans-serif;
    background: #f8fafc;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
    outline: none;
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(43, 83, 167, 0.15);
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
    color: var(--text-lighter);
}

.contact-form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 44px;
}

.contact-form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    font-family: "Cairo", sans-serif;
    color: #ffffff;
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    margin-top: 8px;
}

.contact-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(43, 83, 167, 0.4);
}

.contact-form-submit i {
    font-size: 14px;
    transition: transform 0.25s ease;
}

.contact-form-submit:hover i {
    transform: translateX(4px);
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 900px;
    width: 100%;
    margin: 10px auto 0;
}

.contact-info-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px 24px 22px;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(43, 83, 167, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    flex: 1 1 260px;
    min-width: 260px;
}

@media (min-width: 992px) {
    .contact-info-card {
        flex: 1 1 calc(33.333% - 14px);
    }
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(43, 83, 167, 0.15);
    border-color: rgba(43, 83, 167, 0.15);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(43, 83, 167, 0.12) 0%, rgba(43, 83, 167, 0.06) 100%);
    color: var(--brand-blue);
    font-size: 20px;
    margin-bottom: 14px;
}

.contact-info-card:hover .contact-info-icon {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
    color: #ffffff;
}

.contact-info-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.contact-info-card p {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: 10px;
}

.contact-info-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-blue);
    text-decoration: none;
    transition: gap 0.25s ease, color 0.25s ease;
}

.contact-info-link:hover {
    color: var(--brand-blue-dark);
    gap: 12px;
}

.contact-info-note {
    font-size: 12px;
    color: var(--text-light);
}

/* Contact Trust Bar */
.contact-trust {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
    padding: 48px 0;
}

.contact-trust-inner {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.contact-trust-item {
    text-align: center;
}

.contact-trust-number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: var(--brand-yellow);
    margin-bottom: 6px;
}

.contact-trust-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Contact Page Responsive */
@media (max-width: 992px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .contact-form-card {
        padding: 28px 24px 32px;
    }

    .contact-hero-title {
        font-size: 32px;
    }

    .contact-trust-inner {
        gap: 40px;
    }

    .contact-trust-number {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        min-height: 36vh;
    }

    .contact-hero-title {
        font-size: 26px;
    }

    .contact-trust-inner {
        flex-direction: column;
        gap: 28px;
    }
}

/* Floating action buttons (WhatsApp + Scroll to top) */
.floating-actions {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1900;
}

.floating-btn {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0f172a;
    color: #ffffff;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.35);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.floating-btn i {
    font-size: 18px;
}

.floating-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-btn--whatsapp {
    background: #25d366;
}

.floating-btn--whatsapp:hover {
    background: #1ebe57;
    box-shadow: 0 18px 40px rgba(37, 211, 102, 0.55);
}

.floating-btn--scrolltop {
    background: var(--brand-blue);
}

.floating-btn--scrolltop:hover {
    background: #0b2c85;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.55);
}

@media (max-width: 576px) {
    .floating-actions {
        right: 14px;
        bottom: 14px;
    }

    .floating-btn {
        width: 42px;
        height: 42px;
    }
}

/* About Page */

/* About Us full-width banner (image background + title) */
.about-banner {
    position: relative;
    padding: 160px 0 120px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    background-image: url('../images/about.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    overflow: hidden;
}

.about-banner-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.5;

    background: #000;
    pointer-events: none;
}

.about-banner .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.about-banner-inner {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-banner-title {
    font-family: "Cairo", sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.about-banner-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
}

.about-hero {
    padding-top: 80px;
    background: radial-gradient(circle at top left, rgba(248, 230, 0, 0.1) 0%, transparent 55%), #f5f2ed;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(43, 83, 167, 0.06);
    border: 1px solid rgba(43, 83, 167, 0.18);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--brand-blue);
    margin-bottom: 12px;
}

.about-hero-title {
    font-family: "Cairo", sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
    letter-spacing: -0.03em;
}

.about-hero-text {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.9;
    max-width: 520px;
    margin-bottom: 20px;
}

.about-hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.about-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(148, 163, 184, 0.45);
    font-size: 13px;
    color: var(--text-dark);
}

.about-hero-pill i {
    color: var(--brand-blue);
}

.about-hero-media {
    position: relative;
}

.about-hero-main {
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.45);
}

.about-hero-image {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transform: scale(1.03);
}

.about-hero-badge-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-hero-badge-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.25);
}

.about-hero-badge-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-yellow) 0%, var(--brand-yellow-dark) 100%);
    color: #111827;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(248, 230, 0, 0.4);
}

.about-hero-badge-text {
    line-height: 1.35;
}

.about-hero-badge-text strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.about-hero-badge-text span {
    display: block;
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

.about-hero-floating-card {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 10px 14px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.9);
    color: #e5e7eb;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.7);
    text-align: right;
}

.about-hero-floating-label {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: var(--brand-yellow);
}

.about-hero-floating-text {
    font-size: 11px;
}

.about-story {
    background: #fdfaf4;
}

.about-vision-mission {
    background: #f9fafb;
}

.about-vm-block {
    background: #ffffff;
    border-radius: 20px;
    padding: 22px 22px 20px;
    box-shadow: 0 18px 40px rgba(148, 163, 184, 0.28);
    margin-bottom: 18px;
    border: 1px solid rgba(15, 23, 42, 0.04);
}

.about-vm-label {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--brand-blue);
    margin-bottom: 6px;
}

.about-vm-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.about-vm-text {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.8;
    margin: 0;
}

.about-goals-card {
    background:
        radial-gradient(circle at top left, rgba(248, 230, 0, 0.14), transparent 55%),
        radial-gradient(circle at bottom right, rgba(43, 83, 167, 0.26), rgba(15, 23, 42, 0.98));
    border-radius: 24px;
    padding: 24px 22px 22px;
    color: #f9fafb;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.85);
}

.about-goals-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-goals-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    line-height: 1.7;
}

.about-goals-list i {
    margin-top: 4px;
    color: var(--brand-yellow);
}

.about-goals-list span {
    flex: 1;
}

.about-section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.about-section-text {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 12px;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.about-stat-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 22px 20px 20px;
    box-shadow: 0 12px 32px rgba(148, 163, 184, 0.22);
    border: 1px solid rgba(43, 83, 167, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(43, 83, 167, 0.18);
    border-color: rgba(43, 83, 167, 0.2);
}

.about-stat-number {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: var(--brand-blue);
    margin-bottom: 6px;
    line-height: 1.2;
}

.about-stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-light);
    line-height: 1.4;
}

.about-stat-card:hover .about-stat-number {
    color: var(--brand-blue-dark);
}

.about-stat-card:hover .about-stat-label {
    color: var(--text-medium);
}

.about-values {
    background: #ffffff;
}

/* Why Travel With Us — title with golden underline */
.about-why-header {
    margin-bottom: 40px;
}

.about-why-title {
    font-family: "Cairo", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--brand-blue);
    margin: 0;
}

.about-why-title-underline {
    position: relative;
    display: inline-block;
}

.about-why-title-underline::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 4px;
    background: linear-gradient(90deg, #b45309, #d97706);
    border-radius: 2px;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 34px;
}

.about-values-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.about-value-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.2);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

.about-value-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #ffffff;
    font-size: 22px;
}

.about-value-icon i {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900;
    font-size: 1em;
}

.about-value-icon--blue {
    background: var(--brand-blue);
}

.about-value-icon--gold {
    background: linear-gradient(135deg, #b45309, #d97706);
}

.about-value-icon--check::before {
    content: '\2713';
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
}

.about-value-icon--green {
    background: linear-gradient(135deg, #059669, #10b981);
}

.about-value-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 8px;
}

.about-value-text {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

/* Legacy 3-col grid icon (no modifier) */
.about-values-grid:not(.about-values-grid--four) .about-value-icon {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    background: rgba(43, 83, 167, 0.08);
    color: var(--brand-blue);
    margin-bottom: 10px;
}

.about-steps {
    background: #fdfaf4;
}

.about-steps-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-steps-list li {
    display: flex;
    gap: 14px;
}

.about-step-number {
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-blue);
    min-width: 36px;
}

.about-step-content strong {
    display: block;
    font-size: 14px;
    color: var(--text-dark);
}

.about-step-content span {
    font-size: 13px;
    color: var(--text-medium);
}

.about-steps-card {
    background: #020617;
    color: #e5e7eb;
    border-radius: 24px;
    padding: 28px 26px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.4);
}

.about-steps-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-steps-card p {
    font-size: 14px;
    color: rgba(209, 213, 219, 0.95);
    margin-bottom: 20px;
}

.about-steps-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 992px) {
    .about-hero {
        padding-top: 120px;
    }

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

    .about-values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-values-grid--four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-why-title {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .about-banner {
        padding: 120px 0 80px;
        min-height: 38vh;
    }

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

    .about-values-grid--four {
        grid-template-columns: minmax(0, 1fr);
    }

    .about-why-title {
        font-size: 26px;
    }
}

/* All Tours Page */
.tours-page {
    background: #f5f5f7;
}

.tours-hero {
    padding-top: 130px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top left, rgba(248, 230, 0, 0.08), transparent 60%), #f5f2ed;
}

.tours-hero-title {
    font-family: "Cairo", sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.tours-hero-text {
    font-size: 15px;
    color: var(--text-medium);
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.tours-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.tours-controls {
    margin-top: 14px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(148, 163, 184, 0.45);
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 18px 45px rgba(148, 163, 184, 0.25);
    backdrop-filter: blur(10px);
}

.tours-controls-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 12px;
    align-items: center;
}

.tours-controls-row--secondary {
    margin-top: 10px;
    grid-template-columns: 220px minmax(0, 1fr) 120px 96px 140px;
}

.tours-search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.5);
}

.tours-search i {
    color: var(--text-light);
    font-size: 14px;
}

.tours-search input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 14px;
    color: var(--text-dark);
    background: transparent;
}

.tours-select,
.tours-input {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    padding: 10px 12px;
    background: #ffffff;
    color: var(--text-dark);
    font-size: 14px;
    outline: none;
}

.tours-select:focus,
.tours-input:focus,
.tours-search:focus-within {
    border-color: rgba(43, 83, 167, 0.55);
    box-shadow: 0 0 0 4px rgba(43, 83, 167, 0.12);
}

.tours-price-range {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tours-price-sep {
    color: var(--text-light);
    font-weight: 600;
}

.tours-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    background: #ffffff;
    color: var(--text-medium);
    font-size: 14px;
    cursor: pointer;
    user-select: none;
    justify-content: center;
}

.tours-toggle input {
    accent-color: var(--brand-blue);
}

.tours-reset {
    border: none;
    border-radius: 14px;
    padding: 10px 12px;
    font-weight: 600;
    font-size: 14px;
    background: rgba(43, 83, 167, 0.1);
    color: var(--brand-blue);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.tours-reset:hover {
    background: rgba(43, 83, 167, 0.16);
    transform: translateY(-1px);
}

.tours-results {
    text-align: right;
    color: var(--text-medium);
    font-size: 14px;
    white-space: nowrap;
}

.tours-filter-chip {
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    background: #ffffff;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-medium);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.tours-filter-chip:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(148, 163, 184, 0.35);
}

.tours-filter-chip.active {
    background: var(--brand-blue);
    color: #ffffff;
    border-color: transparent;
}

.tours-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 4px;
}

.tours-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tours-meta-item i {
    color: var(--brand-yellow);
}

.tours-hero-card {
    background:
        radial-gradient(circle at top left, rgba(248, 230, 0, 0.14), transparent 55%),
        radial-gradient(circle at bottom right, rgba(43, 83, 167, 0.18), rgba(15, 23, 42, 0.96));
    border-radius: 24px;
    padding: 24px 24px 22px;
    color: #f9fafb;
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.75);
}

.tours-hero-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.tours-hero-card p {
    font-size: 14px;
    color: rgba(229, 231, 235, 0.9);
    margin-bottom: 16px;
}

.tours-hero-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tours-section {
    background: #f5f5f7;
}

.tours-section:nth-of-type(even) {
    background: #ffffff;
}

.tours-section-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.tours-section-heading {
    max-width: 640px;
}

/* Long program text: full container width, lines spread (not stuck in narrow column) */
.tours-section-long-description {
    width: 100%;
    max-width: 100%;
    margin-top: 1rem;
    align-self: stretch;
}

/* Program / intro copy (overrides Summernote inline styles on <p>) */
.tours-section-long-description .tours-section-prose,
.tours-section-heading .tours-section-prose {
    max-width: none;
    width: 100%;
    margin: 0;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    line-height: 1.85;
    letter-spacing: 0.015em;
    color: var(--text-medium);
    font-size: 1.0625rem;
}

.tours-section-long-description .tours-section-prose p,
.tours-section-heading .tours-section-prose p {
    margin: 0 0 1.15em !important;
    text-align: justify !important;
    line-height: 1.85 !important;
    letter-spacing: 0.015em !important;
    font-size: inherit !important;
    color: inherit !important;
}

.tours-section-long-description .tours-section-prose p:last-child,
.tours-section-heading .tours-section-prose p:last-child {
    margin-bottom: 0 !important;
}

.tours-section-heading p.tours-section-prose {
    text-align: justify !important;
    line-height: 1.85 !important;
    letter-spacing: 0.015em !important;
    font-size: 1.0625rem !important;
    margin: 0 !important;
    color: var(--text-medium) !important;
}

.tours-section-long-description .tours-section-prose br + br,
.tours-section-heading .tours-section-prose br + br {
    display: none;
}

.tours-section-long-description .tours-section-prose ul,
.tours-section-long-description .tours-section-prose ol,
.tours-section-heading .tours-section-prose ul,
.tours-section-heading .tours-section-prose ol {
    margin: 0.5em 0 1em !important;
    padding-inline-start: 1.35rem;
    text-align: start !important;
}

.tours-section-long-description .tours-section-prose li + li,
.tours-section-heading .tours-section-prose li + li {
    margin-top: 0.35em;
}

@media (max-width: 576px) {
    .tours-section-long-description .tours-section-prose,
    .tours-section-long-description .tours-section-prose p,
    .tours-section-heading .tours-section-prose,
    .tours-section-heading .tours-section-prose p,
    .tours-section-heading p.tours-section-prose {
        text-align: start !important;
        hyphens: manual;
        -webkit-hyphens: manual;
    }
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 18px;
}

.tours-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tours-card {
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(148, 163, 184, 0.35);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tours-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.tours-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease-out;
}

.tours-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    background: rgba(15, 23, 42, 0.9);
    color: #f9fafb;
}

.tours-card-badge.badge-sale {
    background: #ef4444;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(239, 68, 68, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.tours-card-badge.badge-right {
    left: auto;
    right: 14px;
}

.tours-card-price-old {
    font-size: 12px;
    color: var(--text-light);
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    margin-right: 4px;
}

.tours-card--hidden {
    display: none !important;
}

.tours-section.tours-section--empty {
    display: none;
}

.tours-card-badge.badge-secondary {
    background: var(--brand-blue);
}

.tours-card-badge.badge-accent {
    background: var(--brand-yellow);
    color: #111827;
}

.tours-card-body {
    padding: 16px 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tours-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-light);
}

.tours-card-category {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
}

.tours-card-rating i {
    color: var(--brand-yellow);
    margin-right: 4px;
}

.tours-card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.tours-card-text {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
}

.tours-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    font-size: 12px;
    color: var(--text-light);
}

.tours-card-meta i {
    margin-right: 4px;
}

.tours-card-footer {
    margin-top: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.tours-card-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-size: 13px;
}

.tours-card-price-label {
    color: var(--text-light);
}

.tours-card-price-main {
    font-size: 18px;
    font-weight: 800;
    color: var(--brand-blue);
}

.tours-card-price-note {
    color: var(--text-light);
}

.tours-card .btn.btn-primary.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.tours-card:hover .tours-card-image img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .tours-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tours-controls-row {
        grid-template-columns: minmax(0, 1fr);
    }

    .tours-controls-row--secondary {
        grid-template-columns: minmax(0, 1fr);
    }

    .tours-results {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .tours-hero {
        padding-top: 120px;
    }

    .tours-hero-title {
        font-size: 32px;
    }

    .tours-grid,
    .tours-grid--compact {
        grid-template-columns: minmax(0, 1fr);
    }
}
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 32px;
    }

    .about-values-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Tour Details Page */
.tour-page {
    padding-top: 100px;
}

.tour-hero {
    background: #f5f2ed;
}

.tour-breadcrumb {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.tour-breadcrumb a {
    color: var(--text-medium);
    text-decoration: none;
}

.tour-breadcrumb span {
    margin: 0 4px;
}

.tour-title {
    font-family: "Cairo", sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.tour-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    font-size: 13px;
    color: var(--text-medium);
}

.tour-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tour-meta-item i {
    color: var(--brand-blue);
}

.tour-price-box {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 14px 18px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(148, 163, 184, 0.4);
    border: 1px solid rgba(148, 163, 184, 0.4);
}

.tour-price-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-light);
}

.tour-price-main {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.tour-price-amount {
    font-size: 30px;
    font-weight: 800;
    color: var(--brand-blue);
}

.tour-price-per {
    font-size: 13px;
    color: var(--text-medium);
}

.tour-price-note {
    font-size: 11px;
    color: var(--text-light);
}

.tour-main-layout {
    margin-top: 24px;
}

.tour-gallery {
    background: linear-gradient(
        165deg,
        #ffffff 0%,
        #f8fafc 48%,
        #f1f5f9 100%
    );
    border-radius: 26px;
    padding: 16px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow:
        0 4px 6px -1px rgba(15, 23, 42, 0.06),
        0 22px 50px rgba(148, 163, 184, 0.38);
}

.tour-gallery-row > [class*="col-"] {
    min-width: 0;
}

.tour-gallery-col-main {
    min-width: 0;
}

.tour-gallery-col-thumbs {
    min-width: 0;
}

.tour-gallery-main {
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 380px;
    max-height: min(52vh, 440px);
    background: linear-gradient(145deg, #e2e8f0 0%, #cbd5e1 100%);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.35),
        0 12px 40px rgba(15, 23, 42, 0.12);
    box-sizing: border-box;
}

.tour-gallery-main .swiper {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: 100%;
    box-sizing: border-box;
}

.tour-gallery-main .swiper-wrapper {
    height: 100%;
}

.tour-gallery-main .swiper-slide {
    height: 100%;
    box-sizing: border-box;
}

.tour-gallery-main img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.45s ease;
}

.tour-gallery-main .swiper-slide:hover img {
    transform: scale(1.02);
}

.tour-gallery-single {
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    height: 380px;
    max-height: min(52vh, 440px);
    background: linear-gradient(145deg, #e2e8f0 0%, #cbd5e1 100%);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.35),
        0 12px 40px rgba(15, 23, 42, 0.12);
}

.tour-gallery-single img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.tour-gallery-main-nav {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 14px;
    z-index: 2;
}

.tour-gallery-prev,
.tour-gallery-next {
    pointer-events: auto;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    background: rgba(255, 255, 255, 0.94);
    color: var(--brand-blue-dark);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.tour-gallery-prev:hover,
.tour-gallery-next:hover {
    transform: scale(1.06);
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.2);
}

.tour-gallery-prev::after,
.tour-gallery-next::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 17px;
    line-height: 1;
}

.tour-gallery-prev::after {
    content: "\f053";
}

.tour-gallery-next::after {
    content: "\f054";
}

.tour-gallery-thumbs {
    height: 380px;
    max-height: min(52vh, 440px);
    overflow: hidden;
    border-radius: 20px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.65);
    box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.9);
}

.tour-gallery-thumbs .swiper-slide {
    opacity: 0.62;
    cursor: pointer;
    border-radius: 14px;
    overflow: hidden;
    transition:
        opacity 0.25s ease,
        box-shadow 0.25s ease;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.tour-gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    box-shadow:
        0 6px 18px rgba(15, 23, 42, 0.14),
        0 0 0 2px var(--brand-yellow);
}

.tour-gallery-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

/* Tour lightbox */
.tour-lightbox-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.tour-lightbox-modal.open {
    opacity: 1;
    visibility: visible;
}

.tour-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(8px);
}

.tour-lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(1100px, 96vw);
    border-radius: 24px;
    overflow: hidden;
}

.tour-lightbox-close {
    position: absolute;
    top: 14px;
    right: 16px;
    z-index: 2;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: none;
    background: rgba(15, 23, 42, 0.9);
    color: #e5e7eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.tour-lightbox-close i {
    font-size: 14px;
}

.tour-lightbox-content {
    position: relative;
    padding: 0 24px 24px;
    background: transparent;
}

#tourLightboxImage {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    display: block;
    border-radius: 22px;
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.8);
}

.tour-booking-card {
    background: #f5f5f5;
    color: var(--text-dark);
    border-radius: 22px;
    padding: 20px 20px 18px;
    box-shadow: 0 20px 45px rgba(148, 163, 184, 0.35);
    border: 1px solid rgba(226, 232, 240, 0.9);
}

.tour-booking-price-strip {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 10px;
}

.tour-booking-from {
    font-size: 13px;
    color: rgba(148, 163, 184, 0.9);
}

.tour-booking-old {
    font-size: 13px;
    text-decoration: line-through;
    color: var(--brand-blue-light);
}

.tour-booking-new {
    font-size: 22px;
    font-weight: 800;
    color: var(--brand-blue-dark);
}

.tour-booking-per {
    font-size: 13px;
    color: var(--brand-blue-light);
}

.tour-booking-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.tour-extras-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tour-extras-list .form-check {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 13px;
}

.tour-extra-price {
    color: var(--brand-yellow);
    font-weight: 600;
}

.tour-booking-flash {
    font-size: 13px;
    border-radius: 12px;
}

.tour-booking-flash ul {
    text-align: start;
}

.tour-booking-form .form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: none;
}

.tour-booking-form .form-control.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15);
}

.tour-booking-field__error {
    display: block;
    font-size: 11px;
    line-height: 1.35;
    color: #b02a37;
    margin-top: 4px;
    min-height: 0;
}

.tour-booking-field__error:empty {
    display: none;
    margin-top: 0;
}

.tour-booking-summary {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed rgba(148, 163, 184, 0.6);
    font-size: 13px;
}

.tour-booking-breakdown {
    margin-bottom: 12px;
}

.tour-booking-breakdown:empty {
    display: none !important;
    margin-bottom: 0;
}

.tour-breakdown-panel {
    border-radius: 14px;
    padding: 12px 14px 10px;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(248, 250, 252, 0.98) 100%
    );
    border: 1px solid rgba(203, 213, 225, 0.85);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.tour-breakdown-panel__head {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--brand-blue-dark);
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.95);
}

.tour-breakdown-panel__head .fa-receipt {
    font-size: 12px;
    opacity: 0.85;
    color: var(--brand-yellow);
}

.tour-breakdown-panel__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tour-breakdown-panel__row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 7px 0;
    font-size: 13px;
    line-height: 1.35;
    border-bottom: 1px dashed rgba(203, 213, 225, 0.65);
}

.tour-breakdown-panel__row:last-child {
    border-bottom: none;
    padding-bottom: 2px;
}

.tour-breakdown-panel__label {
    color: var(--text-medium);
    flex: 1;
    min-width: 0;
}

.tour-breakdown-panel__value {
    font-weight: 700;
    color: var(--brand-blue-dark);
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.tour-breakdown-panel__row:first-child .tour-breakdown-panel__value {
    color: var(--text-dark);
    font-weight: 600;
}

.tour-booking-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
}

.tour-booking-total span:last-child {
    font-weight: 700;
    color: var(--brand-blue-light);
}

.tour-booking-note {
    font-size: 11px;
    color: rgba(156, 163, 175, 0.96);
    margin-top: 6px;
}

.tour-booking-captcha-placeholder {
    margin-top: 10px;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: #020617;
    height: 70px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    font-size: 13px;
    color: rgba(209, 213, 219, 0.95);
}

.tour-details {
    background: #fdfaf4;
}
.tour-intro-text {
    margin-top: 18px;
    background: #ffffff;
    border-radius: 18px;
    padding: 16px 18px 18px;
    box-shadow: 0 12px 32px rgba(148, 163, 184, 0.35);
}

.tour-intro-text h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.tour-intro-text p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 6px;
}

.tour-details {
    background: #fdfaf4;
}

.tour-expect-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 22px 22px 20px;
    box-shadow: 0 18px 45px rgba(148, 163, 184, 0.4);
    border: 1px solid rgba(226, 232, 240, 0.9);
}

.tour-expect-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
}

.tour-day {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px solid rgba(226, 232, 240, 0.9);
}

.tour-day:first-of-type {
    border-top: none;
}

.tour-day-number {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-blue);
}

.tour-day-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.tour-day-body p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 6px;
}

.tour-day-body ul {
    padding-left: 18px;
    margin: 0;
    font-size: 13px;
    color: var(--text-medium);
}

.tour-facts-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px 18px;
    box-shadow: 0 18px 45px rgba(148, 163, 184, 0.4);
    border: 1px solid rgba(148, 163, 184, 0.4);
}

.tour-facts-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.tour-facts-card dl {
    margin: 0;
}

.tour-fact-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 13px;
    padding: 6px 0;
    border-bottom: 1px dashed rgba(226, 232, 240, 0.9);
}

.tour-fact-row:last-child {
    border-bottom: none;
}

.tour-fact-row dt {
    font-weight: 600;
    color: var(--text-medium);
}

.tour-fact-row dd {
    margin: 0;
    text-align: right;
    color: var(--text-dark);
}

.tour-reviews {
    background: #f5f2ed;
}

.tour-review-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px 18px;
    box-shadow: 0 16px 40px rgba(148, 163, 184, 0.3);
}

.tour-review-rating {
    font-size: 15px;
    color: var(--brand-yellow);
    margin-bottom: 8px;
}

.tour-review-text {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 10px;
}

.tour-review-footer {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-light);
}

.tour-review-name {
    font-weight: 600;
    color: var(--text-dark);
}

.tour-related {
    background: #fdfaf4;
}

.related-tour-card {
    display: block;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(148, 163, 184, 0.35);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.related-tour-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.related-tour-body {
    padding: 14px 16px 16px;
}

.related-tour-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.related-tour-category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--brand-blue);
}

.related-tour-rating {
    font-size: 12px;
    color: var(--brand-yellow-dark);
    font-weight: 600;
}

.related-tour-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.related-tour-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    font-size: 12px;
    color: var(--text-medium);
    margin-bottom: 6px;
}

.related-tour-meta i {
    margin-right: 4px;
}

.related-tour-price-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-size: 13px;
}

.related-tour-price-label {
    color: var(--text-light);
}

.related-tour-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--brand-blue);
}

.related-tour-price-unit {
    color: var(--text-medium);
}

.related-tour-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 60px rgba(148, 163, 184, 0.5);
}

@media (max-width: 992px) {
    .tour-hero {
        padding-top: 120px;
    }

    .tour-gallery-main,
    .tour-gallery-single {
        height: 280px;
        max-height: none;
    }

    .tour-gallery-thumbs {
        height: 260px;
        max-height: none;
        margin-top: 4px;
    }

    .tour-gallery-col-thumbs {
        margin-top: 0.5rem;
    }
}

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