h1{
font-size: 18px;
}
/* =========================
   HEADER LAYOUT
========================= */
.site-header .header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  padding-left: 15px;
  padding-right: 25px;
  box-sizing: border-box;
  gap: 15px;
}

/* =========================
   BRAND - LEFT SIDE
========================= */
.site-header .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  text-decoration: none;
}

.site-header .brand img {
  width: auto;
  height: 64px; /* تكبير حجم اللوجو */
  max-height: 64px;
  display: block;
}

.site-header .brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
}

.site-header .brand-text strong {
  font-size: 22px;
  font-weight: 700;
  white-space: nowrap;
}

.site-header .brand-text span {
  font-size: 13px;
  white-space: nowrap;
}

/* =========================
   RIGHT SIDE WRAPPER
========================= */
.site-header .header-right {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}

/* =========================
   CENTER NAVIGATION
========================= */
.site-header .main-nav {
  display: flex;
  justify-content: center;
  flex: 1;
  min-width: 0;
  position: static !important;
  left: auto !important;
  transform: none !important;
}

.site-header .menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header .menu > li {
  position: relative;
}

.site-header .menu > li > a {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  text-decoration: none;
  font-size: 14px;

}

/* =========================
   SUB MENU
========================= */
.site-header .menu-item-has-children {
  position: relative;
}

.site-header .submenu-toggle {
  margin-left: 6px;
}

.site-header .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  display: none;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  z-index: 99;
}

.site-header .menu-item-has-children:hover > .sub-menu {
  display: block;
}

/* =========================
   HEADER TOOLS - RIGHT SIDE
========================= */
.site-header .header-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-left: auto;
  flex: 0 0 auto;
}

/* Language button */
.site-header .lang-dropdown {
  position: relative;
}

.site-header .lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

/* Search button */
.site-header .icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-header .header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 14px;
  line-height: 1;
}

/* =========================
   MOBILE TOGGLE
========================= */
.site-header .nav-toggle {
  display: none;
}


.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.contact-social-link {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.contact-social-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-social-icon i,
.contact-social-icon svg {
  width: 22px;
  height: 22px;
  font-size: 22px;
  display: block;
  line-height: 1;
  flex-shrink: 0;
}

.contact-social-link:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 12px 24px rgba(0,0,0,0.18);
  color: #fff;
}

/* Brand Colors */
.social-facebook {
  background: #1877f2;
}

.social-twitter {
  background: #000000;
}

.social-instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.social-tiktok {
  background: #000000;
}

.social-snapchat {
  background: #fffc00;
  color: #000;
}

.social-pinterest {
  background: #e60023;
}

.social-linkedin {
  background: #0a66c2;
}

.social-youtube {
  background: #ff0000;
}

.social-tumblr {
  background: #36465d;
}

.social-tripadvisor {
  background: #34e0a1;
  color: #000;
}

/* hover keeps readable text */
.social-snapchat:hover,
.social-tripadvisor:hover {
  color: #000;
}

.page-banner {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background-image: var(--banner-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.18),
        rgba(0, 0, 0, 0.30)
    );
    z-index: 1;
}

.page-banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
    color: #fff;
}

.page-banner-content .eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #f3d27a;
}

.page-banner-content h1 {
    margin: 0 0 18px;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 700;
    color: #fff;
}

.page-banner-content p {
    margin: 0 auto;
    max-width: 700px;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
}

/* تابلت */
@media (max-width: 991px) {
    .page-banner {
        min-height: 360px;
        padding: 70px 24px;
    }

    .page-banner-content {
        max-width: 760px;
    }

    .page-banner-content h1 {
        font-size: 40px;
    }

    .page-banner-content p {
        font-size: 17px;
        line-height: 1.7;
    }
}

/* موبايل */
@media (max-width: 767px) {
    .page-banner {
        min-height: 300px;
        padding: 55px 18px;
    }

    .page-banner-content {
        max-width: 100%;
        padding: 0 10px;
    }

    .page-banner-content .eyebrow {
        font-size: 12px;
        letter-spacing: 1.2px;
        margin-bottom: 10px;
    }

    .page-banner-content h1 {
        font-size: 28px;
        line-height: 1.25;
        margin-bottom: 14px;
    }

    .page-banner-content p {
        font-size: 15px;
        line-height: 1.6;
        max-width: 100%;
    }
}

