:root {
  --brand: #2f4230;
  /* primary green */
  --brand2: #6f9471;
  /* secondary green */
  --accent: #b18b4f;
  /* primary gold */
  --accent2: #cec2a6;
  /* secondary gold*/
  --bg: #ffffff;
  /* white */
  --muted: #f5f7f8;
  /* light gray */
  --littledark: #e0e0e0;
  /* little dark */
  --text: #1a1e1c;
  /* near-black */
  --muted2: #5b6160;
  /* muted gray */
  --radius: 12px;
  --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.2), 0 6px 6px rgba(0, 0, 0, 0.25);
}

/*
 * Nama Font-Family: The Seasons
 * Font Type: OpenType Font (.otf)
 */

/* 1. Regular (Reg) */
@font-face {
  font-family: "The Seasons";
  src: url("AMTC - ASSETS/Fonts/Fontspring-DEMO-theseasons-reg.otf")
    format("opentype");
  font-weight: 400;
  /* Regular */
  font-style: normal;
  font-display: swap;
}

/* 2. Bold (Bd) */
@font-face {
  font-family: "The Seasons";
  src: url("AMTC - ASSETS/Fonts/Fontspring-DEMO-theseasons-bd.otf")
    format("opentype");
  font-weight: 700;
  /* Bold */
  font-style: normal;
  font-display: swap;
}

/* 3. Italic (It) */
@font-face {
  font-family: "The Seasons";
  src: url("AMTC - ASSETS/Fonts/Fontspring-DEMO-theseasons-it.otf")
    format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* 4. Bold Italic (BdIt) */
@font-face {
  font-family: "The Seasons";
  src: url("AMTC - ASSETS/Fonts/Fontspring-DEMO-theseasons-bdit.otf")
    format("opentype");
  font-weight: 700;
  /* Bold Italic */
  font-style: italic;
  font-display: swap;
}

/* 5. Light (Lt) */
@font-face {
  font-family: "The Seasons";
  src: url("AMTC - ASSETS/Fonts/Fontspring-DEMO-theseasons-lt.otf")
    format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* 6. Light Italic (LtIt) */
@font-face {
  font-family: "The Seasons";
  src: url("AMTC - ASSETS/Fonts/Fontspring-DEMO-theseasons-ltit.otf")
    format("opentype");
  font-weight: 300;
  /* Light Italic */
  font-style: italic;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.text-balance {
  text-wrap: balance;
  font-family: "Montserrat";
}

#preloader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 1;
  visibility: visible;
  transition: opacity 1s ease-out, visibility 1s ease-out;
}

#preloader-wrapper.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-spinner {
  width: 80px;
  height: 80px;
  animation: spin 1.5s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn2 {
  width: 213px;
  height: 33px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.2rem 0.1rem;
  border-radius: 777px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
  margin-top: auto;
}

.btn-kontak {
  background: var(--brand);
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  font-family: Poppins;
}

.btn-kontak:hover,
.btn-kontak:focus-visible {
  filter: brightness(0.95);
  transform: translateY(-1.2px);
}

.btn-reservasi,
.btn-pemesanan {
  background: var(--brand);
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  font-family: Poppins;
}

.btn-reservasi:hover,
.btn-pemesanan:hover,
.btn-reservasi:focus-visible .btn-pemesanan:focus-visible {
  filter: brightness(0.95);
  transform: translateY(-1.4px);
}

.btn-outline {
  font-family: poppins;
  background: transparent;
  border-color: var(--brand);
  color: var(--brand);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--brand);
  color: #fff;
}

.btn-accent {
  font-family: Poppins;
  background: var(--brand);
  color: var(--muted);
  border-color: var(--brand);
}

.btn-accent:hover,
.btn-accent:focus-visible {
  filter: brightness(0.95);
  transform: translateY(-1.2px);
}

.btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background-color: var(--brand);
  color: white;
  transition: background-color 0.3s ease;
  border-radius: 999px;
  padding: 2px 3px 3px 40px;
  text-decoration: none;
  margin: 0px 0px 13px;
  font-size: 1.1rem;
  font-family: "Prompt", sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.btn-explore:hover {
  background-color: var(--accent);
}

.icon-wrapper {
  background-color: white;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrapper i {
  color: #2c2c2c;
  font-size: 0.9rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background-color: var(--accent);
  backdrop-filter: saturate(80%) blur(1px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  font-family: "The Seasons";
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--muted);
}

.brand-subname {
  font-family: "Montserrat";
  font-weight: 110;
  font-size: 0.84rem;
  color: var(--muted);
}

.brand-container {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-family: Poppins;
  font-size: 15px;
}

.site-nav ul {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
  gap: 1rem;
}

.site-nav ul a {
  position: relative;
  padding: 0.5rem 0.6rem;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
  font-weight: 500;
}

.site-nav ul a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--muted);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.site-nav ul a:hover::after,
.site-nav ul a:focus-visible::after {
  width: 100%;
}

/* styling Dropdown Menu            (NANTI BESOK)*/

@media (min-width: 950px) {
  .site-nav ul {
    display: flex;
    gap: 1rem;
  }
}

/* Mobile nav toggle */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--brand);
  border-radius: 8px;
  background: var(--accent);
}

