/* ====== FONT GOOGLE ====== */
@import url("https://fonts.googleapis.com/css2?family=Ibarra+Real+Nova:wght@400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap");

/* ====== WARNA DAN PENGATURAN GLOBAL ====== */
:root {
  --brand-color: #512810;
  --button-color: #a86a2d;
  --button-hover: #8b5522;
  --background-start: #fef5d7;
  --background-end: #f0dabc;
  --surface: #ffffff;
}

/* ====== RESET STYLE ====== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  color: var(--brand-color);
  background: linear-gradient(
    90deg,
    var(--background-start) 0%,
    var(--background-end) 100%
  );
}

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

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

button {
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
}

.container {
  width: 100%;
  margin: 0;
}

/* ====== HEADER SECTION ====== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: #ffffff;
}

.site-header .container.header-inner {
  width: 100%;
  max-width: none;
  height: 127px;
  margin: 0;
  padding: 0 60px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* ====== LOGO KIRI ====== */
.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo img {
  width: 120px;
  height: auto;
}

/* ====== NAVIGASI UTAMA ====== */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

/* Posisi menu dibuat sama seperti Home GW Gessang */
.nav-list li:nth-child(1) {
  transform: translateX(-125px);
}

.nav-list li:nth-child(2) {
  transform: translateX(-75px);
}

.nav-list li:nth-child(3) {
  transform: translateX(-25px);
}

.nav-list li:nth-child(4) {
  transform: translateX(25px);
}

.nav-list li:nth-child(5) {
  transform: translateX(75px);
}

.nav-list li:nth-child(6) {
  transform: translateX(125px);
}

.nav-list a {
  position: relative;
  color: var(--brand-color);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.25;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.3s ease;
}

/* Garis bawah saat menu disentuh mouse */
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 1px;
  background: var(--brand-color);
  transition: width 0.3s ease;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--button-color);
}

.nav-list a:hover::after {
  width: 100%;
}

/* Menu Personal Colour dibuat dua baris */
.nav-list li:nth-child(3) a {
  display: block;
  width: 240px;
  text-align: center;
  white-space: normal;
}

.nav-list li:nth-child(3) a::after {
  left: 50%;
  transform: translateX(-50%);
}

.nav-list li:nth-child(3) a:hover::after {
  width: 90%;
}

/* Menu aktif */
.nav-list a.active {
  color: var(--brand-color);
  font-weight: 800;
}

.nav-list a.active::after {
  width: 100%;
}

/* ====== ICON KANAN HEADER ====== */
.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-icons a,
.search-btn,
.home-account-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  transition: transform 0.2s ease;
}

.header-icons a:hover,
.search-btn:hover,
.home-account-btn:hover {
  transform: translateY(-2px);
}

.header-icons img,
.home-account-btn img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

/* ====== TOMBOL HAMBURGER ====== */
.menu-toggle {
  display: none;
  width: 30px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle span {
  display: block;
  height: 3px;
  border-radius: 999px;
  background: var(--brand-color);
}

/* ====== KOTAK PENCARIAN ====== */
.search-box {
  position: fixed;
  top: 105px;
  right: 70px;
  z-index: 999;

  display: none;
  align-items: center;
  gap: 12px;

  width: 360px;
  height: 54px;
  padding: 0 18px;

  background: #ffffff;
  border: 2px solid var(--brand-color);
  border-radius: 100px;
}

.search-box.active {
  display: flex;
}

.search-box input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: var(--brand-color);
}

.search-box button {
  font-size: 28px;
  color: var(--brand-color);
}

/* ====== DROPDOWN AKUN ====== */
.home-account-dropdown {
  position: fixed;
  top: 145px;
  right: 48px;
  z-index: 1100;

  display: none;
  width: 375px;
  padding: 34px 25px 32px;

  background: #ffffff;
  border-radius: 24px;
  box-shadow:
    7px 8px 0 rgba(255, 238, 191, 0.65),
    0 12px 30px rgba(81, 40, 16, 0.08);
}

.home-account-dropdown.active {
  display: block;
}

/* ====== NAMA AKUN ATAU LOGIN / SIGN UP ====== */
.home-account-user {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 19px;
  color: var(--brand-color);
}