.breadcrumbs {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
    text-align: center;
}

.breadcrumbs a {
    color: #f3d27a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.breadcrumbs a:hover {
    color: #ffffff;
    opacity: 1;
}

@media (max-width: 767px) {
    .breadcrumbs {
        margin-top: 14px;
        font-size: 13px;
        line-height: 1.5;
        padding: 0 8px;
    }
}

.max-wide {
    margin-left: auto;
    margin-right: auto;
text-align: center;
}

.section-title {
    display: block;
    width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.footer-links li a,
.footer-links li a:hover,
.footer-links li a:focus,
.footer-links li a:active {
    color: #fff;
    text-decoration: none;
}

.footer-links li a:hover {
    opacity: 1;
}
/* =========================================
   Tablet header -> use mobile menu
   ========================================= */
/* =========================================
   TABLET HEADER = SAME MOBILE BEHAVIOR
   Put this at the VERY END of custom.css
========================================= */
@media (min-width: 861px) and (max-width: 1199px) {

  /* --- reset desktop header behavior from custom.css --- */
  .site-header,
  .site-header .header-wrap,
  .site-header .header-right,
  .site-header .main-nav,
  .site-header .menu,
  .site-header .header-tools {
    max-width: 100%;
  }

  .site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 9998 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    overflow: visible !important;
  }

  .site-header .header-wrap,
  .header-wrap {
    display: grid !important;
    grid-template-columns: auto auto 1fr !important;
    align-items: center !important;
    gap: 12px !important;
    min-height: 74px !important;
  }

  .site-header .brand img,
  .brand img {
    width: 120px !important;
    height: 50px !important;
    max-height: 50px !important;
  }

  .site-header .brand-text span,
  .brand-text span,
  .site-header .header-right .main-nav,
  .site-header .header-right .lang-switch,
  .site-header .header-right .lang-dropdown,
  .site-header .header-right .header-cta,
  .site-header .main-nav,
  .site-header .menu {
    display: none !important;
  }

  .site-header .header-right,
  .header-right {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 10px !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
  }

  .site-header .header-tools,
  .header-tools {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 8px !important;
    margin-left: auto !important;
  }

  .site-header .nav-toggle,
  .site-header .mobile-close,
  .nav-toggle,
  .mobile-close {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .site-header .nav-toggle,
  .nav-toggle {
    width: 48px !important;
    height: 48px !important;
    border-radius: 14px !important;
    position: relative !important;
    z-index: 10001 !important;
  }

  /* --- IMPORTANT: make overlay fullscreen like mobile --- */
  .site-header .mobile-nav-shell,
  .mobile-nav-shell {
    display: block !important;
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    min-height: 100dvh !important;
    background: linear-gradient(180deg, rgba(20,48,75,.94), rgba(17,70,108,.96)) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: .25s ease !important;
    z-index: 10000 !important;
  }

  .site-header .mobile-nav-shell.open,
  .mobile-nav-shell.open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .site-header .mobile-nav-panel,
  .mobile-nav-panel {
    width: min(100%, 680px) !important;
    max-width: 100% !important;
    height: 100dvh !important;
    min-height: 100dvh !important;
    padding: 18px 16px 28px !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    background: linear-gradient(180deg, rgba(20,48,75,.98), rgba(17,70,108,.98)) !important;
    position: relative !important;
    z-index: 10001 !important;
  }

  .mobile-nav-head {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 14px !important;
    padding-bottom: 18px !important;
    border-bottom: 1px solid rgba(212,160,23,.28) !important;
  }

  .mobile-nav-head .brand-text strong,
  .mobile-nav-head .brand-text span,
  .mobile-nav-head .brand {
    color: #fff !important;
  }

  .site-header .mobile-close,
  .mobile-close {
    background: rgba(255,255,255,.08) !important;
    border-color: rgba(212,160,23,.8) !important;
    color: #fff !important;
    z-index: 10002 !important;
  }

  .mobile-menu-grid {
    display: grid !important;
    gap: 14px !important;
    margin-top: 26px !important;
  }

  .mobile-nav-item,
  .mobile-lang-wrap,
  .mobile-action-card {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    min-height: 60px !important;
    padding: 16px 18px !important;
    border-radius: 20px !important;
    background: rgba(255,255,255,.08) !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.04) !important;
    font-weight: 800 !important;
  }

  .mobile-nav-item.active {
    background: linear-gradient(90deg, #f20c62, #ff2274) !important;
    border-color: rgba(255,255,255,.1) !important;
  }

  .mobile-nav-icon {
    width: 22px !important;
    color: var(--secondary-color) !important;
    display: inline-grid !important;
    place-items: center !important;
  }

  .mobile-card-title {
    color: rgba(255,255,255,.8) !important;
    font-size: .9rem !important;
    font-weight: 700 !important;
    margin: 24px 0 10px !important;
  }

  .mobile-lang-wrap {
    display: block !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
  }

  .mobile-lang-switch {
    display: flex !important;
    width: 100% !important;
    background: rgba(255,255,255,.08) !important;
    color: #fff !important;
    border-color: rgba(255,255,255,.08) !important;
  }

  .mobile-lang-switch .lang-badge {
    background: rgba(255,255,255,.12) !important;
    color: var(--secondary-color) !important;
  }

  .mobile-lang-switch select {
    color: #fff !important;
  }

  .mobile-action-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0,1fr)) !important;
    gap: 16px !important;
    margin-top: 24px !important;
  }

  .mobile-action-card {
    justify-content: center !important;
    flex-direction: column !important;
    min-height: 92px !important;
  }

  html,
  body {
    overflow-x: hidden !important;
  }

  body.nav-open {
    overflow: hidden !important;
    touch-action: none;
  }

  .site-header .mobile-nav-shell,
  .mobile-nav-shell {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: stretch !important;
  }

  .site-header .mobile-nav-panel,
  .mobile-nav-panel {
    width: min(100%, 680px) !important;
    max-width: 100% !important;
    height: 100dvh !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    position: relative !important;
    right: 0 !important;
    left: auto !important;
  }

}


