/* inter-300 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/inter-fonts/inter-v20-latin-300.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/inter-fonts/inter-v20-latin-regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/inter-fonts/inter-v20-latin-italic.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-500 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/inter-fonts/inter-v20-latin-500.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-600 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/inter-fonts/inter-v20-latin-600.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/inter-fonts/inter-v20-latin-700.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* cinzel-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/cinzel-fonts/cinzel-v26-latin-regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* cinzel-500 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/cinzel-fonts/cinzel-v26-latin-500.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* cinzel-600 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/cinzel-fonts/cinzel-v26-latin-600.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* cinzel-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/cinzel-fonts/cinzel-v26-latin-700.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

:root {
  --navy: #0D3B4C;
  --teal: #2F5B63;
  --mint: #7DAAA6;
  --gold: #D7B59A;
  --sand: #F7F3EF;
  --ivory: #FFF9F1;
  --white: #fff;
  --ink: #102B35;
  --muted: #62747A;
  --container: max(1400px, 88vw) !important;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-700: #374151;
  --color-gray-900: #1f2937;
  --line: rgba(13, 59, 76, .14);
  --line2: rgba(13, 59, 76, .24);
  --shadow: 0 24px 60px rgba(13, 59, 76, .16);
  --shadow-soft: 0 14px 35px rgba(13, 59, 76, .10);
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, .05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, .08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, .12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --heading: 'Cinzel', Georgia, serif;
  --body: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.65;
  overflow-x: hidden
}

img {
  display: block;
  max-width: 100%
}

a {
  text-decoration: none;
  color: inherit
}

button,
input,
select,
textarea {
  font: inherit
}

button {
  cursor: pointer
}

.container {
  width: min(var(--container), calc(100% - 32px)) !important;
  margin-inline: auto
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  background: var(--navy);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 9999
}

.skip-link:focus {
  top: 16px
}

.section {
  padding: 30px 0
}

.section.alt {
  background: var(--ivory)
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px
}

.section-head.center {
  display: block;
  text-align: center
}

.eyebrow, .teal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px
}
.teal-eyebrow {
    color: var(--teal);
}

.eyebrow:before,
.eyebrow:after,
.teal-eyebrow:before,
.teal-eyebrow:after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold)
}
.section.alt .eyebrow {
    color: var(--teal);
}
.section-title,
h2.section-title {
  font-family: var(--heading);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.1;
  margin: 8px 0 0;
  color: var(--navy);
  font-weight: 700;
}

.section-text {
  color: var(--muted);
  max-width: 690px;
  margin: 10px 0 0
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 900;
  transition: .25s ease;
  border: 1px solid transparent
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 14px 28px rgba(215, 181, 154, .32)
}

.btn-primary:hover {
  background: #cda47f;
  transform: translateY(-2px)
}

.btn-dark {
  background: var(--navy);
  color: #fff
}

.btn-dark:hover {
  background: var(--teal);
  transform: translateY(-2px)
}

.btn-outline {
  border-color: var(--line2);
  background: rgba(255, 255, 255, .78);
  color: var(--navy)
}

.btn-outline:hover {
  background: #fff;
  border-color: var(--gold)
}

.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, .82);
  font-size: 13px
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px
}

.topbar-links,
.topbar-socials {
  display: flex;
  align-items: center;
  gap: 18px
}

.topbar i {
  color: var(--gold)
}

.topbar a:hover {
  color: #fff
}

.topbar-socials a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px
}

.navbar {
  position: relative;
  z-index: 100;
  background: rgba(255, 249, 241, .95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(13, 59, 76, .10)
}

.navbar.scrolled {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.nav-inner {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.brand img {
  max-width: 170px;
  height: auto;
}



.brand-text span {
  font-size: 10px;
  letter-spacing: .34em;
  color: var(--teal);
  font-weight: 900
}

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

.nav-item {
  position: relative
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 28px 12px;
  font-weight: 900;
  font-size: 13px;
  color: var(--navy)
}

.nav-link:hover {
  color: var(--teal)
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 248px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: .25s ease;
  z-index: 20
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 12px;
  color: var(--ink);
  font-weight: 800;
  font-size: 13px
}

.dropdown a:hover {
  background: var(--sand);
  color: var(--navy)
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px
}

.menu-toggle {
  display: none;
  background: var(--navy);
  color: #fff;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 14px
}

.mobile-panel {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(380px, 88vw);
  background: var(--ivory);
  z-index: 2500;
  padding: 22px;
  box-shadow: var(--shadow);
  transform: translateX(105%);
  transition: .3s ease;
  display: block;
  overflow: auto
}

.mobile-panel.open {
  transform: translateX(0)
}

.mobile-close {
  float: right;
  background: var(--navy);
  color: #fff;
  border: 0;
  border-radius: 12px;
  width: 42px;
  height: 42px
}

.mobile-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0 28px
}
.mobile-link-parent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.mobile-chevron {
    margin-inline-start: auto;
    transition: 0.3s;
    cursor: pointer;
}

.mobile-submenu {
    display: none;
    padding-inline-start: 15px;
}

.mobile-submenu.active {
    display: block;
}

.mobile-chevron.active {
    transform: rotate(180deg);
}
.mobile-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 4px;
  border-bottom: 1px solid var(--line);
  font-weight: 900;
  color: var(--navy)
}

.page-hero {
  position: relative;
  padding: 92px 0 86px;
  background: linear-gradient(rgba(13, 59, 76, .76), rgba(13, 59, 76, .78)), var(--hero-img) center/cover;
  color: #fff;
  overflow: hidden
}

.page-hero:after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 20%, rgba(215, 181, 154, .28), transparent 30%);
  pointer-events: none
}

.page-hero .container {
  position: relative;
  z-index: 1
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, .76);
  margin-bottom: 14px
}

.breadcrumbs a {
  font-weight: 900
}

.page-hero h1 {
  font-family: var(--heading);
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.05;
  margin: 0;
  font-weight: 700;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, .84);
  font-size: 17px
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden
}

.tour-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: .25s ease;
  min-width: 0
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow)
}

.tour-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #e9ded3
}

.tour-img img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .45s ease;
}

.tour-card:hover .tour-img img {
  transform: scale(1.07)
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 900;
  background: rgba(215, 181, 154, .94);
  color: var(--navy)
}

.tour-img .badge {
  position: absolute;
  top: 14px;
  left: 14px
}

.tour-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1
}

.tour-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800
}

.tour-title {
  font-family: var(--heading);
  font-size: 20px;
  color: var(--navy);
  line-height: 1.25;
  margin: 0;
  font-weight: 700;
}

.tour-excerpt {
  color: var(--muted);
  font-size: 14px;
  margin: 0
}

.tour-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 14px
}

.price {
  font-weight: 900;
  color: var(--navy)
}

.price small {
  color: var(--muted);
  font-weight: 800
}

.arrow {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff
}

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

.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .78);
  padding: 70px 0 24px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr 1fr;
  gap: 34px
}

.footer-logo img {
  width: 100px;
  filter: brightness(0) invert(1);
}

.footer h3,
.footer h4 {
  font-family: var(--heading);
  color: #fff;
  margin: 0 0 14px;
  font-weight: 700;
}

.footer a:hover {
  color: #fff
}

.footer-links {
  display: grid;
  gap: 9px
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 38px;
  padding-top: 18px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px
}
.footer-bottom .site-name {
       color: var(--gold);
    font-weight: 600;
    text-decoration: underline;
}
.floating-whatsapp {
  position: fixed;
  left: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25D366;
  color: #fff;
  z-index: 90;
  font-size: 26px;
  box-shadow: 0 16px 34px rgba(37, 211, 102, .35)
}

@media(max-width:1100px) {
  .tour-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }

  .nav-menu {
    gap: 0
  }

  .nav-link {
    padding-inline: 9px
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:920px) {
  .topbar {
    display: none
  }

  .nav-menu,
  .nav-actions .btn {
    display: none
  }

  .menu-toggle {
    display: grid;
    place-items: center
  }

  .section-head {
    display: block
  }

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

  .page-hero {
    padding: 70px 0
  }
}

@media(max-width:640px) {
  .container {
    width: min(100% - 24px, var(--container)) !important;
  }

  .section {
    padding: 58px 0
  }

  .nav-inner {
    height: 72px
  }


  .tour-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .footer-bottom {
    display: block
  }

  .page-hero h1 {
    font-size: 34px
  }

  .page-hero p {
    font-size: 15px
  }

  .btn {
    width: 100%
  }

  .mobile-panel .btn {
    width: auto
  }

  .footer {
    padding-bottom: 86px
  }
}

.tour-cta-sidebar {
  position: sticky;
  top: 110px;
}

.tour-cta-card {
  background: linear-gradient(160deg, var(--navy), var(--teal));
  border-radius: 24px;
  padding: 28px;
  color: #fff;
  box-shadow: 0 24px 60px rgba(13, 59, 76, .18);
  position: relative;
  overflow: hidden;
}

.tour-cta-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: rgba(215, 181, 154, .18);
}

.tour-cta-kicker {
  display: inline-flex;
  background: rgba(215, 181, 154, .22);
  color: var(--gold);
  border: 1px solid rgba(215, 181, 154, .35);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 14px;
}

.tour-cta-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 26px;
  line-height: 1.2;
  margin: 0 0 12px;
}

.tour-cta-card p {
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.tour-cta-points {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.tour-cta-points span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 700;
}

.tour-cta-points i {
  color: var(--gold);
}

.tour-cta-btn,
.tour-cta-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  border-radius: 999px;
  padding: 13px 16px;
  font-weight: 900;
}

.tour-cta-btn {
  background: var(--gold);
  color: var(--navy);
  margin-bottom: 10px;
}

.tour-cta-whatsapp {
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
}

.tour-help-card {
  margin-top: 16px;
  background: #fff;
  border: 1px solid rgba(13, 59, 76, .12);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 14px 35px rgba(13, 59, 76, .08);
}

.tour-help-card strong {
  display: block;
  color: var(--navy);
  font-family: 'Cinzel', serif;
  margin-bottom: 4px;
}

.tour-help-card span {
  color: var(--teal);
  font-weight: 800;
}

@media(max-width:900px) {
  .tour-cta-sidebar {
    position: relative;
    top: auto;
    order: -1;
  }
}

.seo-intro-box {
  width: 100%;
  margin: 35px 0 35px;
  background: linear-gradient(135deg, rgba(255, 249, 241, .96), rgba(247, 243, 239, .92));
  border: 1px solid rgba(13, 59, 76, .12);
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 18px 45px rgba(13, 59, 76, .08);
  position: relative;
  overflow: hidden;
}

.seo-intro-box::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  top: -90px;
  border-radius: 50%;
  background: rgba(215, 181, 154, .28);
}

.seo-intro-content {
  position: relative;
  z-index: 1;
}

.seo-intro-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  margin-bottom: 8px;
}

.seo-intro-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.seo-intro-box h2 {
  font-family: var(--heading);
  color: var(--navy);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.18;
  margin: 0 0 12px;
  max-width: 900px;
  font-weight: 700;
}

.seo-intro-text {
  max-height: 72px;
  overflow: hidden;
  position: relative;
  transition: max-height .35s ease;
}

.seo-intro-text::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 32px;
  background: linear-gradient(to bottom, rgba(247, 243, 239, 0), rgba(247, 243, 239, 1));
  pointer-events: none;
}

.seo-intro-box.is-open .seo-intro-text {
  max-height: 500px;
}

.seo-intro-box.is-open .seo-intro-text::after {
  display: none;
}

.seo-intro-text p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 10px;
}

.seo-intro-text a {
  color: var(--navy);
  font-weight: 900;
  border-bottom: 1px solid rgba(215, 181, 154, .9);
}

.seo-read-toggle {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: var(--navy);
  color: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 900;
  font-size: 13px;
}

@media(max-width:640px) {
  .seo-intro-box {
    padding: 22px 18px;
    border-radius: 22px;
    margin-bottom: 30px;
  }

  .seo-intro-text {
    max-height: 98px;
  }
}

.home-faq-strip {
  padding: 46px 0 18px;
  position: relative;
}

.faq-mini-box {
  background: #fff;
  border: 1px solid rgba(13, 59, 76, .12);
  border-radius: 32px;
  padding: 34px;
  box-shadow: 0 18px 45px rgba(13, 59, 76, .08);
  margin-bottom: 22px;
}

.faq-mini-head {
  margin-bottom: 24px;
}

.faq-mini-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}

.faq-mini-kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
}

.faq-mini-head h2 {
  font-family: var(--heading);
  color: var(--navy);
  font-size: clamp(28px, 3vw, 42px);
  margin: 10px 0 0;
  line-height: 1.1;
  font-weight: 700;
}

.faq-mini-grid {
  display: flex;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  flex-wrap: wrap;
}

.faq-mini-item {
  border: 1px solid rgba(13, 59, 76, .10);
  border-radius: 20px;
  background: var(--ivory);
  overflow: hidden;
  height: 100%;
  width: 49%;
}

.faq-mini-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
  color: var(--navy);
  position: relative;
  padding-right: 52px;
}

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

.faq-mini-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 18px;
  font-size: 22px;
  color: var(--gold);
}

.faq-mini-item[open] summary::after {
  content: "–";
}

.faq-mini-item p {
  padding: 0 22px 22px;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 14px;
}

.egypt-stats-strip {
  background: linear-gradient(135deg, var(--navy), var(--teal));
  border-radius: 28px;
  padding: 26px 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  box-shadow: 0 18px 45px rgba(13, 59, 76, .14);
}

.egypt-stat {
  text-align: center;
  color: #fff;
}

.egypt-stat strong {
  display: block;
  font-size: 34px;
  font-family: var(--heading);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.egypt-stat span {
  color: rgba(255, 255, 255, .78);
  font-weight: 700;
  font-size: 14px;
}

@media(max-width:900px) {

  .faq-mini-grid {
    grid-template-columns: 1fr;
  }

  .egypt-stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media(max-width:640px) {

    .faq-mini-item {
      width: 100%;
    }

  .faq-mini-box {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .egypt-stats-strip {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .faq-mini-head h2 {
    font-size: 32px;
  }

}

.testimonial-section {
  padding: 70px 0;
  position: relative;
}

.testimonial-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 38px;
}

.testimonial-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
}

.testimonial-kicker::before,
.testimonial-kicker::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
}

.testimonial-head h2 {
  font-family: var(--heading);
  font-size: clamp(30px, 4vw, 52px);
  color: var(--navy);
  line-height: 1.08;
  margin: 14px 0;
  font-weight: 700;
}

.testimonial-head p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

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

.testimonial-card {
  background: #fff;
  border: 1px solid rgba(13, 59, 76, .10);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 45px rgba(13, 59, 76, .08);
  transition: .25s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(13, 59, 76, .14);
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 90px;
  font-family: Georgia, serif;
  color: rgba(215, 181, 154, .16);
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 5px;
  margin-bottom: 18px;
}

.testimonial-stars i {
  color: var(--gold);
  font-size: 14px;
}

.testimonial-text {
  color: var(--muted);
  line-height: 1.9;
  font-size: 15px;
  margin-bottom: 24px;
  height: calc(1.9 * 3em);
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.testimonial-user img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(215, 181, 154, .35);
}

.testimonial-user strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
}

.testimonial-user span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
}

@media(max-width:900px) {

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

}

@media(max-width:640px) {

  .testimonial-section {
    padding: 54px 0;
  }

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

}

.swiper-wrapper {
  padding-top: 1.5rem;
  padding-bottom: 2.2rem;
}

.swiper-pagination-bullet-active {
  background-color: var(--gold);
}

.navigation-buttons {
  position: absolute;
  z-index: 2000;
  width: 100%;
}

.navigation-buttons .swiper-button-prev {
  right: auto;
  left: -20px;
}

.navigation-buttons .swiper-button-next {
  right: -20px;
  left: auto;
}

.swiper-button-next,
.swiper-button-prev {
  width: 40px !important;
  height: 40px !important;
  background: var(--white);
  border-radius: 50%;
  color: var(--navy) !important;
  box-shadow: var(--shadow);
  transition: background 0.2s, transform 0.2s;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 14px !important;
  font-weight: 900;
}

/*====================================================
  start scroll to top
======================================================*/