.home-account-user img {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  object-fit: contain;
}

.home-account-user-data {
  min-width: 0;
}

.home-account-user strong {
  color: var(--brand-color);
  font-size: 23px;
  font-weight: 800;
  line-height: 1.2;
}

.home-account-user-data p {
  margin: 2px 0 0;
  color: var(--brand-color);
  font-size: 16px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.home-account-user:hover strong {
  color: var(--button-color);
}

/* ====== MENU DI DALAM DROPDOWN AKUN ====== */
.home-account-menu {
  width: 100%;
  min-height: 56px;

  display: flex;
  align-items: center;
  gap: 18px;

  color: var(--brand-color);
  font-size: 23px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.home-account-menu:hover {
  color: var(--button-color);
}

.home-account-menu img {
  width: 31px;
  height: 31px;
  flex-shrink: 0;
  object-fit: contain;
}

button.home-account-menu {
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.is-hidden {
  display: none !important;
}

/* ====== ISI HALAMAN KOSONG ====== */
.page-content {
  min-height: calc(100vh - 127px);
  background: linear-gradient(
    90deg,
    var(--background-start) 0%,
    var(--background-end) 100%
  );
}

/* ====== HALAMAN MODEL ====== */
.model-section {
  width: 100%;
  min-height: calc(100vh - 127px);
}


/* ====== MODEL PRICELIST ====== */
.model-pricelist-section {
  width: 100%;
  min-height: calc(100vh - 127px);
  padding: 55px 90px 90px;
}

.model-page-title {
  margin: 0;

  color: var(--brand-color);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}


/* ====== LAYOUT MODEL PRICELIST ====== */
.model-pricelist-layout {
  width: 100%;
  max-width: 1350px;
  margin: 55px auto 0;

  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  align-items: center;
  justify-content: center;
  gap: 70px;
}


/* ====== BEFORE DAN AFTER ====== */
.model-photo-item {
  text-align: center;
}

.model-photo-item h2 {
  margin-bottom: 25px;

  color: var(--brand-color);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
}

.model-photo-box {
  width: 100%;
  height: 500px;

  overflow: hidden;

  border-radius: 42px;
  background: #ffffff;
}


/* ====== VIDEO MODEL ====== */
.model-photo-box video {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center;
}


/* ====== CARD DAFTAR HARGA ====== */
.model-price-card {
  width: 100%;
  min-height: 470px;
  padding: 14px 45px 35px;

  display: flex;
  flex-direction: column;
  align-items: center;

  background: #ffffff;
  border-radius: 28px;

  text-align: center;
}

.model-price-card-title {
  width: 100%;
  min-height: 38px;
  padding: 4px 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #8b4718;
  border-radius: 100px;

  color: #ffffff;
  font-family: "Ibarra Real Nova", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
}

.model-price-list {
  width: 100%;
  flex: 1;

  display: flex;
  flex-direction: column;
  justify-content: space-evenly;

  padding: 15px 20px;
}

.model-price-list p {
  color: var(--brand-color);
  font-size: 25px;
  font-weight: 800;
  line-height: 1.25;
}

.model-certificate-text {
  margin-top: auto;

  color: var(--brand-color);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.25;
}


/* ====== JUDUL MODEL MEN DAN WOMEN ====== */
.model-booking-title-section {
  width: 100%;
  min-height: 120px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;
}

.model-booking-title-section h2 {
  margin: 0;

  color: var(--brand-color);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}


/* ====== BAGIAN PILIH PAKET MODEL ====== */
.model-package-section {
  width: 100%;
  min-height: 700px;
  padding: 90px 150px 120px;
}


/* ====== GRID PAKET MODEL ====== */
.model-package-grid {
  width: 100%;
  max-width: none;
  margin: 0;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 105px 200px;
}


/* ====== CARD PAKET MODEL ====== */
.model-package-card {
  width: 100%;
  min-height: 190px;
  padding: 14px 55px 25px;

  display: flex;
  flex-direction: column;
  align-items: center;

  background: #ffffff;
  border-radius: 28px;

  box-shadow:
    0 20px 25px rgba(81, 40, 16, 0.15);

  text-align: center;
}

.model-package-card h3 {
  width: 100%;
  min-height: 37px;
  padding: 4px 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #8b4718;
  border-radius: 100px;

  color: #ffffff;
  font-family: "Ibarra Real Nova", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}

.model-package-card p {
  margin-top: 18px;

  color: var(--brand-color);
  font-size: 27px;
  font-weight: 800;
  line-height: 1.2;
}


/* ====== TOMBOL BOOKING MODEL ====== */
.model-booking-btn {
  min-width: 145px;
  min-height: 40px;
  margin-top: 20px;
  padding: 6px 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--button-color);
  border-radius: 6px;

  color: #ffffff;
  font-size: 19px;
  font-weight: 800;
  line-height: 1;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.model-booking-btn:hover {
  background: var(--button-hover);
  transform: translateY(-2px);
}

/* ====== RESPONSIVE LAPTOP ====== */
@media (max-width: 1350px) {
  .site-header .container.header-inner {
    position: relative;
    height: 95px;
    padding: 0 48px;
  }

  .brand-logo img {
    width: 90px;
  }

  /* Menu desktop disembunyikan */
  .site-nav {
    display: none;
  }

  /* Menu tampil setelah hamburger diklik */
  .site-nav.is-open {
    position: absolute;
    top: 95px;
    right: 48px;
    left: auto;
    z-index: 999;

    display: flex;
    width: auto;
    padding: 18px 26px;

    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(81, 40, 16, 0.18);
  }

  .site-nav.is-open .nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }

  /* Posisi menu desktop dikembalikan normal */
  .site-nav.is-open .nav-list li:nth-child(1),
  .site-nav.is-open .nav-list li:nth-child(2),
  .site-nav.is-open .nav-list li:nth-child(3),
  .site-nav.is-open .nav-list li:nth-child(4),
  .site-nav.is-open .nav-list li:nth-child(5),
  .site-nav.is-open .nav-list li:nth-child(6) {
    transform: none;
  }

  .site-nav.is-open .nav-list a {
    display: block;
    width: auto;
    padding: 0;
    background: transparent;
    color: var(--brand-color);
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
  }

  .site-nav.is-open .nav-list li:nth-child(3) a {
    width: 230px;
    line-height: 1.3;
    white-space: normal;
  }

  .site-nav.is-open .nav-list a.active {
    font-weight: 800;
  }

  .menu-toggle {
    display: flex;
  }

  .header-icons {
    gap: 18px;
  }

  .header-icons img,
  .home-account-btn img {
    width: 28px;
    height: 28px;
  }

  .home-account-dropdown {
    top: 112px;
    right: 48px;
    width: 390px;
    padding: 36px 28px 34px;
  }

  .home-account-user img {
    width: 48px;
    height: 48px;
  }

  .home-account-user strong {
    font-size: 24px;
  }

  .home-account-menu {
    min-height: 60px;
    font-size: 23px;
  }

  .page-content {
    min-height: calc(100vh - 95px);
  }
}

/* ====== RESPONSIVE TABLET ====== */
@media (max-width: 900px) {
  .site-header .container.header-inner {
    height: 92px;
    padding: 0 24px;
    gap: 15px;
  }

  .brand-logo img {
    width: 78px;
  }

  .site-nav.is-open {
    top: 92px;
    left: 20px;
    right: 20px;
    width: auto;
    padding: 20px;
    border-radius: 20px;
  }

  .site-nav.is-open .nav-list {
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
  }

.site-nav.is-open .nav-list a {
  width: 100%;
  padding: 5px 14px;

  background: transparent;
  border-radius: 0;

  color: var(--brand-color);
  font-size: 14px;
  text-align: center;
  white-space: normal;
}
  .site-nav.is-open .nav-list li:nth-child(3) a {
    width: 100%;
  }

  .header-icons {
    gap: 12px;
  }

  .header-icons img,
  .home-account-btn img {
    width: 24px;
    height: 24px;
  }

  .home-account-dropdown {
    top: 108px;
    right: 24px;
    width: min(390px, calc(100% - 48px));
  }

  .page-content {
    min-height: calc(100vh - 92px);
  }
}

/* ====== RESPONSIVE MOBILE ====== */
@media (max-width: 520px) {
  .site-header .container.header-inner {
    height: 82px;
    padding: 0 15px;
    gap: 8px;
  }

  .brand-logo img {
    width: 66px;
  }

  .site-nav.is-open {
    top: 82px;
    left: 12px;
    right: 12px;
    padding: 15px;
  }

  .site-nav.is-open .nav-list {
    gap: 8px;
  }

  .site-nav.is-open .nav-list a {
    padding: 10px 12px;
    font-size: 12px;
  }

  .header-icons {
    gap: 10px;
  }

  .header-icons img,
  .home-account-btn img {
    width: 22px;
    height: 22px;
  }

  .menu-toggle {
    width: 27px;
    height: 20px;
  }

  .search-box {
    top: 92px;
    left: 15px;
    right: 15px;
    width: auto;
  }

  .home-account-dropdown {
    top: 95px;
    right: 15px;
    left: 15px;
    width: auto;
    padding: 28px 22px 26px;
  }

  .home-account-user {
    gap: 12px;
    margin-bottom: 16px;
  }

  .home-account-user img {
    width: 44px;
    height: 44px;
  }

  .home-account-user strong {
    font-size: 21px;
  }

  .home-account-menu {
    min-height: 55px;
    gap: 16px;
    font-size: 20px;
  }

  .home-account-menu img {
    width: 28px;
    height: 28px;
  }

  .page-content {
    min-height: calc(100vh - 82px);
  }
}

/* ====== BADGE WISHLIST DAN CART MODEL ====== */

.wishlist-link,
.cart-link {
  position: relative;
}

.wishlist-count-badge,
.cart-count-badge {
  position: absolute;
  top: -8px;
  right: -9px;

  min-width: 20px;
  height: 20px;
  padding: 0 5px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #e84c3d;
  border: 2px solid #ffffff;
  border-radius: 100px;

  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;

  pointer-events: none;
}

.wishlist-count-badge:not(.is-hidden),
.cart-count-badge:not(.is-hidden) {
  animation: modelBadgePop 0.3s ease;
}

@keyframes modelBadgePop {
  0% {
    transform: scale(0.5);
  }

  70% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

/* ==================================================
   RUNWAY EDITORIAL MOTION — MODEL
================================================== */

/* ====== BACKGROUND DEKORASI HALUS ====== */

.model-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.model-section::before,
.model-section::after {
  content: "";
  position: absolute;
  z-index: -1;

  width: 450px;
  height: 450px;

  border-radius: 50%;
  pointer-events: none;
  filter: blur(22px);
}

.model-section::before {
  top: -210px;
  left: -180px;

  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0)
  );

  animation: modelGlowLeft 9s
    ease-in-out infinite alternate;
}

.model-section::after {
  right: -200px;
  bottom: -240px;

  background: radial-gradient(
    circle,
    rgba(168, 106, 45, 0.19),
    rgba(168, 106, 45, 0)
  );

  animation: modelGlowRight 10s
    ease-in-out infinite alternate;
}


/* ====== JUDUL MODEL PRICELIST ====== */

.model-page-title {
  position: relative;
  opacity: 0;

  animation: modelTitleEnter 0.8s ease
    forwards;
}

.model-page-title::after {
  content: "";
  display: block;

  width: 0;
  height: 3px;
  margin: 13px auto 0;

  border-radius: 999px;

  background: linear-gradient(
    90deg,
    transparent,
    #a86a2d,
    transparent
  );

  animation: modelTitleLine 0.8s ease
    0.45s forwards;
}


/* ====== BEFORE DAN AFTER ====== */

.model-photo-item {
  opacity: 0;

  animation: modelPhotoEnter 0.85s
    cubic-bezier(0.22, 1, 0.36, 1)
    forwards;
}

.model-photo-item:nth-child(1) {
  animation-delay: 0.25s;
}

.model-photo-item:nth-child(2) {
  animation-delay: 0.4s;
}

.model-photo-item h2 {
  position: relative;
  display: inline-block;
}

.model-photo-item h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;

  width: 0;
  height: 2px;

  border-radius: 999px;
  background: var(--button-color);

  transform: translateX(-50%);

  transition: width 0.35s ease;
}

