:root {

  /* ======================
     FONT SYSTEM
  ====================== */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Inter', sans-serif;

  /* FONT SIZE SCALE */
  --fs-xs: 12px;
  --fs-sm: 14px;
  --fs-md: 16px;
  --fs-lg: 18px;
  --fs-xl: 24px;
  --fs-xxl: 32px;
  --fs-display: 42px;

  /* ======================
     SPACING SYSTEM
  ====================== */
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 20px;
  --space-lg: 30px;
  --space-xl: 40px;

  --section-padding: 80px;
  --container-padding: 20px;
  --hero-padding-left: 40px;

  /* ======================
     COLOR - BRAND
  ====================== */
  --color-primary: #1f9aa5;
  --color-primary-hover: #167d86;
  --color-secondary: #00c2c7;
  --color-secondary-hover: #00aeb3;

  /* ======================
     COLOR - BASE
  ====================== */
  --white: #ffffff;
  --white-soft: #f5f5f5;

  --text-dark: #333;
  --text-light: #666;
  --text-muted: #555;
  --text-secondary: #777;

  --text-white: #ddd;
  --text-pure: #fff;

  --danger: #ff3b3b;

  /* ======================
     BACKGROUND
  ====================== */
  --bg-light: #f4f8ff;
  --bg-soft: #eee;
  --bg-section: #f8fbfd;
  --bg-blog: #f5f7fa;
  --bg-box: #eef3f4;

  /* ======================
     GRADIENT & OVERLAY
  ====================== */
  --gradient-primary: linear-gradient(135deg, #1fd1c2, #1f6ed4);

  --overlay-dark: rgba(0, 0, 0, 0.8);
  --overlay-light: rgba(0, 0, 0, 0.4);
  --overlay-gradient: linear-gradient(90deg, var(--overlay-dark), var(--overlay-light));
  --btn-gradient-main: linear-gradient(135deg, #167d86 0%, #1f9aa5 35%, #2bb8c3 65%, #155f9c 100%);

  /* ======================
     BORDER RADIUS
  ====================== */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-pill: 30px;
  --radius-full: 50px;

  /* ======================
     SHADOW SYSTEM
  ====================== */
  --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.1);

  --shadow-primary: 0 12px 30px rgba(31, 110, 212, 0.6);

  /* ======================
     ICON SYSTEM
  ====================== */
  --icon-xs: 12px;
  --icon-sm: 14px;
  --icon-md: 18px;
  --icon-lg: 40px;
  --social-icon-sm: 18px;

  /* ======================
     IMAGE
  ====================== */
  --img-md: 180px;

  /* ======================
     TYPOGRAPHY DETAIL
  ====================== */
  --text-spacing: 0.3px;
  --text-weight-medium: 500;
  --text-weight-semibold: 600;
  --price-color: #1f9aa5;
  --price-size: 18px;
  --price-weight: 600;

  /* ======================
     MOTION
  ====================== */
  --transition-very-fast: 0.1s ease;
  --transition-fast: 0.2s ease;
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* ======================
     Z-INDEX SYSTEM
  ====================== */
  --z-topbar: 100;
  --z-navbar: 200;
  --z-overlay: 300;
  --z-modal: 999;

  /* ======================
     TOPBAR
  ====================== */
  --topbar-padding: 8px 20px;
  --topbar-gap: 20px;
  --topbar-offset: 40px;

  /* ======================
     NAVBAR
  ====================== */
  --nav-height: 55px;
  --nav-logo: 100px;
  --nav-padding: 10px 16px;
  --nav-border-radius: 16px;
  --nav-offset: 5px;
  --nav-menu-gap: 25px;

  /* ======================
     BUTTON SYSTEM
  ====================== */
  --btn-padding-sm: 6px 12px;
  --btn-padding-md: 10px 20px;
  --btn-padding-lg: 14px 28px;

  /* ======================
     HERO
  ====================== */
  --hero-height-offset: 55px;
  --hero-title-size: 42px;

  /* HERO OVERLAY WHITE */
  --overlay-white-strong: rgba(255, 255, 255, 0.95);
  --overlay-white-soft: rgba(255, 255, 255, 0.75);
  --overlay-white-fade: linear-gradient(90deg,
      rgba(255, 255, 255, 1) 0%,
      /* 🔥 full putih */
      rgba(255, 255, 255, 0.98) 20%,
      /* 🔥 masih solid */
      rgba(255, 255, 255, 0.85) 35%,
      /* 🔥 mulai turun */
      rgba(255, 255, 255, 0.6) 50%,
      rgba(255, 255, 255, 0.3) 65%,
      rgba(255, 255, 255, 0.1) 75%,
      rgba(255, 255, 255, 0) 85%);

  /* HERO TEXT */
  --hero-text-dark: var(--text-dark);
  --hero-highlight: var(--color-primary);
  --hero-top-text: #6b7280;
  --hero-link-color: #1f9aa5;

  /* ======================
     CTA
  ====================== */
  --cta-min-height: 300px;
  --cta-gap: 40px;

  /* ======================
     CARD / COMPONENT
  ====================== */
  --card-radius: 12px;
  --card-padding: 20px;

}

/* ===============================
   GLOBAL RESET (WAJIB PALING ATAS)
=============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-wrapper>*:not(.footer) {
  flex-shrink: 0;
}


.footer {
  margin-top: auto;
}

/* (GLOBAL CONTAINER SYSTEM) */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.topbar .container,
.navbar .container {
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===============================
   SECTION SAFETY
=============================== */

section {
  overflow-x: hidden;
}

/* HERO TENTANG KAMI */

.hero-about {
  position: relative;
  height: 320px;
  background: url('../images/hero-page/page-tentang.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.about-overlay {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.hero-about h1 {
  font-size: 36px;
  margin-bottom: 15px;
  transition: var(--transition-very-fast);
}

.hero-about p {
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-breadcrumb {
  font-size: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 10px;
  color: #ddd;
  text-align: center;
}

/* LINK (Home & Blog) */
.about-breadcrumb a {
  color: #fff;
  text-decoration: none;
  opacity: 0.85;
  transition: 0.2s;
}

/* HOVER */
.about-breadcrumb a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* TEXT (Detail Blog & Title) */
.about-breadcrumb span {
  color: #ddd;
  opacity: 0.9;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* HERO WISATA */

.hero-wisata {
  position: relative;
  height: 320px;
  background: url('../images/hero-page/page-wisata.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-wisata::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.wisata-overlay {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.hero-wisata h1 {
  font-size: 36px;
  margin-bottom: 15px;
  transition: var(--transition-very-fast);
}

.hero-wisata p {
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.wisata-breadcrumb {
  font-size: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 10px;
  color: #ddd;
  text-align: center;
}

/* LINK (Home & Blog) */
.wisata-breadcrumb a {
  color: #fff;
  text-decoration: none;
  opacity: 0.85;
  transition: 0.2s;
}

/* HOVER */
.wisata-breadcrumb a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* TEXT (Detail Blog & Title) */
.wisata-breadcrumb span {
  color: #ddd;
  opacity: 0.9;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* HERO RENTAL */

.hero-rental {
  position: relative;
  height: 320px;
  background: url('../images/hero-page/page-rental.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-rental::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.rental-overlay {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.hero-rental h1 {
  font-size: 36px;
  margin-bottom: 15px;
  transition: var(--transition-very-fast);
}

.hero-rental p {
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.rental-breadcrumb {
  font-size: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 10px;
  color: #ddd;
  text-align: center;
}

/* LINK (Home & Blog) */
.rental-breadcrumb a {
  color: #fff;
  text-decoration: none;
  opacity: 0.85;
  transition: 0.2s;
}

/* HOVER */
.rental-breadcrumb a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* TEXT (Detail Blog & Title) */
.rental-breadcrumb span {
  color: #ddd;
  opacity: 0.9;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* HERO BLOG */

.hero-blog {
  position: relative;
  height: 320px;
  background: url('../images/hero-page/page-blog.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-blog::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.blog-overlay {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.hero-blog h1 {
  font-size: 36px;
  margin-bottom: 15px;
  transition: var(--transition-very-fast);
}

.hero-blog p {
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-breadcrumb {
  font-size: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 10px;
  color: #ddd;
  text-align: center;
}

/* LINK (Home & Blog) */
.blog-breadcrumb a {
  color: #fff;
  text-decoration: none;
  opacity: 0.85;
  transition: 0.2s;
}

/* HOVER */
.blog-breadcrumb a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* TEXT (Detail Blog & Title) */
.blog-breadcrumb span {
  color: #ddd;
  opacity: 0.9;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* HERO BLOG DETAIL */

.hero-detail {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-detail::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.detail-overlay {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.hero-detail h1 {
  font-size: 36px;
  margin-bottom: 15px;
  transition: var(--transition-very-fast);
}

.hero-detail p {
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.detail-breadcrumb {
  font-size: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 10px;
  color: #ddd;
  text-align: center;
}

/* LINK (Home & Blog) */
.detail-breadcrumb a {
  color: #fff;
  text-decoration: none;
  opacity: 0.85;
  transition: 0.2s;
}

/* HOVER */
.detail-breadcrumb a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* TEXT (Detail Blog & Title) */
.detail-breadcrumb span {
  color: #ddd;
  opacity: 0.9;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* HERO KONTAK */

.hero-kontak {
  position: relative;
  height: 320px;
  background: url('../images/hero-page/page-blog.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-kontak::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.kontak-overlay {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.hero-kontak h1 {
  font-size: 36px;
  margin-bottom: 15px;
  transition: var(--transition-very-fast);
}

.hero-kontak p {
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.kontak-breadcrumb {
  font-size: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 10px;
  color: #ddd;
  text-align: center;
}

/* LINK (Home & Blog) */
.kontak-breadcrumb a {
  color: #fff;
  text-decoration: none;
  opacity: 0.85;
  transition: 0.2s;
}

/* HOVER */
.kontak-breadcrumb a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* TEXT (Detail Blog & Title) */
.kontak-breadcrumb span {
  color: #ddd;
  opacity: 0.9;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* SECTION TOUR*/
.tour-section {
  padding: 60px 20px;
  background: #f5f7f8;
}

.tour-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.tour-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  position: relative;
}

/* ISI CARD DI ATAS LINK */
.tour-img,
.tour-body {
  position: relative;
  z-index: 2;
}

/* GARIS BAWAH (default hidden) */
.tour-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 4px;
  background: #1f9aa5;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: var(--transition-slow);
}

/* HOVER → hanya munculkan garis */
.tour-card:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* IMAGE */
.tour-img {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
}

.tour-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.tour-img:hover img {
  transform: scale(1.08);
}

/* BODY */
.tour-body {
  padding: 20px;
}

/* TOP */
.tour-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.tour-top h3 {
  color: #1f9aa5;
}

.tour-top span {
  font-size: 13px;
  color: #666;
}

/* LIST */
.tour-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.tour-list li {
  font-size: 14px;
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
}

.tour-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #1f9aa5;
}

/* FOOTER */
.tour-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tour-footer p {
  font-weight: bold;
  color: #333;
}

/* BUTTON */
.tour-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #1f9aa5;
  color: #fff;
  padding: 6px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  border: 1px solid transparent;
  transition: var(--transition);
  position: relative;
  z-index: 3;
}

.tour-btn:hover {
  background: transparent;
  color: #167f87;
  border: 1px solid #1f9aa5;
}

/* ICON */
.btn-icon {
  width: 13px;
  height: 13px;
}

/* RESPONSIVE */
@media(max-width:1024px) {
  .tour-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px) {
  .tour-container {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   CAR SECTION (RENTAL PAGE)
=============================== */
.car-section {
  padding: 80px 20px;
  background: #f8fbfd;
}

/* FILTER */
.car-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.car-filter button {
  padding: 6px 16px;
  border-radius: 20px;
  border: none;
  background: #eee;
  cursor: pointer;
  font-size: 13px;
  transition: 0.3s;
}

.car-filter button.active {
  background: #1f9aa5;
  color: #fff;
}

.car-filter button:hover {
  background: #1f9aa5;
  color: #fff;
}

/* GRID */
.cars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

/* CALCULATOR */
.rental-calculator {
  padding: 60px 20px;
  background: #f5f7f9;
}

/* CONTAINER */
.calc-container {
  max-width: 900px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* RIGHT PANEL */
.calc-right {
  background: #f9fafb;
  padding: 18px;
  border-radius: 16px;
}

/* IMAGE BOX */
.calc-img-box {
  background: #fff;
  border-radius: 14px;
  padding: 15px;
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.calc-img-box img {
  width: 100%;
  max-width: 260px;
}

/* SUMMARY */
.calc-summary h3 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
}

/* ROW */
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 8px;
  color: #555;
}

/* TOTAL */
.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0;
}

.total-row h2 {
  color: #f57c00;
  font-size: 22px;
}

/* BUTTON */
.calc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  margin-top: 15px;
  text-decoration: none;
  font-weight: 500;
}

.calc-btn .wa-icon {
  width: 18px;
  height: 18px;
  fill: #fff;
}

/* NOTE */
.note {
  text-align: center;
  font-size: 12px;
  color: #888;
  margin-top: 10px;
}

/* LEFT SIDE RAPihin */
.calc-left h3 {
  font-size: 15px;
  margin: 18px 0 10px;
}

.calc-left>div {
  margin-bottom: 20px;
}

.calc-type {
  margin-bottom: 15px;
}

.calc-type button {
  background: #fff;
  color: #333;
  border: 1px solid #ddd;
  padding: 12px 26px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s ease;
}

.calc-duration span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 35px;
  padding: 0 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  background: #fff;
}

/* ADDON */
.addon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 15px;
}

.addon-box {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.addon-box:hover {
  border-color: #1f9aa5;
}

.addon-box input {
  transform: scale(1.2);
}

.addon-box p {
  margin: 0;
  font-size: 14px;
}

.addon-box small {
  color: #888;
}

.addon-row span:last-child {
  color: #666;
  font-size: 13px;
}

/* SELECT */
#carSelect {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ddd;
}

/* DURATION */
.calc-duration {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.calc-duration button {
  width: 35px;
  height: 35px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  transition: 0.2s;
}

@media (max-width:768px) {
  .calc-container {
    grid-template-columns: 1fr;
  }
}

.custom-select {
  margin-bottom: 15px;
  position: relative;
  width: 100%;
}

.select-box {
  border: 1px solid #ddd;
  padding: 12px 14px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  cursor: pointer;
  transition: all 0.25s ease;
}

/* HOVER */
.select-box:hover {
  border-color: #ccc;
}

/* ACTIVE (saat dropdown terbuka) */
.select-box.active {
  border: 1px solid #1f9aa5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* TEXT */
#selectedText {
  font-size: 14px;
  color: #333;
}

/* ARROW */
.arrow {
  display: flex;
  align-items: center;
  color: #888;
  transition: 0.3s;
}

/* ROTATE ARROW SAAT OPEN */
.select-box.active .arrow {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  margin-top: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(-10px) scale(0.98);
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 10;
}

.dropdown.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
}

.dropdown input {
  width: 100%;
  padding: 10px;
  border: none;
  border-bottom: 1px solid #eee;
  outline: none;
}

.dropdown-list {
  max-height: 250px;
  overflow-y: auto;
}

.car-item {
  padding: 12px;
  cursor: pointer;
  transition: 0.2s;
}

.car-item:hover {
  background: #f5f5f5;
}

.car-item.active {
  background: #f4ede0;
}

.car-title {
  font-weight: 500;
  margin-bottom: 4px;
}

.car-sub {
  font-size: 13px;
  color: #1f9aa5;
  font-weight: 500;
}

.badge {
  background: #eee;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 11px;
  margin-left: 6px;
}

/* DATE INPUT STYLE (BIAR SAMA KAYAK SELECT) */
#startDate {
  width: 50%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 14px;
  font-family: var(--font-primary);
  background: #fff;
  color: #333;
  transition: all 0.25s ease;
  cursor: pointer;
}

/* HOVER */
#startDate:hover {
  border-color: #ccc;
}

/* FOCUS */
#startDate:focus {
  border-color: #1f9aa5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  outline: none;
}

/* HIDE DEFAULT ICON (OPTIONAL) */
#startDate::-webkit-calendar-picker-indicator {
  opacity: 0.6;
  cursor: pointer;
}

/* ===== FOCUS CALCULATOR ===== */
.focus-highlight {
  animation: focusGlow 1.5s ease;
}

@keyframes focusGlow {
  0% {
    box-shadow: 0 0 0 rgba(31, 154, 165, 0);
  }

  50% {
    box-shadow: 0 0 25px rgba(31, 154, 165, 0.5);
  }

  100% {
    box-shadow: 0 0 0 rgba(31, 154, 165, 0);
  }
}


/* ===== HIGHLIGHT SELECTED CAR ===== */
.selected-highlight {
  background: rgba(31, 154, 165, 0.1);
  border-radius: 8px;
  font-weight: 600;
}

/* BLOG PAGE */
.blog-page {
  padding: 60px 20px;
}

/* CONTAINER */
.blog-page-container {
  align-items: start;
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

/* GRID */
.blog-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

/* CARD */
.blog-page-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: 0.3s;
  min-height: 460px;
}

/* IMAGE */
.blog-page-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: var(--transition-slow);
}

/* 🔥 HOVER → ZOOM IMAGE SAJA */
.blog-page-card:hover img {
  transform: scale(1.05);
}

/* META */
.blog-page-card .blog-meta {
  display: flex;
  justify-content: space-between;
  padding: 14px 22px;
  font-size: 13px;
  color: #777;
}

.blog-page-card h3 {
  padding: 0 22px;
  font-size: 20px;
  color: #1f9aa5;
}

/* DESC */
.blog-page-card p {
  padding: 0 22px 22px;
  font-size: 15px;
  color: #555;
}

/* SIDEBAR */
.blog-page-right {
  position: sticky;
  top: 100px;
  background: #fff;
  padding: 12px 14px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  height: fit-content;
}

.blog-page-right h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1f9aa5;
}

/* garis bawah */
.blog-page-right h3::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #ddd;
  margin-top: 6px;
}

/* POPULAR ITEM */
.popular-item {
  display: flex;
  gap: 18px;
  margin-bottom: 22px;
  align-items: flex-start;
  padding-bottom: 14px;
  border-bottom: 1px solid #eee;
}

.popular-item img {
  width: 95px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
}

.popular-item p {
  font-size: 15px;
  margin: 0;
  color: #1f9aa5;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 6px;
}

.popular-item span {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  color: #777;
}

.popular-item:last-child {
  border-bottom: none;
}

@media(max-width:768px) {

  .blog-page-container {
    grid-template-columns: 1fr;
  }

  .blog-page-grid {
    grid-template-columns: 1fr;
  }

}

/* ===============================
   BLOG DETAIL (ISOLATED STYLE)
=============================== */

.blog-detail-container {
  max-width: 1100px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* LEFT */
.blog-detail-left h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

.blog-detail-left p {
  font-size: 14px;
  color: #777;
  margin-bottom: 15px;
}

.blog-detail-left img {
  width: 100%;
  border-radius: 12px;
  margin: 15px 0;
}

.blog-detail-left #blogContent {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

#blogContent h3 {
  color: #1f9aa5;
  margin-top: 15px;
  margin-bottom: 8px;
  font-size: 18px;
}

#blogContent p {
  margin-bottom: 12px;
  line-height: 1.8;
  color: #444;
}

/* TITLE ATAS */
.blog-title-top {
  font-size: 26px;
  font-weight: 600;
  color: #1f9aa5;
  text-align: center;
  margin-bottom: 10px;
}

/* META */
.blog-meta-top {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
}

/* ICON STYLE (optional biar rapi) */
.blog-meta-top span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* GARIS */
.blog-divider {
  width: 100%;
  height: 1px;
  background: #ddd;
  margin: 15px 0;
}

/* RIGHT SIDEBAR */
.blog-detail-sidebar {
  position: sticky;
  top: 110px;
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  height: fit-content;
  margin-top: 30px;
}

.blog-detail-sidebar h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #1f9aa5;
}

/* garis bawah */
.blog-detail-sidebar h3::after {
  content: "";
  display: block;
  height: 1px;
  background: #ddd;
  margin-top: 6px;
}

/* ITEM */
.blog-detail-sidebar .popular-item {
  display: flex;
  gap: 15px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}

.blog-detail-sidebar .popular-item img {
  width: 90px;
  height: 75px;
  object-fit: cover;
  border-radius: 6px;
}

.blog-detail-sidebar .popular-item p {
  font-size: 14px;
  margin: 0;
  color: #1f9aa5;
  font-weight: 500;
  line-height: 1.4;
}

.blog-detail-sidebar .popular-item span {
  font-size: 12px;
  color: #777;
}

.blog-share {
  margin-top: 30px;
  padding: 20px;
  background: #f5f7f8;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.blog-share span {
  font-weight: 600;
  color: #1f9aa5;
}

.share-icons a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 5px;
  margin-right: 5px;
}

.share-icons a:nth-child(1) {
  background: #3b5998;
}

.share-icons a:nth-child(2) {
  background: #ea4335;
}

.share-icons a:nth-child(3) {
  background: #0088cc;
}

.share-icons a:nth-child(4) {
  background: #25d366;
}

.share-icons a:nth-child(5) {
  background: #000;
}

.share-icons a:nth-child(6) {
  background: #1877f2;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .blog-detail-container {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   CONTACT BOX (ISOLATED)
=============================== */
.contact-box {
  padding: 80px 20px;
}

.contact-box-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  background: #fff;
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* MAP */
.contact-box-map iframe {
  width: 100%;
  height: 280px;
  border: none;
  border-radius: 12px;
}

/* INFO */
.contact-box-info h2 {
  color: #1f9aa5;
  margin-bottom: 20px;
}

/* ITEM */
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

/* ICON */
.contact-item .icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1f9aa5;
}

.contact-item .icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  /* 🔥 biar ikut warna */
}

/* TEXT */
.contact-item p {
  margin: 0;
  font-size: 13px;
  color: #666;
}

.contact-item strong {
  font-size: 14px;
  color: #333;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .contact-box-container {
    grid-template-columns: 1fr;
  }

  .contact-box-map iframe {
    height: 220px;
  }
}

/* ===============================
   FOLLOW US
=============================== */
.follow-us {
  text-align: center;
  padding: 40px 20px 60px;
  background: #e9ecef;
}

.follow-us h3 {
  margin-bottom: 20px;
  color: #1f9aa5;
}

/* ICON WRAPPER */
.follow-icons {
  display: flex;
  justify-content: center;
  gap: 8px;
}

/* ICON */
.follow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
  border: none !important;
  outline: none;
  box-shadow: none;
  text-decoration: none;
}

.follow svg {
  width: 18px;
  height: 18px;
  fill: white;
}

/* WARNA */
.follow.fb {
  background: #3b5998;
}

.follow.tiktok {
  background: #000;
}

.follow.yt {
  background: #ff0000;
}

.follow.ig {
  background: #e1306c;
}

/* HOVER */
.follow:hover {
  transform: scale(1.15);
}

/* ===============================
   WHATSAPP FLOATING BUTTON
=============================== */
.wa-float {
  position: fixed;
  bottom: 25px;
  left: 25px;
  right: auto;

  width: 48px;
  height: 48px;

  background: #25ff85;
  /* 🔥 lebih bright */
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  cursor: pointer;
  transition: 0.3s;
}

.wa-float img {
  width: 26px;
  height: 26px;
}

.wa-float:hover {
  transform: scale(1.1);
}

.wa-float::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;

  background: rgba(37, 211, 102, 0.35);
  /* 🔥 transparan, tidak nutup warna */
  z-index: -1;
  /* 🔥 pindahin ke belakang */

  animation: pulse 2s infinite;
}

.wa-icon {
  width: 26px;
  height: 26px;
  color: #ffffff;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  70% {
    transform: scale(1.8);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .wa-float {
    width: 44px;
    height: 44px;
  }

  .wa-icon {
    width: 20px;
    height: 20px;
  }
}

/* ===============================
   SCROLL TO TOP BUTTON
=============================== */
.scroll-top {
  position: fixed;
  bottom: 25px;
  right: 25px;

  width: 60px;
  height: 60px;

  background: #ffffff;
  color: #00a8a8;

  border: 2px solid #e5e5e5;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  cursor: pointer;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);

  transition: all 0.3s ease;
  z-index: 999;
}

/* saat aktif */
.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* hover */
.scroll-top:hover {
  background: #00a8a8;
  color: #fff;
}

/* ===============================
   SCROLL PROGRESS BUTTON
=============================== */
.scroll-progress {
  position: fixed;
  bottom: 25px;
  right: 25px;

  width: 60px;
  height: 60px;

  border: none;
  background: transparent;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: none;
  cursor: pointer;

  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);

  transition: all 0.3s ease;
  z-index: 999;
}

