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

body {
  font-family: 'Poppins', sans-serif;
  background-color: #000000;
  color: #ffffff;
}

/* === BACK BUTTON === */
.back-button {
  position: fixed;
  top: 110px;
  left: 20px;
  z-index: 9998;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  background-color: #000000;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  min-width: 44px;
  min-height: 44px;
}

.back-button:hover {
  background-color: #ffffff;
  color: #000000;
  transform: translateX(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.back-button svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.back-button:hover svg {
  transform: translateX(-3px);
}

@media (max-width: 1024px) {
  .back-button {
    top: 105px;
    left: 15px;
    padding: 9px 12px;
    min-width: 42px;
    min-height: 42px;
  }

  .back-button svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 768px) {
  .back-button {
    top: 100px;
    left: 15px;
    padding: 8px 12px;
    min-width: 40px;
    min-height: 40px;
  }

  .back-button svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .back-button {
    top: 95px;
    left: 12px;
    padding: 6px 10px;
    min-width: 38px;
    min-height: 38px;
  }

  .back-button svg {
    width: 20px;
    height: 20px;
  }
}

/* === NAVBAR === */
/* Navbar always white with shadow */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 7%;
  background-color: #ffffff !important;
  background: #ffffff !important;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
  transition: background-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease, color 0.4s ease;
}

/* Ensure all navbar text and icons stay black */
.navbar .navbar-logo,
.navbar .navbar-logo span {
  color: #000000 !important;
  text-shadow: none !important;
}

.navbar .navbar-nav a {
  color: #000000 !important;
  text-shadow: none !important;
}

.navbar .navbar-nav a:hover {
  color: #000000 !important;
  background-color: rgba(0, 0, 0, 0.05) !important;
}

.navbar .navbar-extra a,
.navbar #haircuts-menu,
.navbar #haircuts-menu i {
  color: #000000 !important;
  text-shadow: none !important;
}

.navbar .submenu-arrow {
  color: #000000 !important;
}

.navbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
  pointer-events: none;
  z-index: -1;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #000000;
  padding: 2px;
  background-color: white;
  transition: all 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.1);
  border-color: #000000;
  box-shadow: 0 4px 12px rgba(2, 2, 2, 0.4);
}

.logo-text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  line-height: 1.2;
}

.navbar-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #000000;
  text-decoration: none;
  display: block;
  line-height: 1.2;
}

.navbar-logo span {
  color: rgb(0, 0, 0);
  font-size: 0.9rem;
  font-weight: 500;
  display: block;
  margin-top: 2px;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar-nav ul,
.navbar-nav ul li,
.menu-list,
.menu-list li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar-nav a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav a:hover {
  color: #000000;
  background-color: rgba(255, 215, 0, 0.1);
}

.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #000000;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav a:hover::after {
  width: 80%;
}

.navbar-extra a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.navbar-extra a:hover {
  color: #000000;
}

#haircuts-menu {
  display: none;
}

/* Submenu styling - remove bullets */
.submenu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.submenu li {
  list-style: none;
}

/* Submenu arrow rotation */
.submenu-arrow {
  transition: transform 0.3s ease;
}

.has-submenu.active .submenu-arrow,
.submenu-toggle.active .submenu-arrow {
  transform: rotate(180deg);
}

/* === HERO SECTION === */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
  margin-top: 110px;
  min-height: calc(100vh - 110px);
  background-color: #000000;
  color: #ffffff;
}

.hero .content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero .content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-weight: 200;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: #ffffff;
  color: #000000;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #000000;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* === LETTER ANIMATION === */
.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  perspective: 1000px;
}

.letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px) rotateX(-90deg);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.letter.active {
  opacity: 1;
  transform: translateY(0) rotateX(0deg);
}