.nav-bar {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .header-inner {
    min-height: 70px;
  }

  .brand-mark {
    width: 60px;
    height: 60px;
  }

  .brand {
    gap: 0.6rem;
  }
}

/* Mobile navigation when open */
@media (max-width: 950px) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(to right, #b18b4f, #cec2a6);
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    transition: all 0.2s ease;
    z-index: 30;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav.open {
    transform: scaleY(1);
    opacity: 1;
  }

  .site-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    order: 1;
    align-items: flex-start;
  }

  .site-nav ul a {
    color: var(--muted);
    padding: 10px 6px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
    display: block;
  }

  .site-nav ul a:hover,
  .site-nav ul a:focus-visible {
    background-color: rgba(255, 255, 255, 0.1);
  }

  .site-nav .btn {
    order: 2;
    margin-top: 0.5rem;
    margin-left: 0.5rem;
    margin-right: auto;
    width: fit-content;
    align-self: flex-start;
  }
}

@media (min-width: 950px) {
  .nav-toggle {
    display: none;
  }

  .site-nav ul {
    display: flex;
  }
}

/* Sections */
.section {
  padding: 56px 0;
}

.section-head {
  margin-bottom: 1.2rem;
  justify-content: center;
  text-align: center;
}

.section-head h2 {
  font-family: "The Seasons";
  font-weight: 700;
  font-size: clamp(1.4rem, 0.7rem + 1.8vw, 2rem);
  margin: 0 0 0.4rem;
  color: var(--brand);
}
/*section head fasilitas*/
.section-head-fasilitas {
  margin-bottom: 1.2rem;
  justify-content: center;
  text-align: center;
}

.section-head-fasilitas h2 {
  font-family: "The Seasons";
  font-weight: 700;
  font-size: clamp(1.4rem, 0.7rem + 1.8vw, 2rem);
  margin: 0 0 0.4rem;
}
/* Hero */
.hero {
  position: relative;
  padding: 64px 0;
  min-height: 80vh;
  overflow: hidden;
}

/* Hero Slider */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  width: 1080px;
  height: 660px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(60%);
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 100;
  pointer-events: none;
}

