/* Typography changed for the Malaysia tourism version */
@import url("https://fonts.googleapis.com/css2?family=Fraunces:wght@600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap");
/* ----------------------------------------
01. Basic Styles
---------------------------------------- */


:root {
  --main-color: #0f8b75;
  --main-color-rgb: 15, 139, 117;
  --bg-color: #fffaf0;
  --card-bg-color: #ffffff;
  --border-color: rgba(var(--main-color-rgb), 0.22);
  --text-color-rgb: 22, 43, 39;
  --main-font: "Plus Jakarta Sans", sans-serif;
  --secondary-font: "Fraunces", 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);
}

.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;
}
.button::before,
.button::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  background-color: var(--main-color);
  transition: width 0.3s ease-in-out;
  z-index: -1;
}
.button::before {
  top: 0;
  left: 0;
}
.button::after {
  bottom: 0;
  right: 0;
}
a.button {
  width: fit-content;
}
.button i {
  transition: transform 0.3s ease-in-out;
}
.button:hover {
  color: var(--main-color);
}
.button:hover::before,
.button:hover::after {
  width: 0;
}
.button:hover i {
  transform: translateX(5px);
}

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

.isle-logo {
  width: 140px;
  display: flex;
  user-select: none;
}
.isle-logo img {
  width: 100%;
}
.logo-white {
  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-ring {
  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-ring 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-ring.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.return-ring svg path {
  fill: none;
  stroke: var(--main-color);
  stroke-width: 4;
  box-sizing: border-box;
  transition: stroke 0.3s ease-in-out;
}
.return-ring:hover {
  background-color: var(--main-color);
}
.return-ring:hover i {
  color: #fff;
}
.return-ring:hover svg path {
  stroke: #fff;
}

.scene-frame {
  user-select: none;
}

.bg-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-popup {
  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-popup.active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition: transform 400ms ease 0ms, visibility 400ms ease 0ms;
}
.search-popup .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--main-color);
  opacity: 0.9;
  cursor: pointer;
}
.search-popup .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-popup.active .content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 400ms ease 400ms, visibility 400ms ease 400ms, transform 400ms ease 400ms;
}
.search-popup .content form {
  display: flex;
}
.search-popup .content form input {
  color: inherit;
  padding: 14px 16px;
  border: 0;
  border-radius: 5px 0 0 5px;
}
.search-popup .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-popup .content button i {
  font-size: 20px;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.search-popup .content button:hover {
  background-color: var(--card-bg-color);
}
body.light .search-popup .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;
}

.trail-orb {
  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
---------------------------------------- */

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #090931;
  z-index: 1000;
}
.loader {
  font-size: 96px;
  font-weight: 700;
  text-align: center;
}
.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 .mast-brand {
  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-entry {
  margin: 0 14px;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
}
header .route-menu > .route-entry > a:hover {
  color: var(--main-color);
}
header .route-menu > .route-entry:hover .sub-menu {
  transform: scaleY(1);
}
header .route-entry.has-sub-menu > a::after {
  content: "+";
  position: absolute;
  left: calc(100% + 2px);
}

header .sub-menu {
  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 .sub-menu .route-entry {
  padding: 8px 16px;
  background-color: var(--bg-color);
  transition: padding 0.3s ease-in-out;
}
header .sub-menu .route-entry:hover {
  background-color: var(--main-color);
  color: #fff;
}

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

header .theme-switcher {
  width: 40px;
  height: 40px;
  outline: none;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
header .theme-switcher 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 .theme-switcher:hover i {
  color: var(--main-color);
  background-color: #fff;
}

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

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

.play-btn {
  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-btn::before,
.play-btn::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-btn::after {
  background: rgba(var(--main-color-rgb), 0.4);
}
.play-btn::before {
  background: rgba(var(--main-color-rgb), 0.6);
  animation-delay: -0.5s;
}
.play-btn: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 */
.particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

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

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

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

.hero.home-2 {
  background-color: #000;
}
.hero.home-2 .slide {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.hero.home-2 .slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, #0a0a3200 0%, #141432cc 70%);
  z-index: 2;
}
.hero.home-2 .shape1 {
  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);
  }
}
.hero.home-2 .container {
  position: relative;
  z-index: 10;
}

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

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

.services .section-copy {
  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-block .list-items {
  margin: 20px 0;
}
.story-block ul li {
  margin-bottom: 10px;
}
.story-block 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-block .contact-lines .item {
  display: flex;
  gap: 20px;
}
.story-block .contact-lines .item .flaticon {
  font-size: 40px;
}
.story-block .contact-lines .item h3 {
  font-size: 22px;
  font-weight: 600;
}
.story-block .cta {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 80px;
}
.story-block .cta .signature img {
  user-select: none;
}

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

.reason-block .contact-lines {
  margin: 20px 0;
}
.reason-block .contact-lines .item {
  display: flex;
  gap: 20px;
}
.reason-block .contact-lines .item .flaticon {
  font-size: 40px;
}
.reason-block .contact-lines .item h3 {
  font-size: 22px;
  font-weight: 600;
}

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

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

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

.destination-block .section-copy {
  margin-top: 60px;
}
.destination-card {
  position: relative;
  cursor: default;
}
.destination-card .scene-frame {
  overflow: hidden;
}
.destination-card .scene-frame img {
  width: 100%;
  transition: transform 0.3s ease-in-out;
}
.destination-card .overlay {
  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;
}
.destination-card .text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  color: #fff;
}
.destination-card .text h5 {
  font-size: 14px;
}
.destination-card .text h3 {
  font-size: 22px;
  font-weight: 600;
}
.destination-card .text i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 50%;
}

.destination-card .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;
}
.destination-card .detail * {
  transition: all 0.3s ease-in-out;
}

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

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