/* === VISI & MISI (FLOATING SIDE-BY-SIDE) === */
.services {
  padding: 5rem 1.5rem;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.services-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.visi-misi-layout {
  display: flex;
  align-items: center;
  gap: 3.5rem;
}

.visi-misi-image-col {
  flex: 1;
  min-width: 0;
}

.visi-misi-img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 20px rgba(230, 126, 34, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.visi-misi-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.visi-misi-img-wrapper:hover img {
  transform: scale(1.04);
}

.visi-misi-text-col {
  flex: 1.1;
  min-width: 0;
  text-align: left;
}

.visi-misi-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.visi-misi-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #e67e22, #f39c12);
  border-radius: 2px;
}

.visi-misi-item {
  margin-bottom: 2rem;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.item-badge {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 700;
  color: #e67e22;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.6rem;
}

.item-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.misi-list {
  margin: 0;
  padding-left: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 400;
}

.misi-list li {
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 900px) {
  .visi-misi-layout {
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
  }

  .visi-misi-text-col {
    text-align: center;
  }

  .visi-misi-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .misi-list {
    text-align: left;
    display: inline-block;
  }
}

/* === OUR DIVISI === */
.our-divisi {
  padding: 4rem 1rem 3rem;
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.divisi-container {
  width: 100%;
  max-width: 1000px;
  text-align: center;
}

.our-divisi h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.divisi-circles {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background-color: #1a1a1a;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.circle:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.circle p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  line-height: 1.4;
  margin: 0;
  padding: 0 10px;
}

.circle-label {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.circle.circle-img {
  overflow: hidden;
  padding: 0;
  background-color: #ffffff;
}

.circle.circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* === ABOUT US === */
.about-us {
  padding: 5rem 1rem 3rem;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-us-container {
  width: 100%;
  max-width: 1000px;
  text-align: center;
  color: #ffffff;
}

.about-us h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.about-us-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto;
}

/* === CONTACT US (SLIDER) === */
.contact-us {
  padding: 3rem 1rem 2rem;
  background-color: #000000;
}

.contact-container h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}

.contact-slider {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  background-color: #1a1a1a;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.address-box {
  background-color: #2a2a2a;
  padding: 1rem;
  border-radius: 8px;
  text-align: left;
}

.address-box p:first-child {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.address-box p:last-child {
  font-size: 1.05rem;
  color: #ffffff;
  margin: 0;
  line-height: 1.5;
}

.maps-box {
  border-radius: 8px;
  overflow: hidden;
  height: 160px;
}

.maps-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (min-width: 769px) {
  .contact-slider {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .address-box {
    flex: 0 0 280px;
    align-self: flex-start;
  }

  .maps-box {
    flex: 1;
    min-width: 300px;
    height: 160px;
  }
}

/* === FORM LOGIN & REGISTER - STYLING ULANG === */
.auth-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: #000000;
  padding-top: 80px;
  /* ✅ Tambahkan ini */
  padding-bottom: 40px;
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}

.auth-container {
  width: 100%;
  max-width: 500px;
  text-align: center;
  color: #ffffff;
}

.auth-container h1 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  padding: 0 10px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.form-box {
  background-color: #1a1a1a;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: visible;
  /* ✅ Pastikan konten tidak terpotong */
}

.form-group {
  margin: 12px 0;
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #444;
  border-radius: 8px;
  background-color: #2a2a2a;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  box-sizing: border-box;
  transition: border-color 0.3s, box-shadow 0.3s;
}

/* Password toggle button */
.password-group {
  position: relative;
}

.password-group input {
  padding-right: 50px;
}

.toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #888;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toggle-password:hover {
  color: #ff6f61;
}

.toggle-password i {
  font-size: 1.1rem;
}

.form-group input::placeholder {
  color: #888;
}

.form-group input:focus {
  outline: none;
  border-color: #ff6f61;
  box-shadow: 0 0 0 2px rgba(255, 111, 97, 0.2);
}

.btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.login-btn {
  background-color: #ffffff;
  color: #000000;
}

.login-btn:hover {
  background-color: #000000;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.register-btn {
  background-color: #ff6f61;
  color: white;
}

.register-btn:hover {
  background-color: #ff523d;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 111, 97, 0.3);
}

/* === SOCIAL LOGIN === */
.social-login-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
  color: #aaa;
  font-size: 0.9rem;
}

.social-login-divider::before,
.social-login-divider::after {
  content: '';
  flex: 1;
  border-top: 1px solid #444;
}

.social-login-divider span {
  padding: 0 10px;
}

.social-login {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  text-decoration: none;
  color: white;
  text-align: center;
}

.social-btn.google {
  background-color: #fff;
  color: #000;
  border: 1px solid #ddd;
}

.social-btn.google:hover {
  background-color: #f9f9f9;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.social-btn.facebook {
  background-color: #3b5998;
  color: white;
}

.social-btn.facebook:hover {
  background-color: #2d4373;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* === TOGGLE TEXT === */
.toggle-form {
  margin-top: 20px;
  font-size: 0.95rem;
  color: #aaa;
}

.toggle-form a {
  color: #ff6f61;
  text-decoration: none;
  font-weight: 600;
  margin-left: 5px;
}

.toggle-form a:hover {
  text-decoration: underline;
}

/* === FORGOT PASSWORD LINK === */
.forgot-password-link {
  text-align: right;
  margin-top: 8px;
}

.forgot-password-link a {
  color: #ff6f61;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.3s;
}

.forgot-password-link a:hover {
  color: #ff8a80;
  text-decoration: underline;
}

/* === MESSAGE === */
.message {
  color: #ff6b6b;
  font-size: 0.9rem;
  margin-top: 8px;
  display: none;
}

.message.success {
  color: #4ade80;
}

/* ✅ Responsif: pastikan teks tidak terpotong di layar kecil */
@media (max-width: 480px) {
  .auth-container h1 {
    font-size: 1.8rem;
    line-height: 1.3;
    padding: 0 8px;
  }
}

/* === AUTH & GENDER === */
.auth-section,
.gender-section,
.reservation-section,
.branch-section {
  min-height: 100dvh;
  padding: 120px 1rem 40px;
}

.auth-section,
.reservation-section {
  background-color: #000000;
}

.gender-section,
.branch-section {
  background-color: #ffffff;
  color: #000000;
}

.branch-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.auth-container,
.reservation-container,
.gender-container,
.branch-container {
  width: 100%;
  max-width: 500px;
  text-align: center;
  margin: 0 auto;
}

.auth-container h1,
.reservation-container h1,
.gender-container h1,
.branch-container h1 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}

.gender-section .gender-container h1,
.branch-section .branch-container h1 {
  color: #000000;
}

.gender-options {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.gender-card {
  width: 180px;
  padding: 2rem 1rem;
  background-color: #1a1a1a;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.gender-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 111, 97, 0.3);
  background-color: #2a2a2a;
}

.gender-card i {
  font-size: 3rem;
  color: #ff6f61;
}

.gender-card h3 {
  font-size: 1.3rem;
  color: #ffffff;
  font-weight: 600;
}

/* === BRANCH SECTION === */
.branch-section {
  padding: 60px 1rem 60px;
  background-color: #ffffff;
  /* Latar utama putih */
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100dvh;
}

.branch-container {
  width: 100%;
  max-width: 1100px;
  color: #000000;
  text-align: center;
}

.branch-container h1 {
  font-size: 2.4rem;
  margin-bottom: 32px;
  font-weight: 700;
  color: #000000;
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 40px;
  justify-items: center;
  align-items: start;
  width: 100%;
  padding: 20px 0;
}

.branch-card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  transition: transform 0.3s ease;
  position: relative;
}

.branch-card:hover {
  transform: translateY(-15px);
  z-index: 10;
}

.branch-card img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin: 0 auto;
  padding: 0;
  /* ✅ HAPUS PADDING UNTUK TRANSPARAN MAKSIMAL */
  background: transparent;
  /* ✅ SUDAH TRANSPARAN */
  border-radius: 0;
  /* ✅ HAPUS BORDERRADIUS AGAR TIDAK ADA "KOTAK" */
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0.00);
  /* Optional: bayangan ringan agar terlihat "melayang" */
  transition: transform 0.3s ease;
}

.branch-card:hover img {
  transform: scale(1.03);
}

.branch-card h3 {
  margin-top: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #000000;
  text-align: center;
  line-height: 1.3;
}

.branch-disclaimer {
  margin-top: 30px;
  font-size: 0.85rem;
  color: #777;
  font-style: italic;
  text-align: left;
  line-height: 1.4;
  margin-left: 0;
  padding-left: 2px;
}

/* === RESPONSIF === */
@media (max-width: 992px) {
  .branch-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
  }

  .branch-card img {
    width: 180px;
    height: 180px;
    padding: 0;
  }
}

@media (max-width: 768px) {
  .branch-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .branch-container h1 {
    font-size: 2.1rem;
  }

  .branch-card img {
    width: 160px;
    height: 160px;
    padding: 0;
  }
}

