/**
 * F2S International — refined design layer
 * Loads after main.css. Same brand palette (navy #295078 + logo gold),
 * tightened typography, spacing, cards, and motion.
 */

:root {
  --brand-navy: #295078;
  --brand-navy-deep: #1b3654;
  --brand-navy-soft: #eef2f8;
  --brand-gold: #c19434;
  --brand-gold-soft: #f8f1de;
  --ink: #1b2431;
  --ink-muted: #5a6779;
  --line: #e4eaf2;
  --radius-lg: 4px;
  --radius-md: 3px;
  --shadow-sm: 0 1px 2px rgba(27, 54, 84, .04);
  --shadow-md: 0 6px 20px rgba(27, 54, 84, .07);
  --shadow-lg: 0 14px 40px rgba(27, 54, 84, .10);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --brand-font: "Plus Jakarta Sans", "Raleway", sans-serif;
}

:root {
  --default-color: #4a5768;
  --heading-color: var(--ink);
  --accent-color: var(--brand-navy);
  --nav-hover-color: var(--brand-navy);
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--brand-navy);
  color: #fff;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--brand-navy), transparent 55%);
  outline-offset: 3px;
}

img {
  max-width: 100%;
}

/*--------------------------------------------------------------
# Loader
--------------------------------------------------------------*/
.loader-container {
  background: #fff;
  transition: opacity .5s var(--ease), visibility .5s var(--ease);
}

.hide-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/*--------------------------------------------------------------
# Header — floating bar over the hero
--------------------------------------------------------------*/
.header,
.header.sticky-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 997;
  background: transparent;
  border: 0;
  padding: 18px 0;
  transition: padding .28s var(--ease);
}

.header > .container-xl {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  /* right padding is small because the CTA supplies its own optical margin */
  padding: 8px 8px 8px 20px;
  box-shadow: 0 4px 20px rgba(27, 54, 84, .06);
  transition: box-shadow .28s var(--ease), padding .28s var(--ease);
}

.scrolled .header {
  padding: 10px 0;
}

.scrolled .header > .container-xl {
  box-shadow: 0 8px 28px rgba(27, 54, 84, .10);
}

/* ---- brand lockup ---- */
.header .logo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  flex: 0 0 auto;
}

.header .logo img {
  height: 42px;
  width: auto;
  max-height: none;
  transition: height .28s var(--ease);
}

.scrolled .header .logo img {
  height: 38px;
}

/* both lines flush left; tracking is tuned so the two edges line up optically */
.header .logo .mm {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  line-height: 1;
  margin: 0;
  font-style: normal;
}

.header .logo .mm strong {
  display: block;
  font-family: var(--brand-font);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 2.2px;
  color: var(--brand-navy);
  text-align: left;
}

.header .logo .mm em {
  display: block;
  font-family: var(--brand-font);
  font-style: normal;
  font-size: 8.8px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2.35px;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-top: 7px;
  text-align: left;
}

/* ---- links ---- */
.navmenu {
  margin-left: auto;
}

/* scoped to desktop: main.css hides this list below 1200px and an unscoped
   `display:flex` here would override that, leaving the links invisible but
   still focusable in the tab order */
@media (min-width: 1200px) {
  .navmenu ul {
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0;
    padding: 0;
  }
}

.navmenu ul li a {
  position: relative;
  display: block;
  font-family: var(--nav-font);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: .1px;
  line-height: 1;
  color: var(--ink-muted);
  background: none;
  padding: 12px 14px;
  border-radius: 0;
  white-space: nowrap;
  transition: color .2s var(--ease);
}

.navmenu ul li a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 1.5px;
  background: var(--brand-navy);
  opacity: 0;
  transition: opacity .2s var(--ease);
}

.navmenu ul li a:hover {
  color: var(--ink);
  background: none;
}

.navmenu ul li a.active {
  color: var(--brand-navy);
  background: none;
  font-weight: 600;
}

.navmenu ul li a.active::after {
  opacity: 1;
}

/* ---- Media dropdown ----
   main.css already carries the template's dropdown mechanics (hover on
   desktop, `dropdown-active` on mobile). These rules only restyle it to the
   rebuilt navbar: solid white panel, brand hover, no pill shapes. */
.navmenu .dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.navmenu .dropdown > a .toggle-dropdown {
  font-size: 10px;
  line-height: 1;
  transition: transform .25s var(--ease);
}

