:root {
  --color-bg: #060606;
  --color-bg-alt: #0d0d0d;
  --color-bg-light: #f7f7f7;
  --color-bg-lighter: #ffffff;

  --color-primary: #ffffff;
  --color-text: #f5f5f5;
  --color-text-muted: #a5a5a5;
  --color-text-dark: #111111;

  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.4);

  --container-width: min(1160px, 100% - 4rem);
}

/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: var(--container-width);
  margin: 0 auto;
}

/* REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(6, 6, 6, 0.96);
}

/* Top bar */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.8);
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.top-link {
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 0;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.top-link:hover {
  opacity: 1;
}
.divider {
  opacity: 0.4;
}

/* Main nav */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 2rem 0.9rem;
  gap: 1.5rem;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

/* simple logo */
.brand-mark-simple {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-mark-letter {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
}
.brand-text {
  display: flex;
  flex-direction: column;
}
.brand-name {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.brand-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* Right nav */
.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 1.4rem;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav-links a {
  position: relative;
  padding-bottom: 0.15rem;
  opacity: 0.78;
  transition: opacity 0.2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #ffffff;
  transition: width 0.18s ease;
}
.nav-links a:hover {
  opacity: 1;
}
.nav-links a:hover::after {
  width: 100%;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  width: 32px;
  height: 28px;
  position: relative;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  transform-origin: center;
  transition: transform 0.18s ease, opacity 0.18s ease, top 0.18s ease,
    bottom 0.18s ease;
}
.nav-toggle span:nth-child(1) {
  top: 4px;
}
.nav-toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.nav-toggle span:nth-child(3) {
  bottom: 4px;
}
.nav-toggle--open span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.nav-toggle--open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle--open span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.1s ease;
}
.btn-primary {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  box-shadow: none; /* simple, no shadow */
}
.btn-primary:hover {
  background: #e9e9e9;
  border-color: #e9e9e9;
  transform: translateY(-1px);
}
.btn-outline {
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff;
  background: transparent;
}
.btn-outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}
.btn-ghost {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(6, 6, 6, 0.8);
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(6, 6, 6, 0.95);
}
.btn-block {
  width: 100%;
}

/* HERO */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: stretch;
  justify-content: center;
  color: #fdfdfd;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.pexels.com/photos/258154/pexels-photo-258154.jpeg?auto=compress&cs=tinysrgb&w=1800");
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.05);
  transform: scale(1.03);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 1));
}

/* Hero content – 1 kolom: text di atas, card di bawah */
.hero-inner {
  position: relative;
  width: var(--container-width);
  margin: 0 auto;
  padding: 4.4rem 0 3.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: 2.2rem;
}

/* Hero text */
.hero-text {
  max-width: 640px;
}
.hero-kicker {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  margin-bottom: 1rem;
  opacity: 0.9;
}
.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.3rem, 3vw + 1.2rem, 3.3rem);
  line-height: 1.06;
  margin-bottom: 0.9rem;
}
.hero-subtitle {
  font-size: 0.92rem;
  color: rgba(245, 245, 245, 0.86);
  max-width: 420px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

/* Booking card – STAY WITH ANGKASA (PUTIH) */
.booking-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 1.7rem 1.8rem 1.6rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.06);
  max-width: 960px;
  width: 100%;
  color: #111111;
}
.booking-title {
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

/* Booking form layout */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.booking-row {
  display: grid;
  gap: 0.9rem;
}
.booking-row--top {
  grid-template-columns: 1.7fr 1fr 1fr; /* Destination lebih panjang, lalu check-in, check-out */
}
.booking-row--bottom {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr) minmax(0, 1.1fr); /* Guests, Code, Button */
  align-items: flex-end;
}
.booking-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}
.booking-action {
  display: flex;
  align-items: flex-end;
}

