/* ----------------------------------------
01. Basic Styles
---------------------------------------- */

400;500;600;700;800&display=swap");
400;500;600;700;800&display=swap");

:root {
  --main-color: #0f8f68;
  --main-color-rgb: 15, 143, 104;
  --bg-color: #fffaf2;
  --card-bg-color: #ffffff;
  --border-color: rgba(var(--main-color-rgb), 0.24);
  --text-color-rgb: 24, 38, 32;
  --main-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --secondary-font: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  overflow-x: hidden;
}
body {
  overflow-x: hidden;
  color: #000;
  background-color: var(--bg-color);
  font-family: var(--main-font);
  transition: all 0.3s ease-in-out;
}

a {
  text-decoration: none;
  color: inherit;
}
p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(var(--text-color-rgb), 0.7);
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
ul li {
  font-size: 15px;
}

section {
  margin-bottom: 100px;
}
section .section-heading h3 {
  font-size: 18px;
  font-weight: 700;
  width: fit-content;
  color: var(--main-color);
  text-transform: uppercase;
  position: relative;
  left: 50px;
}
section .section-heading.text-center h3 {
  margin: auto;
  left: 0;
}
section .section-heading h3::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -50px;
  width: 40px;
  height: 2px;
  background-color: var(--main-color);
}
section .section-heading h2 {
  font-size: 44px;
  font-weight: 700;
}
section .section-heading h2 span {
  color: var(--main-color);
}

.path-button {
  display: flex;
  align-items: center;
  gap: 10px;
  outline: none;
  padding: 12px 26px;
  color: #fff;
  background-color: transparent;
  border: 1px solid var(--main-color);
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  user-select: none;
  transition: color 0.3s ease-in-out;
  z-index: 0;
}
.path-button::before,
.path-button::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  background-color: var(--main-color);
  transition: width 0.3s ease-in-out;
  z-index: -1;
}
.path-button::before {
  top: 0;
  left: 0;
}
.path-button::after {
  bottom: 0;
  right: 0;
}
a.button {
  width: fit-content;
}
.path-button i {
  transition: transform 0.3s ease-in-out;
}
.path-button:hover {
  color: var(--main-color);
}
.path-button:hover::before,
.path-button:hover::after {
  width: 0;
}
.path-button:hover i {
  transform: translateX(5px);
}

.path-button.secondary {
  color: var(--main-color);
}
.path-button.secondary:hover {
  color: #fff;
}
.path-button.secondary::before,
.path-button.secondary::after {
  width: 0;
}
.path-button.secondary:hover::before,
.path-button.secondary:hover::after {
  width: 100%;
}
.path-button.square {
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.path-button.square i {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(0);
}
.path-button.square.secondary:hover i {
  color: #fff;
}

.island-logo {
  width: 140px;
  display: flex;
  user-select: none;
}
.island-logo img {
  width: 100%;
}
.island-logo-light {
  display: none;
}

.flaticon {
  display: block;
  line-height: 3rem;
  font-size: 3rem;
  color: var(--main-color);
}

.form-control::placeholder {
  color: #73767e;
}
.form-control {
  background: var(--card-bg-color);
  border: 1px solid var(--border-color);
  box-shadow: none !important;
  border-radius: 5px;
  padding: 10px 16px;
  color: var(--text-color-rgb);
}
.form-control:focus {
  color: var(--text-color-rgb);
  border-color: var(--main-color);
  background: var(--card-bg-color);
}

.return-path {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 40px;
  width: 40px;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(var(--main-color-rgb), 0.2);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: all 0.3s ease-in-out;
}
.return-path i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  color: var(--main-color);
  transition: color 0.3s ease-in-out;
}
.return-path.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.return-path svg path {
  fill: none;
  stroke: var(--main-color);
  stroke-width: 4;
  box-sizing: border-box;
  transition: stroke 0.3s ease-in-out;
}
.return-path:hover {
  background-color: var(--main-color);
}
.return-path:hover i {
  color: #fff;
}
.return-path:hover svg path {
  stroke: #fff;
}

.media-card {
  user-select: none;
}

