/* ==========================================================================
   Cloud Traveler Agency — brand overrides
   Palette sampled from the CTA logo:
     steel blue  #2E6DA4  the "C"
     sky blue    #29ABE2  the swoosh and the "T"
     maroon      #8C4A48  the "A" and the wordmark
   Loaded after style.css so these win without editing the vendor stylesheet.
   ========================================================================== */

:root {
  /* Primary action colour — replaces the template's green */
  --primary-color1: #2e6da4;
  --primary-color1-opc: 46, 109, 164;

  /* Accent — replaces the template's amber. Maroon keeps the logo's pairing. */
  --primary-color2: #8c4a48;
  --primary-color2-opc: 140, 74, 72;

  /* Additional brand tokens */
  --brand-sky: #29abe2;
  --brand-sky-opc: 41, 171, 226;
  --brand-steel: #2e6da4;
  --brand-maroon: #8c4a48;
  --brand-navy: #12283d;

  /* Warm amber is still the right colour for star ratings — keep it separate
     from the accent so rebrands don't turn review stars maroon. */
  --rating-color: #fbb03b;

  --title-color: #12283d;
}

/* Star ratings kept amber rather than inheriting the maroon accent. */
.rating i,
.ratting i,
.star-rating i,
.rating-star i {
  color: var(--rating-color);
}

/* Gradients in the template hardcode the old green/amber pair. */
.primary-btn1,
.primary-btn2 {
  --bs-btn-bg: var(--primary-color1);
}

/* Logo sizing — the CTA mark is wider than the template's wordmark. */
.company-logo img,
.header-logo img,
.mobile-logo-wrap img {
  max-height: 58px;
  width: auto;
}

.footer-section .footer-logo img {
  max-height: 84px;
  width: auto;
}

/* ---- Arabic typography -------------------------------------------------
   Rubik covers Arabic well and is already bundled, but the template pins
   Sansita/Satisfy on display headings — neither has Arabic glyphs, so RTL
   headings would fall back to a system serif. Force the Arabic stack. */
[dir="rtl"] body,
[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4,
[dir="rtl"] h5,
[dir="rtl"] h6,
[dir="rtl"] .section-title h2,
[dir="rtl"] .section-title h3 {
  font-family: "Rubik", "Segoe UI", Tahoma, sans-serif;
}

/* Latin-only script fonts have no Arabic coverage — drop the italic flourish
   rather than render a broken fallback. */
[dir="rtl"] .section-title span,
[dir="rtl"] .banner-content span {
  font-family: "Rubik", "Segoe UI", Tahoma, sans-serif;
  font-style: normal;
}

/* Hotline number must never wrap or reorder */
.hotline-area .content h6 a,
.hotline-area .content h6 {
  white-space: nowrap;
}

/* ---- Language toggle --------------------------------------------------- */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-inline-end: 14px;
  padding: 7px 14px;
  border: 1px solid rgba(var(--primary-color1-opc), 0.35);
  border-radius: 30px;
  color: var(--primary-color1);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.lang-toggle:hover {
  background-color: var(--primary-color1);
  border-color: var(--primary-color1);
  color: #fff;
}

.lang-toggle i {
  font-size: 15px;
}

/* Headers that sit over the hero image need a light-on-dark variant. */
header.style-2 .lang-toggle {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

/* The template's sticky style-2 header stays a 20%-white glass with white
   links — unreadable once it floats over light sections. Make the sticky
   state a solid white bar with dark text. Template selectors run four
   classes deep, hence the !important on the colour swaps. */
header.header-area.style-2.sticky {
  background-color: #ffffff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: 0 6px 22px rgba(18, 40, 61, 0.1);
}

/* Desktop nav only: below 992px .main-menu is the dark off-canvas panel,
   where the links must stay white even while the header is sticky. */
@media (min-width: 992px) {
  header.header-area.style-2.sticky .menu-list > li > a {
    color: var(--title-color) !important;
  }
  header.header-area.style-2.sticky .menu-list > li > a:hover {
    color: var(--primary-color1) !important;
  }
}
@media (max-width: 991.98px) {
  header.header-area.style-2 .main-menu .menu-list > li > a,
  header.header-area.style-2 .main-menu .menu-list > li > a.drop-down,
  header.header-area.style-2 .main-menu .menu-list li ul li a,
  header.header-area.style-2 .main-menu .dropdown-icon { color: #fff !important; }
  header.header-area.style-2 .main-menu .menu-list > li > a:hover { color: var(--brand-sky) !important; }
}

header.header-area.style-2.sticky .lang-toggle {
  border-color: rgba(var(--primary-color1-opc), 0.35) !important;
  color: var(--primary-color1) !important;
}

header.header-area.style-2.sticky .nav-right svg,
header.header-area.style-2.sticky .sidebar-button svg {
  fill: var(--title-color);
}

header.header-area.style-2.sticky .hotline-area .content span {
  color: var(--text-color) !important;
}

header.header-area.style-2.sticky .hotline-area .content h6 a {
  color: var(--title-color) !important;
}

/* ==========================================================================
   Destinations, tours and the enquiry CTA
   ========================================================================== */

.lead-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-color);
}

/* ---- Cards (continent / country / tour) -------------------------------- */
.continent-card,
.country-card,
.tour-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid #eceff3;
  border-radius: 12px;
  background: #fff;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.continent-card:hover,
.country-card:hover,
.tour-card:hover {
  box-shadow: 0 12px 30px rgba(18, 40, 61, 0.12);
  transform: translateY(-4px);
}

.continent-card img,
.country-card img,
.tour-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.continent-card-body,
.country-card-body,
.tour-card-body {
  padding: 22px;
}

.continent-card-body h3,
.country-card-body h3 {
  margin-bottom: 6px;
  font-size: 22px;
}

.tour-card-body h4 {
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.4;
}

.continent-card-body h3 a,
.country-card-body h3 a,
.tour-card-body h4 a {
  color: var(--title-color);
}

.continent-card-body h3 a:hover,
.country-card-body h3 a:hover,
.tour-card-body h4 a:hover {
  color: var(--primary-color1);
}

.continent-card-body p,
.country-card-body p,
.tour-card-body p {
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.65;
}

.continent-count,
.country-tour-count,
.tour-duration,
.tour-country {
  display: inline-block;
  margin-bottom: 10px;
  margin-inline-end: 10px;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(var(--primary-color1-opc), 0.1);
  color: var(--primary-color1);
  font-size: 13px;
  font-weight: 500;
}

.tour-country {
  background: rgba(var(--brand-sky-opc), 0.12);
  color: var(--brand-steel);
}

.continent-country-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.continent-country-list a {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid #e3e8ee;
  border-radius: 6px;
  font-size: 13px;
  color: var(--text-color);
}

.continent-country-list a:hover {
  border-color: var(--primary-color1);
  color: var(--primary-color1);
}

.tour-card-link {
  font-weight: 500;
  color: var(--primary-color1);
}

.tour-card-link::after {
  content: " →";
}

[dir="rtl"] .tour-card-link::after {
  content: " ←";
}

/* ---- Country + tour detail --------------------------------------------- */
.country-hero-img,
.tour-hero-img {
  width: 100%;
  max-height: 440px;
  border-radius: 12px;
  object-fit: cover;
}

.country-highlight-list,
.tour-include-list,
.tour-exclude-list,
.country-city-list {
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
}

.country-highlight-list li,
.tour-include-list li,
.tour-exclude-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.country-highlight-list i,
.tour-include-list i {
  flex-shrink: 0;
  color: var(--primary-color1);
}

.tour-exclude-list i {
  flex-shrink: 0;
  color: var(--brand-maroon);
}

.country-city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.country-city-list li {
  padding: 4px 12px;
  border-radius: 20px;
  background: #f3f6f9;
  font-size: 14px;
}

.country-sidebar,
.tour-sidebar {
  position: sticky;
  top: 100px;
}

.country-sidebar-block,
.tour-sidebar-block {
  margin-bottom: 24px;
  padding: 24px;
  border: 1px solid #eceff3;
  border-radius: 12px;
  background: #fafbfc;
}

.country-sidebar-block h4,
.tour-sidebar-block h4 {
  margin-bottom: 12px;
  font-size: 18px;
}

.tour-fact-list {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.tour-fact-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #e6eaef;
}

.tour-fact-list li:last-child {
  border-bottom: 0;
}

.tour-fact-list span {
  color: var(--text-color);
}

.tour-price-note,
.tour-flexible-note {
  padding: 14px 16px;
  border-inline-start: 3px solid var(--brand-sky);
  border-radius: 6px;
  background: rgba(var(--brand-sky-opc), 0.08);
  font-size: 14px;
  line-height: 1.6;
}

/* ---- Day-by-day itinerary ---------------------------------------------- */
.tour-itinerary {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tour-itinerary-step {
  display: flex;
  gap: 20px;
  padding-bottom: 28px;
  position: relative;
}

/* Connecting line down the day markers */
.tour-itinerary-step:not(:last-child)::before {
  content: "";
  position: absolute;
  inset-inline-start: 39px;
  top: 54px;
  bottom: 0;
  width: 2px;
  background: #e3e8ee;
}

.tour-itinerary-day {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 54px;
  border-radius: 8px;
  background: var(--primary-color1);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
}

.tour-itinerary-body h4 {
  margin-bottom: 8px;
  font-size: 19px;
}

.tour-itinerary-body p {
  margin: 0;
  line-height: 1.75;
}

/* ---- Tour finder -------------------------------------------------------- */
.tour-finder-controls {
  padding: 24px;
  border: 1px solid #eceff3;
  border-radius: 12px;
  background: #fafbfc;
}

.tour-finder-controls .form-label {
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--title-color);
}

.tour-finder-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
}