@media (min-width: 1200px) {

  .navmenu .dropdown > a .toggle-dropdown {
    pointer-events: none; /* the whole parent link is the hover target */
  }

  .navmenu .dropdown:hover > a .toggle-dropdown {
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    display: block;
    left: 6px;
    padding: 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
  }

  .navmenu .dropdown ul li {
    min-width: 176px;
  }

  .navmenu .dropdown ul li a {
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14.5px;
    color: var(--ink-muted);
  }

  .navmenu .dropdown ul li a::after {
    content: none; /* the underline belongs to the top-level items only */
  }

  .navmenu .dropdown ul li a:hover,
  .navmenu .dropdown ul li a.active {
    color: var(--brand-navy);
    background: var(--brand-navy-soft);
  }
}

@media (max-width: 1199.98px) {

  .navmenu .dropdown > a {
    justify-content: space-between;
  }

  .navmenu .dropdown-open > a .toggle-dropdown {
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    margin: 4px 16px 8px;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--brand-navy-soft);
  }

  .navmenu .dropdown ul li a {
    font-size: 15.5px;
    padding: 10px 14px;
  }
}

/* ---- CTA ---- */
.header .btn-getstarted,
.header .btn-getstarted:focus,
.btn-getstarted {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  background: var(--brand-navy);
  color: #fff !important;
  border-radius: 10px;
  padding: 0 24px;
  height: 44px;
  font-family: var(--nav-font);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .1px;
  line-height: 1;
  margin: 0 0 0 18px;
  white-space: nowrap;
  transition: background-color .22s var(--ease);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover,
.btn-getstarted:hover {
  background: var(--brand-navy-deep);
  color: #fff !important;
}

/* ---- tablet / mobile drawer ---- */
@media (max-width: 1199px) {
  .header {
    padding: 14px 0;
  }

  .header > .container-xl {
    border-radius: 12px;
    padding: 8px 8px 8px 16px;
  }

  .header .logo img {
    height: 38px;
  }

  .header .logo .mm strong {
    font-size: 22px;
    letter-spacing: 2px;
  }

  .header .logo .mm em {
    font-size: 8.2px;
    letter-spacing: 2.15px;
  }

  .navmenu {
    margin-left: 0;
  }

  .navmenu ul li a {
    font-size: 16px;
    padding: 12px 20px;
    border-radius: 8px;
    color: var(--ink);
  }

  .navmenu ul li a::after {
    display: none;
  }

  .navmenu ul li a:hover,
  .navmenu ul li a.active {
    background: var(--brand-navy-soft);
    color: var(--brand-navy);
  }

  .mobile-nav-toggle {
    color: var(--brand-navy);
    font-size: 26px;
    margin-left: 12px;
  }

  .header .btn-getstarted,
  .btn-getstarted {
    height: 40px;
    padding: 0 18px;
    font-size: 13.5px;
    margin-left: auto;
  }
}

@media (max-width: 575px) {
  .header {
    padding: 10px 0;
  }

  .header > .container-xl {
    border-radius: 10px;
    padding: 7px 10px 7px 12px;
  }

  .header .logo {
    gap: 9px;
  }

  .header .logo img {
    height: 34px;
  }

  .header .logo .mm strong {
    font-size: 20px;
    letter-spacing: 1.75px;
  }

  .header .logo .mm em {
    font-size: 8px;
    letter-spacing: 1.9px;
    margin-top: 6px;
  }

  .header .btn-getstarted,
  .btn-getstarted {
    display: none;
  }
}

section,
.section {
  scroll-margin-top: 120px;
}

/*--------------------------------------------------------------
# Section rhythm & titles
--------------------------------------------------------------*/
section,
.section {
  padding: 84px 0;
}

.section-title {
  padding-bottom: 46px;
  max-width: 780px;
}

.section-title h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  letter-spacing: -.5px;
  color: var(--ink);
  margin-bottom: 12px;
}

.section-title h2::before,
.section-title h2::after {
  width: 34px;
  background: var(--brand-gold);
  opacity: .9;
}

.section-title p {
  color: var(--ink-muted);
  font-size: 17px;
  line-height: 1.7;
}

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
.hero {
  position: relative;
  padding: 172px 0 100px;
  background: var(--brand-navy-soft);
  border-bottom: 1px solid var(--line);
  min-height: 0;
}

.hero .row {
  align-items: center;
}

.hero h1 {
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 1.04;
  letter-spacing: -1.6px;
  font-weight: 800;
  color: var(--ink);
  margin: 0;
  max-width: 16ch;
}

.hero h1 .hero-accent {
  color: var(--brand-navy);
  white-space: nowrap;
}

