/*====================================================
  HOTEL BOOK
  Version : 1.0
=====================================================*/

:root {
  --primary: #3264ff;
  --primary-dark: #1e4fe6;

  --text: #1f2937;
  --text-light: #6b7280;

  --border: #e6e8ee;

  --bg: #f5f7fb;

  --white: #ffffff;

  --shadow: 0 12px 35px rgba(0, 0, 0, 0.08);

  --radius: 18px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;

  background: var(--bg);

  color: var(--text);

  line-height: 1.5;

  overflow-x: hidden;
}

img {
  max-width: 100%;

  display: block;
}

a {
  text-decoration: none;

  color: inherit;
}

.container {
  width: 1280px;

  margin: auto;
}

/*==========================
HEADER
===========================*/

.header {
  position: sticky;

  top: 0;

  left: 0;

  z-index: 9999;

  background: #fff;

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.header .container {
  display: flex;

  align-items: center;

  justify-content: space-between;

  height: 76px;
}

.logo {
  font-size: 34px;

  font-weight: 800;

  color: var(--primary);

  letter-spacing: -1px;
}

.menu {
  display: flex;

  gap: 34px;
}

.menu a {
  font-size: 15px;

  font-weight: 600;

  position: relative;

  transition: 0.3s;
}

.menu a:hover {
  color: var(--primary);
}

.menu a::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: -8px;

  width: 0;

  height: 3px;

  background: var(--primary);

  transition: 0.3s;

  border-radius: 20px;
}

.menu a:hover::after {
  width: 100%;
}

.header-right {
  display: flex;

  align-items: center;

  gap: 20px;

  font-size: 14px;
}

.login-btn {
  padding: 12px 22px;

  background: var(--primary);

  color: #fff;

  border: none;

  border-radius: 10px;

  cursor: pointer;

  font-weight: 700;

  transition: 0.3s;
}

.login-btn:hover {
  background: var(--primary-dark);

  transform: translateY(-2px);
}

/*==========================
SEARCH
===========================*/

.search-section {
  padding: 26px 0;
}

.search-box {
  display: grid;

  grid-template-columns: 2.4fr 1fr 1fr 1.3fr 170px;

  background: #fff;

  border-radius: 18px;

  box-shadow: var(--shadow);

  overflow: hidden;

  border: 2px solid rgba(50, 100, 255, 0.08);
}

.search-item {
  display: flex;

  align-items: center;

  padding: 20px 24px;

  border-right: 1px solid var(--border);
}

.search-item:last-child {
  border-right: none;
}

.search-item i {
  font-size: 20px;

  color: var(--primary);

  margin-right: 15px;
}

.search-item input {
  width: 100%;

  border: none;

  outline: none;

  font-size: 15px;

  font-weight: 500;

  background: none;
}

.search-box button {
  border: none;

  background: var(--primary);

  color: #fff;

  font-size: 18px;

  font-weight: 700;

  cursor: pointer;

  transition: 0.3s;
}

.search-box button:hover {
  background: var(--primary-dark);
}

/*==========================
BREADCRUMB
===========================*/

.breadcrumb {
  font-size: 14px;

  color: #000000;

  margin-bottom: 18px;
}

.hotel-page h1 {
  font-size: 38px;
  color: #fa0000;
  font-weight: 800;

  margin-bottom: 14px;

  letter-spacing: -0.5px;
}

.hotel-info {
  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-bottom: 30px;
}

.left-info {
  display: flex;

  flex-direction: column;

  gap: 10px;
}

.stars {
  font-size: 18px;

  color: #ffb400;

  letter-spacing: 2px;
}

.address {
  display: flex;

  align-items: center;

  gap: 10px;

  color: #666;

  font-size: 15px;
}

.address i {
  color: var(--primary);
}

.right-action {
  display: flex;

  gap: 15px;
}

.right-action button {
  padding: 11px 18px;

  background: #fff;

  border: 1px solid var(--border);

  border-radius: 10px;

  cursor: pointer;

  font-weight: 600;

  transition: 0.3s;
}

.right-action button:hover {
  background: #f3f6ff;

  border-color: var(--primary);
}
/*====================================================
GALLERY
====================================================*/

.gallery {
  display: grid;

  grid-template-columns: 2fr 1.1fr;

  gap: 8px;

  margin-bottom: 30px;
}

.gallery-left {
  height: 520px;

  overflow: hidden;

  border-radius: 18px 0 0 18px;
}

.gallery-left img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: 0.5s;

  cursor: pointer;
}