.tour-finder-count {
  font-weight: 500;
  color: var(--text-color);
}

.tour-finder-empty {
  margin-top: 28px;
  padding: 28px;
  border: 1px dashed #d6dde5;
  border-radius: 12px;
  text-align: center;
}

/* ---- Enquiry CTA -------------------------------------------------------- */
.enquire-cta {
  padding: 40px;
  border: 1px solid rgba(var(--brand-sky-opc), 0.28);
  border-radius: 14px;
  background: linear-gradient(135deg, #f2f9fd 0%, #eaf4fb 100%);
  color: var(--title-color);
}

.enquire-cta h3 {
  margin-bottom: 12px;
  color: var(--brand-steel);
}

.enquire-cta p {
  max-width: 680px;
  margin-bottom: 24px;
  color: var(--text-color);
  line-height: 1.7;
}

.enquire-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.enquire-cta-actions .primary-btn1 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  background: #25d366;
  color: #fff;
  font-weight: 500;
}

.enquire-cta-actions .primary-btn1:hover {
  background: #1fb457;
  color: #fff;
}

.enquire-cta-phone {
  color: var(--text-color);
}

.enquire-cta-phone a {
  color: var(--brand-steel);
  font-weight: 500;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .enquire-cta {
    padding: 28px 22px;
  }

  .tour-itinerary-step {
    gap: 14px;
  }

  .tour-itinerary-day {
    width: 62px;
    height: 46px;
    font-size: 13px;
  }

  .tour-itinerary-step:not(:last-child)::before {
    inset-inline-start: 30px;
    top: 46px;
  }
}

/* ==========================================================================
   Visas, international driving licence, footer
   ========================================================================== */

.visa-finder-hint,
.nat-picker-note {
  margin-bottom: 1rem;
  font-size: 14px;
  color: var(--text-color);
}

.nat-picker-note {
  margin: 12px 0 0;
  font-size: 13px;
}

.visa-card {
  height: 100%;
  padding: 24px;
  border: 1px solid #eceff3;
  border-radius: 12px;
  background: #fff;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.visa-card:hover {
  box-shadow: 0 12px 30px rgba(18, 40, 61, 0.12);
  transform: translateY(-4px);
}

.visa-card-type {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(var(--brand-sky-opc), 0.12);
  color: var(--brand-steel);
  font-size: 13px;
  font-weight: 500;
}

.visa-card h4 {
  margin-bottom: 8px;
  font-size: 19px;
}

.visa-card h4 a {
  color: var(--title-color);
}

.visa-card h4 a:hover {
  color: var(--primary-color1);
}

.visa-card-countries {
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-color);
}

.visa-summary {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid #eceff3;
  border-radius: 12px;
  background: #fafbfc;
}

.visa-summary span {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  color: var(--text-color);
}

.visa-summary strong {
  font-size: 16px;
  line-height: 1.5;
  color: var(--title-color);
}

/* The visa decision disclaimer is legally important — give it weight. */
.visa-disclaimer {
  padding: 24px;
  border-inline-start: 4px solid var(--brand-maroon);
  border-radius: 10px;
  background: rgba(140, 74, 72, 0.06);
}

.visa-disclaimer h4 {
  margin-bottom: 10px;
  font-size: 17px;
  color: var(--brand-maroon);
}

.visa-disclaimer p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.75;
}

/* ---- International driving licence ------------------------------------- */
.idl-fee {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color1);
}