.scroll-progress.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

.progress-ring-circle {
  stroke: #00a8a8;
  stroke-width: 3;
  transition: stroke-dashoffset 0.2s linear;
}

/* 🔥 ARROW */
.arrow-icon {
  width: 20px;
  height: 20px;
}

.scroll-progress:hover .arrow-icon {
  transform: translateY(-2px);
}

.scroll-progress.active .arrow-icon {
  color: #00e0e0;
}

/* hover */
.scroll-progress:hover {
  background: transparent;
}

.scroll-progress:hover .arrow {
  color: #fff;
}

/* (GLOBAL ICON SYSTEM) */
.icon {
  fill: currentColor;
  flex-shrink: 0;
  transition: var(--transition);
}

.icon-sm {
  width: 14px;
  height: 14px;
}

.icon-md {
  width: 18px;
  height: 18px;
}

.icon-lg {
  width: 40px;
  height: 40px;
}

/* TOPBAR */
.topbar {
  position: fixed;
  height: 40px;
  top: 0;
  right: 0;
  left: 0;
  background: var(--color-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--topbar-padding);
  transition: transform 0.3s ease;
  z-index: 9999;
}

.topbar.hide {
  transform: translateY(-100%);
}

.topbar .left {
  display: flex;
  align-items: center;
  gap: var(--topbar-gap);
}