@media (max-width: 480px) {
  .branch-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .branch-container h1 {
    font-size: 2rem;
    margin-bottom: 24px;
  }

  .branch-card img {
    width: 160px;
    height: 160px;
    padding: 0;
  }

  .branch-card h3 {
    font-size: 1rem;
  }

  .branch-disclaimer {
    font-size: 0.8rem;
    padding-left: 4px;
  }
}

/* === SERVICE PACKAGES === */
.packages-section,
.booking-form-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  color: #333;
  padding: 120px 1rem 2rem;
}

.service-header {
  background: #ffffff;
  padding: 30px 1rem;
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-header h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.5rem;
}

.service-header p {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

.branch-name {
  color: #ff6f61;
  font-weight: 600;
}

.packages-container {
  max-width: 1200px;
  margin: 0 auto;
}

.category-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  padding: 1.8rem;
  margin-bottom: 2rem;
}

.category-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid #000000;
  display: inline-block;
}

.category-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.2rem;
}

.package-item {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 1.2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.package-item:hover {
  border-color: #000000;
  background: #2a2a2a;
  transform: translateY(-2px);
}

.item-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.item-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0.3rem 0;
}

.item-desc {
  font-size: 0.9rem;
  color: #cccccc;
  line-height: 1.5;
  margin-top: 0.5rem;
}

/* === BOOKING FORM === */
.booking-form-container {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
}

.booking-form-container h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #000;
  font-weight: 700;
  text-align: center;
}

.booking-form-container .form-group {
  margin-bottom: 1.2rem;
  text-align: left;
}

.booking-form-container .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}


.booking-form-container .form-group input,
.booking-form-container .form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.booking-form-container .form-group input:focus,
.booking-form-container .form-group select:focus {
  outline: none;
  border-color: #ff6f61;
  box-shadow: 0 0 0 2px rgba(255, 111, 97, 0.2);
}

.booking-btn {
  width: 100%;
  padding: 14px;
  background: #ff6f61;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 1rem;
}

.booking-btn:hover {
  background: #ff523d;
  transform: translateY(-2px);
}

/* === BARBER SELECTION === */
.barbers-section {
  padding: 120px 1rem 50px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.barber-header {
  background: #ffffff;
  padding: 30px 1rem;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.barber-header h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.5rem;
}

.barbers-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.barber-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.barber-card:hover {
  transform: translateY(-5px);
}

.barber-content {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
}

.barber-photo {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.barber-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.barber-card:hover .barber-photo img {
  transform: scale(1.05);
}

.barber-info h3 {
  font-size: 1.4rem;
  color: #000000;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === ✅ PERBAIKAN UTAMA: TABEL KEMAMPUAN + RATING BINTANG === */
.skills-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-top: 0.8rem;
}

.skills-table th,
.skills-table td {
  padding: 0.6rem 0.8rem;
  text-align: left;
  border: 1px solid #eee;
}

.skills-table th {
  background-color: #f8f9fa;
  font-weight: 600;
  color: #000000;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.skills-table td:first-child {
  background-color: #f4f4f4;
  color: #000000;
  font-weight: 600;
  width: 68%;
}

.skills-table td:last-child {
  color: #000000;
  width: 32%;
  text-align: right;
}

/* ✅ Styling Bintang di Tabel */
.skills-table .stars {
  display: inline-flex;
  gap: 2px;
  justify-content: flex-end;
}

.skills-table .stars i {
  font-size: 0.9rem;
  color: #ffc107;
  /* Warna kuning standar bintang */
}

/* === Tombol === */
.select-btn,
.profile-btn {
  width: 100%;
  padding: 10px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  border-radius: 8px;
  font-size: 0.95rem;
  margin-top: 1rem;
}

.select-btn {
  background: #ff6f61;
  color: rgb(0, 0, 0);
}

.select-btn:hover {
  background: #ff523d;
}

.profile-btn {
  background: #ff523d;
  color: white;
}

.profile-btn:hover {
  background: #ff3c25;
}

/* === CONFIRMATION PAGE === */
.confirmation-container {
  width: 100%;
  max-width: 500px;
  padding: 0 20px;
  margin: 0 auto;
  padding-top: 120px;
  padding-bottom: 30px;
}

.confirmation-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.08);
  padding: 25px;
  text-align: left;
}

.confirmation-card h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #000000;
  text-align: center;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 1rem;
  padding-bottom: 12px;
  border-bottom: 1px solid #000000;
}

.summary-item .label {
  font-weight: 600;
  color: #000000;
  flex: 0 0 160px;
}

.summary-item .value {
  color: #000000;
  font-weight: 500;
  flex: 1;
  text-align: left;
}

.confirm-button,
.edit-button {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  margin-top: 10px;
}

.confirm-button {
  background-color: #ff6f61;
  color: white;
  box-shadow: 0 4px 12px rgba(255, 111, 97, 0.3);
}

.confirm-button:hover {
  background-color: #ff523d;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 111, 97, 0.4);
}

.edit-button {
  background-color: #6c757d;
  color: white;
}

.edit-button:hover {
  background-color: #5a6268;
  transform: translateY(-2px);
}

body.confirmation-page {
  background-color: #ffffff !important;
  color: #000000 !important;
}

/* === QRIS PAGE === */
.qris-container {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 120px 20px 40px;
  text-align: center;
}

.qris-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.qris-card h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 24px;
}

.qris-image {
  width: 240px;
  height: 240px;
  margin: 0 auto 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.qris-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qris-disclaimer {
  margin-top: 30px;
  font-size: 0.85rem;
  color: #777;
  text-align: left;
  font-style: italic;
  padding-left: 4px;
}

/* QRIS Upload Section */
.upload-section {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}

.upload-section h3 {
  font-size: 1.1rem;
  color: #000;
  margin-bottom: 8px;
}

.upload-hint {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 16px;
}

.upload-area {
  border: 2px dashed #ccc;
  border-radius: 12px;
  padding: 24px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 12px;
}

.upload-area:hover {
  border-color: #ff6f61;
  background: #fff9f8;
}

.upload-area #uploadPlaceholder i {
  font-size: 2.5rem;
  color: #999;
  display: block;
  margin-bottom: 8px;
}

.upload-area #uploadPlaceholder p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

.upload-format {
  font-size: 0.8rem;
  color: #999;
  display: block;
  margin-top: 4px;
}

#uploadPreview {
  text-align: center;
}