/* Label & inputs di kartu putih */
.booking-form label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(0, 0, 0, 0.75);
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
}
.booking-form input,
.booking-form select {
  background: #f3f3f3;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  padding: 0.55rem 0.85rem;
  font-size: 0.8rem;
  color: #111111;
  outline: none;
  transition:
    border-color 0.18s ease,
    background-color 0.18s ease,
    transform 0.1s ease,
    box-shadow 0.1s ease;
}
.booking-form input::placeholder {
  color: rgba(0, 0, 0, 0.45);
}
.booking-form select option {
  color: #111111;
}
.booking-form input:focus,
.booking-form select:focus {
  border-color: #111111;
  background-color: #ffffff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

/* Icon kecil di destination */
.booking-form select[name="destination_hero"] {
  padding-left: 2.4rem;
  background-image: radial-gradient(circle at 7px 50%, #111 0, #111 2px, transparent 2px);
  background-repeat: no-repeat;
  background-position: 10px center;
}

/* Tombol CHECK AVAILABILITY – simple, no shadow */
.booking-submit {
  box-shadow: none;
}
.booking-submit:hover {
  box-shadow: none;
}

/* Note */
.booking-note {
  font-size: 0.7rem;
  color: rgba(0, 0, 0, 0.6);
  margin-top: 0.6rem;
}

/* GENERIC SECTIONS */
.section {
  padding: 4.2rem 0;
}
.section--light {
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
}
.section--dark {
  background-color: var(--color-bg-alt);
}
.section-header {
  margin-bottom: 2.3rem;
}
.section-header--center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.4rem;
}
.section-kicker {
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.72;
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 0.7rem;
}
.section-subtitle {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.64);
}
.section--dark .section-subtitle {
  color: var(--color-text-muted);
}

/* Card grid */
.card-grid {
  display: grid;
  gap: 1.7rem;
}
@media (min-width: 800px) {
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Destination cards */
.destination-card {
  background: var(--color-bg-lighter);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #e3e3e3;
  display: flex;
  flex-direction: column;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.destination-card:hover {
  border-color: #111111;
  transform: translateY(-2px);
}
.card-image {
  height: 210px;
  background-size: cover;
  background-position: center;
  filter: grayscale(1);
}
.card-body {
  padding: 1.3rem 1.3rem 1.2rem;
}
.card-title {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}
.card-location {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 0.8rem;
}
.card-text {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.75);
  margin-bottom: 0.9rem;
}
.card-link {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #000000;
}

/* Experiences */
.experience-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 800px) {
  .experience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.experience-card {
  background: #111111;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.experience-title {
  font-family: "Playfair Display", serif;
  font-size: 1.04rem;
  margin-bottom: 0.5rem;
}
.experience-text {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

/* Offers */
.card-grid--offers {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.offer-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem 1.3rem;
  border: 1px solid #e1e1e1;
}
.offer-title {
  font-family: "Playfair Display", serif;
  font-size: 1.08rem;
  margin-bottom: 0.4rem;
}
.offer-tag {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 0.7rem;
}
.offer-text {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 0.9rem;
}

/* Split sections */
.section--split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  min-height: 340px;
}
.section--split-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
}
.split-image {
  background-size: cover;
  background-position: center;
  filter: grayscale(1);
}
.split-image--left {
  background-image: url("https://images.pexels.com/photos/262978/pexels-photo-262978.jpeg?auto=compress&cs=tinysrgb&w=1600");
}
.split-image--right {
  background-image: url("https://images.pexels.com/photos/260689/pexels-photo-260689.jpeg?auto=compress&cs=tinysrgb&w=1600");
}
.split-content {
  background-color: #0b0b0b;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section--split .section-subtitle {
  color: var(--color-text-muted);
}
.split-list {
  margin: 1.2rem 0 1.6rem;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}
.split-list li {
  margin-bottom: 0.4rem;
}

/* Brand banner */
.brand-banner {
  position: relative;
  background-image: url("https://images.pexels.com/photos/2104049/pexels-photo-2104049.jpeg?auto=compress&cs=tinysrgb&w=1800");
  background-size: cover;
  background-position: center;
  padding: 4.8rem 0;
  color: #fdfdfd;
  filter: grayscale(1);
}
.brand-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
}
.brand-banner-inner {
  position: relative;
  width: var(--container-width);
  margin: 0 auto;
  max-width: 680px;
}
.brand-banner-kicker {
  font-size: 0.74rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 0.7rem;
}
.brand-banner-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 0.8rem;
}
.brand-banner-text {
  font-size: 0.92rem;
  color: rgba(249, 249, 249, 0.9);
  margin-bottom: 1.6rem;
}