.hero p.hero-subtitle,
.hero-subtitle {
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4.2px;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin: 18px 0 0 !important;
  max-width: none !important;
}

.hero p {
  font-size: 17.5px;
  line-height: 1.7;
  color: var(--ink-muted);
  max-width: 40ch;
  margin: 20px 0 34px;
}

/* ---- actions: both buttons share one height so they sit on a true baseline ---- */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero .btn-get-started,
.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 30px;
  border-radius: 10px;
  font-family: var(--nav-font);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .1px;
  line-height: 1;
  box-shadow: none;
  transition: background-color .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease);
}

.hero .btn-get-started {
  background: var(--brand-navy);
  color: #fff;
  border: 1px solid var(--brand-navy);
}

.hero .btn-get-started:hover {
  background: var(--brand-navy-deep);
  border-color: var(--brand-navy-deep);
  color: #fff;
  transform: none;
}

.btn-hero-ghost {
  gap: 9px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.btn-hero-ghost i {
  font-size: 17px;
  color: #128c47;
}

.btn-hero-ghost:hover {
  color: var(--brand-navy);
  border-color: color-mix(in srgb, var(--brand-navy), transparent 62%);
  transform: none;
  box-shadow: none;
}

/* ---- trust row: icon chips on a shared centre line ---- */
.hero-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  padding: 0;
  margin: 38px 0 0;
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.trust-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--brand-navy);
  border: 0;
}

.trust-icon i {
  font-size: 15px;
  line-height: 1;
  color: #fff;
}

.trust-text {
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink);
}

.hero-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img img {
  width: 100%;
  max-width: 540px;
  height: auto;
  filter: none;
}

/* ---- responsive ladder ---- */
@media (max-width: 1199px) {
  .hero {
    padding: 150px 0 84px;
  }

  .hero h1 {
    max-width: 14ch;
  }
}

@media (max-width: 991px) {
  .hero {
    padding: 128px 0 72px;
    text-align: center;
  }

  /* copy leads on stacked layouts; the artwork follows (order set in markup) */
  .hero .hero-img {
    margin-top: 34px;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-trust {
    justify-content: center;
  }

  .hero-img img {
    max-width: 400px;
  }
}

@media (max-width: 767px) {
  .hero {
    padding: 116px 0 60px;
  }

  .hero h1 {
    letter-spacing: -1px;
  }

  .hero p {
    font-size: 16.5px;
  }

  .hero-img img {
    max-width: 300px;
  }

  .hero-trust {
    gap: 12px 22px;
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  .hero {
    padding: 104px 0 52px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero .btn-get-started,
  .btn-hero-ghost {
    width: 100%;
    height: 50px;
  }

  .hero-trust {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero p.hero-subtitle,
  .hero-subtitle {
    font-size: 11.5px;
    letter-spacing: 3.2px;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-size: clamp(26px, 2.6vw, 34px);
  letter-spacing: -.5px;
  line-height: 1.25;
  margin-bottom: 22px;
}

.about .contenttttt p,
.contenttttt {
  color: var(--ink-muted);
  line-height: 1.85;
  text-align: left;
  font-size: 15.5px;
}

.about .icon-box {
  display: flex;
}

/* icon and copy sit side by side, top-aligned — the icon never floats loose */
.icon-box-inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 26px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}

.icon-box-inner:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--brand-navy), transparent 78%);
}

.icon-box-inner > i {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  font-size: 21px;
  line-height: 1;
  color: var(--brand-navy);
  background: var(--brand-navy-soft);
  margin: 0;
  padding: 0;
}

.icon-box-inner:hover > i {
  background: var(--brand-navy);
  color: #fff;
}

.icon-box-text {
  min-width: 0;
}

.icon-box-text h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 4px 0 8px;
  line-height: 1.3;
}

.about .contentttt {
  color: var(--ink-muted);
  font-size: 14.8px;
  line-height: 1.75;
  text-align: left;
  margin: 0;
}

@media (max-width: 575px) {
  .icon-box-inner {
    flex-direction: column;
    gap: 14px;
  }
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-navy);
  color: #fff !important;
  border: 0;
  border-radius: 0;
  padding: 13px 28px;
  font-weight: 500;
  font-size: 15px;
  box-shadow: 0 10px 24px rgba(41, 80, 120, .2);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}