.backdrop-img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.search-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-110%);
  transform-origin: left center;
  transition: transform 400ms ease 400ms, visibility 400ms ease 400ms;
  visibility: hidden;
}
.search-layer.active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition: transform 400ms ease 0ms, visibility 400ms ease 0ms;
}
.search-layer .soft-cover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--main-color);
  opacity: 0.9;
  cursor: pointer;
}
.search-layer .note-content {
  width: 100%;
  max-width: 560px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-130%);
  transition: opacity 400ms ease 0ms, visibility 400ms ease 0ms, transform 400ms ease 0ms;
}
.search-layer.active .note-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 400ms ease 400ms, visibility 400ms ease 400ms, transform 400ms ease 400ms;
}
.search-layer .note-content form {
  display: flex;
}
.search-layer .note-content form input {
  color: inherit;
  padding: 14px 16px;
  border: 0;
  border-radius: 5px 0 0 5px;
}
.search-layer .note-content button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 0;
  border-radius: 0 5px 5px 0;
  background-color: var(--main-color);
  transition: all 0.3s ease-in-out;
}
.search-layer .note-content button i {
  font-size: 20px;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.search-layer .note-content button:hover {
  background-color: var(--card-bg-color);
}
body.light .search-layer .note-content button:hover i {
  color: #000;
}

.owl-nav {
  margin: auto !important;
}
.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 5px !important;
  background-color: var(--main-color) !important;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.owl-nav button i {
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.owl-nav button:hover {
  background-color: #fff !important;
}
.owl-nav button:hover i {
  color: var(--main-color);
}
.owl-prev {
  left: 40px;
}
.owl-next {
  right: 40px;
}
.owl-carousel:hover .owl-nav button {
  opacity: 1;
  visibility: visible;
}
.owl-carousel:hover .owl-prev {
  left: 0;
}
.owl-carousel:hover .owl-next {
  right: 0;
}

.wave-cursor {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border: 1px solid var(--main-color);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1000;
}

.hidden {
  display: none;
}

/* ----------------------------------------
02. Preloader
---------------------------------------- */

.route-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #063b34;
  z-index: 1000;
}
.letter-loader {
  font-size: 96px;
  font-weight: 700;
  text-align: center;
}
.letter-loader span {
  color: #fff;
  display: inline-block;
  animation: blurAnim 1.4s infinite alternate;
}

@keyframes fadeAnim {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes blurAnim {
  0% {
    filter: blur(0);
    opacity: 1;
  }
  100% {
    filter: blur(5px);
    opacity: 0.1;
  }
}

/* ----------------------------------------
03. Header Area
---------------------------------------- */

header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  z-index: 10;
  user-select: none;
}
header.sticky {
  position: fixed;
  background-color: var(--bg-color);
  box-shadow: 0 -6px 10px 5px rgba(0, 0, 0, 0.5);
  animation: slideDown 0.35s ease-out;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
header .container {
  height: 100%;
  display: grid;
  place-items: center;
}
header nav {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .brand-shell {
  display: flex;
  align-items: center;
  justify-content: center;
}

header .route-panel {
  height: 100%;
  font-size: 16px;
  font-weight: 500;
}
header .route-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  margin-bottom: 0;
}
header .route-anchor {
  display: flex;
}

header .route-menu > .route-node {
  margin: 0 14px;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
}
header .route-menu > .route-node > a:hover {
  color: var(--main-color);
}
header .route-menu > .route-node:hover .route-branch {
  transform: scaleY(1);
}
header .route-node.has-sub-menu > a::after {
  content: "+";
  position: absolute;
  left: calc(100% + 2px);
}

header .route-branch {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  width: max-content;
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 0.3s ease-in-out;
}
header .route-branch .route-node {
  padding: 8px 16px;
  background-color: var(--bg-color);
  transition: padding 0.3s ease-in-out;
}
header .route-branch .route-node:hover {
  background-color: var(--main-color);
  color: #fff;
}

header .nav-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}
header > div {
  cursor: pointer;
  font-size: 22px;
}
header .route-toggle {
  display: none;
}
header .route-toggle,
header .search-trigger {
  padding: 0 4px;
}
header .route-toggle i,
header .search-trigger i {
  font-size: 22px;
}

header .tone-switch {
  width: 40px;
  height: 40px;
  outline: none;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
header .tone-switch i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 20px;
  color: #fff;
  background-color: var(--main-color);
  transition: all 0.3s ease-in-out;
}
header .tone-switch:hover i {
  color: var(--main-color);
  background-color: #fff;
}

/* ----------------------------------------
04. Hero Section
---------------------------------------- */

.discovery-hero {
  min-height: 100vh;
  height: 100vh;
}
.discovery-hero .container {
  min-height: 100vh;
  padding: 160px 0;
}
.discovery-hero .row {
  height: 100%;
}
.discovery-hero h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--main-color);
  text-transform: uppercase;
}
.discovery-hero h1 {
  font-size: 54px;
  font-weight: 700;
}
.discovery-hero p {
  margin: 20px 0;
}
.discovery-hero .action-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.play-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #fff;
  background-color: var(--main-color);
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.play-link::before,
.play-link::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  background: rgba(var(--main-color-rgb), 1);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  animation: pulse-anim 1s ease-in-out infinite;
}
.play-link::after {
  background: rgba(var(--main-color-rgb), 0.4);
}
.play-link::before {
  background: rgba(var(--main-color-rgb), 0.6);
  animation-delay: -0.5s;
}
.play-link:hover {
  color: var(--main-color);
  background-color: #fff;
}

@keyframes pulse-anim {
  0% {
    transform: scale(1, 1);
    opacity: 1;
  }
  100% {
    transform: scale(1.8, 1.8);
    opacity: 0;
  }
}

