/* =========================================================
   EXPLORE KALIMANTAN — Main Stylesheet
   Palette: Deep canopy green, leaf green, river amber accent
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&family=Nunito+Sans:wght@400;500;600;700&display=swap');

:root {
  /* --- Light theme (default) --- */
  --bg: #FAF9F4;
  --bg-alt: #F0F5EC;
  --surface: #FFFFFF;
  --text: #1B2A1F;
  --text-muted: #5B6B5E;
  --border: #DFE7DA;

  --canopy: #123524;
  /* deepest green */
  --forest: #1B4332;
  /* primary green */
  --leaf: #40916C;
  /* accent green */
  --leaf-light: #95D5B2;
  /* soft green */
  --sage: #D8F3DC;
  /* pale bg tint */
  --amber: #E3A857;
  /* river/wood accent, CTA highlight */
  --amber-dark: #C4863B;

  --shadow: 0 10px 30px -12px rgba(18, 53, 36, .25);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;

  --font-display: 'Poppins', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
}

[data-theme="dark"] {
  --bg: #0E1912;
  --bg-alt: #132218;
  --surface: #152A1C;
  --text: #EAF3EC;
  --text-muted: #9FB3A4;
  --border: #22392A;

  --canopy: #08150D;
  --forest: #1F5C40;
  --leaf: #52B788;
  --leaf-light: #2D6A4F;
  --sage: #16301F;
  --amber: #E3A857;
  --amber-dark: #F0BE7A;

  --shadow: 0 10px 30px -12px rgba(0, 0, 0, .5);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  transition: background .3s ease, color .3s ease;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--text);
  line-height: 1.2;
}

.section {
  padding: 88px 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--leaf);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
  margin-bottom: 12px;
}

.section-tag::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--amber);
  display: inline-block;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 14px;
}

.section-sub {
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: .95rem;
  border: 2px solid transparent;
  transition: .25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--leaf);
  color: #fff;
}

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

.btn-amber {
  background: var(--amber);
  color: var(--canopy);
}

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

.btn-outline {
  border-color: var(--surface);
  color: #fff;
}

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

.btn-ghost {
  border-color: var(--leaf);
  color: var(--leaf);
}

.btn-ghost:hover {
  background: var(--leaf);
  color: #fff;
}

.btn-sm {
  padding: 9px 18px;
  font-size: .82rem;
}

/* ================= TOP BAR ================= */
.topbar {
  background: var(--canopy);
  color: #cfe6d7;
  font-size: .82rem;
  padding: 8px 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar-left {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar-left a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #cfe6d7;
}

.topbar-left a:hover {
  color: var(--amber);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  color: #cfe6d7;
  font-size: .95rem;
}

.social-icons a:hover {
  color: var(--amber);
}

.topbar-search {
  position: relative;
}

.topbar-search input {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 100px;
  padding: 6px 14px 6px 32px;
  color: #fff;
  font-size: .8rem;
  width: 150px;
  transition: .25s;
}

.topbar-search input::placeholder {
  color: #9fc2ab;
}

.topbar-search input:focus {
  width: 200px;
  outline: none;
  border-color: var(--amber);
}

.topbar-search i {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  font-size: .78rem;
  color: #9fc2ab;
}

.lang-switch {
  display: flex;
  gap: 6px;
  align-items: center;
}

.lang-switch a {
  opacity: .55;
  font-weight: 700;
  font-size: .78rem;
}

.lang-switch a.active {
  opacity: 1;
  color: var(--amber);
}

.flag-icon {
  width: 16px;
  border-radius: 2px;
}

/* ================= NAVBAR ================= */
.navbar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
}

.brand-icon {
  width: 100%;
  height: 45px;
  flex-shrink: 0;

}

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

.nav-menu>li>a {
  font-weight: 600;
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-menu>li>a:hover {
  color: var(--leaf);
}

.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 130%;
  left: -16px;
  background: var(--surface);
  min-width: 200px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .2s ease;
  padding: 8px;
  z-index: 50;
}

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

.dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
}

.dropdown li a:hover {
  background: var(--sage);
  color: var(--forest);
}

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

.theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--leaf);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
}

.burger span {
  width: 26px;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
}

/* ================= HERO SLIDER ================= */
.hero {
  position: relative;
  height: 70vh;
  min-height: 560px;
  overflow: hidden;
  color: #fff;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.1s ease;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 21, 13, .82) 5%, rgba(8, 21, 13, .45) 55%, rgba(8, 21, 13, .2) 100%);
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 640px;
  padding: 0 24px 0 60px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(6px);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: #dcece1;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 1.05rem;
  color: #dcece1;
  margin-bottom: 30px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 60px;
  display: flex;
  gap: 10px;
  z-index: 6;
}