.about-btn:hover {
  background: var(--brand-navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(41, 80, 120, .28);
}

/*--------------------------------------------------------------
# Stats
--------------------------------------------------------------*/
.stats {
  background: #ffffff;
}

.stats .stats-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.stats .stats-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stats .stats-item i {
  font-size: 26px;
  color: var(--brand-navy);
  background: var(--brand-navy-soft);
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* only the counter itself is the big number — not the descriptive span */
.stats .stats-item span.purecounter {
  font-size: 34px;
  font-weight: 800;
  color: var(--brand-navy);
  display: block;
  line-height: 1.1;
  font-family: var(--heading-font);
}

.stats .stats-item span.purecounter::after {
  content: "+";
  color: var(--brand-gold);
}

.stats .stats-item p span {
  font-size: 14.5px;
  font-weight: 400;
  color: var(--ink-muted);
  display: inline;
  font-family: var(--default-font);
}

.stats .stats-item p {
  font-size: 14.5px;
  color: var(--ink-muted);
  margin: 4px 0 0;
  line-height: 1.5;
}

.stats .stats-item p strong {
  display: block;
  color: var(--ink);
  font-weight: 700;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .service-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  width: 100%;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}

.services .service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}

.services .service-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--brand-navy), transparent 80%);
}

.services .service-item:hover::before {
  transform: scaleX(1);
}

.services .service-item i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  font-size: 25px;
  color: var(--brand-navy);
  background: var(--brand-navy-soft);
  margin-bottom: 20px;
  transition: background .3s var(--ease), color .3s var(--ease);
}

.services .service-item:hover i {
  background: var(--brand-navy);
  color: #fff;
}

.services .service-item h4 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}

.services .service-item p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-muted);
  margin: 0;
}

/*--------------------------------------------------------------
# Alt services (image cards)
--------------------------------------------------------------*/
.alt-services {
  background: var(--brand-navy-soft);
}

.alt-services .service-item {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  border: 1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.alt-services .service-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.alt-services .service-item .img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}



.alt-services .service-item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.alt-services .service-item:hover .img img {
  transform: scale(1.06);
}

.alt-services .service-item .details {
  position: static;
  background: transparent;
  box-shadow: none;
  padding: 26px 28px 30px;
  margin: 0;
  text-align: left;
  width: auto;
}

.alt-services .service-item .details h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.alt-services .service-item .details p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-muted);
  margin: 0;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .features-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}

.features .features-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--brand-navy), transparent 80%);
}

/* unify the template's rainbow icons with the brand palette */
.features .features-item i[class*="bi-"] {
  color: var(--brand-navy) !important;
  font-size: 20px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--brand-navy-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.features .features-item:nth-child(even) i[class*="bi-"] {
  color: var(--brand-gold) !important;
  background: var(--brand-gold-soft);
}

.features .features-item h3 {
  font-size: 15.5px;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
  color: var(--ink);
}

/*--------------------------------------------------------------
# Destinations
--------------------------------------------------------------*/
.destinations {
  background: #ffffff;
}

.destination-feature,
.destination-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.destination-card:hover,
.destination-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.destination-img,
.destination-feature-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.destination-feature-img {
  aspect-ratio: 16 / 9;
}

.destination-img img,
.destination-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.destination-card:hover .destination-img img,
.destination-feature:hover .destination-feature-img img {
  transform: scale(1.06);
}

.destination-flagline {
  border-radius: 2px;
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  font-family: var(--nav-font);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(27, 54, 84, .78);
  backdrop-filter: blur(6px);
  border-radius: 2px;
  padding: 6px 14px;
}

.destination-body,
.destination-feature-body {
  padding: 22px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.destination-body h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
  line-height: 1.35;
}

.destination-body p,
.destination-feature-body p {
  font-size: 14.8px;
  line-height: 1.75;
  color: var(--ink-muted);
  margin: 0 0 14px;
}

.destination-feature-body h3 {
  font-size: clamp(23px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: -.4px;
  margin-bottom: 16px;
}

.destination-feature-secondary {
  width: 100%;
  border-radius: var(--radius-md);
  margin: 6px 0 18px;
}

.destination-feature-body .about-btn {
  align-self: flex-start;
  margin-top: auto;
}

/*--------------------------------------------------------------
# Callback band
--------------------------------------------------------------*/
.ultra-classy-callback-section {
  background: var(--brand-navy);
  padding: 72px 20px;
}

.ultra-classy-callback-container {
  border-radius: var(--radius-lg);
  padding: 34px 38px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, .5);
}

.ultra-classy-heading {
  font-family: var(--heading-font);
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -.4px;
}

.ultra-classy-input {
  border-radius: var(--radius-md);
  border-color: var(--line);
}

.ultra-classy-button {
  border-radius: 0;
  box-shadow: 0 10px 24px rgba(41, 80, 120, .22);
}

.ultra-classy-button:hover {
  background-color: var(--brand-navy-deep);
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
#professional-gallery {
  padding: 84px 0;
  background: #fff;
}

#professional-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}

#professional-gallery .gallery-item {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

#professional-gallery .gallery-link {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

#professional-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform .6s var(--ease);
}