.nav-btn {
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  pointer-events: auto;
  outline: none;
  position: relative;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.nav-btn:hover,
.nav-btn:focus {
  background: rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.nav-btn:active {
  transform: scale(0.95);
  background: rgba(0, 0, 0, 0.6);
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 1;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero-text {
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 2rem;
  z-index: 3;
}

.hero-title {
  font-family: Poppins, Inter, system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin: 0 0 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin: 0 0 2rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.4;
  opacity: 0.95;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .hero-text {
    padding: 1rem;
  }

  .hero-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }

  .hero-subtitle {
    font-size: clamp(1rem, 4vw, 1.2rem);
  }

  .nav-btn {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
    z-index: 1002;
  }

  .slider-nav {
    padding: 0 1rem;
  }

  .hero-grid {
    max-width: 85%;
    padding: 0 1rem;
  }
}

/* Tablet responsive */
@media (max-width: 1024px) and (min-width: 769px) {
  .hero-grid {
    max-width: 75%;
    padding: 0 1.5rem;
  }
}

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.6rem;
  min-height: 80vh;
  max-width: 70%;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-copy {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-copy h1 {
  font-weight: 700;
  margin: 0 0 0.6rem;
  font-size: clamp(1.6rem, 1rem + 2.5vw, 2.4rem);
  color: white;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8), 1px 1px 3px rgba(0, 0, 0, 0.6);
  text-align: center;
  line-height: 1.2;
  margin-bottom: 16px;
}

.lead {
  font-family: sans-serif;
  font-size: clamp(0.98rem, 0.9rem + 0.5vw, 1.05rem);
  color: rgba(255, 255, 255, 0.95);
  margin: 0.4rem 0 1.2rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7), 1px 1px 2px rgba(0, 0, 0, 0.5);
  text-align: center;
  margin-bottom: 60px;
}

.hero-cta {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
  justify-content: center;
  align-items: center;
}

.hero-badges {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.badge {
  background: var(--muted);
  color: #2e3433;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.hero-media img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

/* Value propositions */
.vp {
  background-image: url("AMTC - ASSET BG/AMTC - BG PATTEN PUTIH.png");
}

.vp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.card {
  font-family: sans-serif;
  background: #fff;
  border: 1px solid #eceff0;
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow-md);
  opacity: 1;
  transform: none;
  transition: none;
}

.card .icon {
  width: 40px;
  height: 40px;
  color: var(--brand);
  margin-bottom: 0.6rem;
}

.card h3 {
  margin: 0 0 0.3rem;
  font-size: 1.02rem;
  font-weight: 700;
}

.card-raised {
  box-shadow: var(--shadow-md);
}

.card-head h3 {
  margin: 0;
}

.link {
  border-color: var(--accent);
  color: var(--brand);
  font-weight: 600;
  font-family: poppins;
  background: transparent;
}

.link:hover,
.link:focus-visible {
  color: #fff;
  background: var(--accent);
}

.link2 {
  border-color: var(--accent);
  color: var(--brand);
  font-weight: 600;
  font-family: poppins;
  background: transparent;
}

@media (min-width: 700px) {
  .vp-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .vp-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Tentang */
.about {
  background: url("AMTC - ASSET BG/Pattern 1.png");
}

.about-copy p {
  font-size: 1.1rem;
  font-family: sans-serif;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  align-items: center;
}

.about-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-copy-t1 {
  font-weight: 700;
  font-family: The Seasons;
  font-size: 1rem;
  color: #2b2b2b;
  display: inline-block;
  padding: 8px 16px;
  background-color: var(--bg);
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

.about-copy-t2 {
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 0.1rem;
  margin-top: 0;
}

.t1-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  line-height: normal;
  margin-bottom: 0.5rem;
}

.container-about-head {
  line-height: 1;
}

/* .slide-from-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.slide-from-right {
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
} */

/* .is-visible {
  opacity: 1;
  transform: translateX(0);
} */

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Paket */
/*.paket {
  background-image: url("AMTC - ASSET BG/AMTC - Background Putih.png");
}

.paket p {
  font-size: 1.1rem;
}

.desc-paket {
  color: #2e3433;
  font-family: "Montserrat";
} */

.cards-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.cards-4 .card {
  display: grid;
  gap: 0.4rem;
  padding: 10px;
}

.cards-4 .card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-inner-outline {
  border: 1px solid #b18b4f;
  height: 100%;
  width: 100%;
  padding: 1rem;
  display: grid;
  gap: 1rem;
  border-radius: 12px;
}

.card-inner-outline .card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.paket-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

@media (min-width: 700px) {
  .cards-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cards-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.section-cta {
  margin-top: 1rem;
  text-align: center;
}

/* Fasilitas */
.fasilitas {
  background: url("AMTC - ASSET BG/AMTC - Background Emas.png");
}

.facility-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  padding-left: 1rem;
}

.facility-grid li {
  list-style-type: none;
  position: relative;
  padding-left: 1.2rem;
  font-weight: 700;
  font-family: "Montserrat";
  font-style: normal;
}

.facility-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--brand);
}

@media (min-width: 700px) {
  .facility-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .facility-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Pricing & Booking */
.pricing {
  background-image: url("AMTC - ASSET BG/AMTC - BG PATTEN PUTIH 2.png");
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  align-items: flex-start;
}

.price-copy {
  padding-top: 2.8rem;
}

.price-copy h2 {
  font-family: "The Seasons";
  color: var(--brand);
}

.price-list {
  margin: 0.2rem 0 0.8rem;
  padding: 0;
  list-style: none;
}

.price-list li {
  padding: 0.3rem 0;
  font-family: "Montserrat";
}

.booking-form {
  background: #fff;
  border: 1px solid #eceff0;
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow-md);
  font-family: "Montserrat";
}

.booking-form h3 {
  margin: 0 0 0.6rem;
  font-size: 1.1rem;
}

.form-row {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.7rem;
}

input[type="text"],
input[type="tel"],
input[type="date"],
select {
  border: 1px solid #dfe4e6;
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  font: inherit;
  background: #fff;
  color: var(--text);
}

input:focus-visible,
select:focus-visible {
  outline: 2px solid color-mix(in oklab, var(--brand) 60%, white);
  outline-offset: 2px;
}

.form-note {
  color: #5b6160;
  font-size: 0.9rem;
}

.hidden {
  display: none !important;
}

@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================
          MODAL BOOKING (Versi 2 Kolom)
============================= */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 1rem;
}