@media (max-width: 1199px) {
  .site-header .nav-toggle,
  .nav-toggle {
    order: 99 !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    justify-self: end !important;
  }
}


/* Force same image/card media height */
.media.featured-tour-media,
.featured-tour-media {
    position: relative !important;
    width: 100% !important;
    height: 260px !important;
    min-height: 260px !important;
    max-height: 260px !important;
    overflow: hidden !important;
    border-radius: 16px !important;
}

/* Force link to fill the media box */
.media.featured-tour-media > a.featured-tour-image-link,
.featured-tour-media > a.featured-tour-image-link {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}

/* Force image to same size */
.media.featured-tour-media img,
.featured-tour-media img,
.featured-tour-image-link img {
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    max-height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
}

/* Keep price badge above image */
.media.featured-tour-media .badge,
.featured-tour-media .badge {
    position: absolute !important;
    z-index: 5 !important;
}

@media (max-width: 767px) {
    .media.featured-tour-media,
    .featured-tour-media {
        height: 220px !important;
        min-height: 220px !important;
        max-height: 220px !important;
    }
}


/* ===============================
   Main Navigation - Clean Version
================================ */

.main-nav .menu,
.main-nav .sub-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav .menu {
    display: flex;
    align-items: center;
    gap: 22px;
}

.main-nav .menu li {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* روابط القائمة الرئيسية */
.main-nav .menu > li {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
}

.main-nav .menu > li > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

/* عناصر القائمة الرئيسية التي بها سهم */
.main-nav .menu > li.menu-item-has-children {
    gap: 5px;
}

/* زر السهم الرئيسي */
.main-nav .menu > li > .submenu-toggle {
    position: static !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    min-width: 14px;
    margin: 0 !important;
    padding: 0 !important;
    border: 0;
    background: transparent;
    line-height: 1 !important;
    transform: none !important;
}

.main-nav .menu > li > .submenu-toggle::before,
.main-nav .menu > li > .submenu-toggle::after {
    display: block;
    margin: 0;
    padding: 0;
    line-height: 1;
}

/* ===============================
   First Dropdown
================================ */

.main-nav .menu > li > .sub-menu {
    position: absolute;
    top: calc(100% + 9px);
    left: 0;
    z-index: 9999;
    min-width: 255px;
    padding: 8px 0;
    background: #fff;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
}

.main-nav .menu > li:hover > .sub-menu,
.main-nav .menu > li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* روابط كل القوائم الفرعية */
.main-nav .sub-menu li > a {
    position: relative;
    display: block;
    padding: 10px 16px;
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.25;
    color: #24384f;
    text-decoration: none;
    white-space: nowrap;
}

/* تقليل المسافة بين العناصر */
.main-nav .sub-menu li + li > a {
    margin-top: 0;
}

.main-nav .sub-menu li > a:hover {
    background: #f2f7fd;
    color: #1570c8;
}

/* ===============================
   Second / Third Dropdown
================================ */

.main-nav .sub-menu .sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 10000;
    min-width: 245px;
    padding: 8px 0;
    background: #fff;
    border-radius: 0 14px 14px 0;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
    transition: all 0.2s ease;
}