.hero-dots button {
  width: 34px;
  height: 4px;
  border-radius: 4px;
  border: none;
  background: rgba(255, 255, 255, .35);
}

.hero-dots button.active {
  background: var(--amber);
}

.hero-arrows {
  position: absolute;
  right: 40px;
  bottom: 28px;
  display: flex;
  gap: 10px;
  z-index: 6;
}

.hero-arrows button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 1rem;
}

.hero-arrows button:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--canopy);
}

/* ================= FLOATING BUTTONS ================= */
.floating-btns {
  position: fixed;
  right: 22px;
  bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 300;
}

.fab {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: var(--shadow);
  border: none;
  position: relative;
}

.fab-whatsapp {
  background: #25D366;
}

.fab-chat {
  background: var(--forest);
}

.fab-whatsapp::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: .6;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(.9);
    opacity: .7;
  }

  70% {
    transform: scale(1.35);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.chatbot-box {
  position: fixed;
  right: 22px;
  bottom: 100px;
  width: 320px;
  max-height: 420px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 299;
  transform: translateY(20px) scale(.95);
  opacity: 0;
  pointer-events: none;
  transition: .25s ease;
}

.chatbot-box.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}

.chatbot-head {
  background: var(--forest);
  color: #fff;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-body {
  padding: 16px;
  overflow-y: auto;
  flex: 1;
  font-size: .88rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-bubble {
  background: var(--sage);
  color: var(--canopy);
  padding: 10px 14px;
  border-radius: 14px 14px 14px 2px;
  max-width: 85%;
}

.chat-bubble.user {
  background: var(--leaf);
  color: #fff;
  align-self: flex-end;
  border-radius: 14px 14px 2px 14px;
}

.chatbot-foot {
  display: flex;
  border-top: 1px solid var(--border);
}

.chatbot-foot input {
  flex: 1;
  border: none;
  padding: 12px 14px;
  background: transparent;
  color: var(--text);
  font-size: .85rem;
}

.chatbot-foot input:focus {
  outline: none;
}

.chatbot-foot button {
  background: var(--leaf);
  color: #fff;
  border: none;
  padding: 0 18px;
}

/* ================= GENERAL INFO ================= */
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  transition: .25s;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--leaf);
}

.info-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
}

.info-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.info-card p {
  color: var(--text-muted);
  font-size: .9rem;
}

/* ================= TOUR CARDS ================= */
.bg-alt {
  background: var(--bg-alt);
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tour-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: .3s;
  display: flex;
  flex-direction: column;
}

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

.tour-thumb {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.tour-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s;
}

.tour-card:hover .tour-thumb img {
  transform: scale(1.08);
}

.tour-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--amber);
  color: var(--canopy);
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
}

.tour-fav {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, .85);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e0554f;
}

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

.tour-meta {
  display: flex;
  gap: 14px;
  font-size: .8rem;
  color: var(--text-muted);
}

.tour-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.tour-body h4 {
  font-size: 1.1rem;
}

.tour-body p {
  color: var(--text-muted);
  font-size: .88rem;
  flex: 1;
}

.tour-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.tour-price {
  font-weight: 700;
  color: var(--forest);
  font-size: .85rem;
}

[data-theme="dark"] .tour-price {
  color: var(--leaf-light);
}

/* ================= PARALLAX CTA ================= */
.parallax-cta {
  /* background: linear-gradient(rgba(9, 26, 16, .82), rgba(9, 26, 16, .88)), url('/assets/images/green-snack.webp') fixed center/cover;*/

  background: linear-gradient(rgba(9, 26, 16, .100), rgba(9, 26, 16, .75)), url('../images/sun-rise-on-the-river.webp') fixed center/cover;
  color: #fff;
  text-align: center;
  padding: 100px 24px;
}

.parallax-cta h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  margin-bottom: 16px;
  color: #d9e8de;
}

.parallax-cta p {
  color: #d9e8de;
  max-width: 560px;
  margin: 0 auto 30px;
}

.parallax-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================= HOTELS ================= */
.hotel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.hotel-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hotel-card img {
  height: 180px;
  object-fit: cover;
}

.hotel-card-body {
  padding: 20px;
}

.hotel-stars {
  color: var(--amber);
  font-size: .8rem;
  margin-bottom: 6px;
}