.modal-overlay.modal-visible {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  position: relative;
  max-width: 850px; /* Diperbesar untuk 2 kolom */
  width: 100%;
  max-height: 90vh;
  overflow: hidden; /* Penting untuk border-radius */
  transform: scale(0.9);
  transition: transform 0.3s ease;
  padding: 0; /* Padding di-nol-kan, diatur di child */
}

.modal-overlay.modal-visible .modal-content {
  transform: scale(1);
}

.modal-grid {
  display: grid;
  grid-template-columns: 4fr 5fr; /* 2 kolom: 40% gambar, 50% form */
}

.modal-image {
  width: 100%;
  height: 100%;
  min-height: 500px; /* Pastikan gambar punya tinggi */
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Membuat gambar mengisi area */
}

.modal-form-area {
  padding: 2.5rem 2rem 2rem 2rem;
  position: relative;
  overflow-y: auto; /* Area form bisa di-scroll jika perlu */
  max-height: 90vh;
}

/* Info Pricing di atas form */
.modal-info {
  margin-bottom: 1.5rem;
}

.hubungi-dekorasi {
  display: block;
  margin: 0 auto 12px 0;
  width: 80px;
  height: auto;
  opacity: 0.9;
}

.modal-info img {
  width: 60px;
  height: auto;
  margin-bottom: 0.6rem;
}

.modal-info h2 {
  font-family: "The Seasons";
  color: var(--brand);
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.modal-info .price-list {
  list-style: none;
  padding: 0;
  font-family: "Montserrat";
  margin: 0.2rem 0 1.2rem;
  font-size: 0.95rem;
}

.modal-info .price-list li {
  padding: 0.2rem 0;
}

.modal-info .link2 {
  font-family: poppins;
  font-weight: 600;
  color: var(--brand);
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-size: 0.9rem;
}
.modal-info .link2:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

/* Tombol Close di dalam area form */
.modal-close {
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--muted2);
  cursor: pointer;
  padding: 5px;
  line-height: 1;
}

.modal-close:hover {
  color: var(--text);
}

/* Style form di dalam modal */
.modal-content .booking-form {
  margin-top: 0;
  padding: 0;
  border: none;
  box-shadow: none;
}