/* Footer */
.site-footer {
  background-color: #050505;
  padding: 2.6rem 0 2.3rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.84rem;
}
.footer-grid {
  display: grid;
  gap: 2.1rem;
}
@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  }
}
.footer-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 0.7rem;
}
.footer-links {
  list-style: none;
}
.footer-links li + li {
  margin-top: 0.3rem;
}
.footer-links a {
  opacity: 0.8;
}
.footer-links a:hover {
  opacity: 1;
}
.footer-links--inline {
  display: flex;
  gap: 1.1rem;
}
.footer-text {
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.65);
}

/* FULLSCREEN BOOKING MODAL */
body.no-scroll {
  overflow: hidden;
}
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.booking-modal--open {
  opacity: 1;
  pointer-events: auto;
}
.booking-modal__panel {
  width: min(960px, 100%);
  max-height: min(620px, 100%);
  background: #060606;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 1.8rem 1.9rem 1.7rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.booking-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}
.booking-modal__title-block {
  max-width: 520px;
}
.booking-modal__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 0.4rem;
}
.booking-modal__title {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  margin-bottom: 0.35rem;
}
.booking-modal__subtitle {
  font-size: 0.88rem;
  color: rgba(245, 245, 245, 0.72);
}
.booking-modal__close {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1rem;
  cursor: pointer;
  padding: 0.1rem 0.2rem;
  opacity: 0.7;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.booking-modal__close:hover {
  opacity: 1;
  transform: scale(1.05);
}
.booking-modal__form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.booking-modal__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}
.booking-modal__field {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.booking-modal__field input,
.booking-modal__field select {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  padding: 0.6rem 0.9rem;
  font-size: 0.82rem;
  color: #fdfdfd;
  outline: none;
  transition: border-color 0.18s ease, background-color 0.18s ease,
    transform 0.1s ease;
}
.booking-modal__field input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.booking-modal__field input:focus,
.booking-modal__field select:focus {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}
.booking-modal__footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.2rem;
}
.booking-modal__ghost {
  background: transparent;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.6rem 1.4rem;
  text-transform: uppercase;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  color: #f5f5f5;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.18s ease, background-color 0.18s ease;
}
.booking-modal__ghost:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.06);
}
.booking-modal__submit {
  min-width: 210px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .top-bar {
    display: none;
  }
}

@media (max-width: 800px) {
  :root {
    --container-width: min(100% - 2.4rem, 800px);
  }

  .main-nav {
    padding-inline: 1.2rem;
  }

  /* hamburger menu */
  .nav-toggle {
    display: inline-flex;
  }
  .nav-right {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #050505;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 1.5rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.25s ease, opacity 0.2s ease;
  }
  .nav-right--open {
    max-height: 320px;
    opacity: 1;
  }
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    width: 100%;
    margin-top: 0.7rem;
  }
  .nav-links a {
    padding: 0.3rem 0;
  }
  .nav-book-btn {
    width: 100%;
    justify-content: center;
    margin-top: 0.8rem;
  }

  .hero-inner {
    padding-top: 4.4rem;
    gap: 2.1rem;
  }
  .hero-text {
    max-width: 100%;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .booking-card {
    max-width: 420px;
    margin: 0 auto;
  }

  .section {
    padding: 3.3rem 0;
  }
  .section--split,
  .section--split-reverse {
    grid-template-columns: minmax(0, 1fr);
  }
  .split-image {
    min-height: 210px;
  }
  .split-content {
    padding: 2.2rem 1.8rem;
  }
  .site-footer {
    padding-inline: 1.2rem;
  }

  .booking-modal {
    align-items: flex-end;
    padding: 0;
  }
  .booking-modal__panel {
    border-radius: 24px 24px 0 0;
    width: 100%;
    max-height: 80vh;
    padding: 1.5rem 1.5rem 1.6rem;
  }
  .booking-modal__grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .booking-modal__footer {
    flex-direction: column-reverse;
    align-items: stretch;
  }
  .booking-modal__submit {
    width: 100%;
  }
  .booking-modal__ghost {
    width: 100%;
    justify-content: center;
    display: inline-flex;
  }
}