.hotel-card-body h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.hotel-card-body p {
  font-size: .85rem;
  color: var(--text-muted);
}

/* ================= TESTIMONIALS ================= */
.testi-wrap {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.testi-slide {
  display: none;
  text-align: center;
  padding: 10px 30px;
}

.testi-slide.active {
  display: block;
}

.testi-avatar {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 18px;
  border: 3px solid var(--leaf-light);
}

.testi-msg {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 18px;
}

.testi-name {
  font-weight: 700;
}

.testi-country {
  color: var(--text-muted);
  font-size: .85rem;
}

.testi-stars {
  color: var(--amber);
  margin-bottom: 10px;
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.testi-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border);
}

.testi-dots button.active {
  background: var(--leaf);
}

/* ================= PAGE LAYOUT: content + sidebar ================= */
.page-layout {
  display: grid;
  grid-template-columns: 2.3fr 1fr;
  gap: 40px;
  align-items: start;
}

.sidebar-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}

.sidebar-widget h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--sage);
  color: var(--forest);
}

[data-theme="dark"] .sidebar-widget h4 {
  color: var(--leaf-light);
}

.fav-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: center;
}

.fav-item img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.fav-item h5 {
  font-size: .87rem;
  margin-bottom: 3px;
}

.fav-item span {
  font-size: .78rem;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-muted);
}

.form-control {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-alt);
  color: var(--text);
  font-family: inherit;
  font-size: .9rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--leaf);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.contact-line {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: .88rem;
}

.contact-line i {
  color: var(--leaf);
  margin-top: 3px;
}

/* ================= TOUR DETAIL ================= */
.tour-detail-cover {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 26px;
  max-height: 420px;
}

.tour-detail-cover img {
  width: 100%;
  object-fit: cover;
}

.tour-tabs {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.tour-tabs button {
  background: none;
  border: none;
  padding: 12px 6px;
  font-weight: 700;
  color: var(--text-muted);
  border-bottom: 3px solid transparent;
}

.tour-tabs button.active {
  color: var(--forest);
  border-color: var(--leaf);
}

[data-theme="dark"] .tour-tabs button.active {
  color: var(--leaf-light);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.itinerary-day {
  padding: 14px 0;
  border-bottom: 1px dashed var(--border);
  white-space: pre-line;
}

/* ================= FOOTER ================= */
.site-footer {
  background: var(--canopy);
  color: #cfe0d3;
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 50px;
}

.footer-grid h5 {
  color: #fff;
  font-family: var(--font-display);
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.footer-grid p,
.footer-grid li,
.footer-grid a {
  color: #a9c4b1;
  font-size: .9rem;
}

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

.footer-grid a:hover {
  color: var(--amber);
}

.footer-map iframe {
  width: 100%;
  border-radius: var(--radius-md);
  border: 0;
  height: 150px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  text-align: center;
  padding: 20px 0;
  font-size: .82rem;
  color: #87a290;
}

/* ================= AUTH MODALS / PAGES ================= */
.auth-wrap {
  max-width: 440px;
  margin: 70px auto;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.auth-wrap h2 {
  margin-bottom: 6px;
}

.auth-wrap p.sub {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: .9rem;
}

.auth-switch {
  text-align: center;
  margin-top: 18px;
  font-size: .88rem;
  color: var(--text-muted);
}

.auth-switch a {
  color: var(--leaf);
  font-weight: 700;
}

/* ================= RESPONSIVE ================= */
@media (max-width:1024px) {

  .info-grid,
  .tour-grid,
  .hotel-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .page-layout {
    grid-template-columns: 1fr;
  }
}

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

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 78%;
    max-width: 320px;
    height: 100vh;
    background: var(--surface);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 26px;
    gap: 22px;
    transition: .3s ease;
    box-shadow: var(--shadow);
  }

  .nav-menu.open {
    right: 0;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
    border: none;
    padding-left: 10px;
  }

  .has-dropdown.open .dropdown {
    display: block;
  }

  .burger {
    display: flex;
  }

  .hero-content {
    padding-left: 24px;
  }

  .hero-dots,
  .hero-arrows {
    left: 24px;
    right: 24px;
    justify-content: center;
  }
}

@media (max-width:640px) {

  .info-grid,
  .tour-grid,
  .hotel-grid {
    grid-template-columns: 1fr;
  }

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

  .section {
    padding: 60px 0;
  }

  .chatbot-box {
    width: 88vw;
    right: 6vw;
  }
}