/* === RESPONSIVE (PENTING!) === */
@media (max-width: 768px) {
  .modal-grid {
    grid-template-columns: 1fr; /* Jadi 1 kolom di HP */
  }

  .modal-image {
    display: none; /* Sembunyikan gambar di HP */
  }

  .modal-form-area {
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
  }
}

/* Closing CTA */
.closing-cta {
  position: relative;
  padding: 2rem;
  margin: 0;
  overflow: hidden;
}

.closing-background {
  position: relative;
  width: 100%;
  min-height: 60vh;
  background-image: url("AMTC - ASSET BG/AMTC - Background Foto.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  margin: 2rem 0;
  overflow: hidden;
}

.closing-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.closing-content {
  max-width: 800px;
  width: 100%;
  text-align: center;
}

.closing-text {
  text-align: center;
}

.closing-quote {
  font-family: Poppins, Inter, system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(1.1rem, 0.7rem + 1.5vw, 1.6rem);
  margin: 0 0 1rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  z-index: 1000;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
}

/* Responsive Design for Closing CTA */
@media (max-width: 768px) {
  .closing-background {
    min-height: 50vh;
    margin: 1rem 0;
    border-radius: 15px;
  }

  .closing-overlay {
    padding: 1.5rem;
  }

  .closing-content {
    max-width: 100%;
  }

  .closing-quote {
    font-size: clamp(1rem, 0.8rem + 1vw, 1.4rem);
    margin-bottom: 0.8rem;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 1.5rem;
    right: 1.5rem;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .closing-background {
    min-height: 45vh;
    margin: 0.5rem 0;
    border-radius: 10px;
  }

  .closing-overlay {
    padding: 1rem;
  }

  .closing-quote {
    font-size: clamp(0.9rem, 0.7rem + 0.8vw, 1.2rem);
  }
}

/* Footer */
.site-footer {
  background-image: url("AMTC - ASSET BG/AMTC - Background Hijau.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-top: 1px solid #e9eded;
  width: 100%;
}

.brand-footer {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand-mark-footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  /* Tetapkan ukuran agar tata letak tidak berantakan, atau bisa dihapus jika ingin mengikuti ukuran asli gambar */
  width: 85px;
  height: 85px;
}

.brand-mark-footer img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 24px 0;
  color: var(--muted);
}

.footer-grid h4 {
  display: inline-block;
  position: relative;
  font-weight: 600;
  margin-bottom: 0.5rem;
  padding-bottom: 0.4rem;
  font-family: Poppins;
  font-size: 15px;
}

.footer-grid li {
  font-size: 14px;
}

.footer-grid h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 110%;
  height: 6px;
  background-color: var(--accent);
}

.footer-alamat {
  font-family: "Montserrat";
}

.footer-list,
.footer-links,
.footer-fasilitas,
.footer-paket,
.footer-wahana {
  padding: 0;
  margin: 0.3rem 0 0;
  list-style: none;
  font-family: Poppins;
  font-weight: 300;
}

.footer-links li,
.footer-fasilitas li,
.footer-wahana li,
.footer-paket li,
.footer-list li {
  list-style: none;
  margin-bottom: 4px;
}

.footer-links a:hover,
.footer-fasilitas a:hover,
.footer-wahana a:hover,
.footer-paket a:hover,
.footer-links a:focus-visible {
  text-decoration: underline;
}

.footer-copyright {
  padding: 12px 0 24px;
  border-top: 1px dashed #e4e9ea;
  text-align: center;
  color: var(--muted);
  font-family: "Montserrat";
}

.desc-foot {
  color: var(--muted);
  font-family: "Montserrat";
  font-weight: 500;
}

.social-icons {
  display: flex;
  padding-top: 10px;
  gap: 10px;
}

.fa-map-location-dot {
  font-size: 28px;
  color: var(--brand);
}

.fa-map-location-dot:hover {
  font-size: 28px;
  color: var(--accent);
}

.fa-envelope,
.fa-instagram,
.fa-location-dot {
  font-size: 17px;
  color: var(--muted);
}

.fa-envelope:hover,
.fa-instagram:hover,
.fa-location-dot:hover {
  font-size: 19px;
  color: var(--accent);
}

/* Tooltip box untuk icon */
.tooltip-container {
  position: relative;
  display: inline-block;
}

.tooltip-container::after {
  content: attr(data-tooltip);
  background-color: var(--accent);
  color: white;
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 10;
  pointer-events: none;
}

.tooltip-container::before {
  content: "";
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  border-width: 5px;
  border-style: solid;
  border-color: var(--accent) transparent transparent transparent;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 11;
  pointer-events: none;
}

.tooltip-container:hover::after,
.tooltip-container:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  font-family: Poppins;
}
@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
  }
}