.topbar .right {
  display: flex;
  gap: var(--topbar-gap);
}

.topbar .item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-sm);
  cursor: pointer;
  color: var(--text-pure);
  text-decoration: none;
  font-weight: var(--text-weight-medium);
  letter-spacing: var(--text-spacing);
  line-height: 1;
}

.topbar .item:visited,
.topbar .item:active {
  color: var(--text-pure);
}

.topbar .item:hover {
  opacity: 0.8;
}

.topbar .item:hover .icon {
  transform: scale(1.15);
}

/* ICON */
.topbar .item .icon {
  fill: white;
  pointer-events: none;
  width: var(--icon-sm);
  height: var(--icon-sm);
  align-items: center;
}

/* SOCIAL */
.social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--social-icon-sm);
  height: var(--social-icon-sm);
  color: white;
  text-decoration: none;
}

.social:hover {
  transform: scale(1.2);
  opacity: 0.8;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: var(--topbar-offset);
  /* nempel ke bawah topbar */
  left: 0;
  right: 0;
  width: 100%;

  z-index: var(--z-navbar);
  background: var(--white);

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 var(--container-padding);
  height: var(--nav-height);

  transition: top 0.35s ease, box-shadow 0.3s ease;
}

.navbar .container {
  align-items: center;
}

.navbar a.active {
  color: var(--color-primary);
  font-weight: 600;
}