/* Home 01 */
.route-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Home 02 */
body.light header.style-2 .route-menu > .route-node > a,
body.light header.style-2 .nav-tools div:not(.theme-switcher) i {
  color: #fff;
}
body.light header.style-2.sticky .route-menu > .route-node > a,
body.light header.style-2.sticky .nav-tools div:not(.theme-switcher) i {
  color: #000;
}
body.light header.style-2 .route-menu > .route-node:hover > a {
  color: var(--main-color);
}

body.light header.style-2 .island-logo-dark,
body.light header.style-2.sticky .island-logo-light {
  display: none;
}
body.light header.style-2 .island-logo-light,
body.light header.style-2.sticky .island-logo-dark {
  display: block;
}

body.light .discovery-hero.home-2,
body.light .discovery-hero.home-2 p {
  color: #fff;
}

.discovery-hero.home-2 {
  background-color: #000;
}
.discovery-hero.home-2 .hero-slide {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.discovery-hero.home-2 .hero-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, #0a0a3200 0%, #141432cc 70%);
  z-index: 2;
}
.discovery-hero.home-2 .float-shape {
  position: absolute;
  left: -100px;
  bottom: 50px;
  width: 1100px;
  height: 1000px;
  border-radius: 100%;
  overflow: hidden;
  background-color: var(--main-color);
  animation: floatAnim infinite 4s;
  z-index: 1;
  opacity: 0.6;
}
@keyframes floatAnim {
  0%,
  100% {
    transform: translateX(-30px);
  }
  50% {
    transform: translateX(-10px);
  }
}
.discovery-hero.home-2 .container {
  position: relative;
  z-index: 10;
}

.discovery-hero.home-2 .owl-stage-outer,
.discovery-hero.home-2 .owl-stage,
.discovery-hero.home-2 .owl-item,
.discovery-hero.home-2 .hero-slide-shell,
.discovery-hero.home-2 .hero-slide {
  width: 100%;
  height: 100%;
}
.discovery-hero.home-2 .content-flow * {
  transform: translateY(80px);
  transition: all 0.3s, transform 0.6s ease-out 0.8s, opacity 0.6s ease-out 0.8s;
  opacity: 0;
}
.discovery-hero.home-2 .content-flow i {
  transform: none;
}
.owl-item.active .content-flow * {
  transform: none;
  opacity: 1;
}
.discovery-hero.home-2 .owl-item.active .backdrop-img {
  animation: bgScaleAnim 26s linear alternate-reverse 0s infinite both;
}
@keyframes bgScaleAnim {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}
.discovery-hero.home-2 .owl-nav {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translate(0, -50%);
  display: flex;
  flex-direction: column;
}
.discovery-hero.home-2 .owl-nav button {
  position: unset;
}

/* ----------------------------------------
05. Service Section
---------------------------------------- */

.trip-modes .content-flow {
  margin-top: 40px;
}
.experience-tile {
  padding: 30px 20px;
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.experience-tile::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--main-color);
  transform: scale(0);
  z-index: -1;
  transition: transform 0.3s ease-in-out;
}
.experience-tile:hover::before {
  transform: scale(3);
}
.experience-tile > * {
  transition: color 0.3s ease-in-out !important;
}
.experience-tile:hover > * {
  color: #fff;
}
.experience-tile h3 {
  font-size: 22px;
  font-weight: 600;
}
.experience-tile a {
  font-weight: 600;
  color: var(--main-color);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease-in-out !important;
}
.experience-tile a:hover {
  gap: 20px;
}

/* ----------------------------------------
06. About Section
---------------------------------------- */

.story-section .tick-list {
  margin: 20px 0;
}
.story-section ul li {
  margin-bottom: 10px;
}
.story-section ul li::before {
  content: "\f058";
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  font-family: var(--fa-style-family, "Font Awesome 6 Free");
  font-weight: var(--fa-style, 900);

  color: var(--main-color);
  margin-right: 6px;
}
.story-section .facts-list .fact-line {
  display: flex;
  gap: 20px;
}
.story-section .facts-list .fact-line .flaticon {
  font-size: 40px;
}
.story-section .facts-list .fact-line h3 {
  font-size: 22px;
  font-weight: 600;
}
.story-section .story-cta {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 80px;
}
.story-section .story-cta .story-signature img {
  user-select: none;
}

/* ----------------------------------------
07. WhyUs Section
---------------------------------------- */

.promise-section .facts-list {
  margin: 20px 0;
}
.promise-section .facts-list .fact-line {
  display: flex;
  gap: 20px;
}
.promise-section .facts-list .fact-line .flaticon {
  font-size: 40px;
}
.promise-section .facts-list .fact-line h3 {
  font-size: 22px;
  font-weight: 600;
}

/* ----------------------------------------
08. Clients Section
---------------------------------------- */

.partner-strip .container {
  padding: 80px 0;
  border-radius: 5px;
  background-color: rgba(var(--main-color-rgb), 1);
}
.partner-strip img {
  padding: 0 30px;
  margin-top: auto;
}