#uploadPreview img {
  max-width: 200px;
  max-height: 150px;
  border-radius: 8px;
  object-fit: contain;
}

.preview-filename {
  font-size: 0.85rem;
  color: #666;
  margin-top: 8px;
}

.upload-error {
  color: #e74c3c;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.upload-submit-btn {
  width: 100%;
  padding: 12px 20px;
  background: #ff6f61;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.upload-submit-btn:hover:not(:disabled) {
  background: #e85a4d;
}

.upload-submit-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* Post-Upload Success Section */
.success-icon {
  margin-bottom: 16px;
}

.success-icon i {
  font-size: 4rem;
  color: #27ae60;
}

.success-message {
  font-size: 1.1rem;
  color: #27ae60;
  font-weight: 600;
  margin-bottom: 20px;
}

.whatsapp-instructions {
  background: #f0f9f4;
  border: 1px solid #c8e6c9;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 24px;
  text-align: left;
}

.whatsapp-instructions p {
  margin: 0;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: #25d366;
  color: #fff !important;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s;
}

.btn-whatsapp:hover {
  background: #1da851;
  color: #fff !important;
}

.btn-print-struk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: #333;
  color: #fff !important;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s;
}

.btn-print-struk:hover {
  background: #000;
  color: #fff !important;
}

body.qris-page {
  background-color: #ffffff !important;
  color: #000000 !important;
}

/* === COLLEGE PAGES === */
.college-container {
  width: 90%;
  max-width: 1000px;
  margin: 120px auto 40px;
  padding: 0 15px;
}

.college-header h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.5px;
  color: #ffffff;
  text-align: center;
}

.college-header p {
  font-size: 1.1rem;
  color: #cccccc;
  margin-top: 10px;
  font-weight: 300;
  text-align: center;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.package-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  text-align: center;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.package-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 15px;
  color: #000000;
}

.package-price {
  font-size: 2rem;
  font-weight: 700;
  margin: 20px 0;
  color: #000000;
}

.package-hours {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 20px 0;
  text-transform: uppercase;
  color: #000000;
}

.benefits-section {
  padding: 60px 20px;
  overflow: hidden;
}

.benefits-section .benefit-title {
  font-family: 'Montserrat', 'Poppins', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 50px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 5px;
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerGradient 3s ease-in-out infinite;
}

.benefits-section .benefit-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #000000, transparent);
  border-radius: 2px;
}

@keyframes shimmerGradient {

  0%,
  100% {
    background-position: 0% center;
  }

  50% {
    background-position: 100% center;
  }
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
  perspective: 1000px;
}

.benefit-item {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 25px 30px;
  border-radius: 16px;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #333;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  text-align: left;
  opacity: 0;
  transform: translateY(50px) rotateX(10deg);
}

.benefit-item.scroll-visible {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

.benefit-item .benefit-number {
  font-family: 'Montserrat', 'Poppins', Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  min-width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #000000, #333333);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.benefit-item .benefit-text {
  flex: 1;
  line-height: 1.6;
  color: #000000;
}

.benefit-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border-color: #000000;
}

.benefit-item:hover .benefit-number {
  background: linear-gradient(135deg, #333333, #000000);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
  transform: rotate(360deg) scale(1.1);
}

/* Contact Info & CTA */
.contact-info-simple {
  text-align: center;
  margin: 40px 0;
  color: #ffffff;
}

.contact-info-simple p {
  margin: 10px 0;
}

.contact-info-simple a {
  font-weight: 600;
}

.cta-center {
  text-align: center;
  margin: 30px 0 50px;
}

body.college-page,
body.college-form-page {
  background-color: #000000 !important;
  color: #ffffff !important;
}

.form-container {
  width: 100%;
  max-width: 500px;
  margin: 40px auto;
  z-index: 1;
}

.form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.form-card h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000000;
  text-align: center;
  margin-bottom: 30px;
}

.form-card h1::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: #ff6f61;
  margin: 8px auto 0;
  border-radius: 3px;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.form-group label i {
  color: #ff6f61;
  font-size: 1.1rem;
}

.form-group input,
.form-group input[type="date"] {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: all 0.3s;
}

/* === STRUK PAGE === */
body.struk-page {
  background-color: #000 !important;
  color: #fff !important;
  padding: 120px 20px 40px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
}

.struk-wrapper {
  background-color: #fff;
  color: #000;
  width: 100%;
  max-width: 400px;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
  font-size: 14px;
}

.struk-header h1 {
  text-align: center;
  font-size: 20px;
  margin-bottom: 8px;
  color: #000;
}

.struk-header p {
  text-align: center;
  font-size: 12px;
  color: #555;
  margin-bottom: 16px;
}

.struk-body p,
.struk-note p {
  margin: 6px 0;
}

.total {
  font-weight: bold;
  font-size: 18px;
  color: #000;
}

.status {
  text-align: center;
  font-weight: bold;
  color: #28a745;
  margin-top: 10px;
}

.struk-note {
  text-align: center;
  font-style: italic;
  color: #666;
  border-top: 1px dashed #ccc;
  padding-top: 12px;
  margin-top: 12px;
}

.btn-print {
  display: block;
  width: 100%;
  padding: 12px;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 20px;
  transition: background-color 0.2s;
}

.btn-print:hover {
  background-color: #333;
}

@media print {
  body.struk-page {
    background: white !important;
    padding: 0 !important;
  }

  .struk-wrapper {
    box-shadow: none !important;
    border: none !important;
    max-width: 100% !important;
    padding: 20px !important;
    margin: 0 !important;
  }

  .btn-print {
    display: none;
  }
}