.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 50px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.09);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap::after {
  position: absolute;
  content: "\f062";
  font: var(--fa-font-solid);
  text-align: center;
  line-height: 46px;
  font-size: 18px;
  left: 0;
  color: var(--teal);
  top: 2px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -moz-animation: float 1500ms infinite ease-in-out;
  -webkit-animation: float 1500ms infinite ease-in-out;
  animation: float 1500ms infinite ease-in-out;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap:hover::before {
  opacity: 1;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--gold);
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  stroke: var(--gold);
}

@-webkit-keyframes float {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  50% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes float {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  50% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

/*=======================================
  end scroll to top
========================================*/


/* ============================================================
       MOBILE FIXED FOOTER
    ============================================================ */
.mobile-fixed-footer {
  display: none;
}

@media(max-width: 767px) {

  .mobile-fixed-footer {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    border-top: 1px solid #e4edf7;
    box-shadow: 0 -4px 24px rgba(13, 43, 78, .10);
    align-items: stretch;
    justify-content: space-around;
    height: 64px;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
.swiper-button-next,
.swiper-button-prev  {
    display: none !important;
}
  .mobile-fixed-footer a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    flex: 1;
    color: #6B88A8;
    text-decoration: none;
    font-size: 10px;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    letter-spacing: .01em;
    padding: 8px 2px 6px;
    transition: color .18s;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-fixed-footer a svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }

  .mobile-fixed-footer a:hover,
  .mobile-fixed-footer a.mob-footer-active {
    color: var(--blue);
  }

  .mobile-fixed-footer a.mob-footer-book {
    flex: 1.15;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
    color: #fff;
    margin: 7px 5px;
    border-radius: 12px;
    font-size: 10px;
    box-shadow: 0 4px 14px rgba(26, 110, 189, .30);
  }

  .mobile-fixed-footer a.mob-footer-book svg {
    stroke: #fff;
  }

  .mobile-fixed-footer a.mob-footer-book:hover {
    opacity: .92;
    color: #fff;
  }
}

/* ============================================================
       MOBILE FIXED FOOTER
    ============================================================ */