.navbar.scrolled {
  top: 0;
  /* naik ke atas */
  box-shadow: var(--shadow-sm);
}

/* LOGO */
.logo img {
  height: var(--nav-logo);
  display: block;
  width: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.logo {
  position: relative;
  display: flex;
  align-items: center;
}

/* MENU */
.menu {
  margin-left: 0;
  display: flex;
  gap: var(--nav-menu-gap);
  list-style: none;
}

.menu a {
  font-size: var(--fs-sm);
  line-height: 1;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
}

/* ACTIVE */
.menu a.active {
  color: var(--color-primary);
  font-weight: 600;
}

/* HOVER */
.menu a:hover {
  color: var(--color-primary);
}

/* BUTTON */
.btn-nav {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: var(--nav-padding);
  font-size: var(--fs-xs);
  border-radius: var(--nav-border-radius);
  background: var(--color-primary);
  color: var(--text-pure);
  border: 2px solid var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  overflow: hidden;
  line-height: 1;
}

.btn-nav span {
  position: relative;
  z-index: 2;
  transition: var(--transition);
  transform: none;
}

.btn-nav .icon {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  opacity: 0;
  transition: var(--transition);
}

.btn-nav:hover .icon {
  opacity: 1;
  transform: translate(32px, 0);
}

.btn-nav:hover {
  background: transparent;
  color: var(--color-primary);
}

.btn-nav:hover span {
  transform: translateX(-10px);
}

/* HERO */
.hero-premium {
  position: relative;
  min-height: clamp(500px, 80vh, 700px);
  display: flex;
  align-items: center;
  background: url('../images/hero/hero.jpg') no-repeat;
  background-size: cover;
  background-position: right center;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  overflow: hidden;
}

.hero-image a {
  display: block;
  width: 100%;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-xs);
  padding: 0;
  background: transparent;
  text-align: center;
}