.idl-fee-ask {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
}

.idl-faq-item {
  margin-bottom: 12px;
  padding: 18px 22px;
  border: 1px solid #eceff3;
  border-radius: 10px;
  background: #fff;
}

.idl-faq-item summary {
  cursor: pointer;
  font-weight: 500;
  color: var(--title-color);
  list-style: none;
}

.idl-faq-item summary::-webkit-details-marker {
  display: none;
}

.idl-faq-item summary::after {
  content: "+";
  float: inline-end;
  color: var(--primary-color1);
  font-size: 20px;
  line-height: 1;
}

.idl-faq-item[open] summary::after {
  content: "−";
}

.idl-faq-item p {
  margin: 12px 0 0;
  line-height: 1.75;
  color: var(--text-color);
}

/* ---- Footer -------------------------------------------------------------
   The client keeps the newsletter block's navy + landmark-pattern background
   as the footer's own ground - it replaces both the template's near-black
   and the earlier light repaint. Text runs light on navy. */
.footer-section,
.footer-section.style-2 {
  /* Layer order: landmark collage left, landmark collage right, the subtle
     world pattern, then the navy ground — the newsletter block's full look. */
  /* Collages layered twice each: stacking the same translucent PNG doubles
     its opacity, which reads much clearer on the navy ground. */
  background-image:
    url(../img/home2/home2-newsletter-vector1.png),
    url(../img/home2/home2-newsletter-vector1.png),
    url(../img/home2/home2-newsletter-vector2.png),
    url(../img/home2/home2-newsletter-vector2.png),
    url(../img/home2/home2-newsletter-bg.png),
    linear-gradient(180deg, #202f59 0%, #182344 100%);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  background-position: left bottom, left bottom, right bottom, right bottom, center bottom, center;
  background-size: auto 520px, auto 520px, auto 520px, auto 520px, cover, cover;
  color: rgba(255, 255, 255, 0.78);
}

/* The side collages crowd narrow screens — keep pattern + navy only. */
@media (max-width: 991px) {
  .footer-section,
  .footer-section.style-2 {
    background-image:
      url(../img/home2/home2-newsletter-bg.png),
      linear-gradient(180deg, #202f59 0%, #182344 100%);
    background-repeat: no-repeat, no-repeat;
    background-position: center bottom, center;
    background-size: cover, cover;
  }
}

.footer-section::before,
.footer-section::after,
.footer-section.style-2::before,
.footer-section.style-2::after {
  display: none;
}

.footer-section .widget-title h5,
.footer-section .footer-widget h3,
.footer-section .footer-widget h6,
.footer-section .single-contact h6 {
  color: #ffffff !important;
}

.footer-section .widget-list li a,
.footer-section .single-contact a,
.footer-section .footer-right ul li a,
.footer-section p,
.footer-section .footer-copy,
.footer-section .footer-tagline {
  color: rgba(255, 255, 255, 0.78) !important;
}

.footer-section .widget-list li a:hover,
.footer-section .single-contact a:hover,
.footer-section .footer-right ul li a:hover {
  color: var(--brand-sky) !important;
}

.footer-tagline {
  max-width: 34ch;
  margin: 18px 0 24px;
  font-size: 16px;
  line-height: 1.8;
}

.footer-section .widget-title h5 {
  font-size: 21px !important;
  margin-bottom: 18px;
}

.footer-section .widget-list li a,
.footer-section .single-contact a,
.footer-section .footer-right ul li a {
  font-size: 17px !important;
  line-height: 2.2 !important;
}

.footer-section .footer-tagline {
  font-size: 17px !important;
}

.footer-section .single-contact h6 {
  font-size: 15px !important;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 56px;
  margin-top: 20px;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
}

.footer-legal-item span {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
}

.footer-legal-item strong {
  font-size: 17px;
  font-weight: 600;
  color: var(--brand-sky);
}

.footer-copy {
  margin: 0;
  font-size: 15px;
}

.footer-section .single-contact h6 {
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 400;
  opacity: 0.85;
}

.footer-section .footer-bottom {
  border-top: 0;
}

/* ---- Hero search (visa / tour / hotel -> WhatsApp) ----------------------
   NOTE: this block was accidentally dropped by an earlier footer-section
   rewrite that cut everything between two comment anchors. Restored verbatim
   - keep it OUTSIDE the footer/legal anchor pair. */
.hero-search .nav-pills .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hs-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
  border-radius: 40px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(18, 40, 61, 0.16);
  overflow: hidden;
}

.hs-fields {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  align-items: stretch;
}

.hs-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  min-width: 150px;
  flex: 1 1 0;
  padding: 12px 22px;
  border-inline-end: 1px solid #e8edf2;
}

.hs-field-grow {
  flex-grow: 2;
}

.hs-field label {
  font-size: 12px;
  font-weight: 600;
  /* steel, not sky: 12px labels need the darker blue to pass contrast */
  color: var(--brand-steel);
}

.hs-field select,
.hs-field input {
  border: 0;
  outline: none;
  background: transparent;
  font-size: 15px;
  font-weight: 600;
  color: var(--title-color);
  width: 100%;
}

.hs-counter {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hs-counter button {
  width: 26px;
  height: 26px;
  border: 1px solid #dbe3ea;
  border-radius: 50%;
  background: #fff;
  color: var(--brand-steel);
  font-size: 16px;
  line-height: 1;
}

.hs-counter button:hover {
  background: var(--primary-color1);
  border-color: var(--primary-color1);
  color: #fff;
}

.hs-counter span {
  min-width: 20px;
  text-align: center;
  font-weight: 600;
}

.hs-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  padding: 0 38px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 991px) {
  .hs-bar {
    border-radius: 18px;
  }

  .hs-fields {
    flex-direction: column;
    width: 100%;
  }

  .hs-field {
    width: 100%;
    border-inline-end: 0;
    border-bottom: 1px solid #e8edf2;
  }

  .hs-submit {
    width: 100%;
    justify-content: center;
    padding: 14px;
  }
}

/* ---- Legal pages -------------------------------------------------------- */
.legal-updated {
  display: inline-block;
  margin-bottom: 22px;
  padding: 6px 14px;
  border-radius: 20px;
  background: #f3f6f9;
  font-size: 14px;
  color: var(--text-color);
}

.legal-block {
  margin-top: 44px;
}

.legal-block h2 {
  margin-bottom: 14px;
  font-size: 24px;
  color: var(--brand-steel);
}

.legal-block h3 {
  margin: 22px 0 10px;
  font-size: 17px;
}

.legal-block p {
  margin-bottom: 14px;
  line-height: 1.85;
}