/* 
  *
  *
  FASILITAS PAGE
  *
  *
  */

/* Banner Fasilitas Page */

.page-banner-fasilitas {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url("Banners/Fasilitas.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  isolation: isolate;
}

.page-banner-fasilitas::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.page-banner-fasilitas .hero-content-fasilitas {
  position: relative;
  z-index: 2;
  color: white;
  padding: 8px;
  max-width: 900px;
  width: 100%;
}

.hero-banner-title-fasilitas {
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 85px;
  margin: 0 0 1rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-banner-fasilitas-breadcrumbs {
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-top: 1rem;
}

.page-banner-fasilitas-breadcrumbs a {
  color: white;
  transition: color 0.3s ease;
}

.page-banner-fasilitas-breadcrumbs .separator {
  margin: 0 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.current-page-link-fasilitas {
  text-decoration: underline;
  color: white;
}

@media (max-width: 768px) {
  .page-banner-fasilitas {
    height: 450px;
  }
}

/* Wahana dan Fasilitas (fasilitas) */
.section-head-wahana {
  margin-bottom: 1.2 rem;
  justify-content: center;
  text-align: center;
}

.text-balance-Wahana {
  margin-top: 0;
  font-family: "The Seasons";
  font-size: 40px;
  color: var(--brand);
}
.wahana-aktifitas {
  background-color: var(--muted);
}

.wahana-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr); /* Mobile: 1 kolom */
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (min-width: 700px) {
  .wahana-grid {
    grid-template-columns: repeat(2, 1fr); /* Tablet: 2 kolom */
  }
}

@media (min-width: 992px) {
  .wahana-grid {
    grid-template-columns: repeat(3, 1fr); /* Desktop: 3 kolom (3 3 3) */
  }
}

.wahana-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  padding-bottom: 1.5rem;
}

.wahana-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.card-media {
  position: relative;
  height: 180px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}

.card-icon-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: var(--bg);
  color: var(--brand);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.wahana-card h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--brand);
  margin: 0 1.5rem 0.5rem;
}

.wahana-card p {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  margin: 0 1.5rem;
  flex-grow: 1;
}

.wahana-cta {
  margin-top: 2rem;
}

.hidden-item {
  display: none;
}

.wahana-dekorasi {
  display: block;
  margin: 0 auto 12px auto;
  width: 80px;
  height: auto;
  opacity: 0.9;
}

@media (max-width: 600px) {
  .wahana-dekorasi {
    width: 45px;
  }
}

/* 
  *
  *
  GALERI PAGE
  *
  *
  */