#professional-gallery .gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  background: rgba(27, 54, 84, .48);
  opacity: 0;
  transition: opacity .35s var(--ease);
}

.gallery-item:hover .gallery-zoom {
  opacity: 1;
}

@media (max-width: 900px) {
  #professional-gallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  #professional-gallery .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# Team / founders
--------------------------------------------------------------*/
.team {
  background: var(--brand-navy-soft);
}

.founder-card {
  display: grid;
  grid-template-columns: minmax(0, 400px) minmax(0, 1fr);
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-width: 1020px;
  margin: 0 auto;
}

/* the photo column stretches to whatever the text column needs, so the image
   is absolutely positioned — height:100% against an auto-height grid cell
   collapses to zero in every engine. */
.founder-photo {
  position: relative;
  min-height: 380px;
}

.founder-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.founder-body {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-role {
  border-radius: 2px;
  display: inline-block;
  align-self: flex-start;
  font-family: var(--nav-font);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-gold);
  background: var(--brand-gold-soft);
  border-radius: 2px;
  padding: 6px 15px;
  margin-bottom: 16px;
}

.founder-body h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  letter-spacing: -.4px;
  margin-bottom: 16px;
}

.founder-body p {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--ink-muted);
  margin-bottom: 24px;
}

.founder-links {
  display: flex;
  gap: 12px;
}

.founder-links a {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-navy);
  background: var(--brand-navy-soft);
  font-size: 17px;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}

.founder-links a:hover {
  background: var(--brand-navy);
  color: #fff;
  transform: translateY(-3px);
}

@media (max-width: 860px) {
  .founder-card {
    grid-template-columns: 1fr;
  }

  .founder-photo {
    aspect-ratio: 4 / 3;
  }

  .founder-body {
    padding: 30px 26px 34px;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 32px 30px 30px 96px;
}

.testimonials .testimonial-item .testimonial-img {
  border: 3px solid #fff;
  box-shadow: 0 8px 20px rgba(27, 54, 84, .14);
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}

.testimonials .testimonial-item h4 {
  font-size: 13.5px;
  color: var(--ink-muted);
}

.testimonials .testimonial-item .stars i {
  color: var(--brand-gold);
}

.testimonials .testimonial-item p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-muted);
}

.testimonials .quote-icon-left,
.testimonials .quote-icon-right {
  color: color-mix(in srgb, var(--brand-navy), transparent 82%);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--brand-navy);
}

/*--------------------------------------------------------------
# FAQ accordion
--------------------------------------------------------------*/
.faq-list {
  max-width: 880px;
  margin: 0 auto;
}

.faq-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}

.faq-card.active {
  border-color: color-mix(in srgb, var(--brand-navy), transparent 72%);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: none;
  border: 0;
  text-align: left;
  padding: 22px 24px;
  font-family: var(--heading-font);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: color .25s var(--ease);
}

.faq-question:hover {
  color: var(--brand-navy);
}

.faq-toggle-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--brand-navy);
  background: var(--brand-navy-soft);
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}

.faq-card.active .faq-toggle-icon {
  transform: rotate(45deg);
  background: var(--brand-navy);
  color: #fff;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s var(--ease);
}

.faq-answer.open {
  grid-template-rows: 1fr;
}

.faq-answer > p {
  overflow: hidden;
  margin: 0;
  padding: 0 24px;
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--ink-muted);
  transition: padding .35s var(--ease);
}