.model-photo-item:hover h2::after {
  width: 70%;
}


/* ====== FRAME VIDEO PREMIUM ====== */

.model-photo-box {
  position: relative;
  isolation: isolate;

  border: 1px solid rgba(81, 40, 16, 0.07);

  box-shadow:
    0 18px 42px rgba(81, 40, 16, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);

  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

.model-photo-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 14%;
  z-index: 2;

  width: 72%;
  height: 4px;

  border-radius: 999px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(168, 106, 45, 0.85),
    transparent
  );

  pointer-events: none;
}

.model-photo-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  z-index: 2;

  width: 65%;
  height: 100%;

  background: linear-gradient(
    110deg,
    transparent,
    rgba(255, 255, 255, 0.27),
    transparent
  );

  transform: skewX(-18deg);
  pointer-events: none;

  transition: left 0.85s ease;
}

.model-photo-box:hover {
  transform: translateY(-8px);

  border-color: rgba(168, 106, 45, 0.23);

  box-shadow:
    0 29px 58px rgba(81, 40, 16, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.model-photo-box:hover::after {
  left: 145%;
}

.model-photo-box video {
  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.45s ease;
}

.model-photo-box:hover video {
  transform: scale(1.025);
  filter: contrast(1.02) saturate(1.03);
}


/* ====== CARD DAFTAR HARGA ====== */

.model-price-card {
  position: relative;
  overflow: hidden;

  opacity: 0;

  border: 1px solid rgba(81, 40, 16, 0.07);

  box-shadow:
    0 20px 48px rgba(81, 40, 16, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);

  animation: modelPriceEnter 0.9s
    cubic-bezier(0.22, 1, 0.36, 1)
    0.5s forwards;

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.model-price-card::before {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -90px;

  width: 210px;
  height: 210px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(168, 106, 45, 0.12),
    rgba(168, 106, 45, 0)
  );

  pointer-events: none;
}

.model-price-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 29px 60px rgba(81, 40, 16, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}


/* ====== JUDUL CARD HARGA ====== */

.model-price-card-title,
.model-package-card h3 {
  position: relative;
  overflow: hidden;

  box-shadow:
    0 8px 18px rgba(81, 40, 16, 0.18);
}

.model-price-card-title::after,
.model-package-card h3::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;

  width: 65%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );

  transform: skewX(-20deg);

  transition: left 0.65s ease;
}