/* ----------------------------------------
09. Projects Section
---------------------------------------- */

.places-section .content-flow {
  margin-top: 60px;
}
.place-tile {
  position: relative;
  cursor: default;
}
.place-tile .media-card {
  overflow: hidden;
}
.place-tile .media-card img {
  width: 100%;
  transition: transform 0.3s ease-in-out;
}
.place-tile .soft-cover {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(var(--main-color-rgb), 0.8) 0%, #fff0 60%);
  transition: opacity 0.3s ease-in-out;
}
.place-tile .tile-copy {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  color: #fff;
}
.place-tile .tile-copy h5 {
  font-size: 14px;
}
.place-tile .tile-copy h3 {
  font-size: 22px;
  font-weight: 600;
}
.place-tile .tile-copy i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 50%;
}

.place-tile .tile-detail {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(0deg, var(--main-color) 0%, #fff0 200%);
  transform: translateY(20%);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.place-tile .tile-detail * {
  transition: all 0.3s ease-in-out;
}

.place-tile:hover .tile-detail {
  transform: translateY(0);
  opacity: 1;
}
.place-tile:hover .soft-cover {
  opacity: 0;
}
.place-tile:hover img {
  transform: scale(1.1);
}
.place-tile:hover .tile-detail p {
  color: rgba(255, 255, 255, 0.7);
}
.place-tile .tile-detail i:hover {
  background-color: #fff;
  color: var(--main-color);
}

/* ----------------------------------------
10. Counters Section
---------------------------------------- */

.number-strip .fact-line {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.number-strip .fact-line .flaticon {
  font-size: 60px;
}
.number-strip .fact-line .tile-copy h2 {
  font-size: 32px;
  font-weight: 700;
}
.number-strip .fact-line .tile-copy h4 {
  font-size: 20px;
}

/* ----------------------------------------
11. Pricing Section
---------------------------------------- */

.plans-section .content-flow {
  margin-top: 40px;
}
.plan-box {
  padding: 30px;
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 5px;
}
.plan-box.featured {
  color: #fff;
  background-color: var(--main-color);
}
.plan-box.featured p {
  color: inherit;
}
.plan-box h4 {
  font-size: 22px;
  font-weight: 500;
}
.plan-box h2 {
  display: flex;
  align-items: center;
  font-size: 40px;
  font-weight: 600;
}
.plan-box h2 span {
  font-size: 20px;
  font-weight: 500;
}
.plan-box ul li {
  margin-bottom: 10px;
}
.plan-box ul li::before {
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  font-family: var(--fa-style-family, "Font Awesome 6 Free");
  font-weight: var(--fa-style, 900);
  margin-right: 6px;
  color: var(--main-color);
}
.plan-box ul li.tick::before {
  content: "\f058";
  content: "\f00c";
}
.plan-box ul li.cross::before {
  content: "\f057";
  content: "\f00d";
}
.plan-box.featured ul li::before {
  color: #fff;
}
.plan-box .path-button {
  margin-top: 30px;
}
.plan-box.featured .path-button {
  color: var(--main-color);
  border-color: #fff;
}
.plan-box.featured .path-button::before,
.plan-box.featured .path-button::after {
  background-color: #fff;
}
.plan-box.featured .path-button:hover {
  color: #fff;
}

/* ----------------------------------------
12. Team Section
---------------------------------------- */

.planner-section .content-flow {
  margin-top: 40px;
}
.planner-box {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 5px;
  text-align: center;
  padding: 30px;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.planner-box::before {
  content: "";
  position: absolute;
  bottom: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--main-color);
  transform: scale(0);
  z-index: -1;
  transition: transform 0.3s ease-in-out;
}
.planner-box:hover::before {
  transform: scale(3);
}
.planner-box .media-card {
  margin: auto;
  margin-bottom: 20px;
  overflow: hidden;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  user-select: none;
}
.planner-box .media-card img {
  width: 100%;
}
.planner-box h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 0;
}
.planner-box h6 {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--text-color-rgb), 0.7);
}
.planner-box .social-row {
  border-top: 1px solid var(--border-color);
  margin-top: 20px;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.planner-box .social-row i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  color: #fff;
  background-color: var(--main-color);
}
.planner-box * {
  transition: all 0.3s ease-in-out;
}
.planner-box:hover h3,
.planner-box:hover h6 {
  color: #fff;
}
.planner-box:hover .social-row {
  border-color: #fff2;
}
.planner-box:hover i {
  color: var(--main-color);
  background-color: #fff;
}

/* ----------------------------------------
13. Testimonial Section
---------------------------------------- */