.legal-note {
  padding: 14px 18px;
  border-inline-start: 3px solid var(--brand-sky);
  border-radius: 6px;
  background: rgba(var(--brand-sky-opc), 0.08);
  font-size: 14.5px;
}

/* ==========================================================================
   Joyful brand accents, partners, contact strip, CTA sidebar
   ========================================================================== */

/* Primary actions pick up the logo's steel->sky sweep */
.primary-btn1,
.hs-submit {
  background: linear-gradient(100deg, var(--brand-steel) 0%, var(--brand-sky) 100%) !important;
  color: #fff !important;
  border: 0;
}

.primary-btn1:hover,
.hs-submit:hover {
  background: linear-gradient(100deg, var(--brand-sky) 0%, var(--brand-steel) 100%) !important;
}

/* Section tags get the sky accent */
.continent-count,
.country-tour-count,
.tour-duration,
.visa-card-type,
.partners-tag {
  background: linear-gradient(100deg, rgba(46, 109, 164, 0.12), rgba(41, 171, 226, 0.16));
  color: var(--brand-steel);
}

/* ---- Grid quick-menu button -------------------------------------------- */
.grid-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-inline-end: 12px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 10px;
  background: transparent;
  color: #fff;
  font-size: 18px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.grid-menu-btn:hover {
  background: var(--brand-sky);
  border-color: var(--brand-sky);
  color: #fff;
}

header.header-area.style-2.sticky .grid-menu-btn {
  border-color: rgba(var(--primary-color1-opc), 0.35);
  color: var(--primary-color1);
}

header.header-area.style-2.sticky .grid-menu-btn:hover {
  background: var(--primary-color1);
  color: #fff;
}

/* ---- CTA right sidebar -------------------------------------------------- */
.cta-sidebar h4 {
  margin: 26px 0 14px;
  font-size: 18px;
  color: var(--title-color);
}

.cta-sidebar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cta-sidebar-grid a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 10px;
  border: 1px solid #e3ecf3;
  border-radius: 12px;
  background: linear-gradient(160deg, #f4fafe 0%, #eef5fa 100%);
  color: var(--title-color);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-sidebar-grid a:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(46, 109, 164, 0.16);
  color: var(--brand-steel);
}

.cta-sidebar-grid i {
  font-size: 26px;
  color: var(--brand-sky);
}

.cta-sidebar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cta-sidebar-links a {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid #dbe7f0;
  border-radius: 20px;
  color: var(--text-color);
  font-size: 14px;
}

.cta-sidebar-links a:hover {
  border-color: var(--brand-sky);
  color: var(--brand-steel);
}

.cta-sidebar-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 26px;
  padding: 20px;
  border-radius: 12px;
  background: #eef5fa;
}

.cta-sidebar-contact span {
  font-size: 13px;
  color: var(--text-color);
}

.cta-sidebar-contact a {
  color: var(--title-color);
  font-weight: 500;
}

.cta-sidebar-contact .primary-btn1 {
  margin-top: 10px;
  padding: 12px 18px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
}

/* ---- Partners ------------------------------------------------------------ */
.partners-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f2f8fc 100%);
}

.partners-head {
  max-width: 640px;
  margin: 0 auto 44px;
  text-align: center;
}

.partners-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.partners-head h2 {
  margin-bottom: 10px;
}

.partners-head p {
  color: var(--text-color);
}

.partners-detail {
  max-width: 820px;
  margin: 0 auto 40px;
  text-align: center;
}

.partners-detail p {
  margin-bottom: 14px;
  line-height: 1.85;
  color: var(--text-color);
}

/* ---- Pure-CSS partners marquee ----------------------------------------- */
.partners-marquee {
  display: flex;
  overflow: hidden;
  /* soft fade at both edges */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.partners-track {
  display: flex;
  flex-shrink: 0;
  gap: 18px;
  margin: 0;
  padding: 0 9px;
  list-style: none;
  animation: partners-glide 36s linear infinite;
}

.partners-marquee:hover .partners-track {
  animation-play-state: paused;
}

@keyframes partners-glide {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

@media (prefers-reduced-motion: reduce) {
  .partners-track {
    animation: none;
  }
}

.partner-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 190px;
  min-height: 110px;
  padding: 18px;
  border: 1px solid #e6eef5;
  border-radius: 14px;
  background: #fff;
}

.partner-cell img {
  max-width: 100%;
  max-height: 74px;
  object-fit: contain;
}

/* ---- Contact strip (replaces the newsletter blocks) --------------------- */
.contact-strip {
  padding: 70px 0;
  background:
    radial-gradient(1200px 300px at 15% 0%, rgba(41, 171, 226, 0.25), transparent),
    linear-gradient(120deg, #16324c 0%, #12283d 100%);
  color: #fff;
}

.contact-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  align-items: center;
  gap: 32px;
}

.contact-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.contact-strip-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 6px;
  border-radius: 50%;
  background: var(--brand-maroon);
  color: #fff;
  font-size: 24px;
}

.contact-strip-icon.is-sky {
  background: var(--brand-sky);
}

.contact-strip-label {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
}

.contact-strip-value {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.contact-strip-value:hover {
  color: var(--brand-sky);
}

.contact-strip-center {
  text-align: center;
}

.contact-strip-center h2 {
  margin-bottom: 8px;
  color: #fff;
}

.contact-strip-center p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.75);
}

.contact-strip-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 30px;
  background: #25d366;
  color: #fff;
  font-weight: 600;
}

.contact-strip-wa:hover {
  background: #1fb457;
  color: #fff;
}

@media (max-width: 991px) {
  .contact-strip-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ---- Floating WhatsApp CTA -------------------------------------------- */
.wa-float {
  position: fixed;
  bottom: 24px;
  inset-inline-end: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease;
}

.wa-float:hover {
  color: #fff;
  transform: scale(1.08);
}


/* ---- About facility chips: text stays inside the card, both directions -- */
.facility-card {
  display: flex;
  align-items: center;
  gap: 14px;
  overflow: hidden;
}

.facility-card .content {
  min-width: 0;
  text-align: start;
}

.facility-card .content h6 {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  white-space: normal;
  overflow-wrap: break-word;
}


/* ---- Tour package cards: equal heights, pinned bottom row --------------- */
.package-card-slider .swiper-slide {
  height: auto;
}

.package-card3 {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.package-card3 .package-card-content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.package-card3 .card-content-bottom {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.quote-cta {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  color: var(--brand-steel);
}


/* ---- Loading screen ------------------------------------------------------ */
.cta-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #ffffff;
}

.cta-loader-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.cta-loader img {
  width: 190px;
  height: auto;
  animation: cta-breathe 1.8s ease-in-out infinite;
}

@keyframes cta-breathe {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.07); opacity: 0.82; }
}