.gallery-left:hover img {
  transform: scale(1.08);
}

.gallery-right {
  display: grid;

  grid-template-columns: 1fr 1fr;

  grid-template-rows: 1fr 1fr;

  gap: 8px;
}

.gallery-right div {
  position: relative;

  overflow: hidden;
}

.gallery-right img {
  width: 100%;

  height: 256px;

  object-fit: cover;

  transition: 0.45s;

  cursor: pointer;
}

.gallery-right img:hover {
  transform: scale(1.08);
}

.gallery-right div:nth-child(2) {
  border-top-right-radius: 18px;

  overflow: hidden;
}

.gallery-right div:nth-child(4) {
  border-bottom-right-radius: 18px;

  overflow: hidden;
}

.photo-overlay {
  position: absolute;

  inset: 0;

  background: rgba(0, 0, 0, 0.45);

  display: flex;

  justify-content: center;

  align-items: center;

  color: #fff;

  font-size: 18px;

  font-weight: 700;

  backdrop-filter: blur(2px);

  opacity: 0;

  transition: 0.3s;
}

.gallery-right div:hover .photo-overlay {
  opacity: 1;
}

/*====================================================
MAIN GRID
====================================================*/

.main-grid {
  display: grid;

  grid-template-columns: 1.8fr 420px;

  gap: 35px;

  align-items: start;

  margin-top: 25px;
}

/*====================================================
FEATURES
====================================================*/

.feature-icons {
  display: grid;

  grid-template-columns: repeat(5, 1fr);

  gap: 18px;

  margin-bottom: 35px;
}

.feature {
  background: #fff;

  border-radius: 16px;

  padding: 22px 10px;

  text-align: center;

  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);

  transition: 0.35s;

  cursor: pointer;
}

.feature:hover {
  transform: translateY(-6px);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.feature i {
  font-size: 34px;

  color: #3264ff;

  margin-bottom: 14px;

  display: block;
}

.feature span {
  display: block;

  font-size: 14px;

  font-weight: 600;

  color: #444;

  line-height: 1.4;
}

/*====================================================
REVIEW
====================================================*/

.review-card {
  display: flex;

  align-items: center;

  gap: 22px;

  background: #fff;

  padding: 28px;

  border-radius: 18px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

  margin-bottom: 30px;
}

.score {
  width: 95px;

  height: 95px;

  border-radius: 18px;

  background: #3264ff;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 42px;

  font-weight: 800;

  color: #fff;

  flex-shrink: 0;
}

.review-card h3 {
  font-size: 26px;

  margin-bottom: 8px;
}

.review-card p {
  color: #777;

  font-size: 15px;
}

/*====================================================
DESCRIPTION
====================================================*/

.description {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgb(0, 0, 0);
  border: 1px solid #fafafa;
  margin-bottom: 35px;
}

.description h2 {
  font-size: 28px;

  margin-bottom: 18px;

  font-weight: 800;
}

.description p {
  font-size: 16px;

  line-height: 1.9;

  color: #555;
}

/*====================================================
BOOKING CARD
====================================================*/

.booking-card {
  position: sticky;

  top: 95px;
}

.booking-box {
  background: #fff;

  border-radius: 22px;

  padding: 30px;

  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.952);

  border: 1px solid #fafafa;
}

.booking-box h4 {
  font-size: 15px;

  color: #777;

  margin-bottom: 8px;
}

.booking-box h2 {
  font-size: 40px;

  font-weight: 800;

  color: #3264ff;

  margin-bottom: 15px;
}

.booking-box p {
  font-size: 15px;

  margin-bottom: 20px;

  color: #444;
}

.booking-box ul {
  list-style: none;

  margin-bottom: 25px;
}

.booking-box ul li {
  padding: 12px 0;

  border-bottom: 1px solid #ececec;

  font-size: 15px;

  color: #666;

  display: flex;

  align-items: center;

  gap: 10px;
}

.booking-box ul li::before {
  content: "✓";

  color: #00b66c;

  font-weight: 700;

  font-size: 16px;
}

.booking-box button {
  width: 100%;

  height: 58px;

  border: none;

  border-radius: 14px;

  background: #3264ff;

  color: #fff;

  font-size: 17px;

  font-weight: 700;

  cursor: pointer;

  transition: 0.35s;
}

.booking-box button:hover {
  background: #2455ef;

  transform: translateY(-2px);

  box-shadow: 0 12px 30px rgba(50, 100, 255, 0.35);
}

/*====================================================
SECTION SPACING
====================================================*/