/* === SOCIAL FOOTER === */
.social-footer {
  background-color: #ffffff;
  color: #ffffff;
  padding: 25px 0 20px;
  text-align: center;
  margin-top: 40px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.social-icons a {
  color: #000000;
  font-size: 1.8rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  color: #ff6f61;
  transform: translateY(-3px);
}

.social-icons a.whatsapp-icon {
  color: #000000;
}

.social-icons a.whatsapp-icon:hover {
  color: #ff6f61;
}

.copyright {
  font-size: 0.9rem;
  color: #aaa;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  padding: 0 10px;
}

/* === RESPONSIVE === */

/* ========================================
   TABLET (max-width: 1024px)
   ======================================== */
@media (max-width: 1024px) {

  /* Navbar */
  .navbar {
    padding: 1rem 5%;
  }

  /* Hero Section */
  .hero .content h1 {
    font-size: 2.5rem;
  }

  /* Visi Misi */
  .visi-misi-boxes {
    max-width: 600px;
  }

  /* Our Divisi */
  .our-divisi h2 {
    font-size: 2.2rem;
  }

  .circle {
    width: 140px;
    height: 140px;
  }

  .circle p,
  .circle-label {
    font-size: 1rem;
  }

  /* About Us */
  .about-us h3 {
    font-size: 2.2rem;
  }

  .about-us-subtitle {
    font-size: 1.1rem;
  }

  /* Contact Us */
  .contact-container h2 {
    font-size: 2.2rem;
  }

  /* Branch Section */
  .branch-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
  }

  .branch-card img {
    width: 180px;
    height: 180px;
  }

  /* Barber Section */
  .barbers-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  /* Packages Grid */
  .packages-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }

  /* Benefits */
  .benefits-section .benefit-title {
    font-size: 2.2rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
  }
}