.guest-section .content-flow {
  margin-top: 40px;
}
.guest-note {
  border: 1px solid var(--border-color);
  background-color: var(--card-bg-color);
  padding: 20px;
  border-radius: 5px;
  position: relative;
  margin-top: 50px;
}
.guest-note .media-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100px;
  overflow: hidden;
  padding: 2px;
  border: 2px solid var(--main-color);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.guest-note .media-card img {
  width: 100%;
  border-radius: 50%;
}
.guest-note .note-content {
  text-align: center;
  margin-top: 50px;
}
.guest-note h3 {
  font-size: 22px;
  font-weight: 600;
}
.guest-note h6 {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--text-color-rgb), 0.7);
}
.guest-note i {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(-100%, -50%);
  font-size: 44px;
  color: var(--main-color);
}

/* ----------------------------------------
14. FAQ Section
---------------------------------------- */

.answers-section .content-flow {
  margin-top: 40px;
}
.answers-accordion .answer-card {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  margin-bottom: 10px;
}
.answers-accordion .card-header {
  position: relative;
  background-color: transparent;
  border: none;
  padding: 0;
}
.answers-accordion .card-header .answer-toggle {
  width: 100%;
  padding: 10px 20px;
  text-align: left;
  text-decoration: none;
  border-radius: 0;
  font-size: 18px;
  font-weight: 600;
  color: inherit;
  outline: none;
  box-shadow: none;
}
.answers-accordion .card-header .answer-toggle::before {
  content: "\f068";
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 free" !important;
  font-weight: 900;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  left: auto;
}
.answers-accordion .card-header .answer-toggle.collapsed::before {
  content: "\f067";
}
.answers-accordion .card-header .answer-toggle:not(.collapsed) {
  color: #fff;
  background-color: var(--main-color);
}
.answers-accordion .card-body {
  padding: 10px 20px;
}

/* ----------------------------------------
15. Blog Section
---------------------------------------- */

.guide-section .content-flow {
  margin-top: 40px;
}
.guide-card {
  border-radius: 5px;
  overflow: hidden;
  background-color: var(--card-bg-color);
}
.guide-card .tile-copy {
  padding: 30px;
}
.guide-card .tile-copy h6 {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(var(--text-color-rgb), 0.7);
  user-select: none;
}
.guide-card .tile-copy h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  margin: 10px 0;
}
.guide-card .tile-copy a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--main-color);
  margin-top: 30px;
  user-select: none;
  transition: gap 0.3s ease-in-out;
}
.guide-card .tile-copy a:hover {
  gap: 20px;
}

/* ----------------------------------------
16. Contact Section
---------------------------------------- */

.hello-section .content-flow {
  margin-top: 40px;
}
.hello-section .facts-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.hello-section .facts-list li .flaticon {
  font-size: 44px;
}
.hello-section .facts-list li h4 {
  font-size: 20px;
  font-weight: 600;
}
.hello-section .facts-list li h5 {
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--text-color-rgb), 0.7);
}

/* ----------------------------------------
17. Map Section
---------------------------------------- */

.location-map {
  margin: 0;
}
.location-map .map-canvas {
  overflow: hidden;
  height: 500px;
  width: 100%;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ----------------------------------------
18. Footer Area
---------------------------------------- */

footer {
  color: #fff;
  background-color: #063b34;
}
footer p {
  color: rgb(255, 255, 255);
}
footer .footer-grid {
  padding: 40px 0;
}
footer .footer-block h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}
footer .island-logo {
  margin-bottom: 20px;
}
footer .social-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
footer .social-row i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  color: #fff;
  background-color: var(--main-color);
  transition: all 0.3s ease-in-out;
}
footer .social-row i:hover {
  color: var(--main-color);
  background-color: #fff;
}

footer .footer-links li {
  margin-bottom: 10px;
}
footer .footer-links li a {
  transition: color 0.3s ease-in-out;
}
footer .footer-links li a::before {
  content: "\f061";
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  font-family: var(--fa-style-family, "Font Awesome 6 Free");
  font-weight: var(--fa-style, 900);
  margin-right: 6px;
  transition: margin 0.3s ease-in-out;
}
footer .footer-links li a:hover {
  color: var(--main-color);
}
footer .footer-links li a:hover::before {
  margin-right: 10px;
}

footer .footer-contact li {
  margin-bottom: 10px;
  cursor: pointer;
}
footer .footer-contact li a {
  transition: color 0.3s ease-in-out;
}
footer .footer-contact li a:hover {
  color: var(--main-color);
}
footer .footer-contact li i {
  margin-right: 6px;
}
footer .form-control {
  padding: 6px 10px;
  font-size: 14px;
}
footer .path-button {
  margin-top: 10px;
  padding: 6px 10px;
  font-size: 14px;
}
footer .path-button:hover i {
  transform: translate(0);
}

footer .site-credit {
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid #fff2;
}
footer .site-credit p {
  margin: 0;
}

/* ----------------------------------------
19. Responsive
---------------------------------------- */