.model-price-card:hover
  .model-price-card-title::after,
.model-package-card:hover h3::after {
  left: 145%;
}


/* ====== DAFTAR HARGA MUNCUL BERTAHAP ====== */

.model-price-list p,
.model-certificate-text {
  opacity: 0;
  transform: translateY(16px);

  animation: modelTextEnter 0.55s ease
    forwards;
}

.model-price-list p:nth-child(1) {
  animation-delay: 0.75s;
}

.model-price-list p:nth-child(2) {
  animation-delay: 0.86s;
}

.model-price-list p:nth-child(3) {
  animation-delay: 0.97s;
}

.model-price-list p:nth-child(4) {
  animation-delay: 1.08s;
}

.model-certificate-text {
  animation-delay: 1.19s;
}


/* ====== JUDUL MODEL MEN & WOMEN ====== */

.model-booking-title-section {
  position: relative;
  overflow: hidden;

  box-shadow:
    inset 0 1px 0 rgba(81, 40, 16, 0.06),
    inset 0 -1px 0 rgba(81, 40, 16, 0.06);
}

.model-booking-title-section h2 {
  opacity: 0;

  animation: modelBookingTitleEnter 0.75s ease
    0.2s forwards;
}

.model-booking-title-section::after {
  content: "";
  position: absolute;
  left: -20%;
  bottom: 0;

  width: 20%;
  height: 3px;

  background: linear-gradient(
    90deg,
    transparent,
    #a86a2d,
    transparent
  );

  animation: modelTitleSweep 4.5s ease-in-out
    infinite;
}