/* ITEM */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: none !important;
  border-radius: 0;
  padding: 0;
  backdrop-filter: none;
}

.feature-item .icon {
  width: var(--icon-lg);
  height: var(--icon-lg);
  fill: var(--color-primary);
  max-width: 100%;
}

.feature-item p {
  margin: 0;
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--text-muted);
  margin: 0;
}

/* TRUST */
.about-premium {
  background: var(--white);
  padding: var(--space-lg) var(--container-padding);
  text-align: left;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-content {
  max-width: 550px;
}

.about-content h2 {
  line-height: 1.3;
}

.about-content p {
  line-height: 1.7;
  color: #555;
}

.main-img,
.float-img {
  transition: opacity 0.5s ease, transform 0.5s ease;
  will-change: transform, opacity;
}

/* saat fade out */
.img-hide {
  opacity: 0;
  transform: scale(0.9);
}

/* saat muncul lagi */
.img-show {
  opacity: 1;
  transform: scale(1);
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* URGENCY */
.urgency {
  text-align: center;
  color: red;
  font-weight: bold;
  margin-bottom: 15px;
}

/* FILTER */
.filter {
  text-align: center;
  margin-bottom: 20px;
}

.filter button {
  padding: var(--space-xs) var(--space-sm);
  margin: 5px;
  border: none;
  background: var(--bg-soft);
  border-radius: var(--radius-pill);
  cursor: pointer;
}

.filter button.active {
  background: var(--color-secondary);
  color: var(--text-pure);
}



/* CARS */
.cars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  align-items: stretch;
  gap: 20px;
}

.car {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.car:hover {
  box-shadow: var(--shadow-lg);
}

.car img {
  width: 100%;
  height: var(--img-sm);
  object-fit: cover;
}

/* BADGE */
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--danger);
  color: var(--text-pure);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  font-size: var(--fs-xs);
}

/* BUTTON */
.btn {
  display: inline-flex;
  text-align: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--text-pure);
  padding: var(--btn-padding-sm);
  border-radius: var(--radius-md);
  text-decoration: none;
  margin-top: 10px;
  font-size: var(--fs-xs);
  white-space: nowrap;
  width: auto;
  transition: var(--transition);
}

/* ===============================
   SECTION WISATA
=============================== */
.wisata {
  padding: 80px 0;
  background: #f7f9fb;
}

/* ===============================
   HEADER
=============================== */
.wisata-header {
  text-align: center;
  margin-bottom: 40px;
}

.wisata-header h2 {
  font-size: 28px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 10px;
}

.wisata-header h2 span {
  color: var(--color-primary);
  font-weight: 700;
}

.wisata-header span {
  color: #1aa7a1;
}

.wisata-header p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* ===============================
   SWIPER CONTAINER
=============================== */
.wisata-swiper {
  padding: 40px 0;
}