@media (max-width: 1199px) {
  header .route-panel {
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    background-color: #0009;
    transition: opacity 0.5s ease-in-out 0s;
  }
  header .route-panel.show {
    opacity: 1;
    visibility: visible;
  }
  header .route-menu {
    position: absolute;
    top: 0;
    left: -100%;
    height: calc(100% - 90px);
    padding: 20px 30px;
    flex-direction: column;
    align-items: start;
    justify-content: unset;
    overflow: auto;
    overflow-x: hidden;
    background-color: var(--bg-color);
    transition: all 0.5s ease-in-out 0s;
  }
  header .route-panel.show .route-menu {
    left: 0;
  }
  header .route-menu > .route-node {
    width: 200px;
    height: unset;
    padding: 10px 0;
    flex-direction: column;
    align-items: unset;
  }
  header .route-node.has-sub-menu > a::after {
    left: 100%;
  }
  header .route-branch {
    margin-top: 10px;
    position: static;
    display: none;
    visibility: visible;
    opacity: 1;
    border: none;
    box-shadow: none;
    padding: 0;
    transform: translateY(0);
  }
  header .route-branch .route-node {
    padding: 6px 0;
    padding-left: 10px;
  }
  header .route-branch .route-node:hover {
    background-color: var(--bg-color);
    color: var(--main-color);
    padding-left: 20px;
  }
  header .route-toggle {
    display: block;
  }

  body.light header.style-2 .route-menu > .route-node > a {
    color: #000;
  }

  .discovery-hero,
  .discovery-hero .container {
    height: auto;
  }
}

/* ----------------------------------------
20. Dark Mode
---------------------------------------- */

body.dark {
  color: #fff;
  --bg-color: #063b34;
  --card-bg-color: #151540;
  --border-color: #0000;
  --text-color-rgb: 255, 255, 255;
}
body.dark .story-section .story-signature img {
  filter: invert(1);
}
body.dark .island-logo-dark {
  display: none;
}
body.dark .island-logo-light {
  display: block;
}
body.light footer .form-control,
body.light footer .form-control:focus {
  color: #000;
}
body {
  margin: 0;
  padding: 0;
}

/* Медиа-запрос для мобильных устройств */
@media (max-width: 768px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Если нужно добавить отступы для всего контента */
  body {
    padding: 16px;
  }
}
/* Общие стили для секции hero */
.discovery-hero {
  padding: 20px 0; /* Вертикальные отступы для секции */
}

.discovery-hero .container {
  padding-left: 16px;
  padding-right: 16px; /* Боковые отступы для контейнера */
}

.discovery-hero .content-flow h1 {
  font-size: 2rem; /* Уменьшаем заголовок для мобильных */
  line-height: 1.2;
}

.discovery-hero .content-flow h3 {
  font-size: 1.25rem;
}

.discovery-hero .content-flow p {
  font-size: 1rem;
}

/* Адаптация изображения */
.discovery-hero .media-card img {
  max-width: 100%; /* Изображение не выходит за пределы контейнера */
  height: auto; /* Сохраняем пропорции */
}

/* Медиа-запрос для мобильных устройств (ширина до 768px) */
@media (max-width: 768px) {
  .discovery-hero .container {
    padding-left: 12px; /* Уменьшенные боковые отступы */
    padding-right: 12px;
  }

  .discovery-hero .row {
    flex-direction: column; /* Столбец вместо строки */
    text-align: center; /* Центрируем текст */
  }

  .discovery-hero .col-lg-6 {
    width: 100%; /* Полная ширина для каждого блока */
    margin-bottom: 20px; /* Отступ между блоками */
  }

  .discovery-hero .content-flow h1 {
    font-size: 1.75rem; /* Еще меньший заголовок */
  }

  .discovery-hero .content-flow h3 {
    font-size: 1.1rem;
  }

  .discovery-hero .media-card {
    max-width: 80%; /* Ограничиваем ширину изображения */
    margin: 0 auto; /* Центрируем изображение */
  }
}

/* Для очень маленьких экранов (до 576px) */
@media (max-width: 576px) {
  .discovery-hero .content-flow h1 {
    font-size: 1.5rem;
  }

  .discovery-hero .content-flow p {
    font-size: 0.9rem;
  }

  .discovery-hero .media-card {
    max-width: 100%; /* Изображение на всю ширину */
  }
}
/* Общие стили для секции about */
.story-section {
  padding: 20px 0; /* Вертикальные отступы для секции */
}

.story-section .container {
  padding-left: 16px;
  padding-right: 16px; /* Боковые отступы для контейнера */
}

.story-section .section-heading h2 {
  font-size: 2rem; /* Размер заголовка */
  line-height: 1.2;
}

.story-section .section-heading h3 {
  font-size: 1.25rem;
}

.story-section .content-flow p {
  font-size: 1rem;
}

.story-section .tick-list ul li {
  font-size: 0.95rem;
}

.story-section .facts-list .fact-copy h3 {
  font-size: 1.2rem;
}

.story-section .facts-list .fact-copy p {
  font-size: 0.9rem;
}

/* Адаптация изображения */
.story-section .media-card img {
  max-width: 100%; /* Изображение не выходит за контейнер */
  height: auto; /* Сохраняем пропорции */
}