/* Banner Galeri (galeri) */
.page-banner-galeri {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url("Banners/Gallery.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  isolation: isolate;
}

.page-banner-galeri::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.page-banner-galeri .hero-content-galeri {
  position: relative;
  z-index: 2;
  color: white;
  padding: 8px;
  max-width: 900px;
  width: 100%;
}

.hero-banner-title-galeri {
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 85px;
  margin: 0 0 1rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-banner-galeri-breadcrumbs {
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-top: 1rem;
}

.page-banner-galeri-breadcrumbs a {
  color: white;
  transition: color 0.3s ease;
}

.page-banner-galeri-breadcrumbs .separator {
  margin: 0 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.current-page-link-galeri {
  text-decoration: underline;
  color: white;
}

@media (max-width: 768px) {
  .page-banner-galeri {
    height: 450px;
  }
}

/* --- Galeri Section --- */

.gallery-section {
  background-image: url("AMTC - ASSET BG/Pattern 2.png");
}

.section-head-galeri {
  justify-content: center;
  text-align: center;
}

.text-balance-galeri {
  margin-top: 0;
  font-family: "The Seasons";
  font-size: 55px;
  color: var(--brand);
}

/* ======= GRID UTAMA - DESKTOP (3x3 Uniform) ======= */
.gallery-grid-fixed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 1.5rem;
}

.gallery-item-fixed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  height: 300px;
  grid-column: span 1;
}

.gallery-item-fixed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ======= TABLET (max 992px) - 2 Kolom ======= */
@media (max-width: 992px) {
  .gallery-grid-fixed {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item-fixed {
    height: 250px;
    grid-column: span 1;
  }
}

/* ======= MOBILE (max 600px) - 1 Kolom (Stack) ======= */
@media (max-width: 600px) {
  .gallery-grid-fixed {
    grid-template-columns: 1fr;
  }

  .gallery-item-fixed {
    grid-column: span 1 !important;
    height: 200px;
  }

  .text-balance-galeri {
    font-size: 32px;
  }
}
.galeri-dekorasi {
  display: block;
  margin: 0 auto 12px auto;
  width: 80px;
  height: auto;
  opacity: 0.9;
}

@media (max-width: 600px) {
  .galeri-dekorasi {
    width: 45px;
  }
}

/* Styling Tombol Zoom Overlay (Galeri) */
.gallery-item-fixed {
  position: relative;
}

.zoom-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  cursor: pointer;
}

.gallery-item-fixed:hover .zoom-overlay {
  opacity: 1;
}

.zoom-btn {
  background: var(--brand);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, background 0.2s ease;
}

.zoom-btn:hover {
  background: color-mix(in srgb, var(--brand) 80%, black);
  transform: scale(1.05);
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: var(--radius);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.lightbox-close:hover {
  opacity: 1;
}

/* Testimoni section (Galeri) */
.testimonial-section {
  padding: 50px 0;
  background: #f7f7f7;
}

.section-head-left {
  margin-bottom: 2rem;
  text-align: left;
  margin-left: 80px;
}

.testimonial-heading1 {
  display: inline-block;
  background-color: #cfcece;
  border-radius: 8px;
  padding: 8px 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--brand);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  text-transform: capitalize;
  margin-bottom: 0.5rem;
}

.testimonial-heading2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--brand);
  margin: 0;
  max-width: 600px;
}

/* Slider Wrapper (testimoni)*/
.testimonial-slider {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  width: 100%;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 20px;
}

.testimonial-card {
  width: calc((100% - 40px) / 3);
  max-width: 280px;
  height: auto;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: #fff;
  position: relative;
}

.testimonial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .testimonial-card {
    width: calc((100% - 20px) / 2);
  }
}

@media (max-width: 768px) {
  .testimonial-track {
    justify-content: flex-start;
  }

  .testimonial-card {
    width: 85vw;
    max-width: 300px;
    height: auto;
  }
}