/* ====== CARD PAKET MODEL ====== */

.model-package-card {
  position: relative;
  overflow: hidden;

  opacity: 0;
  transform: translateY(30px) scale(0.98);

  border: 1px solid rgba(81, 40, 16, 0.06);

  animation: modelPackageEnter 0.7s
    cubic-bezier(0.22, 1, 0.36, 1)
    forwards;

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.model-package-card:nth-child(1) {
  animation-delay: 0.25s;
}

.model-package-card:nth-child(2) {
  animation-delay: 0.4s;
}

.model-package-card:nth-child(3) {
  animation-delay: 0.55s;
}

.model-package-card:nth-child(4) {
  animation-delay: 0.7s;
}

.model-package-card:hover {
  transform: translateY(-9px);

  border-color: rgba(168, 106, 45, 0.22);

  box-shadow:
    0 29px 54px rgba(81, 40, 16, 0.2);
}

.model-package-card p {
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.model-package-card:hover p {
  color: var(--button-hover);
  transform: translateY(-2px);
}


/* ====== TOMBOL BOOKING PREMIUM ====== */

.model-booking-btn {
  position: relative;
  overflow: hidden;

  box-shadow:
    0 9px 20px rgba(139, 85, 34, 0.25);

  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.model-booking-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;

  width: 65%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.48),
    transparent
  );

  transform: skewX(-20deg);

  transition: left 0.65s ease;
}