/* Slide harus stretch */
.wisata-swiper .swiper-wrapper {
  align-items: stretch;
  /* 🔥 penting */
}

.swiper-slide {
  width: 260px;
  transition: all 0.4s ease;
  opacity: 0.6;
  transform: scale(0.9);
}

.wisata-swiper .swiper-slide {
  height: auto;
  display: flex;
  opacity: 1 !important;
  transform: scale(1) !important;
}

.wisata-swiper .swiper-slide-prev,
.wisata-swiper .swiper-slide-next {
  opacity: 1 !important;
}

/* ===============================
   CARD
=============================== */
.wisata-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 320px;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transition: var(--transition);
}

/* Body fleksibel */
.wisata-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  /* 🔥 penting */
}

/* GARIS AWAL (DARI TENGAH) */
.wisata-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;

  width: 0;
  height: 3px;

  background: #1f9aa5;

  transform: translateX(-50%);
  transition: width 0.5s ease;
}

/* HOVER → MELEBAR KE KIRI & KANAN */
.wisata-card:hover::after {
  width: 100%;
}

/* ===============================
   IMAGE
=============================== */
.wisata-img {
  overflow: hidden;
  cursor: pointer;
}

.wisata-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: var(--transition-slow);
  border-radius: 12px 12px 0 0;
}

.wisata-card:hover img {
  transform: scale(1.05);
}

/* ===============================
   BODY
=============================== */
.wisata-body {
  padding: 18px;
}

/* ===============================
   TOP (TITLE + JAM)
=============================== */
.wisata-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.wisata-top h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1aa7a1;
}

.wisata-top span {
  font-size: 12px;
  color: #6b7280;
}

/* ===============================
   LIST DESTINASI
=============================== */
.wisata-list {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.wisata-list li {
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
}

.wisata-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #1aa7a1;
  font-weight: bold;
}

/* ===============================
   FOOTER
=============================== */
.wisata-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}

.wisata-more {
  text-align: center;
  margin-top: 40px;
}

/* ===============================
   PRICE
=============================== */
.price {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
}

/* ===============================
   BUTTON PESAN
=============================== */
.btn-wisata {
  display: flex;
  align-items: center;
  gap: 6px;

  font-size: 12px;
  font-weight: 500;

  background: #1aa7a1;
  color: #fff;

  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;

  transition: all 0.3s ease;
}

.btn-wisata:hover {
  background: #158f89;
  transform: translateY(-1px);
}

/* ===============================
   BUTTON LIHAT PAKET LAINNYA
=============================== */
.btn-lihat-paket {
  display: inline-flex;
  align-items: center;
  gap: 5px;

  padding: var(--btn-padding-md);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-pill);

  color: var(--color-primary);
  font-size: var(--fs-xs);
  font-weight: var(--text-weight-medium);

  text-decoration: none;
  cursor: pointer;

  transition: var(--transition);
}

/* ICON */
.btn-lihat-paket .arrow-icon {
  width: 14px;
  height: 14px;
  transition: var(--transition);
}

/* HOVER */
.btn-lihat-paket:hover {
  background: var(--color-primary);
  color: var(--text-pure);
}

/* OPTIONAL: BIAR ADA FEEL PREMIUM */
.btn-lihat-paket:hover {
  box-shadow: 0 8px 20px rgba(31, 154, 165, 0.25);
}

/* ===============================
   RESPONSIVE
=============================== */
@media(max-width:768px) {

  .wisata-header h2 {
    font-size: 22px;
  }

  .wisata-card {
    max-width: 100%;
  }

}

/* CTA */
.cta-section {
  position: relative;
  width: 100%;
  max-width: 100% !important;
  margin: 0;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  border-radius: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: var(--section-padding) 0;
  min-height: 320px;
  height: auto;

}

/* BACKGROUND */
.cta-bg {
  position: absolute;
  top: -10%;
  /* 🔥 penting */
  left: 0;
  width: 100%;
  height: 120%;
  /* 🔥 bikin lebih besar */
  background: url('../images/cta/cta-bg.jpg') center/cover no-repeat;
  transform: scale(1.1);
  /* 🔥 sedikit zoom biar aman */
  transition: transform 0.2s linear;
  z-index: 0;
  filter: brightness(0.6);
  will-change: transform;
}

/* OVERLAY */
.cta-overlay {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0.1));
  z-index: 1;
}

/* CONTENT */
.cta-content {
  max-width: 1200px;
  margin: auto;
  padding: 0 var(--container-padding);
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: var(--cta-gap);
  width: 100%;
  color: white;
  text-align: left;
}

/* TEXT */

.cta-text {
  max-width: 550px;
}

.cta-text h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.cta-text p {
  color: var(--text-white);
}

/* BUTTON */
.cta-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-left: auto;
}

.cta-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 24px;
  line-height: 1;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  flex: 1;
  min-width: 200px;
}

/* BASE BUTTON */
.btn-right {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-pill);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  color: var(--text-pure);
  background: var(--color-primary);
  padding: 0;
}

.btn-right:hover {
  background: var(--color-primary-hover);
  box-shadow: 0 6px 20px rgba(31, 154, 165, 0.4);
  transform: translateY(-2px);
}

.btn-right svg {
  fill: var(--white);
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
}

.btn-left {
  background: var(--white);
  font-size: var(--fs-sm);
  color: var(--color-primary);
  border-radius: var(--radius-pill);
  transition: var(--transition);
  padding: 0;
}

.btn-left:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.15),
    0 0 12px rgba(31, 209, 194, 0.2);
}

.btn-left svg {
  fill: var(--color-primary);
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
  transition: var(--transition);
}

/* HOVER */
.cta-buttons a:hover {
  transform: translateY(-4px) scale(1.05);
}

/* MOBILE */
@media(max-width:768px) {

  .why-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .why-box {
    width: 100%;
    text-align: center;
  }

  .cta-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .cta-section {
    height: auto;
  }

}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background: var(--white);
  margin: 8% auto;
  padding: var(--space-md);
  width: 90%;
  max-width: 350px;
  border-radius: var(--radius-md);
  text-align: center;
}

.modal img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.close {
  float: right;
  cursor: pointer;
}