/* gambar slider (galeri) */
.image-slider-section {
  padding: 1rem;
  background: var(--bg, #fff);
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}

.slider-track {
  display: flex;
  align-items: center;
  transition: transform 0.8s ease-in-out;
}

.slider-track img {
  flex: 0 0 calc((100% / 4) - 1rem);
  max-width: 300px;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  margin-right: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Efek gradasi kiri-kanan */
.image-slider::before,
.image-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.image-slider::before {
  left: 0;
  background: linear-gradient(to right, var(--bg, #fff), transparent);
}

.image-slider::after {
  right: 0;
  background: linear-gradient(to left, var(--bg, #fff), transparent);
}

/* Responsif */
@media (max-width: 1200px) {
  .slider-track img {
    flex: 0 0 calc((100% / 3) - 1rem);
    max-width: 240px;
    height: 180px;
  }
}

@media (max-width: 768px) {
  .slider-track img {
    flex: 0 0 calc((100% / 2) - 1rem);
    max-width: 180px;
    height: 140px;
  }
}

@media (max-width: 480px) {
  .slider-track img {
    flex: 0 0 100%;
    max-width: 100%;
    height: 120px;
  }
}

/* 
  *
  *
  PROMO PAGE
  *
  *
  */

/* Banner Promo Page */

.page-banner-promo {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url("Banners/Promo.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  isolation: isolate;
}

.page-banner-promo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.page-banner-promo .hero-content-promo {
  position: relative;
  z-index: 2;
  color: white;
  padding: 8px;
  max-width: 900px;
  width: 100%;
}

.hero-banner-title-promo {
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 85px;
  margin: 0 0 1rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-banner-promo-breadcrumbs {
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-top: 1rem;
}

.page-banner-promo-breadcrumbs a {
  color: white;
  transition: color 0.3s ease;
}

.page-banner-promo-breadcrumbs .separator {
  margin: 0 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.current-page-link-promo {
  text-decoration: underline;
  color: white;
}

@media (max-width: 768px) {
  .page-banner-promo {
    height: 450px;
  }
}

/* Promo Section */
.promo-section {
  background-color: #ffffff;
  padding: 100px 20px;
  text-align: center;
}

.promo-head {
  max-width: 700px;
  margin: 0 auto;
}

.promo-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 10px;
  font-family: "The Seasons";
}

.promo-description {
  color: #777;
  font-size: 1.1rem;
  font-style: italic;
}

/* 
*
* PAKET PAGE
*
*/

/* Banner Paket page */
.page-banner-paket {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url("Banners/Paket.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  isolation: isolate;
}

.page-banner-paket::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.page-banner-paket .hero-content-paket {
  position: relative;
  z-index: 2;
  color: white;
  padding: 8px;
  max-width: 900px;
  width: 100%;
}

.hero-banner-title-paket {
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 85px;
  margin: 0 0 1rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-banner-paket-breadcrumbs {
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-top: 1rem;
}

.page-banner-paket-breadcrumbs a {
  color: white;
  transition: color 0.3s ease;
}

.page-banner-paket-breadcrumbs .separator {
  margin: 0 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.current-page-link-paket {
  text-decoration: underline;
  color: white;
}

@media (max-width: 768px) {
  .page-banner-paket {
    height: 450px;
  }
}

/* Paket (Paket) */
.paket-section {
  background-color: #f9f9f9;
}

.paket-head {
  text-align: center;
  margin-bottom: 30px;
}

.paket-title {
  font-size: 2rem;
  font-family: "The Seasons";
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  margin-top: 0;
}

.paket-subtitle {
  color: #666;
  font-size: 1rem;
}

/* ==== GRID 2 PER BARIS ==== */
.paket-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  justify-content: center;
}

.paket-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 570px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.paket-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.paket-img {
  width: 100%;
  aspect-ratio: 570 / 810;
  object-fit: cover;
  display: block;
}

.paket-desc {
  padding: 20px;
  text-align: center;
}

.paket-desc h3 {
  font-size: 1.25rem;
  color: #222;
  margin-top: 2px;
  margin-bottom: 8px;
  font-family: "Montserrat";
}

.paket-desc p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
  font-family: sans-serif;
}

.paket-grid > .paket-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  justify-self: center;
}

/* ==== Responsive ==== */
@media (max-width: 900px) {
  .paket-grid {
    grid-template-columns: 1fr;
  }

  .paket-grid > .paket-card:last-child:nth-child(odd) {
    grid-column: auto;
    justify-self: center;
  }
}

.paket-dekorasi {
  display: block;
  margin: 0 auto 12px auto;
  width: 80px;
  height: auto;
  opacity: 0.9;
}

@media (max-width: 600px) {
  .paket-dekorasi {
    width: 45px;
  }
}