/* Медиа-запрос для мобильных устройств (ширина до 768px) */
@media (max-width: 768px) {
  .story-section .container {
    padding-left: 12px; /* Уменьшенные боковые отступы */
    padding-right: 12px;
  }

  .story-section .row {
    flex-direction: column; /* Столбец вместо строки */
    text-align: center; /* Центрируем текст */
  }

  .story-section .col-lg-6 {
    width: 100%; /* Полная ширина для каждого блока */
    margin-bottom: 20px; /* Отступ между блоками */
  }

  .story-section .section-heading h2 {
    font-size: 1.75rem; /* Уменьшаем заголовок */
  }

  .story-section .section-heading h3 {
    font-size: 1.1rem;
  }

  .story-section .content-flow p {
    font-size: 0.95rem;
  }

  .story-section .tick-list .col-xl-6 {
    width: 100%; /* Списки на всю ширину */
  }

  .story-section .facts-list .col-9, 
  .story-section .facts-list .col-xl-6 {
    width: 100%; /* Блоки info-items на всю ширину */
    margin-bottom: 15px;
  }

  .story-section .media-card {
    max-width: 80%; /* Ограничиваем ширину изображения */
    margin: 0 auto; /* Центрируем изображение */
  }

  /* Отключаем эффект tilt на мобильных */
  .story-section .media-card[data-tilt] {
    transform: none !important;
  }
}

/* Для очень маленьких экранов (до 576px) */
@media (max-width: 576px) {
  .story-section .section-heading h2 {
    font-size: 1.5rem;
  }

  .story-section .section-heading h3 {
    font-size: 1rem;
  }

  .story-section .content-flow p {
    font-size: 0.9rem;
  }

  .story-section .tick-list ul li {
    font-size: 0.9rem;
  }

  .story-section .facts-list .fact-copy h3 {
    font-size: 1.1rem;
  }

  .story-section .facts-list .fact-copy p {
    font-size: 0.85rem;
  }

  .story-section .media-card {
    max-width: 100%; /* Изображение на всю ширину */
  }
}
/* Общие стили для секции whyus */
.promise-section {
  padding: 20px 0; /* Вертикальные отступы для секции */
}

.promise-section .container {
  padding-left: 16px;
  padding-right: 16px; /* Боковые отступы для контейнера */
}

.promise-section .section-heading {
  text-align: center; /* Центрируем заголовки */
}

.promise-section .section-heading h2 {
  font-size: 2rem;
  line-height: 1.2;
}

.promise-section .section-heading h3 {
  font-size: 1.25rem;
}

.promise-section .content-flow p {
  font-size: 1rem;
  text-align: center; /* Центрируем текст */
}

.promise-section .facts-list .fact-copy h3 {
  font-size: 1.2rem;
  text-align: center; /* Центрируем заголовки блоков */
}

.promise-section .facts-list .fact-copy p {
  font-size: 0.9rem;
  text-align: center; /* Центрируем текст блоков */
}

/* Адаптация изображения */
.promise-section .media-card {
  display: flex;
  justify-content: center; /* Центрируем изображение */
}

.promise-section .media-card img {
  max-width: 100%; /* Изображение не выходит за контейнер */
  height: auto; /* Сохраняем пропорции */
}

/* Медиа-запрос для мобильных устройств (ширина до 768px) */
@media (max-width: 768px) {
  .promise-section .container {
    padding-left: 12px; /* Уменьшенные боковые отступы */
    padding-right: 12px;
  }

  .promise-section .row {
    flex-direction: column; /* Столбец вместо строки */
    align-items: center; /* Центрируем элементы по горизонтали */
  }

  .promise-section .col-lg-6 {
    width: 100%; /* Полная ширина для каждого блока */
    margin-bottom: 20px; /* Отступ между блоками */
    display: flex;
    flex-direction: column;
    align-items: center; /* Центрируем содержимое внутри блока */
  }

  .promise-section .section-heading h2 {
    font-size: 1.75rem; /* Уменьшаем заголовок */
  }

  .promise-section .section-heading h3 {
    font-size: 1.1rem;
  }

  .promise-section .content-flow p {
    font-size: 0.95rem;
  }

  .promise-section .facts-list .col-9, 
  .promise-section .facts-list .col-xl-6 {
    width: 100%; /* Блоки info-items на всю ширину */
    margin-bottom: 15px;
    display: flex;
    justify-content: center; /* Центрируем блоки */
  }

  .promise-section .facts-list .fact-line {
    width: 100%;
    max-width: 350px; /* Ограничиваем ширину блоков для эстетики */
  }

  .promise-section .media-card {
    max-width: 80%; /* Ограничиваем ширину изображения */
  }

  /* Отключаем эффект tilt на мобильных */
  .promise-section .media-card[data-tilt] {
    transform: none !important;
  }
}