@media (max-width: 600px) {
  .main-nav {
    gap: 0.8rem;
  }
  .hero-inner {
    padding-top: 4rem;
  }
  .booking-row--top,
  .booking-row--bottom,
  .booking-fields {
    grid-template-columns: minmax(0, 1fr);
  }
  .booking-action {
    margin-top: 0.6rem;
  }
}

/* === HERO CHECK AVAILABILITY BUTTON (STAY WITH ANGKASA) === */
.booking-submit {
  background: #000000;          /* background hitam */
  color: #ffffff;               /* teks putih */
  border-color: #000000;        /* border hitam */
  box-shadow: none;             /* tanpa shadow */
}

/* efek hover halus */
.booking-submit:hover {
  background: #111111;          /* sedikit lebih terang */
  border-color: #111111;
  box-shadow: none;
  transform: translateY(-1px);
}

/* === HILANGKAN ICON DI PALING KIRI (DESTINATION DROPDOWN) === */
.booking-form select[name="destination_hero"] {
    background-image: none !important;   /* hapus icon */
    padding-left: 0.85rem !important;    /* reset padding kiri */
}

/* === PERBAIKI POSISI ARROW DROPDOWN (LEBIH KIRI) === */
.booking-form select {
    appearance: none;                     /* hilangkan arrow default */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #f3f3f3;
    background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='black' viewBox='0 0 24 24'>\
<path d='M7 10l5 5 5-5z'/>\
</svg>");
    background-repeat: no-repeat;
    background-position: calc(100% - 14px) center;   /* geser arrow ke kiri */
    background-size: 14px;
    padding-right: 2.4rem !important;               /* space untuk arrow */
    color: #111;
}

/* Hover & focus tetap elegan */
.booking-form select:focus {
    background-color: #ffffff;
    border-color: #111;
}

/* ============================================================
   SAMAKAN UKURAN TOMBOL DENGAN DROPDOWN / INPUT
   ============================================================ */

.booking-submit {
    background: #000000;
    color: #ffffff;
    border: 1px solid #000000;

    /* Samakan ukuran dengan input/select */
    padding: 0.55rem 0.85rem;    /* sama persis dengan select/input */
    height: auto;                /* biarkan dari padding */
    font-size: 0.8rem;           /* sama */
    border-radius: 999px;        /* sama */

    display: flex;
    align-items: center;
    justify-content: center;

    /* Supaya box-nya benar-benar mengikuti input */
    box-sizing: border-box;
    line-height: 1.2;

    cursor: pointer;
    transition: background 0.18s ease, transform 0.1s ease;
}

.booking-submit:hover {
    background: #111111;
    border-color: #111111;
}

<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='black' viewBox='0 0 24 24'>\
<path d='M7 10l5 5 5-5z'/>\
</svg>");
    background-repeat: no-repeat;
    background-position: calc(100% - 14px) center;
    background-size: 14px;

    padding-left: 0.85rem !important;        /* hapus padding kiri icon */
    padding-right: 2.4rem !important;        /* space arrow */
    color: #111 !important;
}

/* Hilangkan icon khusus destination yang lama */
.booking-form select[name="destination_hero"] {
    background-image: none !important;
    padding-left: 0.85rem !important;
}

/* Arrow tetap muncul meskipun icon kiri dihapus */
.booking-form select[name="destination_hero"] {
    background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='black' viewBox='0 0 24 24'>\
<path d='M7 10l5 5 5-5z'/>\
</svg>") !important;
    background-position: calc(100% - 14px) center !important;
}

.booking-modal__field input[type="date"] {
    color: #ffffff;
}

/* Chrome, Safari, Edge date picker icon */
.booking-modal__field input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);        /* Jadikan putih */
    opacity: 1;
    cursor: pointer;
}