.cta-loader-dots {
  display: flex;
  gap: 10px;
}

.cta-loader-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  animation: cta-bounce 1.2s ease-in-out infinite;
}

.cta-loader-dots span:nth-child(1) { background: var(--brand-steel); }
.cta-loader-dots span:nth-child(2) { background: var(--brand-sky); animation-delay: 0.15s; }
.cta-loader-dots span:nth-child(3) { background: #7fd0f2; animation-delay: 0.3s; }

@keyframes cta-bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}

@media (prefers-reduced-motion: reduce) {
  .cta-loader img,
  .cta-loader-dots span { animation: none; }
}


/* ---- Contact page -------------------------------------------------------- */
.contact-card {
  height: 100%;
  padding: 28px 22px;
  border: 1px solid #e6eef5;
  border-radius: 14px;
  background: #fff;
  text-align: center;
}

.contact-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(46,109,164,.12), rgba(41,171,226,.16));
  color: var(--brand-steel);
  font-size: 24px;
}

.contact-card h4 {
  margin-bottom: 8px;
  font-size: 18px;
}

.contact-card a,
.contact-card p {
  display: block;
  margin: 0 0 6px;
  color: var(--title-color);
  font-weight: 500;
  line-height: 1.6;
}

.contact-card a:hover { color: var(--brand-steel); }

.contact-card-hint {
  font-size: 13px;
  color: var(--text-color);
}

.contact-form-wrap {
  padding: 34px;
  border: 1px solid #e6eef5;
  border-radius: 14px;
  background: #fafcfe;
}

.contact-form-wrap h3 { margin-bottom: 6px; }
.contact-form-wrap > p { margin-bottom: 22px; color: var(--text-color); }

/* ---- Gallery ------------------------------------------------------------- */
.gallery-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
}

/* ---- Blog post ----------------------------------------------------------- */
.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0;
}

.blog-post-date { color: var(--text-color); font-size: 14px; }

.blog-post-body p {
  margin-bottom: 18px;
  font-size: 16.5px;
  line-height: 2;
}


/* ---- 404 ----------------------------------------------------------------- */
.notfound-section {
  padding: 190px 0 120px;
}

.notfound-code {
  margin-bottom: 6px;
  font-size: 96px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(100deg, var(--brand-steel), var(--brand-sky));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.notfound-body {
  max-width: 46ch;
  margin: 14px auto 28px;
  color: var(--text-color);
}

.notfound-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.notfound-actions .primary-btn1 {
  padding: 13px 30px;
  border-radius: 30px;
  color: #fff;
}


/* ---- Glossy flags (flag-icons, MIT; local SVGs) ------------------------- */
.flag {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 3px rgba(18, 40, 61, 0.18);
  vertical-align: middle;
}

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

/* The shine that makes it 'براقة': top-half highlight + soft inner rim */
.flag-gloss {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.42) 0%,
    rgba(255, 255, 255, 0.12) 46%,
    rgba(255, 255, 255, 0) 52%,
    rgba(0, 0, 0, 0.06) 100%
  );
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.flag-dropdown { width: 20px; height: 15px; }
.flag-row      { width: 24px; height: 18px; }
.flag-card     { width: 32px; height: 24px; border-radius: 5px; }
.flag-hero     { width: 48px; height: 36px; border-radius: 6px; }
.flag-strip    { width: 64px; height: 48px; border-radius: 8px; }