/* ========================================
   MOBILE LANDSCAPE & TABLET KECIL (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {

  /* Fix overlapping fixed navbar */
  .auth-section,
  .branch-section,
  .barbers-section,
  .packages-section,
  .booking-form-section,
  .booking-wrapper,
  .confirmation-container,
  .qris-container,
  .college-container,
  .community-wrapper,
  .gender-container,
  .gender-section,
  body.struk-page {
    padding-top: 180px !important;
  }

  /* Navbar - Mobile Menu */
  .navbar {
    padding: 0.8rem 5%;
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .logo-image {
    width: 50px;
    height: 50px;
  }

  .navbar-logo {
    font-size: 1.1rem;
  }

  .navbar-logo span {
    font-size: 0.75rem;
  }

  .navbar-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    flex-direction: column;
    padding: 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  .navbar-nav.active {
    display: flex;
  }

  .menu-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0;
  }

  .navbar-nav a {
    display: block;
    padding: 12px 20px;
    text-align: center;
    width: 100%;
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f0f0;
  }

  .navbar-nav a:hover {
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 0;
  }

  .navbar-nav a::after {
    display: none;
  }

  /* Submenu mobile */
  .navbar-nav .submenu {
    background-color: #f9f9f9;
    padding-left: 0;
    width: 100%;
  }

  .navbar-nav .submenu a {
    font-size: 0.85rem;
    padding: 10px 20px;
  }

  #haircuts-menu {
    display: block !important;
    font-size: 1.5rem;
    color: #000;
  }

  /* Submenu toggle for mobile */
  .navbar-nav .has-submenu {
    position: relative;
  }

  .navbar-nav .submenu-toggle {
    cursor: pointer;
    position: relative;
  }

  .navbar-nav .submenu-toggle::after {
    content: '▼';
    font-size: 0.7rem;
    margin-left: 5px;
    display: inline-block;
    transition: transform 0.3s;
  }

  .navbar-nav .submenu-toggle.active::after {
    transform: rotate(180deg);
  }

  .navbar-nav .submenu {
    display: none;
    flex-direction: column;
  }

  .navbar-nav .submenu.show {
    display: flex;
  }

  /* Hero Section */
  .hero {
    min-height: calc(100dvh - 180px);
    margin-top: 180px;
    padding: 2rem 1rem;
  }

  .hero .content h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .hero .content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .cta-button {
    padding: 10px 24px;
    font-size: 0.9rem;
  }

  /* Section Padding */
  .services,
  .about-us,
  .our-divisi,
  .contact-us,
  .auth-section,
  .gender-section,
  .branch-section {
    padding: 2.5rem 1rem 2rem;
  }

  /* Visi Misi */
  .visi-misi-boxes {
    gap: 1.5rem;
  }

  .box {
    padding: 1.5rem;
  }

  .box p {
    font-size: 0.95rem;
  }

  .box p strong {
    font-size: 1.4rem;
  }

  /* Our Divisi */
  .our-divisi h2 {
    font-size: 1.8rem;
    margin-bottom: 1.8rem;
  }

  .divisi-circles {
    gap: 1.5rem;
  }

  .circle {
    width: 120px;
    height: 120px;
  }

  .circle p,
  .circle-label {
    font-size: 0.9rem;
  }

  /* About Us */
  .about-us h3 {
    font-size: 1.8rem;
  }

  .about-us-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Contact Us */
  .contact-container h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .contact-slider {
    padding: 1.2rem;
  }

  .address-box {
    padding: 0.9rem;
  }

  .address-box p:first-child {
    font-size: 1rem;
  }

  .address-box p:last-child {
    font-size: 0.9rem;
  }

  .maps-box {
    height: 200px;
  }

  /* Auth Section (Login/Register) */
  .auth-container h1 {
    font-size: 1.8rem;
  }

  .form-box {
    padding: 1.5rem;
  }

  .form-group input {
    padding: 12px 14px;
    font-size: 0.95rem;
  }

  .btn {
    padding: 12px;
    font-size: 0.95rem;
  }

  /* Gender Section */
  .gender-options {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .gender-card {
    width: 100%;
    max-width: 280px;
    padding: 1.5rem;
  }

  .gender-card i {
    font-size: 2.5rem;
  }

  .gender-card h3 {
    font-size: 1.2rem;
  }

  /* Branch Section */
  .branch-container h1 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .branch-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .branch-card img {
    width: 140px;
    height: 140px;
  }

  .branch-card h3 {
    font-size: 0.95rem;
  }

  /* Service Packages */
  .service-header h1 {
    font-size: 1.6rem;
  }

  .service-header p {
    font-size: 0.9rem;
  }

  .category-title {
    font-size: 1.3rem;
  }

  .category-items {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .package-item {
    padding: 1rem;
  }

  .item-name {
    font-size: 1rem;
  }

  .item-price {
    font-size: 1.2rem;
  }

  .item-desc {
    font-size: 0.85rem;
  }

  /* Booking Form */
  .booking-form-container {
    padding: 1.5rem;
  }

  .booking-form-container h2 {
    font-size: 1.4rem;
  }

  .booking-form-container .form-group input,
  .booking-form-container .form-group select {
    padding: 11px 13px;
    font-size: 0.95rem;
  }

  .booking-btn {
    padding: 12px;
    font-size: 1rem;
  }

  /* Barber Selection */
  .barbers-section {
    padding: 80px 1rem 40px;
  }

  .barber-header h1 {
    font-size: 1.6rem;
  }

  .barbers-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .barber-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .barber-photo {
    width: 100px;
    height: 100px;
  }

  .barber-info h3 {
    font-size: 1.2rem;
  }

  .skills-table table {
    font-size: 0.85rem;
  }

  /* Confirmation & QRIS */
  .confirmation-container,
  .qris-container {
    padding-top: 80px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .confirmation-card,
  .qris-card {
    padding: 1.5rem;
  }

  .confirmation-card h1,
  .qris-card h1 {
    font-size: 1.5rem;
  }

  .qris-image {
    width: 200px;
    height: 200px;
  }

  /* College Page */
  .college-container {
    width: 95%;
    padding: 0 10px;
  }

  .college-header h1 {
    font-size: 1.8rem;
  }

  .college-header p {
    font-size: 1rem;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .package-card {
    padding: 1.5rem;
  }

  .package-title {
    font-size: 1.5rem;
  }

  .package-price {
    font-size: 1.6rem;
  }

  /* Benefits Section */
  .benefits-section {
    padding: 40px 15px;
  }

  .benefits-section .benefit-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .benefit-item {
    padding: 15px 18px;
    font-size: 0.95rem;
  }

  .benefit-item .benefit-number {
    min-width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  /* Footer */
  .social-icons {
    gap: 20px;
  }

  .social-icons a {
    font-size: 1.6rem;
  }

  .copyright {
    font-size: 0.85rem;
    padding: 0 15px;
  }
}

/* ========================================
   MOBILE PORTRAIT (max-width: 480px)
   ======================================== */
@media (max-width: 480px) {

  /* Fix overlapping fixed navbar */
  .auth-section,
  .branch-section,
  .barbers-section,
  .packages-section,
  .booking-form-section,
  .booking-wrapper,
  .confirmation-container,
  .qris-container,
  .college-container,
  .community-wrapper,
  .gender-container,
  .gender-section {
    padding-top: 180px !important;
  }

  /* Navbar */
  .navbar {
    padding: 0.7rem 4%;
  }

  .logo-image {
    width: 45px;
    height: 45px;
  }

  .navbar-logo {
    font-size: 1rem;
  }

  .navbar-logo span {
    font-size: 0.7rem;
  }

  /* Hero Section */
  .hero .content h1 {
    font-size: 1.5rem;
    word-wrap: break-word;
  }

  .hero .content p {
    font-size: 0.85rem;
  }

  .cta-button {
    padding: 9px 20px;
    font-size: 0.85rem;
  }

  /* Section Padding */
  .services,
  .about-us,
  .our-divisi,
  .contact-us {
    padding: 2rem 0.8rem 1.5rem;
  }

  /* Visi Misi */
  .box {
    padding: 1.2rem;
  }

  .box p {
    font-size: 0.85rem;
  }

  .box p strong {
    font-size: 1.2rem;
  }

  /* Our Divisi */
  .our-divisi h2 {
    font-size: 1.5rem;
  }

  .circle {
    width: 100px;
    height: 100px;
  }

  .circle p,
  .circle-label {
    font-size: 0.8rem;
  }

  /* About Us */
  .about-us h3 {
    font-size: 1.5rem;
  }

  .about-us-subtitle {
    font-size: 0.85rem;
  }

  /* Contact Us */
  .contact-container h2 {
    font-size: 1.5rem;
  }

  .address-box p:first-child {
    font-size: 0.95rem;
  }

  .address-box p:last-child {
    font-size: 0.85rem;
  }

  .maps-box {
    height: 180px;
  }

  /* Auth Section */
  .auth-container h1 {
    font-size: 1.5rem;
  }

  .form-box {
    padding: 1.2rem;
  }

  .form-group input {
    padding: 11px 12px;
    font-size: 0.9rem;
  }

  .btn {
    padding: 11px;
    font-size: 0.9rem;
  }

  /* Gender Section */
  .gender-container h1 {
    font-size: 1.5rem;
  }

  .gender-card {
    padding: 1.2rem;
  }

  .gender-card i {
    font-size: 2rem;
  }

  .gender-card h3 {
    font-size: 1.1rem;
  }

  /* Branch Section */
  .branch-section {
    padding: 50px 0.8rem 50px;
  }

  .branch-container h1 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
  }

  .branch-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .branch-card img {
    width: 130px;
    height: 130px;
  }

  .branch-card h3 {
    font-size: 0.9rem;
  }

  .branch-disclaimer {
    font-size: 0.75rem;
  }

  /* Service Packages */
  .packages-section,
  .booking-form-section {
    padding: 80px 0.8rem 1.5rem;
  }

  .service-header {
    padding: 20px 0.8rem;
  }

  .service-header h1 {
    font-size: 1.4rem;
  }

  .service-header p {
    font-size: 0.85rem;
  }

  .category-title {
    font-size: 1.2rem;
  }

  .package-item {
    padding: 0.9rem;
  }

  .item-name {
    font-size: 0.95rem;
  }

  .item-price {
    font-size: 1.1rem;
  }

  /* Booking Form */
  .booking-form-container {
    padding: 1.2rem;
  }

  .booking-form-container h2 {
    font-size: 1.2rem;
  }

  /* Barber Section */
  .barbers-section {
    padding: 70px 0.8rem 35px;
  }

  .barber-header {
    padding: 20px 0.8rem;
  }

  .barber-header h1 {
    font-size: 1.4rem;
  }

  .barber-photo {
    width: 80px;
    height: 80px;
  }

  .barber-info h3 {
    font-size: 1.1rem;
  }

  .skills-table table {
    font-size: 0.8rem;
  }

  .skills-table th,
  .skills-table td {
    padding: 0.5rem 0.6rem;
  }

  /* Confirmation & QRIS */
  .confirmation-card h1,
  .qris-card h1 {
    font-size: 1.3rem;
  }

  .summary-item {
    font-size: 0.9rem;
  }

  .summary-item .label {
    flex: 0 0 120px;
  }

  .qris-image {
    width: 180px;
    height: 180px;
  }

  .upload-area {
    padding: 18px;
  }

  /* College Page */
  .college-header h1 {
    font-size: 1.5rem;
  }

  .package-card {
    padding: 1.2rem;
  }

  .package-title {
    font-size: 1.3rem;
  }

  .package-price {
    font-size: 1.4rem;
  }

  .package-hours {
    font-size: 1.1rem;
  }

  /* Benefits Section */
  .benefits-section .benefit-title {
    font-size: 1.5rem;
  }

  .benefit-item {
    padding: 12px 15px;
    font-size: 0.85rem;
  }

  .benefit-item .benefit-number {
    min-width: 35px;
    height: 35px;
    font-size: 1.3rem;
  }

  /* Footer */
  .social-footer {
    padding: 20px 0 15px;
  }

  .social-icons {
    gap: 16px;
  }

  .social-icons a {
    font-size: 1.4rem;
  }

  .copyright {
    font-size: 0.75rem;
    padding: 0 10px;
  }
}

/* ========================================
   SMALL MOBILE (max-width: 360px)
   ======================================== */
@media (max-width: 360px) {

  /* Fix overlapping fixed navbar */
  .auth-section,
  .branch-section,
  .barbers-section,
  .packages-section,
  .booking-form-section,
  .booking-wrapper,
  .confirmation-container,
  .qris-container,
  .college-container,
  .community-wrapper,
  .gender-container,
  .gender-section {
    padding-top: 180px !important;
  }

  /* Navbar */
  .navbar {
    padding: 0.6rem 3%;
  }

  .logo-image {
    width: 40px;
    height: 40px;
  }

  .navbar-logo {
    font-size: 0.95rem;
  }

  .navbar-logo span {
    font-size: 0.65rem;
  }

  /* Hero */
  .hero .content h1 {
    font-size: 1.3rem;
  }

  .hero .content p {
    font-size: 0.8rem;
  }

  /* Sections */
  .services,
  .about-us,
  .our-divisi,
  .contact-us {
    padding: 1.5rem 0.6rem 1rem;
  }

  /* Visi Misi */
  .box {
    padding: 1rem;
  }

  .box p strong {
    font-size: 1.1rem;
  }

  /* Our Divisi */
  .our-divisi h2 {
    font-size: 1.3rem;
  }

  .circle {
    width: 85px;
    height: 85px;
  }

  .circle p,
  .circle-label {
    font-size: 0.75rem;
  }

  /* About Us */
  .about-us h3 {
    font-size: 1.3rem;
  }

  .about-us-subtitle {
    font-size: 0.8rem;
  }

  /* Contact */
  .contact-container h2 {
    font-size: 1.3rem;
  }

  .maps-box {
    height: 160px;
  }

  /* Auth */
  .auth-container h1 {
    font-size: 1.3rem;
  }

  .form-box {
    padding: 1rem;
  }

  /* Branch */
  .branch-card img {
    width: 110px;
    height: 110px;
  }

  /* Footer */
  .social-icons {
    gap: 14px;
  }

  .social-icons a {
    font-size: 1.3rem;
  }

  .copyright {
    font-size: 0.7rem;
  }
}

/* ========================================
   DESKTOP OPTIMIZATION (min-width: 1200px)
   ======================================== */
@media (min-width: 1200px) {

  .services-container,
  .about-us-container,
  .divisi-container,
  .contact-container {
    max-width: 1100px;
  }

  .hero .content h1 {
    font-size: 3.5rem;
  }

  .box {
    padding: 2rem;
  }

  .circle {
    width: 180px;
    height: 180px;
  }

  .branch-grid {
    max-width: 1200px;
    margin: 0 auto;
  }
}

/* === comunity  === */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000000;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

/* === WRAPPER UTAMA === */
.community-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 20px 80px;
}

/* === JUDUL UTAMA === */
.main-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #000;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

/* === SECTION GALLERY === */
.gallery-section {
  margin-bottom: 70px;
}

.gallery-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #000;
  text-align: center;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
}

/* ✅ GRID: 5 kolom per baris */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  padding: 0 15px;
  margin-bottom: 20px;
}

