/* ====== 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 CONTACT US ====== */
.contact-section {
  width: 100%;
  min-height: calc(100vh - 127px);
  padding: 48px 74px 70px;
}

.contact-layout {
  width: 100%;
  max-width: 1290px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 465px;
  align-items: stretch;
  gap: 95px;
}


/* ====== INFORMASI KONTAK KIRI ====== */
.contact-info {
  min-width: 0;
  padding-top: 8px;

  display: flex;
  flex-direction: column;
}

.contact-title {
  margin: 0;
  color: var(--brand-color);
  font-size: 68px;
  font-weight: 800;
  line-height: 1.1;
}

.contact-description {
  max-width: 620px;
  margin-top: 42px;

  color: var(--brand-color);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.45;
}

.contact-info-grid {
  width: 100%;
  margin-top: auto;
  padding-bottom: 8px;

  display: grid;
  grid-template-columns: 1fr 1.25fr;
  column-gap: 70px;
  row-gap: 92px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-icon-box {
  width: 60px;
  height: 60px;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon-box img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.contact-info-text {
  padding-top: 2px;
}

.contact-info-text h2 {
  margin: 0 0 2px;

  color: var(--brand-color);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.contact-info-text p {
  margin: 0;

  color: var(--brand-color);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
}


/* ====== FORM KONTAK KANAN ====== */
.contact-form-card {
  width: 465px;
  min-height: 720px;
  padding: 48px 44px 46px;

  background: #ffffff;
  border-radius: 28px;
}

.contact-form-title {
  margin: 0 0 30px;

  color: var(--brand-color);
  font-size: 46px;
  font-weight: 800;
  line-height: 1.2;
}

.contact-form {
  width: 100%;
}

.contact-form-group {
  margin-bottom: 26px;
}

.contact-form-group label {
  display: block;
  margin-bottom: 9px;

  color: var(--brand-color);
  font-size: 15px;
  font-weight: 500;
}

.contact-form-group input,
.contact-form-group textarea {
  width: 100%;

  border: 1px solid var(--brand-color);
  outline: none;

  color: var(--brand-color);
  background: #ffffff;

  font-family: "Poppins", sans-serif;
  font-size: 15px;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form-group input {
  height: 53px;
  padding: 0 20px;
  border-radius: 100px;
}

.contact-form-group textarea {
  height: 108px;
  padding: 15px 20px;

  border-radius: 36px;
  resize: none;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
  border-color: var(--button-color);
  box-shadow: 0 0 0 3px rgba(168, 106, 45, 0.15);
}

.contact-submit-btn {
  min-width: 152px;
  min-height: 43px;
  padding: 8px 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--button-color);
  border-radius: 100px;

  color: #ffffff;
  font-size: 20px;
  font-weight: 800;

  transition:
    background 0.3s ease,
    transform 0.2s ease;
}

.contact-submit-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 CONTACT ====== */

.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: contactBadgePop 0.3s ease;
}

@keyframes contactBadgePop {
  0% {
    transform: scale(0.5);
  }

  70% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

/* ====== LINK WHATSAPP DAN GOOGLE MAPS ====== */

.contact-info-link {
  display: block;
  width: fit-content;

  color: var(--brand-color);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.contact-info-link:hover {
  color: var(--button-color);
  text-decoration: underline;
  transform: translateX(3px);
}

/* ==================================================
   MODERN CONTACT FLOW — CONTACT US
================================================== */

/* ====== BACKGROUND DEKORASI HALUS ====== */

.contact-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.contact-section::before,
.contact-section::after {
  content: "";
  position: absolute;
  z-index: -1;

  width: 420px;
  height: 420px;

  border-radius: 50%;
  pointer-events: none;
  filter: blur(20px);
}

.contact-section::before {
  top: -190px;
  left: -170px;

  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0)
  );

  animation: contactGlowLeft 8s ease-in-out infinite alternate;
}

.contact-section::after {
  right: -190px;
  bottom: -210px;

  background: radial-gradient(
    circle,
    rgba(168, 106, 45, 0.2),
    rgba(168, 106, 45, 0)
  );

  animation: contactGlowRight 9s ease-in-out infinite alternate;
}


/* ====== BAGIAN INFORMASI MASUK DARI KIRI ====== */

.contact-info {
  opacity: 0;

  animation: contactInfoEnter 0.85s
    cubic-bezier(0.22, 1, 0.36, 1)
    forwards;
}


/* ====== JUDUL CONTACT US ====== */

.contact-title {
  position: relative;
  width: fit-content;
}

.contact-title::after {
  content: "";
  display: block;

  width: 0;
  height: 4px;
  margin-top: 15px;

  border-radius: 999px;

  background: linear-gradient(
    90deg,
    #a86a2d,
    rgba(168, 106, 45, 0)
  );

  animation: contactTitleLine 0.8s ease
    0.45s forwards;
}


/* ====== DESKRIPSI ====== */

.contact-description {
  opacity: 0;
  transform: translateY(20px);

  animation: contactTextEnter 0.7s ease
    0.4s forwards;
}


/* ====== ITEM KONTAK MUNCUL BERGANTIAN ====== */

.contact-info-item {
  position: relative;

  opacity: 0;
  transform: translateY(24px);

  padding: 12px;

  border-radius: 18px;

  animation: contactItemEnter 0.65s ease forwards;

  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-info-item:nth-child(1) {
  animation-delay: 0.65s;
}

.contact-info-item:nth-child(2) {
  animation-delay: 0.78s;
}

.contact-info-item:nth-child(3) {
  animation-delay: 0.91s;
}

.contact-info-item:nth-child(4) {
  animation-delay: 1.04s;
}

.contact-info-item:hover {
  transform: translateY(-6px);

  background: rgba(255, 255, 255, 0.48);

  box-shadow:
    0 14px 28px rgba(81, 40, 16, 0.09);
}


/* ====== ICON KONTAK ====== */

.contact-icon-box {
  position: relative;

  border-radius: 18px;

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.contact-icon-box::before {
  content: "";
  position: absolute;
  inset: -6px;

  border: 1px solid rgba(168, 106, 45, 0.18);
  border-radius: 22px;

  opacity: 0;
  transform: scale(0.8);

  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.contact-info-item:hover .contact-icon-box {
  transform: translateY(-3px) scale(1.06);

  background: rgba(255, 255, 255, 0.65);

  box-shadow:
    0 10px 22px rgba(81, 40, 16, 0.12);
}

.contact-info-item:hover .contact-icon-box::before {
  opacity: 1;
  transform: scale(1);
}

.contact-icon-box img {
  transition: transform 0.35s ease;
}

.contact-info-item:hover .contact-icon-box img {
  transform: scale(1.08);
}


/* ====== LINK KONTAK ====== */

.contact-info-link {
  position: relative;
  padding-bottom: 2px;
}

.contact-info-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 0;
  height: 1px;

  background: var(--button-color);

  transition: width 0.3s ease;
}

.contact-info-link:hover {
  text-decoration: none;
}

.contact-info-link:hover::after {
  width: 100%;
}


/* ====== FORM MASUK DARI KANAN ====== */

.contact-form-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: contactFormEnter 0.9s
    cubic-bezier(0.22, 1, 0.36, 1)
    0.18s forwards;

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.contact-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;

  width: 80%;
  height: 4px;

  border-radius: 999px;

  background: linear-gradient(
    90deg,
    transparent,
    #a86a2d,
    transparent
  );

  opacity: 0.75;
}

.contact-form-card:hover {
  transform: translateY(-7px);

  box-shadow:
    0 28px 60px rgba(81, 40, 16, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}


/* ====== JUDUL FORM ====== */

.contact-form-title {
  opacity: 0;
  transform: translateY(18px);

  animation: contactTextEnter 0.65s ease
    0.6s forwards;
}


/* ====== KOLOM FORM MUNCUL BERGANTIAN ====== */

.contact-form-group {
  opacity: 0;
  transform: translateY(18px);

  animation: contactFieldEnter 0.55s ease forwards;
}

.contact-form-group:nth-child(1) {
  animation-delay: 0.72s;
}

.contact-form-group:nth-child(2) {
  animation-delay: 0.84s;
}

.contact-form-group:nth-child(3) {
  animation-delay: 0.96s;
}

.contact-form-group:nth-child(4) {
  animation-delay: 1.08s;
}


/* ====== INPUT LEBIH MODERN ====== */

.contact-form-group input,
.contact-form-group textarea {
  border-color: rgba(81, 40, 16, 0.5);

  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease,
    background 0.3s ease;
}

.contact-form-group input:hover,
.contact-form-group textarea:hover {
  border-color: var(--button-color);
  background: rgba(254, 245, 215, 0.2);
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
  transform: translateY(-2px);

  background: #ffffff;

  box-shadow:
    0 0 0 4px rgba(168, 106, 45, 0.12),
    0 10px 22px rgba(81, 40, 16, 0.08);
}

.contact-form-group label {
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.contact-form-group:focus-within label {
  color: var(--button-color);
  transform: translateX(4px);
}


/* ====== TOMBOL SUBMIT PREMIUM ====== */

.contact-submit-btn {
  position: relative;
  overflow: hidden;

  opacity: 0;
  transform: translateY(18px);

  box-shadow:
    0 10px 22px rgba(139, 85, 34, 0.24);

  animation: contactButtonEnter 0.6s ease
    1.2s forwards;

  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;

  width: 70%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );

  transform: skewX(-20deg);

  transition: left 0.6s ease;
}

.contact-submit-btn:hover {
  transform: translateY(-4px) scale(1.02);

  box-shadow:
    0 15px 28px rgba(139, 85, 34, 0.32);
}

.contact-submit-btn:hover::before {
  left: 140%;
}

.contact-submit-btn:active {
  transform: translateY(-1px) scale(0.98);
}

.contact-submit-btn:disabled {
  cursor: not-allowed;
  opacity: 0.65;
  transform: none;
}


/* ====== DROPDOWN AKUN ====== */

.home-account-dropdown.active {
  transform-origin: top right;

  animation: contactDropdownEnter 0.35s
    cubic-bezier(0.22, 1, 0.36, 1)
    both;
}


/* ====== KEYFRAMES ====== */

@keyframes contactInfoEnter {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes contactFormEnter {
  from {
    opacity: 0;
    transform: translateX(45px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes contactTitleLine {
  from {
    width: 0;
    opacity: 0;
  }

  to {
    width: 145px;
    opacity: 1;
  }
}

@keyframes contactTextEnter {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes contactItemEnter {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes contactFieldEnter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes contactButtonEnter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes contactDropdownEnter {
  from {
    opacity: 0;
    transform: translateY(-12px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes contactGlowLeft {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(55px, 40px);
  }
}

@keyframes contactGlowRight {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(-50px, -40px);
  }
}


/* ====== RESPONSIVE ====== */

@media (max-width: 900px) {
  .contact-info-item:hover,
  .contact-form-card:hover {
    transform: translateY(-3px);
  }
}

@media (max-width: 520px) {
  .contact-info-item {
    padding: 8px;
  }

  .contact-info-item:hover,
  .contact-form-card:hover {
    transform: none;
  }

  .contact-submit-btn {
    width: 100%;
  }
}


/* ====== AKSESIBILITAS ANIMASI ====== */

@media (prefers-reduced-motion: reduce) {
  .contact-section::before,
  .contact-section::after,
  .contact-info,
  .contact-description,
  .contact-info-item,
  .contact-form-card,
  .contact-form-title,
  .contact-form-group,
  .contact-submit-btn,
  .home-account-dropdown.active {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ==================================================
   RESPONSIVE HALAMAN CONTACT US
================================================== */

/* ====== TABLET ====== */
@media (max-width: 900px) {
  .contact-section {
    min-height: auto;
    padding: 45px 28px 70px;
  }

  .contact-layout {
    max-width: 760px;

    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-info {
    width: 100%;
    padding-top: 0;
  }

  .contact-title {
    font-size: 50px;
  }

  .contact-description {
    max-width: 100%;
    margin-top: 30px;

    font-size: 22px;
  }

  .contact-info-grid {
    margin-top: 45px;
    padding-bottom: 0;

    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    column-gap: 30px;
    row-gap: 28px;
  }

  .contact-info-item {
    min-width: 0;
  }

  .contact-form-card {
    width: 100%;
    max-width: 620px;
    min-height: auto;
    margin: 0 auto;
    padding: 42px 38px;
  }

  .contact-form-title {
    font-size: 40px;
  }
}


/* ====== HANDPHONE UMUM ====== */
@media (max-width: 520px) {
  .contact-section {
    width: 100%;
    padding: 36px 15px 60px;
  }

  .contact-layout {
    width: 100%;
    max-width: 100%;

    grid-template-columns: 1fr;
    gap: 38px;
  }

  .contact-info {
    width: 100%;
    min-width: 0;
  }

  .contact-title {
    width: 100%;

    font-size: 38px;
    line-height: 1.15;
  }

  .contact-title::after {
    width: 110px;
    height: 3px;
    margin-top: 12px;
  }

  .contact-description {
    width: 100%;
    max-width: 100%;
    margin-top: 25px;

    font-size: 18px;
    line-height: 1.55;
  }

  /* Informasi kontak menjadi satu kolom */
  .contact-info-grid {
    width: 100%;
    margin-top: 34px;

    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-info-item {
    width: 100%;
    min-width: 0;
    padding: 10px;

    align-items: flex-start;
    gap: 15px;
  }

  .contact-icon-box {
    width: 48px;
    height: 48px;
  }

  .contact-icon-box img {
    width: 48px;
    height: 48px;
  }

  .contact-info-text {
    min-width: 0;
  }

  .contact-info-text h2 {
    font-size: 18px;
  }

  .contact-info-text p,
  .contact-info-link {
    max-width: 100%;

    font-size: 14px;
    line-height: 1.5;

    overflow-wrap: anywhere;
  }

  /* Form turun ke bawah dan memenuhi layar */
  .contact-form-card {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    margin: 0;
    padding: 30px 20px 32px;

    border-radius: 24px;
  }

  .contact-form-title {
    margin-bottom: 25px;

    font-size: 34px;
    line-height: 1.2;
  }

  .contact-form-group {
    margin-bottom: 22px;
  }

  .contact-form-group label {
    font-size: 14px;
  }

  .contact-form-group input {
    width: 100%;
    height: 50px;
    padding: 0 16px;
  }

  .contact-form-group textarea {
    width: 100%;
    height: 120px;
    padding: 15px 16px;

    border-radius: 28px;
  }

  .contact-submit-btn {
    width: 100%;
    min-width: 0;
    min-height: 46px;

    font-size: 18px;
  }
}


/* ====== HANDPHONE KECIL ====== */
@media (max-width: 390px) {
  .contact-section {
    padding-right: 12px;
    padding-left: 12px;
  }

  .contact-title {
    font-size: 35px;
  }

  .contact-description {
    font-size: 17px;
  }

  .contact-form-card {
    padding-right: 17px;
    padding-left: 17px;
  }

  .contact-form-title {
    font-size: 31px;
  }
}