/* Для очень маленьких экранов (до 576px) */
@media (max-width: 576px) {
  .promise-section .section-heading h2 {
    font-size: 1.5rem;
  }

  .promise-section .section-heading h3 {
    font-size: 1rem;
  }

  .promise-section .content-flow p {
    font-size: 0.9rem;
  }

  .promise-section .facts-list .fact-copy h3 {
    font-size: 1.1rem;
  }

  .promise-section .facts-list .fact-copy p {
    font-size: 0.85rem;
  }

  .promise-section .media-card {
    max-width: 100%; /* Изображение на всю ширину */
  }
}
/* Общие стили для секции testimonial */
.guest-section {
  padding: 20px 0; /* Вертикальные отступы для секции */
}

.guest-section .container {
  padding-left: 16px;
  padding-right: 16px; /* Боковые отступы для контейнера */
}

.guest-section .section-heading {
  text-align: center;
}

.guest-section .section-heading h2 {
  font-size: 2rem;
  line-height: 1.2;
}

.guest-section .section-heading h3 {
  font-size: 1.25rem;
}

.guest-section .guest-note {
  padding: 20px;
  box-sizing: border-box; /* Учитываем padding в ширине */
}

.guest-section .note-content p {
  font-size: 1rem;
  text-align: center;
}

/* Стили для Owl Carousel */
.notes-carousel.owl-carousel {
  width: 100%;
  overflow: hidden; /* Предотвращаем горизонтальный скролл */
}

.notes-carousel .owl-item {
  display: flex;
  justify-content: center; /* Центрируем карточки */
}

.notes-carousel .guest-note {
  width: 100%;
  max-width: 500px; /* Ограничиваем ширину карточек */
  margin: 0 auto; /* Центрируем карточку */
}

/* Медиа-запрос для мобильных устройств (ширина до 768px) */
@media (max-width: 768px) {
  .guest-section .container {
    padding-left: 12px; /* Уменьшенные боковые отступы */
    padding-right: 12px;
  }

  .guest-section .section-heading h2 {
    font-size: 1.75rem; /* Уменьшаем заголовок */
  }

  .guest-section .section-heading h3 {
    font-size: 1.1rem;
  }

  .guest-section .note-content p {
    font-size: 0.95rem;
  }

  .notes-carousel .guest-note {
    max-width: 100%; /* Карточки на всю ширину */
    padding: 15px;
  }

  /* Убедимся, что карусель не выходит за границы */
  .notes-carousel.owl-carousel {
    padding: 0;
  }

  .notes-carousel .owl-stage-outer {
    overflow: hidden; /* Скрываем переполнение */
  }

  .notes-carousel .owl-item {
    padding: 0 10px; /* Небольшие отступы между карточками */
  }
}

/* Для очень маленьких экранов (до 576px) */
@media (max-width: 576px) {
  .guest-section .section-heading h2 {
    font-size: 1.5rem;
  }

  .guest-section .section-heading h3 {
    font-size: 1rem;
  }

  .guest-section .note-content p {
    font-size: 0.9rem;
  }

  .notes-carousel .guest-note {
    padding: 10px;
  }

  .notes-carousel .owl-item {
    padding: 0 5px; /* Минимальные отступы */
  }
}



/* Malaysia refresh extras */
body.light { background: radial-gradient(circle at 10% 10%, rgba(242,193,78,.12), transparent 28%), var(--bg-color); }
.discovery-hero .media-card img, .story-section .media-card img, .promise-section .media-card img, .answers-section .media-card img { border-radius: 24px; box-shadow: 0 24px 70px rgba(15, 80, 63, 0.18); }
.experience-tile, .plan-box, .guide-card, .planner-box, .guest-note, .answer-card { border-radius: 18px; box-shadow: 0 14px 40px rgba(15, 80, 63, 0.08); }
.place-tile .media-card img, .guide-card .media-card img, .planner-box .media-card img { object-fit: cover; }
.island-logo h3 { color: #0a5f49; line-height: 1.12; margin: 0; font-size: 24px; }
.path-button { border-radius: 999px; }
header.sticky { backdrop-filter: blur(14px); background-color: rgba(255,250,242,0.93); }
.footer-block a:hover, .route-anchor:hover { color: var(--main-color); }
.quality-note { padding: 18px 22px; border: 1px solid rgba(var(--main-color-rgb), .2); border-radius: 18px; background: rgba(var(--main-color-rgb), .07); }
.legal-page { padding-top: 150px; padding-bottom: 80px; }
.legal-page h1 { font-size: 46px; font-weight: 700; margin-bottom: 20px; }
.legal-page h2 { font-size: 24px; margin-top: 34px; font-weight: 700; }
.legal-page p, .legal-page li { color: rgba(var(--text-color-rgb), .76); line-height: 1.75; }
.legal-page ul { list-style: disc; padding-left: 24px; }
@media (max-width: 575px) { .island-logo h3 { font-size: 20px; } .discovery-hero h1 { font-size: 38px; } .legal-page h1 { font-size: 34px; } }