.counters .item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.counters .item .flaticon {
  font-size: 60px;
}
.counters .item .text h2 {
  font-size: 32px;
  font-weight: 700;
}
.counters .item .text h4 {
  font-size: 20px;
}

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

.plans-block .section-copy {
  margin-top: 40px;
}
.journey-plan {
  padding: 30px;
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 5px;
}
.journey-plan.featured {
  color: #fff;
  background-color: var(--main-color);
}
.journey-plan.featured p {
  color: inherit;
}
.journey-plan h4 {
  font-size: 22px;
  font-weight: 500;
}
.journey-plan h2 {
  display: flex;
  align-items: center;
  font-size: 40px;
  font-weight: 600;
}
.journey-plan h2 span {
  font-size: 20px;
  font-weight: 500;
}
.journey-plan ul li {
  margin-bottom: 10px;
}
.journey-plan 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);
}
.journey-plan ul li.tick::before {
  content: "\f058";
  content: "\f00c";
}
.journey-plan ul li.cross::before {
  content: "\f057";
  content: "\f00d";
}
.journey-plan.featured ul li::before {
  color: #fff;
}
.journey-plan .button {
  margin-top: 30px;
}
.journey-plan.featured .button {
  color: var(--main-color);
  border-color: #fff;
}
.journey-plan.featured .button::before,
.journey-plan.featured .button::after {
  background-color: #fff;
}
.journey-plan.featured .button:hover {
  color: #fff;
}

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

.hosts-block .section-copy {
  margin-top: 40px;
}
.host-card {
  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;
}
.host-card::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;
}
.host-card:hover::before {
  transform: scale(3);
}
.host-card .scene-frame {
  margin: auto;
  margin-bottom: 20px;
  overflow: hidden;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  user-select: none;
}
.host-card .scene-frame img {
  width: 100%;
}
.host-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 0;
}
.host-card h6 {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--text-color-rgb), 0.7);
}
.host-card .social-links {
  border-top: 1px solid var(--border-color);
  margin-top: 20px;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.host-card .social-links 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);
}
.host-card * {
  transition: all 0.3s ease-in-out;
}
.host-card:hover h3,
.host-card:hover h6 {
  color: #fff;
}
.host-card:hover .social-links {
  border-color: #fff2;
}
.host-card:hover i {
  color: var(--main-color);
  background-color: #fff;
}

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

.guest-voices .section-copy {
  margin-top: 40px;
}
.voice-card {
  border: 1px solid var(--border-color);
  background-color: var(--card-bg-color);
  padding: 20px;
  border-radius: 5px;
  position: relative;
  margin-top: 50px;
}
.voice-card .scene-frame {
  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%);
}
.voice-card .scene-frame img {
  width: 100%;
  border-radius: 50%;
}
.voice-card .content {
  text-align: center;
  margin-top: 50px;
}
.voice-card h3 {
  font-size: 22px;
  font-weight: 600;
}
.voice-card h6 {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--text-color-rgb), 0.7);
}
.voice-card i {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(-100%, -50%);
  font-size: 44px;
  color: var(--main-color);
}

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