.faq-answer.open > p {
  padding: 0 24px 24px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-info-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 12px 26px 22px;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.contact .info-item {
  display: flex;
  gap: 16px;
  background: transparent;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  box-shadow: none;
}

.contact-info-panel .info-item:last-child {
  border-bottom: 0;
}

.contact .info-item i {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 13px;
  font-size: 20px;
  color: var(--brand-navy);
  background: var(--brand-navy-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact .info-item h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.contact .info-item p {
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 8px;
  color: var(--ink-muted);
}

.contact .info-item p a {
  color: var(--ink-muted);
  text-decoration: none;
}

.contact .info-item p a:hover {
  color: var(--brand-navy);
}

.contact .info-item p a strong {
  color: var(--ink);
}

.info-tag {
  border-radius: 2px;
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--brand-navy);
  background: var(--brand-navy-soft);
  border-radius: 2px;
  padding: 2px 9px;
  margin-left: 6px;
  vertical-align: middle;
}

.contact .php-email-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.contact .php-email-form .form-control {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  font-size: 15px;
  box-shadow: none;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}

.contact .php-email-form .form-control:focus {
  border-color: color-mix(in srgb, var(--brand-navy), transparent 45%);
  box-shadow: 0 0 0 4px rgba(41, 80, 120, .1);
}

.contact .php-email-form button[type=submit] {
  background: var(--brand-navy);
  border: 0;
  border-radius: 0;
  padding: 14px 40px;
  font-weight: 500;
  color: #fff;
  box-shadow: 0 12px 26px rgba(41, 80, 120, .22);
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}

.contact .php-email-form button[type=submit]:hover {
  background: var(--brand-navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(41, 80, 120, .28);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: var(--brand-navy-deep);
  color: rgba(255, 255, 255, .78);
  padding: 64px 0 26px;
  border: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-logo {
  max-width: 170px;
  margin-bottom: 18px;
  background: #fff;
  border-radius: 12px;
  padding: 10px 14px;
}

.footer-brand p {
  font-size: 14.5px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .68);
  margin-bottom: 20px;
}

.footer h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .3px;
  margin-bottom: 18px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, .72);
  font-size: 14.5px;
  transition: color .25s var(--ease), padding-left .25s var(--ease);
}

.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-contact p {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .72);
  margin-bottom: 12px;
}

.footer-contact i {
  color: var(--brand-gold);
  margin-top: 3px;
}

.footer-contact a:hover {
  color: #fff;
}

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

.footer .social-links a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border: 0;
  font-size: 16px;
  transition: background .25s var(--ease), transform .25s var(--ease);
}

.footer .social-links a:hover {
  background: var(--brand-gold);
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
}

.footer-bottom p {
  margin: 0;
  font-size: 13.5px;
  color: rgba(255, 255, 255, .6);
}

.footer-bottom .sitename {
  color: #fff;
}

.footer-bottom-links {
  display: flex;
  gap: 22px;
}

.footer-bottom-links a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .6);
}

.footer-bottom-links a:hover {
  color: var(--brand-gold);
}

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

@media (max-width: 575px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Floating actions
--------------------------------------------------------------*/
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 84px;
  z-index: 996;
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
  color: #fff;
  background: #128c47;
  box-shadow: 0 6px 18px rgba(18, 140, 71, .30);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s var(--ease);
}

.whatsapp-float.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.whatsapp-float:hover {
  color: #fff;
  transform: translateY(-3px) scale(1.05);
}

.scroll-top {
  background: var(--brand-navy);
  border-radius: 12px;
  box-shadow: 0 12px 26px rgba(41, 80, 120, .3);
}

.scroll-top:hover {
  background: var(--brand-navy-deep);
}

@media (max-width: 575px) {
  .whatsapp-float {
    width: 44px;
    height: 44px;
    font-size: 22px;
    right: 12px;
    bottom: 64px;
  }

  /* smaller footprint on phones so the pair covers less card text */
  .scroll-top {
    width: 40px;
    height: 40px;
    right: 12px;
    bottom: 16px;
  }

  /* let the last card in a section clear the floating pair */
  .stats .row > [class*="col-"]:last-child,
  .services .row > [class*="col-"]:last-child {
    padding-bottom: 56px;
  }
}

/*--------------------------------------------------------------
# Motion preferences
--------------------------------------------------------------*/
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }

  .hero .animated {
    animation: none !important;
  }
}

/* very small screens: the burger and wordmark are enough — the CTA repeats below */
@media (max-width: 480px) {

  .header .btn-getstarted,
  .btn-getstarted {
    display: none;
  }

  .header > .container-xl {
    border-radius: 10px;
    padding: 8px 14px;
  }
}

/* 1200–1399px: nine nav items only fit if the links tighten up, otherwise the
   Get Started button is pushed out of line */
@media (min-width: 1200px) and (max-width: 1399.98px) {

  .navmenu ul li a {
    font-size: 14px;
    padding: 12px 9px;
  }

  .navmenu ul li a::after {
    left: 9px;
    right: 9px;
  }
}