.main-nav .sub-menu li:hover > .sub-menu,
.main-nav .sub-menu li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* العنصر الذي يحتوي على قائمة فرعية داخل Dropdown */
.main-nav .sub-menu li.menu-item-has-children > a {
    padding-right: 34px;
}

/* السهم داخل القوائم الفرعية */
.main-nav .sub-menu li.menu-item-has-children > a::after {
    content: "›";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    line-height: 1;
    color: #64748b;
}

/* إخفاء زر السهم الحقيقي داخل Dropdown حتى لا يعمل مسافة */
.main-nav .sub-menu .submenu-toggle {
    display: none !important;
}
/* تصغير خلفية hover في القائمة الرئيسية */
.main-nav .menu > li:hover {
    background: transparent !important;
}


.main-nav .menu > li:hover > a {
    background: #cfe7ff;
    color: #1570c8;
    border-radius: 10px;
    /* الأعلى | اليمين | الأسفل | اليسار */
    padding: 0px 2px 0px 2px !important;
    height: auto !important;
    line-height: 1 !important;

}



.lang-menu a img {
    width: 26px !important;
    height: 18px !important;
    min-width: 26px !important;
    max-width: 26px !important;
    border-radius: 3px !important;
    object-fit: cover !important;
    display: inline-block !important;
    margin: 0 !important;
    vertical-align: middle !important;
    margin-right: 8px !important;

}


.whatsapp-fixed {position: fixed;bottom: 90px;right: 30px;z-index: 1000;background: #25d366;color: white;width: 60px;height: 60px;border-radius: 50%;display: flex;align-items: center;justify-content: center;font-size: 1.5rem;text-decoration: none;box-shadow: var(--shadow-dramatic);transition: all 0.3s ease;animation: bounce 2s infinite;}@keyframes bounce {0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-10px); } 60% { transform: translateY(-5px); } }.whatsapp-fixed:hover {transform: scale(1.1);color: white;}

.floating-quote-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--primary-color);
  color: #fff;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 9999;
}