/* ✅ CARD FOTO */
.photo-card {
  aspect-ratio: 3 / 2;
  border: 2px solid #333;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.photo-card:hover {
  border-color: #ff6f61;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 111, 97, 0.4);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.photo-card:hover img {
  transform: scale(1.03);
}

/* ✅ TEKS DESKRIPSI DI BAWAH SETIAP SEGMEN */
.section-description {
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #444;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 10px;
  font-weight: 400;
}

/* ✅ COMMUNITY SUBMENU */
.community-submenu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin: 40px auto 50px;
  padding: 0 20px;
  flex-wrap: wrap;
}

.submenu-item {
  text-align: center;
}

.submenu-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  cursor: default;
}

.submenu-item h3:hover {
  background-color: transparent;
  color: #000;
  transform: none;
  box-shadow: none;
}

/* ✅ COMMUNITY CATEGORY SECTION */
.community-category-section {
  margin-top: 120px;
  margin-bottom: 60px;
  text-align: center;
}

.category-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  border: none;
  padding: 0;
}

.category-description {
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  max-width: 700px;
  margin: 0 auto 30px;
  padding: 0 15px;
  display: block;
}

/* ✅ SLIDER CONTAINER */
.slider-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
}

.slider-wrapper {
  flex: 1;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  background: #1a1a1a;
  border-radius: 10px;
  padding: 15px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE / Edge */
  cursor: grab;
}

.slider-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.slider-wrapper:active {
  cursor: grabbing;
}

.slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

.slider-track .photo-card {
  flex: 0 0 calc(20% - 19.2px);
  /* 5 cards visible: (100% - 4*24px gap) / 5 */
  min-width: 220px;
  scroll-snap-align: start;
}

/* ✅ SLIDER BUTTONS - HIDE BUTTONS AS REQUESTED */
.slider-btn {
  display: none !important;
}

.slider-btn:active {
  transform: scale(0.95);
}

/* === RESPONSIF === */

/* ========================================
   COMMUNITY PAGE - TABLET (max-width: 1024px)
   ======================================== */
@media (max-width: 1024px) {
  .photo-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .section-description {
    font-size: 1rem;
  }

  .slider-track .photo-card {
    flex: 0 0 calc(33.333% - 16px);
    /* 3 cards visible */
  }

  .category-title {
    font-size: 1.7rem;
  }

  .community-wrapper {
    padding: 100px 20px 70px;
  }
}