.questions-block .section-copy {
  margin-top: 40px;
}
.questions-accordion .question-card {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  margin-bottom: 10px;
}
.questions-accordion .card-header {
  position: relative;
  background-color: transparent;
  border: none;
  padding: 0;
}
.questions-accordion .card-header .question-trigger {
  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;
}
.questions-accordion .card-header .question-trigger::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;
}
.questions-accordion .card-header .question-trigger.collapsed::before {
  content: "\f067";
}
.questions-accordion .card-header .question-trigger:not(.collapsed) {
  color: #fff;
  background-color: var(--main-color);
}
.questions-accordion .card-body {
  padding: 10px 20px;
}

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

.journal-block .section-copy {
  margin-top: 40px;
}
.journal-card {
  border-radius: 5px;
  overflow: hidden;
  background-color: var(--card-bg-color);
}
.journal-card .text {
  padding: 30px;
}
.journal-card .text h6 {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(var(--text-color-rgb), 0.7);
  user-select: none;
}
.journal-card .text h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  margin: 10px 0;
}
.journal-card .text 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;
}
.journal-card .text a:hover {
  gap: 20px;
}

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

.reach-block .section-copy {
  margin-top: 40px;
}
.reach-block .contact-lines li {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.reach-block .contact-lines li .flaticon {
  font-size: 44px;
}
.reach-block .contact-lines li h4 {
  font-size: 20px;
  font-weight: 600;
}
.reach-block .contact-lines li h5 {
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--text-color-rgb), 0.7);
}

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

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

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

footer {
  color: #fff;
  background-color: #090931;
}
footer p {
  color: rgb(255, 255, 255);
}
footer .footer-panels {
  padding: 40px 0;
}
footer .footer-panel h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}
footer .isle-logo {
  margin-bottom: 20px;
}
footer .social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
footer .social-links 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-links i:hover {
  color: var(--main-color);
  background-color: #fff;
}

footer .links li {
  margin-bottom: 10px;
}
footer .links li a {
  transition: color 0.3s ease-in-out;
}
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 .links li a:hover {
  color: var(--main-color);
}
footer .links li a:hover::before {
  margin-right: 10px;
}

footer .info li {
  margin-bottom: 10px;
  cursor: pointer;
}
footer .info li a {
  transition: color 0.3s ease-in-out;
}
footer .info li a:hover {
  color: var(--main-color);
}
footer .info li i {
  margin-right: 6px;
}
footer .form-control {
  padding: 6px 10px;
  font-size: 14px;
}
footer .button {
  margin-top: 10px;
  padding: 6px 10px;
  font-size: 14px;
}
footer .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-entry {
    width: 200px;
    height: unset;
    padding: 10px 0;
    flex-direction: column;
    align-items: unset;
  }
  header .route-entry.has-sub-menu > a::after {
    left: 100%;
  }
  header .sub-menu {
    margin-top: 10px;
    position: static;
    display: none;
    visibility: visible;
    opacity: 1;
    border: none;
    box-shadow: none;
    padding: 0;
    transform: translateY(0);
  }
  header .sub-menu .route-entry {
    padding: 6px 0;
    padding-left: 10px;
  }
  header .sub-menu .route-entry: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-entry > a {
    color: #000;
  }

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

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