/* MOBILE */
@media(max-width:768px) {
  .hero-premium {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-title .big {
    font-size: 36px;
  }

  .hero-title .outline {
    font-size: 24px;
  }

  .hero-features.clean {
    grid-template-columns: repeat(2, 1fr);
  }
}

.hero-title {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

/* TEXT KECIL */
.hero-title .small {
  font-size: 22px;
  color: white;
  font-weight: 500;
}

/* OUTLINE TEXT */
.hero-title .outline {
  font-size: 36px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 2px #00c2c7;
}

/* TEXT BESAR */
.hero-title .big {
  font-size: clamp(32px, 6vw, 60px);
  font-weight: 800;
  color: #00c2c7;
  text-shadow: 0 5px 20px rgba(0, 255, 200, 0.3);
}

/* VARIASI KUNING */
.hero-title .yellow {
  color: #ffd84d;
  -webkit-text-stroke: 2px #00c2c7;
}

/* ICON */

.feature-item:hover .icon {
  transform: scale(1.15);
}

.about-premium {
  display: flex;
  align-items: center;
  position: relative;
  gap: 40px;
  background: var(--bg-section);
  padding: var(--section-padding) var(--container-padding);
}

/* IMAGE */
.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* CONTENT */
.about-content {
  flex: 1;
  padding-left: 0;
}

.tag {
  position: relative;
  padding-left: 0;
  color: var(--color-primary);
  font-weight: 800;
  font-size: var(--fs-xl);
  letter-spacing: 1px;
}

.about-content h2 {
  font-size: var(--fs-xl);
  margin: 15px 0;
  line-height: 1.4;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 15px;
  line-height: 1.6;
}

/* MOBILE */
@media(max-width:768px) {
  .about-premium {
    flex-direction: column;
    padding: var(--section-padding) var(--container-padding);
  }

  .about-content h2 {
    font-size: 24px;
  }
}

/* MAIN IMAGE */
.main-img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* FLOATING IMAGE */
.float-img {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border: 4px solid var(--white);
  animation: float 3s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes float {
  0% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }

  100% {
    transform: translateY(0)
  }
}

.why-section {
  padding: var(--section-padding) var(--container-padding);
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background: url('../images/why/parrallax-bg.jpg') center/cover no-repeat;
  opacity: 0.05;
  z-index: 0;
  transform: translateY(0);
}

.why-section .container {
  position: relative;
  z-index: 2;
}

.why-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(31, 154, 165, 0.04) 0%, transparent 70%);
  top: -100px;
  left: -100px;
}

.why-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(31, 154, 165, 0.04) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
}

.why-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 50px;
}

/* KIRI */
.why-left {
  max-width: 600px;
}

/* KANAN BOX */
.why-box {
  background: var(--bg-box);
  padding: 30px 35px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--color-primary);
  white-space: nowrap;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.why-header .tag {
  color: var(--color-primary);
  font-weight: 600;
  font-size: var(--fs-sm);
  padding: 40px;
}

/* GARIS KIRI */
.why-section .tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 2px;
  background: var(--color-primary);
}

.why-header h2 {
  font-size: var(--fs-xl);
  margin: 10px 0;
}

.why-header p {
  color: var(--text-light);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 40px;
}

.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px;
  position: relative;
  border-radius: var(--radius-md);
}

.why-item:hover .icon {
  transform: scale(1.15);
  color: #00c2c7;
}

.why-item:hover::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(120deg, #1f9aa5, #00c2c7);
  opacity: 0.08;
  z-index: -1;
}

.why-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  width: 1px;
  height: 60%;
  background: #e5e5e5;
}

.why-item img {
  width: 60px;
  margin-bottom: 15px;
}

.why-item:hover img {
  transform: scale(1.1);
}

.why-item h4 {
  margin-top: 10px;
  margin-bottom: 20px;
}

.why-item p {
  margin-top: 0;
  color: var(--text-light);
  font-size: var(--fs-sm);
}