/* ========================================
   COMMUNITY PAGE - MOBILE LANDSCAPE (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {
  .community-wrapper {
    padding: 80px 15px 60px;
  }

  .main-title {
    font-size: 2rem;
    margin-bottom: 35px;
  }

  .gallery-section h2 {
    font-size: 1.7rem;
    margin-bottom: 18px;
  }

  .photo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 0 10px;
  }

  .section-description {
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 0 10px;
  }

  .slider-track .photo-card {
    flex: 0 0 calc(50% - 10px);
    /* 2 cards visible */
  }

  .slider-btn {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }

  .category-title {
    font-size: 1.5rem;
  }

  .category-description {
    font-size: 0.9rem;
    padding: 0 12px;
  }

  .community-submenu {
    gap: 2rem;
    margin: 30px auto 35px;
  }

  .submenu-item h3 {
    font-size: 1.1rem;
  }
}

/* ========================================
   COMMUNITY PAGE - MOBILE PORTRAIT (max-width: 480px)
   ======================================== */
@media (max-width: 480px) {
  .community-wrapper {
    padding: 70px 12px 50px;
  }

  .main-title {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }

  .gallery-section h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 8px;
  }

  .photo-card {
    border-width: 1.5px;
  }

  .section-description {
    font-size: 0.85rem;
    padding: 0 8px;
  }

  .community-submenu {
    gap: 1.2rem;
    margin: 25px auto 30px;
    padding: 0 10px;
  }

  .submenu-item h3 {
    font-size: 0.95rem;
    padding: 8px 15px;
  }

  .slider-track .photo-card {
    flex: 0 0 100%;
    /* 1 card visible */
  }

  .slider-btn {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }

  .slider-wrapper {
    padding: 8px;
  }

  .slider-container {
    gap: 8px;
    padding: 0 8px;
  }

  .category-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .category-description {
    font-size: 0.85rem;
    padding: 0 10px;
  }

  .section-description {
    font-size: 0.85rem;
    padding: 0 8px;
  }
}

/* ========================================
   COMMUNITY PAGE - SMALL MOBILE (max-width: 360px)
   ======================================== */
@media (max-width: 360px) {
  .community-wrapper {
    padding: 60px 10px 40px;
  }

  .main-title {
    font-size: 1.4rem;
  }

  .gallery-section h2 {
    font-size: 1.2rem;
  }

  .photo-grid {
    gap: 10px;
    padding: 0 5px;
  }

  .photo-card {
    border-width: 1px;
  }

  .section-description {
    font-size: 0.8rem;
  }

  .submenu-item h3 {
    font-size: 0.85rem;
    padding: 6px 12px;
  }

  .slider-btn {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }

  .category-title {
    font-size: 1.1rem;
  }

  .category-description {
    font-size: 0.8rem;
  }
}

/* === STRUK-PAGE-OVERRIDE-XBOX === */
body.struk-page {
    background: #ffffff !important;
    min-height: auto !important;
    height: auto !important;
    display: block !important;
    overflow-x: hidden !important;
}

body.struk-page > * {
    position: static !important;
}

body.struk-page .struk-wrapper {
    max-width: 480px !important;
    width: 92% !important;
    margin: 30px auto !important;
    padding: 0 0 40px !important;
    background: #ffffff !important;
    font-family: 'Poppins', sans-serif !important;
    color: #111827 !important;
    position: static !important;
    float: none !important;
    display: block !important;
}

body.struk-page .struk-header {
    text-align: center !important;
    border-bottom: 2px dashed #ccc !important;
    padding-bottom: 16px !important;
    margin-bottom: 16px !important;
}

body.struk-page .struk-header h1 {
    font-size: 1.2rem !important;
    margin: 0 0 8px !important;
}

body.struk-page .struk-header p {
    margin: 2px 0 !important;
    font-size: 0.9rem !important;
    color: #555 !important;
}

body.struk-page .struk-body p {
    margin: 6px 0 !important;
    font-size: 0.95rem !important;
}

body.struk-page .struk-body .status {
    text-align: center !important;
    font-weight: 700 !important;
    color: #16a34a !important;
    margin-top: 12px !important;
}

body.struk-page .struk-note {
    text-align: center !important;
    margin-top: 20px !important;
    font-size: 0.85rem !important;
    color: #666 !important;
}

@media (max-width: 480px) {
    body.struk-page .struk-wrapper {
        margin: 16px auto !important;
        width: 94% !important;
    }
    body.struk-page .struk-header h1 {
        font-size: 1.05rem !important;
    }
    body.struk-page .struk-body p {
        font-size: 0.88rem !important;
    }
}


/* === STRUK-PAGE-OVERRIDE-XBOX-V3 === */
body.struk-page .left-action-panel {
    position: static !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin: 16px 0 0 20px !important;
    width: fit-content !important;
}

body.struk-page .left-action-panel .user-profile-menu,
body.struk-page .left-action-panel .back-button-new {
    position: static !important;
    margin: 0 !important;
}

@media (max-width: 768px) {
    body.struk-page .left-action-panel {
        margin: 12px 0 0 12px !important;
        transform: none !important;
    }
}


/* === STRUK-PAGE-OVERRIDE-XBOX-V4 === */
body.struk-page {
    padding: 0 !important;
}


/* === STRUK-PAGE-OVERRIDE-XBOX-V5 === */
html, body.struk-page {
    background: #000000 !important;
    min-height: 100vh !important;
}

body.struk-page .left-action-panel .user-profile-menu,
body.struk-page .left-action-panel .back-button-new {
    /* biarkan tetap terlihat kontras di atas background hitam */
}

body.struk-page .struk-wrapper {
    margin: 40px auto 60px !important;
    padding: 40px 36px !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 4px 16px rgba(0, 0, 0, 0.3) !important;
}

body.struk-page .struk-header {
    padding-bottom: 20px !important;
    margin-bottom: 20px !important;
}

body.struk-page .struk-body p {
    margin: 10px 0 !important;
    line-height: 1.6 !important;
}

body.struk-page .struk-note {
    margin-top: 26px !important;
    line-height: 1.6 !important;
}

@media (max-width: 480px) {
    body.struk-page .struk-wrapper {
        margin: 24px auto 40px !important;
        padding: 28px 22px !important;
    }
}


/* === STRUK-PAGE-OVERRIDE-XBOX-V6 === */
body.struk-page .left-action-panel .back-button-new {
    background: #ffffff !important;
    border: 2px solid #111827 !important;
    color: #111827 !important;
}

body.struk-page .left-action-panel .back-button-new i,
body.struk-page .left-action-panel .back-button-new svg {
    color: #111827 !important;
    fill: #111827 !important;
}

body.struk-page .left-action-panel .back-button-new:hover {
    background: #f3f4f6 !important;
}