.model-booking-btn:hover {
  transform: translateY(-4px) scale(1.02);

  box-shadow:
    0 15px 29px rgba(139, 85, 34, 0.34);
}

.model-booking-btn:hover::before {
  left: 145%;
}

.model-booking-btn:active {
  transform: translateY(-1px) scale(0.97);
}


/* ====== DROPDOWN DAN SEARCH ====== */

.home-account-dropdown.active {
  transform-origin: top right;

  animation: modelDropdownEnter 0.35s
    cubic-bezier(0.22, 1, 0.36, 1)
    both;
}

.search-box.active {
  animation: modelSearchEnter 0.3s
    cubic-bezier(0.22, 1, 0.36, 1)
    both;
}


/* ====== KEYFRAMES ====== */

@keyframes modelTitleEnter {
  from {
    opacity: 0;
    transform: translateY(-18px);
    letter-spacing: 7px;
  }

  to {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: normal;
  }
}

@keyframes modelTitleLine {
  from {
    width: 0;
    opacity: 0;
  }

  to {
    width: 150px;
    opacity: 1;
  }
}

@keyframes modelPhotoEnter {
  from {
    opacity: 0;
    transform: translateX(-35px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes modelPriceEnter {
  from {
    opacity: 0;
    transform: translateX(40px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes modelTextEnter {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes modelBookingTitleEnter {
  from {
    opacity: 0;
    transform: translateY(16px);
    letter-spacing: 5px;
  }

  to {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: normal;
  }
}

@keyframes modelTitleSweep {
  0% {
    left: -20%;
  }

  50% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}

@keyframes modelPackageEnter {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes modelDropdownEnter {
  from {
    opacity: 0;
    transform: translateY(-12px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes modelSearchEnter {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes modelGlowLeft {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(55px, 42px);
  }
}

@keyframes modelGlowRight {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(-52px, -42px);
  }
}


/* ====== RESPONSIVE ====== */

@media (max-width: 900px) {
  .model-photo-box:hover,
  .model-price-card:hover,
  .model-package-card:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 520px) {
  .model-photo-box:hover,
  .model-price-card:hover,
  .model-package-card:hover {
    transform: none;
  }

  .model-photo-box:hover video {
    transform: scale(1.015);
  }

  .model-booking-btn {
    width: 100%;
  }
}


/* ====== AKSESIBILITAS ANIMASI ====== */

@media (prefers-reduced-motion: reduce) {
  .model-section::before,
  .model-section::after,
  .model-page-title,
  .model-page-title::after,
  .model-photo-item,
  .model-price-card,
  .model-price-list p,
  .model-certificate-text,
  .model-booking-title-section h2,
  .model-booking-title-section::after,
  .model-package-card,
  .home-account-dropdown.active,
  .search-box.active {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .model-photo-box::after,
  .model-price-card-title::after,
  .model-package-card h3::after,
  .model-booking-btn::before {
    display: none;
  }
}

/* ==================================================
   RESPONSIVE ISI HALAMAN MODEL
================================================== */

/* ====== TABLET ====== */
@media (max-width: 900px) {
  .model-pricelist-section {
    min-height: auto;
    padding: 48px 32px 70px;
  }

  .model-page-title {
    font-size: 32px;
  }

  .model-pricelist-layout {
    max-width: 720px;
    margin-top: 48px;

    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    align-items: start;
    gap: 38px 28px;
  }

  .model-photo-item {
    min-width: 0;
  }

  .model-photo-box {
    height: 430px;
    border-radius: 34px;
  }

  .model-price-card {
    grid-column: 1 / -1;

    width: 100%;
    max-width: 520px;
    min-height: 430px;
    margin: 0 auto;
    padding: 14px 38px 30px;
  }

  .model-price-card-title {
    font-size: 27px;
  }

  .model-price-list p {
    font-size: 23px;
  }

  .model-certificate-text {
    font-size: 21px;
  }

  .model-booking-title-section {
    min-height: 105px;
    padding: 0 24px;
  }

  .model-booking-title-section h2 {
    font-size: 30px;
  }

  .model-package-section {
    min-height: auto;
    padding: 70px 40px 90px;
  }

  .model-package-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 42px 32px;
  }

  .model-package-card {
    min-width: 0;
    padding: 14px 28px 25px;
  }

  .model-package-card h3 {
    font-size: 25px;
  }

  .model-package-card p {
    font-size: 25px;
  }
}


/* ====== HANDPHONE UMUM ====== */
@media (max-width: 520px) {
  .model-section {
    width: 100%;
    overflow: hidden;
  }

  .model-pricelist-section {
    width: 100%;
    min-height: auto;
    padding: 48px 16px 56px;
  }

  .model-page-title {
    font-size: 30px;
    line-height: 1.15;
  }

  .model-page-title::after {
    margin-top: 11px;
  }

  .model-pricelist-layout {
    width: 100%;
    margin-top: 45px;

    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    align-items: start;
    gap: 34px 14px;
  }

  .model-photo-item {
    width: 100%;
    min-width: 0;
  }

  .model-photo-item h2 {
    margin-bottom: 16px;

    font-size: 21px;
  }

  .model-photo-box {
    width: 100%;
    height: 310px;

    border-radius: 28px;
  }

  .model-price-card {
    grid-column: 1 / -1;

    width: 100%;
    max-width: none;
    min-height: 390px;
    margin: 0;
    padding: 14px 20px 26px;

    border-radius: 24px;
  }

  .model-price-card-title {
    min-height: 37px;
    padding: 5px 12px;

    font-size: 24px;
  }

  .model-price-list {
    padding: 16px 8px;
  }

  .model-price-list p {
    font-size: 20px;
  }

  .model-certificate-text {
    font-size: 18px;
  }

  .model-booking-title-section {
    min-height: 100px;
    padding: 18px 16px;
  }

  .model-booking-title-section h2 {
    font-size: 27px;
    line-height: 1.2;
  }

  .model-package-section {
    width: 100%;
    min-height: auto;
    padding: 52px 16px 80px;
  }

  .model-package-grid {
    width: 100%;

    grid-template-columns: 1fr;
    gap: 28px;
  }

  .model-package-card {
    width: 100%;
    min-width: 0;
    min-height: 190px;
    padding: 14px 22px 25px;

    border-radius: 24px;
  }

  .model-package-card h3 {
    min-height: 37px;
    padding: 5px 12px;

    font-size: 24px;
  }

  .model-package-card p {
    margin-top: 18px;

    font-size: 25px;
  }

  .model-booking-btn {
    width: min(100%, 190px);
    min-width: 0;
    margin-top: 20px;
  }
}


/* ====== HANDPHONE KECIL ====== */
@media (max-width: 390px) {
  .model-pricelist-section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .model-page-title {
    font-size: 28px;
  }

  .model-pricelist-layout {
    gap: 30px 12px;
  }

  .model-photo-item h2 {
    font-size: 20px;
  }

  .model-photo-box {
    height: 290px;
    border-radius: 25px;
  }

  .model-package-section {
    padding-right: 14px;
    padding-left: 14px;
  }
}
/* ==================================================
   REVISI 8 — HARGA MODEL DINAMIS
================================================== */

.model-price-row,
.model-package-price {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px 10px;
  color: var(--brand-color);
  font-weight: 800;
  text-align: center;
}

.model-price-row {
  min-height: 58px;
  padding: 7px 8px;
  border-radius: 14px;
  font-size: 22px;
  line-height: 1.2;
}

.model-package-price {
  min-height: 66px;
  margin-top: 14px;
  padding: 8px 10px;
  font-size: 24px;
  line-height: 1.2;
}

.model-price-duration,
.model-price-current,
.model-price-promo,
.model-price-old {
  white-space: nowrap;
}

.model-price-current,
.model-price-promo {
  font: inherit;
}

.model-price-old {
  color: rgba(81, 40, 16, 0.58);
  font-size: 0.82em;
  text-decoration-thickness: 2px;
}

.model-price-promo {
  color: #b32f28;
}

.model-price-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.model-price-badge.is-new {
  color: #245da8;
  background: #e6f0ff;
}

.model-price-badge.is-promo {
  color: #ffffff;
  background: #b32f28;
}

.model-price-row.is-new,
.model-package-price.is-new {
  background: rgba(230, 240, 255, 0.58);
}

.model-price-row.is-promo,
.model-package-price.is-promo {
  background: rgba(253, 228, 226, 0.62);
}

.model-price-row,
.model-package-price {
  opacity: 0;
  transform: translateY(14px);
  animation: modelTextEnter 0.55s ease forwards;
}

.model-price-row:nth-child(1) { animation-delay: 0.75s; }
.model-price-row:nth-child(2) { animation-delay: 0.86s; }
.model-price-row:nth-child(3) { animation-delay: 0.97s; }
.model-price-row:nth-child(4) { animation-delay: 1.08s; }

.model-package-card:hover .model-package-price {
  color: var(--button-hover);
  transform: translateY(-2px);
}

.model-package-card .model-package-price {
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

@media (max-width: 900px) {
  .model-price-row {
    font-size: 21px;
  }

  .model-package-price {
    font-size: 23px;
  }
}

@media (max-width: 520px) {
  .model-price-row {
    min-height: 54px;
    gap: 6px 8px;
    font-size: 18px;
  }

  .model-package-price {
    min-height: 64px;
    font-size: 22px;
  }

  .model-price-badge {
    min-height: 22px;
    padding: 4px 8px;
    font-size: 9px;
  }
}

/* ==================================================
   FIX FINAL — PERBESAR HARGA CATWALK MODEL BAGIAN ATAS
================================================== */

.model-price-list .model-price-row {
  font-size: 26px !important;
  line-height: 1.25;
}

.model-price-list .model-price-row .model-price-duration,
.model-price-list .model-price-row .model-price-current,
.model-price-list .model-price-row .model-price-promo {
  font-size: 26px !important;
}

.model-price-list .model-price-row .model-price-old {
  font-size: 16px !important;
}

.model-price-list .model-price-row .model-price-badge {
  font-size: 10px !important;
}

@media (max-width: 900px) {
  .model-price-list .model-price-row,
  .model-price-list .model-price-row .model-price-duration,
  .model-price-list .model-price-row .model-price-current,
  .model-price-list .model-price-row .model-price-promo {
    font-size: 23px !important;
  }
}

@media (max-width: 520px) {
  .model-price-list .model-price-row,
  .model-price-list .model-price-row .model-price-duration,
  .model-price-list .model-price-row .model-price-current,
  .model-price-list .model-price-row .model-price-promo {
    font-size: 19px !important;
  }

  .model-price-list .model-price-row .model-price-old {
    font-size: 14px !important;
  }

  .model-price-list .model-price-row .model-price-badge {
    font-size: 9px !important;
  }
}