body.dark {
  color: #fff;
  --bg-color: #090931;
  --card-bg-color: #151540;
  --border-color: #0000;
  --text-color-rgb: 255, 255, 255;
}
body.dark .story-block .signature img {
  filter: invert(1);
}
body.dark .logo-black {
  display: none;
}
body.dark .logo-white {
  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 {
  padding: 20px 0; 
}

.hero .container {
  padding-left: 16px;
  padding-right: 16px; 
}

.hero .section-copy h1 {
  font-size: 2rem; 
  line-height: 1.2;
}

.hero .section-copy h3 {
  font-size: 1.25rem;
}

.hero .section-copy p {
  font-size: 1rem;
}


.hero .scene-frame img {
  max-width: 100%; 
  height: auto; 
}


@media (max-width: 768px) {
  .hero .container {
    padding-left: 12px; 
    padding-right: 12px;
  }

  .hero .row {
    flex-direction: column; 
    text-align: center; 
  }

  .hero .col-lg-6 {
    width: 100%; 
    margin-bottom: 20px; 
  }

  .hero .section-copy h1 {
    font-size: 1.75rem; 
  }

  .hero .section-copy h3 {
    font-size: 1.1rem;
  }

  .hero .scene-frame {
    max-width: 80%; 
    margin: 0 auto; 
  }
}


@media (max-width: 576px) {
  .hero .section-copy h1 {
    font-size: 1.5rem;
  }

  .hero .section-copy p {
    font-size: 0.9rem;
  }

  .hero .scene-frame {
    max-width: 100%; 
  }
}

.story-block {
  padding: 20px 0; 
}

.story-block .container {
  padding-left: 16px;
  padding-right: 16px; 
}

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

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

.story-block .section-copy p {
  font-size: 1rem;
}

.story-block .list-items ul li {
  font-size: 0.95rem;
}

.story-block .contact-lines .item-content h3 {
  font-size: 1.2rem;
}

.story-block .contact-lines .item-content p {
  font-size: 0.9rem;
}


.story-block .scene-frame img {
  max-width: 100%; 
  height: auto; 
}


@media (max-width: 768px) {
  .story-block .container {
    padding-left: 12px; 
    padding-right: 12px;
  }

  .story-block .row {
    flex-direction: column; 
    text-align: center; 
  }

  .story-block .col-lg-6 {
    width: 100%; 
    margin-bottom: 20px; 
  }

  .story-block .section-heading h2 {
    font-size: 1.75rem; 
  }

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

  .story-block .section-copy p {
    font-size: 0.95rem;
  }

  .story-block .list-items .col-xl-6 {
    width: 100%; 
  }

  .story-block .contact-lines .col-9, 
  .story-block .contact-lines .col-xl-6 {
    width: 100%; 
    margin-bottom: 15px;
  }

  .story-block .scene-frame {
    max-width: 80%; 
    margin: 0 auto; 
  }

  
  .story-block .scene-frame[data-tilt] {
    transform: none !important;
  }
}


@media (max-width: 576px) {
  .story-block .section-heading h2 {
    font-size: 1.5rem;
  }

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

  .story-block .section-copy p {
    font-size: 0.9rem;
  }

  .story-block .list-items ul li {
    font-size: 0.9rem;
  }

  .story-block .contact-lines .item-content h3 {
    font-size: 1.1rem;
  }

  .story-block .contact-lines .item-content p {
    font-size: 0.85rem;
  }

  .story-block .scene-frame {
    max-width: 100%; 
  }
}

.reason-block {
  padding: 20px 0; 
}

.reason-block .container {
  padding-left: 16px;
  padding-right: 16px; 
}

.reason-block .section-heading {
  text-align: center; 
}

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

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

.reason-block .section-copy p {
  font-size: 1rem;
  text-align: center; 
}

.reason-block .contact-lines .item-content h3 {
  font-size: 1.2rem;
  text-align: center; 
}

.reason-block .contact-lines .item-content p {
  font-size: 0.9rem;
  text-align: center; 
}


.reason-block .scene-frame {
  display: flex;
  justify-content: center; 
}

.reason-block .scene-frame img {
  max-width: 100%; 
  height: auto; 
}


@media (max-width: 768px) {
  .reason-block .container {
    padding-left: 12px; 
    padding-right: 12px;
  }

  .reason-block .row {
    flex-direction: column; 
    align-items: center; 
  }

  .reason-block .col-lg-6 {
    width: 100%; 
    margin-bottom: 20px; 
    display: flex;
    flex-direction: column;
    align-items: center; 
  }

  .reason-block .section-heading h2 {
    font-size: 1.75rem; 
  }

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

  .reason-block .section-copy p {
    font-size: 0.95rem;
  }

  .reason-block .contact-lines .col-9, 
  .reason-block .contact-lines .col-xl-6 {
    width: 100%; 
    margin-bottom: 15px;
    display: flex;
    justify-content: center; 
  }

  .reason-block .contact-lines .item {
    width: 100%;
    max-width: 350px; 
  }

  .reason-block .scene-frame {
    max-width: 80%; 
  }

  
  .reason-block .scene-frame[data-tilt] {
    transform: none !important;
  }
}


@media (max-width: 576px) {
  .reason-block .section-heading h2 {
    font-size: 1.5rem;
  }

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

  .reason-block .section-copy p {
    font-size: 0.9rem;
  }

  .reason-block .contact-lines .item-content h3 {
    font-size: 1.1rem;
  }

  .reason-block .contact-lines .item-content p {
    font-size: 0.85rem;
  }

  .reason-block .scene-frame {
    max-width: 100%; 
  }
}

.guest-voices {
  padding: 20px 0; 
}

.guest-voices .container {
  padding-left: 16px;
  padding-right: 16px; 
}

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

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

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

.guest-voices .voice-card {
  padding: 20px;
  box-sizing: border-box; 
}

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


.voice-carousel.owl-carousel {
  width: 100%;
  overflow: hidden; 
}

.voice-carousel .owl-item {
  display: flex;
  justify-content: center; 
}

.voice-carousel .voice-card {
  width: 100%;
  max-width: 500px; 
  margin: 0 auto; 
}


@media (max-width: 768px) {
  .guest-voices .container {
    padding-left: 12px; 
    padding-right: 12px;
  }

  .guest-voices .section-heading h2 {
    font-size: 1.75rem; 
  }

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

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

  .voice-carousel .voice-card {
    max-width: 100%; 
    padding: 15px;
  }

  
  .voice-carousel.owl-carousel {
    padding: 0;
  }

  .voice-carousel .owl-stage-outer {
    overflow: hidden; 
  }

  .voice-carousel .owl-item {
    padding: 0 10px; 
  }
}


@media (max-width: 576px) {
  .guest-voices .section-heading h2 {
    font-size: 1.5rem;
  }

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

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

  .voice-carousel .voice-card {
    padding: 10px;
  }

  .voice-carousel .owl-item {
    padding: 0 5px; 
  }
}



/* Malaysia edition overrides: warmer palette, editorial font pairing, same layout rhythm */
body {
  color: rgb(var(--text-color-rgb));
  background:
    radial-gradient(circle at 8% 12%, rgba(242, 153, 74, 0.14), transparent 32%),
    radial-gradient(circle at 92% 8%, rgba(15, 139, 117, 0.12), transparent 30%),
    var(--bg-color);
}
h1, h2, .hero h1, section .section-heading h2 {
  font-family: var(--secondary-font);
  letter-spacing: -0.03em;
}
header.sticky {
  box-shadow: 0 12px 36px rgba(15, 72, 64, 0.12);
  backdrop-filter: blur(10px);
}
.isle-logo h3 {
  font-family: var(--secondary-font);
  font-size: 27px;
  line-height: 1;
  color: #0b5f52;
}
.route-menu > .route-entry > a {
  letter-spacing: 0.01em;
}
.hero.home-malaysia::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,139,117,0.08), rgba(242,153,74,0.08));
  z-index: -2;
}
.hero .scene-frame img,
.story-block .scene-frame img,
.reason-block .scene-frame img,
.questions-block .scene-frame img {
  border-radius: 32px;
  box-shadow: 0 28px 80px rgba(15, 72, 64, 0.18);
}
.experience-tile,
.journey-plan,
.voice-card,
.question-card,
.journal-card,
.host-card {
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(22, 43, 39, 0.08);
}
.experience-tile:hover,
.journey-plan:hover,
.journal-card:hover {
  transform: translateY(-4px);
}
.destination-card img,
.journal-card img,
.host-card img {
  filter: saturate(1.04) contrast(1.02);
}
.destination-card .overlay,
.destination-card .content {
  background-image: linear-gradient(0deg, rgba(15, 139, 117, 0.88), rgba(15, 139, 117, 0.08));
}
.button::before,
.button::after,
.owl-nav button,
.play-btn,
.search-popup .overlay {
  background-color: #0f8b75;
}
.button:hover,
.button.secondary,
.owl-nav button:hover i {
  color: #0f8b75;
}
.form-control {
  border-radius: 14px;
}
.reach-form form input[name="website"] {
  pointer-events: none;
}
footer {
  background: #073d35;
}
footer p, footer a, footer li {
  color: rgba(255,255,255,0.78);
}
footer h3, footer .isle-logo h3 {
  color: #fff;
}

.isle-logo { width: auto; min-width: 220px; }
@media (max-width: 576px) { .isle-logo { min-width: 170px; } .isle-logo h3 { font-size: 22px; } }