/* MOBILE */
@media(max-width:768px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

@media(max-width:768px) {
  .why-item::after {
    display: none;
  }
}

.title-gradient {
  font-size: var(--fs-xl);
  font-weight: 700;
  background: linear-gradient(90deg, #1f9aa5, #00c2c7);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* CARD */
.premium-card {
  background: var(--white-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* IMAGE */
.car-img {
  height: var(--img-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(to bottom, #eef4f8, #ffffff);
  padding: 20px;
  text-align: center;
}

.car-img img {
  max-height: 100%;
  width: 100%;
  object-fit: contain;
  transition: var(--transition);
}

.car:hover .car-img img {
  transform: scale(1.05);
}

/* CONTENT */
.car-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px;
  text-align: center;
}

.car-content h3 {
  min-height: 48px;
  color: var(--color-primary);
}

/* INFO */
.car-info {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
  font-size: var(--fs-sm);
  color: #555;
  min-height: 24px;
}

/* FEATURE */
.car-feature {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: var(--fs-sm);
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
  margin: 10px 0;
  color: var(--text-light);
}

.car-feature span {
  display: flex;
  align-items: center;
}

.car-feature span:not(:last-child)::after {
  content: "";
  width: 6px;
  height: 6px;
  background: #cfd8dc;
  border-radius: 50%;
  margin-left: 12px;
  position: relative;
  top: 0;
}

/* FOOTER */
.car-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  flex-wrap: nowrap;
}

.car-footer .price {
  margin: 0;
  white-space: nowrap;
  font-size: var(--fs-sm);
  font-weight: var(--price-weight);
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  line-height: 1;
  position: relative;
  top: 1px;
}

/* DEFAULT (outline) */
.car-footer .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #1f9aa5;
  color: #fff;
  padding: 6px 10px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 12px;
  border: 1px solid #1f9aa5;
  transition: all 0.3s ease;
  cursor: pointer;
  height: 32px;
}

/* HOVER (solid) */
.car-footer .btn:hover {
  background: transparent;
  color: #1f9aa5;
  border: 1px solid #1f9aa5;
}

.price-main {
  color: var(--text-secondary);
  font-weight: bold;
}

.price-secondary {
  color: var(--text-secondary);
  font-weight: 1000;
  font-size: var(--fs-sm);
}

.section-title {
  text-align: center;
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  margin-top: 40px;
}

.section-title span {
  color: var(--color-primary);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: var(--fs-sm);
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

/* BLOG SECTION */
.blog-section {
  padding: var(--space-xl) var(--container-padding);
  background: var(--bg-blog);
  text-align: center;
}

/* TITLE */
.blog-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
}

.blog-title span {
  color: var(--color-primary);
}

/* SUBTITLE */
.blog-subtitle {
  max-width: 700px;
  margin: 10px auto 40px;
  color: var(--text-light);
  font-size: var(--fs-sm);
  line-height: 1.6;
}

/* CONTAINER */
.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* CARD */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  text-align: left;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* META */
.blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: var(--text-secondary);
  padding: 10px 15px;
}

/* TITLE */
.blog-card h3 {
  font-size: 16px;
  color: var(--color-primary);
  padding: 0 15px;
}

/* DESC */
.blog-card p {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  padding: 10px 15px 15px;
}

/* FOOTER SECTION */
.footer {
  background: #f5f7fa;
  padding: 60px 20px;
  border-top: 3px solid #1f9aa5;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 40px;
  align-items: flex-start;
}

/* LEFT */
.footer-left img {
  width: 240px;
  margin-bottom: 15px;
}

.footer-left p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ddd;
  color: #fff;
  font-size: 0;
  transition: 0.3s;
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}


.footer-social a:nth-child(1) {
  background: #3b5998;
}

.footer-social a:nth-child(2) {
  background: #000;
}

.footer-social a:nth-child(3) {
  background: #e1306c;
}

.footer-social a:hover {
  transform: scale(1.1);
}

/* CONTACT */
.footer-contact h3,
.footer-map h3 {
  margin-bottom: 15px;
  color: #333;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #444;
}

.contact-item .icon {
  width: 18px;
  height: 18px;
  display: flex;
  /* 🔥 biar center */
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item .icon svg {
  width: 100%;
  height: 100%;
  fill: #1f9aa5;
  /* 🔥 warna icon */
}

/* MAP */
.footer-map iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 10px;
}

.footer-copy {
  text-align: center;
  font-size: 13px;
  color: #777;
  margin-top: 20px;
  padding-bottom: 10px;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

section {
  width: 100%;
  max-width: 100%;
  border-radius: 0 !important;
}

/* =========================
   MOBILE NAVBAR
========================= */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--color-primary);
  display: block;
  transition: 0.3s;
}

@media (max-width: 768px) {

  .topbar {
    position: fixed;
    top: 0;
    padding: 6px 12px;
    /* 🔥 lebih kecil */
  }

  .topbar .left {
    gap: 8px;
    /* 🔥 rapatkan */
  }

  .topbar .right {
    gap: 10px;
    /* 🔥 icon lebih dekat */
  }

  .topbar .item {
    font-size: 12px;
  }

  /* 🔥 sembunyikan text biar ringkas */
  .topbar .item span {
    display: none;
  }

  /* tampilkan hanya nomor */
  .topbar .left .item span {
    display: inline;
  }

  /* tapi sembunyikan text lain kalau ada */
  .topbar .left .item:not(:first-child) span {
    display: none;
  }

  .social {
    width: 16px;
    height: 16px;
  }

  /* sembunyikan menu desktop */
  .menu {
    position: absolute;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: 0.3s ease;
    z-index: 300;
  }

  .menu.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .menu li {
    width: 100%;
  }

  .menu a {
    display: block;
    width: 100%;
    font-size: 16px;
    color: var(--color-primary);
    padding: 10px 0;
  }

  /* tampilkan hamburger */
  .nav-toggle {
    display: flex;
  }

  /* kecilkan logo */
  .logo img {
    height: 45px;
  }

  /* button hilang di mobile */
  .btn-nav {
    display: none;
  }
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===============================
   HERO MOBILE OPTIMIZATION
=============================== */
@media (max-width: 768px) {

  /* TOPBAR */
  .topbar .right {
    display: flex !important;
    gap: 10px;
  }

  .topbar .left {
    font-size: 12px;
  }

  .topbar .left .item:nth-child(2) {
    display: none;
  }

  .topbar .right svg {
    width: 16px;
    height: 16px;
  }

  .topbar .container {
    flex-direction: row;
    justify-content: space-between;
  }

  .hero-premium {
    height: auto;
    min-height: 420px;
    padding: 40px 0 30px;
  }

  .hero-premium .container {
    padding: 0 16px;
  }

  .hero-content {
    max-width: 100%;
  }

  /* NAVBAR */
  .logo img {
    height: 70px;
    width: auto;
  }

  /* TITLE */
  .hero-title {
    font-size: 26px;
    line-height: 1.3;
  }

  .hero-small {
    font-size: 18px;
  }

  .hero-outline {
    font-size: 22px;
  }

  .hero-main {
    font-size: 26px;
  }

  .hero-accent {
    font-size: 22px;
  }

  /* TEXT ATAS */
  .top-link {
    font-size: 12px;
    margin-bottom: 10px;
  }

  /* FEATURES (ICON) */
  .hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 15px;
  }

  .feature-item {
    gap: 6px;
  }

  .feature-item p {
    font-size: 12px;
  }

  .feature-item .icon {
    width: 26px;
    height: 26px;
  }

  /* BUTTON */
  .btn-nav,
  .hero-btn {
    font-size: 13px;
    padding: 8px 16px;
  }

  /* TRUST */
  .about-grid {
    display: flex;
    flex-direction: column;
  }

  .about-content {
    order: 1;
  }

  .about-image {
    order: 2;
  }

  /* WHY */
  .why-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .why-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    text-align: center;
    max-width: 90%;
  }

  /* CTA */
  .cta-section {
    padding: 40px 0;
    margin-left: 0;
    margin-right: 0;
  }

  .cta-content {
    text-align: center;
    padding: 0 15px;
    /* kasih jarak isi, bukan section */
  }

  .cta-content p {
    margin: 0 auto 20px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    /* 🔥 tombol ke tengah */
    gap: 10px;
    width: 100%;
  }

  .cta-buttons a {
    width: auto;
    /* 🔥 ini kunci utama */
    min-width: 180px;
    /* biar konsisten */
    padding: 12px 20px;
    text-align: center;
  }

  /* FOOTER */
  /* GRID 1 kolom */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: left;
    /* 🔥 ubah dari center */
  }

  /* LOGO */
  .footer-left img {
    margin-bottom: 10px;
  }

  /* TEXT */
  .footer-left p {
    padding: 0;
    line-height: 1.7;
    max-width: 100%;
  }

  /* SOCIAL */
  .footer-social {
    justify-content: flex-start;
    /* 🔥 kiri */
    margin-top: 15px;
  }

  /* CONTACT TITLE */
  .footer-contact h3 {
    margin-top: 10px;
    margin-bottom: 15px;
  }

  /* CONTACT ITEM */
  .contact-item {
    justify-content: flex-start;
    /* 🔥 kiri */
    text-align: left;
    margin: 0 0 14px;
    gap: 10px;
  }

  /* ICON */
  .contact-item .icon {
    width: 20px;
    height: 20px;
  }

  /* TEXT */
  .contact-item p {
    font-size: 14px;
    line-height: 1.5;
  }
}