.floating-quote-btn:hover {
  background-color: var(--hover-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .floating-quote-btn {
    padding: 12px 16px;
    font-size: 14px;
    bottom: 15px;
    right: 15px;
  }
}

@media (max-width: 767px) {
    .floating-quote-btn.is-hidden-at-bottom {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(20px);
    }

    .floating-quote-btn {
        transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    }
}

/* ===============================
   Footer Bottom - Desktop
================================ */

.footer-bottom {
    display: grid !important;
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    align-items: center !important;
    gap: 16px !important;
    width: 100%;
    padding-top: 24px !important;
    padding-bottom: 24px !important;
    text-align: center !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ===============================
   Row 1: Contact Info
================================ */

.footer-bottom .footer-contact-list {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 10px 14px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    list-style: none !important;
    text-align: center !important;
    float: none !important;
}

.footer-bottom .footer-contact-list li {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 9px !important;
    margin: 0 !important;

    /* الخلفية والانحناء */
    padding: 10px 15px !important;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.11);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);

    color: rgba(255, 255, 255, 0.84);
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.footer-bottom .footer-contact-list li:hover {
    background: rgba(255, 255, 255, 0.105);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.footer-bottom .footer-contact-list li i {
    color: #e2a900;
    font-size: 15px;
    flex: 0 0 auto;
}

.footer-bottom .footer-contact-list li a,
.footer-bottom .footer-contact-list li span,
.footer-bottom .footer-contact-list li span a {
    color: rgba(255, 255, 255, 0.84);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-bottom .footer-contact-list li a:hover,
.footer-bottom .footer-contact-list li span a:hover {
    color: #ffffff;
}

.footer-bottom .footer-contact-list li a + a {
    margin-left: 8px;
}

/* ===============================
   Row 2: Social Media
================================ */

.footer-bottom .socials {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    justify-self: center !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    text-align: center !important;
    float: none !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    overflow: visible !important;
}

.footer-bottom .socials a {
    width: 42px;
    height: 42px;
    min-width: 42px;
    max-width: 42px;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 42px !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.footer-bottom .socials a i,
.footer-bottom .socials a svg {
    display: block;
    font-size: 17px;
    width: 17px;
    height: 17px;
    line-height: 1;
}

.footer-bottom .socials a:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

/* ألوان السوشيال عند الوقوف */
.footer-bottom .socials a[aria-label="Facebook"]:hover {
    background: #1877f2;
}

.footer-bottom .socials a[aria-label="Twitter"]:hover {
    background: #111111;
}

.footer-bottom .socials a[aria-label="Instagram"]:hover {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.footer-bottom .socials a[aria-label="Tiktok"]:hover {
    background: #000000;
}

.footer-bottom .socials a[aria-label="Snapchat"]:hover {
    background: #fffc00;
    color: #111111;
}

.footer-bottom .socials a[aria-label="Pinterest"]:hover {
    background: #e60023;
}

.footer-bottom .socials a[aria-label="Linkedin"]:hover {
    background: #0a66c2;
}

.footer-bottom .socials a[aria-label="Youtube"]:hover {
    background: #ff0000;
}

.footer-bottom .socials a[aria-label="Tumblr"]:hover {
    background: #35465c;
}

.footer-bottom .socials a[aria-label="Tripadvisor"]:hover {
    background: #34e0a1;
    color: #111111;
}

/* ===============================
   Row 3: Copyright
================================ */

.footer-bottom > br {
    display: none !important;
}

.footer-bottom > span {
    display: block !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
    text-align: center !important;
    justify-self: center !important;
}

.footer-bottom > span a {
    color: #ffffff;
    text-decoration: none;
}

/* ===============================
   Mobile
================================ */

@media (max-width: 767px) {
    .footer-bottom {
        gap: 15px !important;

        /* تصغير المسافة من فوق وتحت */
        padding-top: 24px !important;
        padding-bottom: 24px !important;

        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .footer-bottom .footer-contact-list {
        flex-direction: column !important;
        gap: 10px !important;
        margin: 0 auto !important;
        padding: 0 12px !important;
    }

    .footer-bottom .footer-contact-list li {
        width: auto;
        max-width: 100%;
        min-height: 38px;
        padding: 8px 14px !important;
        font-size: 13.5px;
        line-height: 1.5;
        justify-content: center !important;
        text-align: center !important;
        border-radius: 999px;
    }

    .footer-bottom .footer-contact-list li i {
        font-size: 15px;
    }

    .footer-bottom .footer-contact-list li a + a {
        margin-left: 6px;
    }

    /* كل أيقونات السوشيال في صف واحد */
    .footer-bottom .socials {
        width: 100% !important;
        max-width: 100% !important;
        flex-wrap: nowrap !important;
        justify-content: center !important;
        gap: 8px !important;
        padding: 0 8px !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        overflow: visible !important;
    }

    .footer-bottom .socials a {
        width: 39px !important;
        height: 39px !important;
        min-width: 39px !important;
        max-width: 39px !important;
        flex: 0 0 39px !important;
    }

    .footer-bottom .socials a i,
    .footer-bottom .socials a svg {
        font-size: 16px;
        width: 16px;
        height: 16px;
    }

    .footer-bottom > span {
        max-width: 92%;
        line-height: 1.6;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
}

/* ===============================
   Small Mobile
================================ */

@media (max-width: 430px) {
    .footer-bottom {
        padding-top: 22px !important;
        padding-bottom: 22px !important;
        gap: 14px !important;
    }

    .footer-bottom .socials {
        gap: 7px !important;
        padding-left: 6px !important;
        padding-right: 6px !important;
    }

    .footer-bottom .socials a {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        max-width: 36px !important;
        flex-basis: 36px !important;
    }

    .footer-bottom .socials a i,
    .footer-bottom .socials a svg {
        font-size: 16px;
        width: 16px;
        height: 16px;
    }
}

/* ===============================
   Very Small Mobile
================================ */

@media (max-width: 380px) {
    .footer-bottom {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
        gap: 13px !important;
    }

    .footer-bottom .socials {
        gap: 5px !important;
        padding-left: 4px !important;
        padding-right: 4px !important;
    }

    .footer-bottom .socials a {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        max-width: 32px !important;
        flex-basis: 32px !important;
    }

    .footer-bottom .socials a i,
    .footer-bottom .socials a svg {
        font-size: 13px;
        width: 13px;
        height: 13px;
    }

    .footer-bottom .footer-contact-list li {
        padding: 7px 12px !important;
        font-size: 13px;
    }
}

/* ===============================
   Footer Grid Lists
================================ */

.footer-grid {
    width: 100%;
    max-width: 1380px;
    margin-left: auto;
    margin-right: auto;

    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;

    padding-top: 35px;
    padding-bottom: 35px;
}

/* كل قائمة / عمود */
.footer-grid > div {
    position: relative;
    text-align: center;
    padding: 0 24px;
}

/* الخط الفاصل بين كل قائمة */
.footer-grid > div:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 8px;
    right: 0;
    width: 1px;
    height: calc(100% - 16px);
    background: rgba(255, 255, 255, 0.14);
}

/* عنوان القائمة */
.footer-grid h4 {
    position: relative;
    display: inline-block;
    margin: 0 0 18px;
    padding-bottom: 10px;

    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.4;
    text-align: center;
}

/* خط صغير أسفل العنوان */
.footer-grid h4::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 46px;
    height: 3px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: #e2a900;
}

/* القائمة */
.footer-grid .footer-links {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

/* عناصر القائمة بدون خطوط بينها */
.footer-grid .footer-links li {
    margin: 0;
    padding: 0;
    text-align: center;
    border: 0 !important;
}

/* إزالة أي خط قديم بين العناصر */
.footer-grid .footer-links li + li {
    border-top: 0 !important;
}

/* الرابط */
.footer-grid .footer-links li a {
    display: block;
    width: 100%;
    padding: 7px 4px;

    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
    text-align: center;
    text-decoration: none;

    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-grid .footer-links li a:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

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

@media (max-width: 1199px) {
    .footer-grid {
        max-width: 1100px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 28px 0;
    }

    .footer-grid > div {
        padding: 0 22px;
    }

    /* إزالة الخطوط الرأسية في التابلت لتجنب شكل غير مرتب */
    .footer-grid > div::after {
        display: none;
    }

    /* خط أفقي بين القوائم في التابلت */
    .footer-grid > div {
        padding-bottom: 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .footer-grid > div:nth-last-child(-n+2) {
        border-bottom: 0;
    }
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 0;
    }

    .footer-grid > div {
        padding: 0 20px 24px;
    }

    .footer-grid > div:nth-last-child(-n+2) {
        border-bottom: 0;
    }
}

@media (max-width: 575px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 0;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .footer-grid > div {
        padding: 0 0 24px;
        margin-bottom: 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .footer-grid > div:last-child {
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: 0;
    }

    .footer-grid h4 {
        font-size: 17px;
        margin-bottom: 14px;
    }

    .footer-grid .footer-links li a {
        padding: 7px 6px;
        font-size: 14px;
    }
}

.avatar-circle {
    color: #135deg;
}


/* =====================================================
   Premium Featured Tour Card - White Background
   Full CSS With Image Clipping Fix
===================================================== */

article.card.featured-tour-card,
article.card.featured-tour-card *,
article.card.featured-tour-card *::before,
article.card.featured-tour-card *::after {
    box-sizing: border-box !important;
}

/* ================= Card ================= */

article.card.featured-tour-card {
    position: relative !important;
    overflow: visible !important;
    background: #ffffff !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    border-radius: 30px !important;
    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.12),
        0 4px 12px rgba(15, 23, 42, 0.06) !important;
    isolation: isolate !important;
    transform: translateY(0) !important;
    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease,
        border-color 0.45s ease !important;
}

article.card.featured-tour-card:hover {
    transform: translateY(-12px) !important;
    border-color: rgba(13, 110, 253, 0.25) !important;
    box-shadow:
        0 30px 70px rgba(15, 23, 42, 0.20),
        0 10px 25px rgba(13, 110, 253, 0.12) !important;
}

/* خط مضيء أعلى الكارت */
article.card.featured-tour-card::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 28px !important;
    right: 28px !important;
    height: 4px !important;
    border-radius: 0 0 999px 999px !important;
    background: linear-gradient(90deg, #0d6efd, #20c997, #ffc107) !important;
    z-index: 10 !important;
}

/* ================= Image ================= */

article.card.featured-tour-card .featured-tour-media {
    position: relative !important;
    overflow: hidden !important;
    width: auto !important;
    max-width: none !important;
    margin: 14px 14px 0 !important;
    border-radius: 24px !important;
    background: #f1f5f9 !important;
}

article.card.featured-tour-card .featured-tour-image-link {
    display: block !important;
    position: relative !important;
    width: 100% !important;
    height: 285px !important;
    overflow: hidden !important;
    border-radius: 24px !important;
}

article.card.featured-tour-card .featured-tour-image-link::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    pointer-events: none !important;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.00) 35%, rgba(15, 23, 42, 0.50) 100%),
        linear-gradient(135deg, rgba(13, 110, 253, 0.16), rgba(32, 201, 151, 0.08)) !important;
    opacity: 0.85 !important;
    transition: opacity 0.4s ease !important;
}

article.card.featured-tour-card:hover .featured-tour-image-link::before {
    opacity: 0.95 !important;
}

article.card.featured-tour-card .featured-tour-media img {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center center !important;
    margin: 0 !important;
    border-radius: 24px !important;
    transform: scale(1.01) !important;
    transform-origin: center center !important;
    filter: saturate(1.08) contrast(1.04) !important;
    transition:
        transform 0.75s ease,
        filter 0.75s ease !important;
}

article.card.featured-tour-card:hover .featured-tour-media img {
    transform: scale(1.08) !important;
    filter: saturate(1.18) contrast(1.08) brightness(0.92) !important;
}

/* ================= Body ================= */


/* ================= Meta ================= */

article.card.featured-tour-card .featured-tour-meta {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: flex-start !important;
    gap: 10px !important;
    margin: -48px 0 22px !important;
    position: relative !important;
    z-index: 8 !important;
    width: 100% !important;
}

article.card.featured-tour-card .featured-tour-meta span {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    width: auto !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 9px 13px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    color: #0f172a !important;
    border: 1px solid rgba(226, 232, 240, 0.95) !important;
    box-shadow:
        0 10px 25px rgba(15, 23, 42, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    font-size: 12.5px !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    letter-spacing: 0.1px !important;
    white-space: normal !important;
}

article.card.featured-tour-card .featured-tour-meta span i,
article.card.featured-tour-card .featured-tour-meta span .avatar-circle {
    width: 27px !important;
    height: 27px !important;
    min-width: 27px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    border-radius: 50% !important;
    background: #f8fafc !important;
    color: #0d6efd !important;
    font-size: 13px !important;
    box-shadow:
        0 5px 12px rgba(13, 110, 253, 0.16),
        inset 0 0 0 1px rgba(13, 110, 253, 0.10) !important;
}

/* ألوان مختلفة للأيقونات */
article.card.featured-tour-card .featured-tour-meta span:nth-child(1) i,
article.card.featured-tour-card .featured-tour-meta span:nth-child(1) .avatar-circle {
    color: #0d6efd !important;
}

article.card.featured-tour-card .featured-tour-meta span:nth-child(2) i,
article.card.featured-tour-card .featured-tour-meta span:nth-child(2) .avatar-circle {
    color: #198754 !important;
}

article.card.featured-tour-card .featured-tour-meta span:nth-child(3) i,
article.card.featured-tour-card .featured-tour-meta span:nth-child(3) .avatar-circle {
    color: #fd7e14 !important;
}

article.card.featured-tour-card .featured-tour-meta span:nth-child(4) i,
article.card.featured-tour-card .featured-tour-meta span:nth-child(4) .avatar-circle {
    color: #dc3545 !important;
}


/* ================= Description ================= */

article.card.featured-tour-card .featured-tour-desc {
    color: #64748b !important;
    font-size: 15.5px !important;
    line-height: 1.8 !important;
    margin: 0 0 24px !important;
}

/* ================= Button ================= */

article.card.featured-tour-card .featured-tour-link {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 9px !important;
    min-height: 46px !important;
    padding: 12px 22px !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, #0d6efd 0%, #0954c9 55%, #083b93 100%) !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    letter-spacing: 0.2px !important;
    text-decoration: none !important;
    border: 0 !important;
    overflow: hidden !important;
    box-shadow:
        0 14px 28px rgba(13, 110, 253, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.35) !important;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease !important;
}

article.card.featured-tour-card .featured-tour-link::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: -120% !important;
    width: 80% !important;
    height: 100% !important;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.35),
        transparent
    ) !important;
    transform: skewX(-20deg) !important;
    transition: left 0.6s ease !important;
}

article.card.featured-tour-card .featured-tour-link:hover::before {
    left: 140% !important;
}

article.card.featured-tour-card .featured-tour-link:hover {
    color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow:
        0 18px 36px rgba(13, 110, 253, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.35) !important;
}

article.card.featured-tour-card .featured-tour-link i {
    font-size: 15px !important;
    transition: transform 0.3s ease !important;
}

article.card.featured-tour-card .featured-tour-link:hover i {
    transform: translateX(5px) !important;
}

/* ================= Mobile ================= */

@media (max-width: 767px) {
    article.card.featured-tour-card {
        border-radius: 24px !important;
        background: #ffffff !important;
    }

    article.card.featured-tour-card::before {
        left: 22px !important;
        right: 22px !important;
    }

    article.card.featured-tour-card .featured-tour-media {
        margin: 10px 10px 0 !important;
        border-radius: 20px !important;
    }

    article.card.featured-tour-card .featured-tour-image-link {
        height: 235px !important;
        border-radius: 20px !important;
    }

    article.card.featured-tour-card .featured-tour-media img {
        border-radius: 20px !important;
    }

    article.card.featured-tour-card .featured-tour-body {
        padding: 20px 18px 24px !important;
        background: #ffffff !important;
        border-radius: 0 0 24px 24px !important;
    }

    article.card.featured-tour-card .featured-tour-meta {
        margin-top: -42px !important;
        gap: 8px !important;
    }

    article.card.featured-tour-card .featured-tour-meta span {
        font-size: 12px !important;
        padding: 8px 10px !important;
    }

    article.card.featured-tour-card .featured-tour-meta span i,
    article.card.featured-tour-card .featured-tour-meta span .avatar-circle {
        width: 24px !important;
        height: 24px !important;
        min-width: 24px !important;
        font-size: 12px !important;
    }


    article.card.featured-tour-card .featured-tour-desc {
        font-size: 14.5px !important;
        line-height: 1.7 !important;
    }

    article.card.featured-tour-card .featured-tour-link {
        width: 100% !important;
    }
}

/* عرض عنوان الكارت كامل بدون نقاط ... */
article.card.featured-tour-card .featured-tour-title,
article.card.featured-tour-card .featured-tour-title a {
    display: block !important;
    overflow: visible !important;
    white-space: normal !important;
    text-overflow: unset !important;
    -webkit-line-clamp: unset !important;
    line-clamp: unset !important;
    -webkit-box-orient: unset !important;
    max-height: none !important;
    height: auto !important;
}

/* حجم خط واحد للعنوان سواء سطر أو سطرين أو ثلاثة */
article.card.featured-tour-card .featured-tour-title {
    margin: 0 0 12px !important;
    line-height: 1.35 !important;
}

article.card.featured-tour-card .featured-tour-title a {
    color: #0f172a !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    text-decoration: none !important;
}

/* Hover */
article.card.featured-tour-card .featured-tour-title a:hover {
    color: #0d6efd !important;
}

/* الموبيل */
@media (max-width: 767px) {
    article.card.featured-tour-card .featured-tour-title a {
        font-size: 18px !important;
        line-height: 1.35 !important;
    }
}