.hotel-page {
  padding-bottom: 60px;
}

footer {
  background: #fff;

  border-top: 1px solid #e8edf5;

  padding: 35px 0;

  margin-top: 60px;

  text-align: center;

  color: #666;

  font-size: 14px;
}
/*=========================================
1400px
=========================================*/

@media (max-width: 1400px) {
  .container {
    width: 95%;
  }

  .main-grid {
    grid-template-columns: 1fr 390px;
  }

  .gallery-left {
    height: 470px;
  }

  .gallery-right img {
    height: 231px;
  }
}

/*=========================================
1200px
=========================================*/

@media (max-width: 1200px) {
  .menu {
    gap: 20px;
  }

  .search-box {
    grid-template-columns: repeat(2, 1fr);
  }

  .search-box button {
    grid-column: span 2;

    height: 65px;
  }

  .main-grid {
    grid-template-columns: 1fr;
  }

  .booking-card {
    position: relative;

    top: 0;
  }

  .feature-icons {
    grid-template-columns: repeat(3, 1fr);
  }
}

/*=========================================
992px
=========================================*/

@media (max-width: 992px) {
  .header {
    position: relative;
  }

  .header .container {
    height: 70px;
  }

  .menu {
    display: none;
  }

  .header-right {
    display: none;
  }

  .logo {
    font-size: 28px;
  }

  .search-section {
    padding: 20px 0;
  }

  .search-box {
    grid-template-columns: 1fr;
  }

  .search-item {
    border-right: none;

    border-bottom: 1px solid #ececec;
  }

  .search-box button {
    grid-column: auto;

    height: 60px;
  }

  .hotel-page h1 {
    font-size: 30px;
  }

  .hotel-info {
    flex-direction: column;

    align-items: flex-start;

    gap: 20px;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery-left {
    border-radius: 18px;

    height: 420px;
  }

  .gallery-right {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-right img {
    height: 180px;
  }

  .feature-icons {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-card {
    flex-direction: column;

    align-items: flex-start;
  }

  .booking-box {
    margin-top: 25px;
  }
}

/*=========================================
768px
=========================================*/

@media (max-width: 768px) {
  .container {
    width: 92%;
  }

  .hotel-page {
    padding-top: 10px;
  }

  .hotel-page h1 {
    font-size: 26px;

    line-height: 1.3;
  }

  .gallery-left {
    height: 300px;
  }

  .gallery-right {
    display: none;
  }

  .feature-icons {
    grid-template-columns: 1fr 1fr;

    gap: 15px;
  }

  .feature {
    padding: 18px;
  }

  .review-card {
    padding: 22px;
  }

  .score {
    width: 80px;

    height: 80px;

    font-size: 32px;
  }

  .description {
    padding: 25px;
  }

  .description h2 {
    font-size: 24px;
  }

  .booking-box {
    padding: 22px;
  }

  .booking-box h2 {
    font-size: 32px;
  }
}

/*=========================================
576px
=========================================*/

@media (max-width: 576px) {
  .logo {
    font-size: 24px;
  }

  .search-item {
    padding: 16px;
  }

  .search-item input {
    font-size: 14px;
  }

  .hotel-page h1 {
    font-size: 22px;
  }

  .stars {
    font-size: 16px;
  }

  .address {
    font-size: 14px;
  }

  .right-action {
    width: 100%;

    display: grid;

    grid-template-columns: 1fr 1fr;
  }

  .right-action button {
    width: 100%;
  }

  .gallery-left {
    height: 240px;
  }

  .feature-icons {
    grid-template-columns: 1fr;
  }

  .feature {
    display: flex;

    align-items: center;

    justify-content: flex-start;

    gap: 15px;

    text-align: left;
  }

  .feature i {
    margin: 0;

    font-size: 28px;
  }

  .review-card {
    padding: 18px;
  }

  .review-card h3 {
    font-size: 22px;
  }

  .score {
    width: 70px;

    height: 70px;

    font-size: 28px;
  }

  .description {
    padding: 20px;
  }

  .description p {
    font-size: 15px;
  }

  .booking-box {
    padding: 20px;

    border-radius: 18px;
  }

  .booking-box h2 {
    font-size: 28px;
  }

  .booking-box button {
    height: 55px;

    font-size: 16px;
  }

  footer {
    padding-bottom: 90px;
  }
}

/*=========================================
BOTTOM BOOKING BAR MOBILE
=========================================*/

.mobile-booking {
  display: none;
}

@media (max-width: 768px) {
  .mobile-booking {
    display: flex;

    position: fixed;

    bottom: 0;

    left: 0;

    width: 100%;

    background: #fff;

    padding: 12px;

    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.15);

    justify-content: space-between;

    align-items: center;

    z-index: 99999;
  }

  .mobile-price {
    display: flex;

    flex-direction: column;
  }

  .mobile-price strong {
    font-size: 22px;

    color: #3264ff;

    font-weight: 800;
  }

  .mobile-booking button {
    width: 170px;

    height: 50px;

    background: #3264ff;

    color: #fff;

    border: none;

    border-radius: 12px;

    font-weight: 700;

    cursor: pointer;
  }
}
/*=========================
LIGHTBOX
==========================*/

.lightbox {
  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.93);

  display: flex;

  justify-content: center;

  align-items: center;

  opacity: 0;

  visibility: hidden;

  transition: 0.35s;

  z-index: 999999;
}

.lightbox.show {
  opacity: 1;

  visibility: visible;
}

.lightbox img {
  max-width: 90%;

  max-height: 85vh;

  border-radius: 18px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.lightbox button {
  position: absolute;

  width: 55px;

  height: 55px;

  border: none;

  border-radius: 50%;

  background: #fff;

  cursor: pointer;

  font-size: 20px;

  transition: 0.25s;
}

.lightbox button:hover {
  transform: scale(1.08);
}

.close-lightbox {
  top: 35px;

  right: 35px;
}

.prev-image {
  left: 40px;
}

.next-image {
  right: 40px;
}
.header {
  transition: 0.35s;
}

.header-scroll {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);

  background: rgba(255, 255, 255, 0.96);

  backdrop-filter: blur(16px);
}
.gallery {
  overflow: hidden;
}

.gallery img {
  transition: 0.45s;
}

.gallery img:hover {
  transform: scale(1.07);

  filter: brightness(0.92);
}
.floating-action {
  position: fixed;

  right: 30px;

  bottom: 30px;

  display: flex;

  flex-direction: column;

  gap: 14px;

  z-index: 999;
}
/*===========================
ROOMS
============================*/

.section-title {
  font-size: 32px;

  font-weight: 800;

  margin-bottom: 25px;
  color: #ffd900; /* Warna tulisan */
  letter-spacing: 2px;
  margin: 30px 0;
  text-shadow:
    0 0 8px rgba(7, 7, 7, 0.8),
    0 0 20px rgba(15, 15, 15, 0.6),
    2px 2px 5px rgba(0, 0, 0, 0.6);
}

.rooms {
  margin-top: 50px;
}

.room-card {
  display: grid;

  grid-template-columns: 280px 1fr 240px;

  background: #fff;

  border-radius: 20px;

  overflow: hidden;

  margin-bottom: 22px;

  box-shadow: 0 8px 28px rgb(0, 0, 0);
  border: 1px solid #fafafa;

  transition: 0.35s;
}

.room-card:hover {
  transform: translateY(-4px);

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.room-image {
  height: 220px;

  overflow: hidden;
}

.room-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: 0.4s;
}

.room-card:hover img {
  transform: scale(1.08);
}

.room-detail {
  padding: 28px;
}

.room-detail h3 {
  font-size: 24px;

  margin-bottom: 18px;
}

.room-info {
  display: flex;

  flex-wrap: wrap;

  gap: 14px;

  margin-bottom: 18px;
}

.room-info span {
  background: #f5f7fb;

  padding: 10px 14px;

  border-radius: 30px;

  font-size: 14px;
}

.room-info i {
  color: #3264ff;

  margin-right: 8px;
}

.room-detail ul {
  padding-left: 18px;

  color: #666;

  line-height: 2;
}

.room-price {
  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  background: #fafbfe;

  border-left: 1px solid #edf1f7;
}

.room-price small {
  color: #777;

  margin-bottom: 8px;
}

.room-price h2 {
  font-size: 34px;

  color: #3264ff;

  margin-bottom: 20px;

  font-weight: 800;
}

.room-price a button {
  width: 170px;

  height: 52px;

  border: none;

  background: #3264ff;

  color: #fff;

  font-weight: 700;

  border-radius: 12px;

  cursor: pointer;

  transition: 0.3s;
}

.room-price button:hover {
  background: #3264ff;

  transform: translateY(-2px);
}
@media (max-width: 992px) {
  .room-card {
    grid-template-columns: 1fr;
  }

  .room-image {
    height: 250px;
  }

  .room-price {
    padding: 30px;

    border-left: none;

    border-top: 1px solid #ececec;
  }
}

@media (max-width: 576px) {
  .room-detail {
    padding: 20px;
  }

  .room-detail h3 {
    font-size: 20px;
  }

  .room-price h2 {
    font-size: 28px;
  }

  .room-price button {
    width: 100%;
  }
}
/*=========================
REVIEWS
=========================*/

.reviews {
  margin-top: 60px;
}

.review-summary {
  display: grid;

  grid-template-columns: 280px 1fr;

  gap: 30px;

  margin-bottom: 30px;
}

.overall-score {
  background: #3264ff;

  color: #fff;

  border-radius: 20px;

  padding: 35px;

  text-align: center;
}

.big-score {
  font-size: 72px;

  font-weight: 800;

  line-height: 1;

  margin-bottom: 10px;
}

.overall-score h3 {
  margin-bottom: 8px;
}

.rating-bars {
  background: #fff;

  padding: 30px;

  border-radius: 20px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.rating-item {
  display: grid;

  grid-template-columns: 130px 1fr 50px;

  align-items: center;

  gap: 18px;

  margin-bottom: 18px;
}

.bar {
  height: 10px;

  background: #eef2f7;

  border-radius: 50px;

  overflow: hidden;
}

.bar div {
  height: 100%;

  background: #3264ff;

  border-radius: 50px;
}

.review-filter {
  display: flex;

  gap: 12px;

  margin-bottom: 30px;

  flex-wrap: wrap;
}

.review-filter button {
  padding: 10px 22px;

  border: none;

  background: #eef3ff;

  border-radius: 30px;

  cursor: pointer;

  font-weight: 600;

  transition: 0.3s;
}

.review-filter button.active,
.review-filter button:hover {
  background: #3264ff;

  color: #fff;
}

.review-list {
  display: flex;

  flex-direction: column;

  gap: 20px;
}

.review-item {
  display: flex;

  gap: 20px;

  background: #fff;

  padding: 28px;

  border-radius: 18px;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.review-avatar {
  width: 65px;

  height: 65px;

  border-radius: 50%;

  background: #3264ff;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 26px;

  font-weight: 700;

  color: #fff;

  flex-shrink: 0;
}

.review-content {
  flex: 1;
}

.review-top {
  display: flex;

  justify-content: space-between;

  margin-bottom: 8px;
}

.review-top span {
  color: #ffb400;
}

.review-content small {
  display: block;

  color: #888;

  margin-bottom: 12px;
}

.review-content p {
  line-height: 1.8;

  color: #555;
}
.faq-section {
  max-width: 900px;
  margin: 50px auto;
  padding: 25px;
}

.faq-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #ffd900; /* Warna tulisan */
  letter-spacing: 2px;
  margin: 20px 0;
  text-shadow:
    0 0 8px rgba(7, 7, 7, 0.8),
    0 0 20px rgba(15, 15, 15, 0.6),
    2px 2px 5px rgba(0, 0, 0, 0.6);
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  font-size: 22px;
  color: #3264ff;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 22px 20px;
  line-height: 1.8;
  color: #666;
}

/* =========================
   FIX MOBILE LANDING PAGE
   ========================= */

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Semua section/container */
section,
header,
footer,
main,
.container,
.wrap,
.wrapper {
    max-width: 100%;
}

/* Gambar dan media */
img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

/* Tabel */
table {
    max-width: 100%;
}

/* =========================
   MOBILE
   ========================= */

@media screen and (max-width: 768px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Container utama */
    .container,
    .wrapper,
    .wrap,
    main,
    section {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    /* Jangan sampai padding bikin melebar */
    .container,
    .wrapper,
    .wrap {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Gambar */
    img {
        display: block;
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    /* Text */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p {
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    /* Link panjang / URL */
    a {
        overflow-wrap: break-word;
        word-break: break-word;
    }

    /* Flex agar tidak keluar layar */
    .row,
    .flex {
        max-width: 100%;
        flex-wrap: wrap;
    }

    /* Grid */
    .grid {
        width: 100%;
        max-width: 100%;
    }

    /* FAQ */
    .faq-container {
        width: 100%;
        max-width: 100%;
    }

    .faq-item {
        max-width: 100%;
    }

    /* Testimoni */
    .testimoni-section {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .testimoni-grid {
        width: 100%;
        max-width: 100%;
        grid-template-columns: 1fr;
    }

    .testimoni-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    /* Jangan biarkan elemen fixed width melewati layar */
    [style*="width"] {
        max-width: 100%;
    }
}