/* name + flag pairing: flag hugs the name, correct side per direction */
.flag-pair {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* live chip beside a native <select> (options can't render images) */
.flag-select-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.flag-select-wrap select { flex: 1 1 auto; }

/* most-requested strip on the visas page */
.visa-popular {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.visa-popular a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid #e3ecf3;
  border-radius: 12px;
  background: linear-gradient(160deg, #f7fbfe 0%, #eef5fa 100%);
  color: var(--title-color);
  font-weight: 500;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.visa-popular a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(46, 109, 164, 0.16);
  color: var(--brand-steel);
}


/* ==========================================================================
   Wave execution: card redesign, mobile fixes, Arabic type, slogan, fonts
   ========================================================================== */

/* One family site-wide: Jost has no Arabic glyphs and mixing families
   between languages broke rhythm. Rubik covers Latin + Arabic. */
body, p, li, a, button, input, select, textarea {
  font-family: "Rubik", "Segoe UI", Tahoma, sans-serif;
}

/* Arabic script must never be letter-spaced; headings breathe at 1.3 */
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3,
[dir="rtl"] h4, [dir="rtl"] h5, [dir="rtl"] h6 {
  letter-spacing: 0 !important;
}

[dir="rtl"] h1, [dir="rtl"] h2 {
  line-height: 1.35 !important;
}

/* Visible focus for keyboard users, in brand sky */
:focus-visible {
  outline: 3px solid var(--brand-sky);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Tap targets */
.lang-toggle { min-height: 44px; }
.grid-menu-btn { width: 44px; height: 44px; }
.footer-section .widget-list li a { padding-block: 3px; }

/* 375px overflow guard on visa pages (measured 12px) */
.visa-summary { min-width: 0; }
.visa-summary > div { min-width: 0; }
.visa-summary strong { overflow-wrap: anywhere; }
.visa-section .container,
.visa-details-section .container { overflow-x: clip; }

/* ---- Visa card redesign: one consistent block ---- */
.visa-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  padding: 22px;
  text-align: start;
}

.visa-card .flag-pair {
  width: 100%;
  margin-bottom: 10px;
  font-size: 19px;
}

.visa-card .visa-card-type {
  margin-bottom: 10px;
  font-size: 12.5px;
}

.visa-card .visa-card-countries {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.9em;
}

.visa-card .tour-card-link {
  margin-top: auto;
  padding-top: 6px;
}

/* ---- Footer slogan ---- */
.footer-slogan {
  margin: 16px 0 6px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0 !important;
  background: linear-gradient(100deg, var(--brand-sky), #7fd0f2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}

/* ------------------------------------------------------------------ */
/* Video band (homepage). Replaces the template's offer/countdown cards. */
/* ------------------------------------------------------------------ */
.video-band {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}
.video-band video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.video-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 80% at 50% 50%, rgba(18, 40, 61, 0.35) 0%, rgba(18, 40, 61, 0.7) 100%),
    linear-gradient(180deg, rgba(18, 40, 61, 0.55), rgba(18, 40, 61, 0.75));
}
.video-band-content {
  text-align: center;
  color: #fff;
  padding: 80px 20px;
  max-width: 760px;
}
.video-band-tag {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-sky);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(var(--brand-sky-opc), 0.45);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 18px;
}
[dir="rtl"] .video-band-tag { letter-spacing: 0; }
.video-band h2 {
  color: #fff;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  margin-bottom: 14px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}
.video-band p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.video-band-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand-sky);
  color: #fff !important;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 999px;
  min-height: 48px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.video-band-btn:hover { background: var(--brand-steel); transform: translateY(-2px); }
@media (max-width: 767px) {
  .video-band { min-height: 440px; }
  .video-band-content { padding: 60px 16px; }
  .video-band p { font-size: 16px; }
}

/* ------------------------------------------------------------------ */
/* Hero: the search box flows after the slider instead of living in    */
/* the absolute overlay, so no reserved padding is needed anywhere.    */
/* ------------------------------------------------------------------ */
.home2-banner-area { padding-bottom: 0 !important; }
.home2-banner-area .home1-banner-bottom.style-2 {
  position: relative;
  z-index: 3;
  margin-top: -110px;
  margin-bottom: 40px;
}
@media (max-width: 1399px) { .home2-banner-area .home2-banner-wrapper { min-height: 830px; } }
@media (max-width: 991px) {
  .home2-banner-area .home2-banner-wrapper { min-height: 640px; }
  .home2-banner-area .home1-banner-bottom.style-2 { margin-top: -90px; }
}
@media (max-width: 576px) {
  .home2-banner-area .home2-banner-wrapper { min-height: 520px; }
  .home2-banner-area .home1-banner-bottom.style-2 { margin-top: -70px; margin-bottom: 30px; }
}

/* Featured tours cards: real data, no fake star ratings. */
.package-card3 .package-country {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--brand-sky); font-size: 14px; font-weight: 600; margin-bottom: 8px;
}
.package-card3 .feature-list li i { color: var(--brand-sky); margin-inline-end: 6px; }
.package-card3 .batch span { background: var(--brand-steel) !important; }
.package-card3 .primary-btn2 i { margin-inline-start: 6px; }
[dir="ltr"] .package-card3 .primary-btn2 i::before { transform: scaleX(-1); display: inline-block; }

/* Consultation block (was "activities"): brand tints instead of the
   template's cream ground, green icon chips and maroon active tab. */
.slider-and-tab-section .tab-area {
  background: linear-gradient(180deg, rgba(var(--brand-sky-opc), 0.07) 0%, rgba(var(--brand-sky-opc), 0.07) 100%) !important;
}
.slider-and-tab-section .tab-sidebar .nav-link .icon { background: rgba(var(--brand-sky-opc), 0.14) !important; }
.slider-and-tab-section .tab-sidebar .nav-link .icon svg { fill: var(--brand-steel); }
.slider-and-tab-section .tab-sidebar .nav-link.active { background: var(--brand-steel) !important; }
.slider-and-tab-section .tab-sidebar .nav-link.active .icon { background: rgba(255, 255, 255, 0.18) !important; }
.slider-and-tab-section .tab-sidebar .nav-link.active .icon svg { fill: #fff; }
.slider-and-tab-section .tab-content-wrap ul li svg { fill: var(--brand-sky); }
.slider-and-tab-section .primary-btn3 { display: inline-flex; align-items: center; gap: 8px; }

/* ------------------------------------------------------------------ */
/* Mobile UX pass (2026-08-19 audit)                                   */
/* ------------------------------------------------------------------ */
/* Bootstrap g-5 rows (48px gutter) overflow a 12px-padded container on
   phones by exactly 12px per side. Tighten the gutter below 576px. */
@media (max-width: 575.98px) {
  .row.g-5, .row.gx-5 { --bs-gutter-x: 1.5rem; }
}
/* Hero search: the visible field block is tall, but the actual control
   was 20px; give the control itself a real touch height. */
.hs-field select, .hs-field input { min-height: 40px; }
.hs-counter button { width: 40px; height: 40px; font-size: 18px; }
.hs-counter { gap: 10px; }
/* Off-canvas menu: primary navigation on phones, so every item is a
   full-width 44px+ row. */
.right-sidebar-menu .menu-list > li > a,
.right-sidebar-menu .menu-list > li > .drop-down,
.right-sidebar-menu .menu-list ul li a { display: block; padding: 11px 0; }
.right-sidebar-menu .sidebar-contact a,
.right-sidebar-menu a[href^="tel:"],
.right-sidebar-menu a[href^="mailto:"] { display: inline-block; padding: 8px 0; }
/* Footer link lists and card text links: comfortable touch spacing. */
.footer-section .footer-widget ul li a,
.footer-section .footer-menu li a { display: inline-block; padding: 6px 0; }
.tour-card h4 a, .package-card3 h5 a, .destination-card2 h4 a,
.visa-card h4 a { display: inline-block; padding: 4px 0; }
.tour-card-link { display: inline-flex; align-items: center; min-height: 40px; }
/* Header phone link (desktop topbar) */
.header-area a[href^="tel:"] { display: inline-block; padding: 6px 0; }
/* WhatsApp float: keep clear of the bottom safe area on notched phones. */
.wa-float { bottom: max(24px, env(safe-area-inset-bottom, 24px)); }

/* ------------------------------------------------------------------ */
/* Light UI pass (2026-08-19): brighter grounds, no maroon/brown, no    */
/* dark-green sections. Layout and components untouched.               */
/* ------------------------------------------------------------------ */
/* Travel Programmes: light sky ground instead of the dark green plate. */
.tour-pack-section {
  background-image:
    linear-gradient(180deg, #eaf5fd 0%, #f6fbff 55%, #ffffff 100%) !important;
  border-top: 1px solid rgba(var(--brand-sky-opc), 0.18);
  border-bottom: 1px solid rgba(var(--brand-sky-opc), 0.18);
}
.tour-pack-section .section-title2 h2,
.tour-pack-section .section-title2 h2.text-white { color: var(--title-color) !important; }
.tour-pack-section .eg-section-tag span { color: var(--brand-steel); }
.tour-pack-section .package-card3 { box-shadow: 0 10px 30px rgba(18, 40, 61, 0.08); border: 1px solid rgba(var(--brand-sky-opc), 0.15); }
.tour-pack-section .slider-btn { color: var(--brand-steel); }
.tour-pack-section .slider-btn:hover { color: var(--brand-sky); }

/* Customer Reviews: soft mint ground instead of the dark green plate;
   the section's white-on-dark type flips to navy. */
.home2-testimonial-section {
  background-image:
    linear-gradient(180deg, #edf8f2 0%, #f4fbf7 60%, #ffffff 100%) !important;
}
.home2-testimonial-section::after { display: none; }
.home2-testimonial-section .testimonial-content-wrapper .section-title2 h2,
.home2-testimonial-section .testimonial-content-wrapper .section-title2 p,
.home2-testimonial-section .testimonial-content-wrapper .review-wrap h6 { color: var(--title-color) !important; }
.home2-testimonial-section .testimonial-content-wrapper .section-title2 p { opacity: 0.8; }
.home2-testimonial-section .eg-section-tag span { color: #2f8a5b; }
.home2-testimonial-section .eg-section-tag { background: rgba(47, 138, 91, 0.14) !important; }
.home2-testimonial-section .tesimonial-card-wrapper .tesimonial-card { box-shadow: 0 10px 30px rgba(18, 40, 61, 0.07); border-color: rgba(47, 138, 91, 0.15); }
.home2-testimonial-section .tesimonial-card-wrapper.style-2 .tesimonial-card { border-bottom-color: #4fb37f; }
.home2-testimonial-section .slider-btn { color: var(--title-color); }
.home2-testimonial-section .slider-btn:hover { color: #2f8a5b; }
/* Orphaned "Review On" block (rating badges were removed with TripAdvisor). */
.home2-testimonial-section .review-wrap { display: none; }

/* Maroon accents -> cheerful sky. */
.eg-tag { background: rgba(255, 255, 255, 0.16) !important; border: 1px solid rgba(255, 255, 255, 0.55); backdrop-filter: blur(6px); }
.eg-tag span { color: #fff !important; }
.eg-section-tag.two { background: rgba(var(--brand-sky-opc), 0.16) !important; }
.eg-section-tag.two span { color: var(--brand-steel) !important; }
.secondary-btn2 { background: var(--brand-sky) !important; color: #fff !important; }
.secondary-btn2:hover { background: var(--brand-steel) !important; color: #fff !important; }
.destination-card2 .batch span { background: var(--brand-sky) !important; color: #fff !important; }
.facility-card.two { background: rgba(var(--brand-sky-opc), 0.12) !important; }
.feature-card.style-2.secondary .feature-card-icon svg,
.feature-card.style-2.secondary svg { fill: var(--brand-sky) !important; }
.feature-card.style-2.secondary .feature-card-icon { background: rgba(var(--brand-sky-opc), 0.14) !important; }

/* Hero phone pill: dark-olive glass -> soft sky glass. */
.hotline-area { background: rgba(var(--brand-sky-opc), 0.28) !important; border: 1px solid rgba(255, 255, 255, 0.5); backdrop-filter: blur(6px); }
.hotline-area .icon svg { fill: #fff; }

/* Loader gate: fade-out and a no-JS safety net so the overlay can never
   trap a visitor if scripts fail to run. */
.cta-loader-gate { transition: opacity 0.35s ease; animation: cta-loader-safety 0.35s ease 4.5s forwards; }
.cta-loader-gate.is-fading { opacity: 0; pointer-events: none; }
@keyframes cta-loader-safety { to { opacity: 0; visibility: hidden; pointer-events: none; } }

/* Reviews on the light ground: author name back to navy, brand emblem as a
   neutral avatar (the template's 42x42 placeholder is gone). */
.home2-testimonial-section .author-area .author-content h5,
.home2-testimonial-section .author-area .author-content h5 a { color: var(--title-color) !important; }
.home2-testimonial-section .author-area .author-content span { color: rgba(18, 40, 61, 0.6) !important; }
.home2-testimonial-section .author-area .author-img img { background: #fff; padding: 6px; border: 1px solid rgba(var(--brand-sky-opc), 0.35); object-fit: contain; }

/* Remaining maroon accents on inner pages -> steel/sky (kept subtle). */
.visa-disclaimer { border-inline-start-color: var(--brand-steel) !important; background: rgba(var(--brand-sky-opc), 0.07) !important; }
.visa-disclaimer h4 { color: var(--brand-steel) !important; }
.tour-exclude-list i { color: rgba(18, 40, 61, 0.45); } /* neutral for "not included" */

/* primary-btn3 carried the template's darker-green bottom edge (#4a8631). */
.primary-btn3 { border-bottom-color: #245a8a !important; }

/* Blog post: question subheadings and byline (AEO/EEAT, approved 2026-08-19). */
.blog-post-h2 { font-size: 22px; font-weight: 700; color: var(--brand-steel); margin: 34px 0 10px; line-height: 1.5; }
.blog-byline { font-size: 14px; color: rgba(18, 40, 61, 0.65); margin: 10px 0 22px; }
.blog-byline strong { color: var(--title-color); font-weight: 600; }
.blog-byline time { font-variant-numeric: tabular-nums; }

/* Consent banner (renders only when tracking IDs exist). Fixed: no layout shift. */
.cta-consent {
  position: fixed;
  inset-inline: 16px;
  bottom: max(16px, env(safe-area-inset-bottom, 16px));
  z-index: 1080; /* above content, below modals; WhatsApp float sits at the side */
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  padding: 14px 18px;
  background: #fff;
  color: var(--title-color);
  border: 1px solid rgba(var(--brand-sky-opc), 0.35);
  border-radius: 14px;
  box-shadow: 0 12px 34px rgba(18, 40, 61, 0.18);
  font-size: 14px;
  line-height: 1.6;
}
.cta-consent-text { margin: 0; flex: 1 1 320px; }
.cta-consent-link { color: var(--brand-steel); text-decoration: underline; text-underline-offset: 3px; }
.cta-consent-actions { display: flex; gap: 8px; margin-inline-start: auto; }
.cta-consent-btn {
  min-height: 40px; padding: 8px 18px; border-radius: 999px; font-weight: 600; font-size: 14px;
  border: 1px solid transparent; cursor: pointer; transition: background 0.2s ease, color 0.2s ease;
}
.cta-consent-btn.is-primary { background: var(--brand-steel); color: #fff; }
.cta-consent-btn.is-primary:hover { background: var(--brand-sky); }
.cta-consent-btn.is-secondary { background: #fff; color: var(--title-color); border-color: rgba(18, 40, 61, 0.25); }
.cta-consent-btn.is-secondary:hover { border-color: var(--brand-steel); color: var(--brand-steel); }
@media (max-width: 575.98px) {
  .cta-consent { inset-inline: 10px; padding: 12px 14px; }
  .cta-consent-actions { width: 100%; margin-inline-start: 0; }
  .cta-consent-btn { flex: 1 1 0; }
  /* keep clear of the WhatsApp float on phones */
  .cta-consent { bottom: max(92px, calc(env(safe-area-inset-bottom, 0px) + 92px)); }
}

/* Social profile icons (SocialLinks.jsx): footer, side menu, contact page.
   Inline SVG glyphs on soft gradient chips; the network colour appears on hover. */
.social-links { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; margin: 0; padding: 0; }
.social-links a {
  --chip-size: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  width: var(--chip-size); height: var(--chip-size); border-radius: 12px;
  background: linear-gradient(135deg, rgba(var(--brand-sky-opc), 0.18), rgba(var(--primary-color1-opc), 0.10));
  border: 1px solid rgba(var(--brand-sky-opc), 0.35);
  color: var(--brand-steel);
  box-shadow: 0 4px 14px rgba(18, 40, 61, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.social-links svg { width: 58%; height: 58%; fill: currentColor; display: block; }
.social-links a:hover, .social-links a:focus-visible { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(18, 40, 61, 0.16); color: #fff; border-color: transparent; }
.social-links a.social-instagram:hover { background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7); }
.social-links a.social-tiktok:hover { background: #0f0f0f; }
.social-links a.social-facebook:hover { background: #1877f2; }
.social-links a.social-linkedin:hover { background: #0a66c2; }
.social-links a.social-x:hover { background: #111; }
.social-links a.social-snapchat:hover { background: #fffc00; color: #111; }
.social-links-lg a { --chip-size: 50px; border-radius: 14px; }
.footer-social { margin: 14px 0 18px; }
.footer-section .social-links a { background: rgba(255, 255, 255, 0.10); border-color: rgba(255, 255, 255, 0.22); color: #fff; box-shadow: none; }
.sidebar-social { margin: 18px 0 10px; }
.contact-social { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin: 0 0 40px; }
.contact-social h4 { margin: 0; font-size: 18px; color: var(--title-color); }

/* Month + day picker (MonthDayPicker.jsx): hero search and hotel form.
   The popover is position:fixed (coordinates from the trigger) so the hero
   pill keeps its overflow:hidden rounded corners. */
.mdp { position: relative; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.mdp > label { font-size: 12px; font-weight: 600; color: var(--brand-steel); }
.mdp-trigger {
  display: flex; align-items: center; gap: 8px; width: 100%; min-height: 40px;
  background: transparent; border: 0; padding: 0; text-align: start; white-space: nowrap;
  font-size: 15px; font-weight: 600; color: rgba(18, 40, 61, 0.45); cursor: pointer;
}
.mdp-trigger.has-value { color: var(--title-color); }
.mdp-trigger i { color: var(--brand-steel); font-size: 15px; flex: 0 0 auto; }
.mdp-trigger span { overflow: hidden; text-overflow: ellipsis; }
.mdp-trigger small { font-size: 12px; color: rgba(18, 40, 61, 0.5); font-weight: 500; margin-inline-start: 4px; }
.mdp-form .mdp-trigger {
  min-height: 46px; padding: 8px 14px; border: 1px solid #dbe3ea; border-radius: 10px; background: #fff;
}
.mdp-pop {
  position: fixed; z-index: 1080;
  width: 340px; max-width: calc(100vw - 24px); padding: 14px; background: #fff; border-radius: 16px;
  border: 1px solid rgba(var(--brand-sky-opc), 0.3); box-shadow: 0 18px 44px rgba(18, 40, 61, 0.2);
  text-align: start; overflow-y: auto; overscroll-behavior: contain;
}
.mdp-head { display: flex; justify-content: space-between; align-items: center; margin: 4px 0 8px; font-size: 12px; font-weight: 600; color: rgba(18, 40, 61, 0.6); }
.mdp-head small { font-weight: 600; color: var(--brand-steel); }
.mdp-months { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-bottom: 12px; }
.mdp-chip {
  border: 1px solid rgba(var(--brand-sky-opc), 0.35); background: rgba(var(--brand-sky-opc), 0.08);
  color: var(--title-color); border-radius: 999px; padding: 7px 4px; font-size: 13px; font-weight: 600; cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.mdp-chip:hover { background: rgba(var(--brand-sky-opc), 0.2); }
.mdp-chip.is-on { background: var(--brand-steel); color: #fff; border-color: var(--brand-steel); }
.mdp-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.mdp-day {
  aspect-ratio: 1; border: 0; border-radius: 10px; background: #f3f7fb; color: var(--title-color);
  font-size: 13px; font-weight: 600; cursor: pointer; transition: background 0.15s ease, color 0.15s ease;
}
.mdp-day:hover:not(:disabled) { background: rgba(var(--brand-sky-opc), 0.22); }
.mdp-day.is-on { background: var(--brand-sky); color: #fff; }
.mdp-day:disabled { opacity: 0.3; cursor: not-allowed; }
.mdp-foot { display: flex; justify-content: flex-end; margin-top: 10px; }
.mdp-done, .mdp-clear { border: 0; background: transparent; color: var(--brand-steel); font-weight: 600; font-size: 13px; cursor: pointer; padding: 4px 8px; }
.mdp-done { background: rgba(var(--brand-sky-opc), 0.14); border-radius: 999px; padding: 6px 16px; }

/* Desktop nav density: 8 items + language toggle + CTA must sit on ONE line.
   The template pads every item 20px each side, which overflows at common
   laptop widths (and at 1920px screens running 125-150% scaling). Tighten
   progressively below 1600px and forbid wrapping at any desktop width. */
@media (min-width: 992px) {
  header.header-area.style-2 .main-menu .menu-list { flex-wrap: nowrap; white-space: nowrap; }
  header.header-area.style-2 .main-menu .menu-list > li > a { white-space: nowrap; }
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  header.header-area.style-2 .main-menu .menu-list > li { padding-inline: 17px !important; }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  header.header-area.style-2 .main-menu .menu-list > li { padding-inline: 12px !important; }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  header.header-area.style-2 .main-menu .menu-list > li { padding-inline: 9px !important; }
  header.header-area.style-2 .main-menu .menu-list > li > a { font-size: 13px !important; }
  header.header-area.style-2 .nav-right .primary-btn3 { padding-inline: 16px !important; }
  header.header-area.style-2 .nav-right .lang-toggle { padding-inline: 10px !important; }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  header.header-area.style-2 .main-menu .menu-list > li { padding-inline: 7px !important; }
  header.header-area.style-2 .main-menu .menu-list > li > a { font-size: 12.5px !important; }
  header.header-area.style-2 .nav-right .lang-toggle { padding-inline: 8px !important; }
}
