html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
  width: 100%;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(
    254,
    254,
    254
  ); /* Warna coklat dengan transparansi 60% */
  z-index: -1;
}

.header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: linear-gradient(90deg, #8a7037, #bf9c4a, #eec55b);
  padding: 20px 40px;
  color: white;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-sizing: border-box;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
}

.title img {
  height: 45px;
  width: auto;
  margin-left: 180px;
}

.circle-container {
  position: absolute;
  top: -13px;
  left: -85px;
  width: 333px;
  height: 150px;
  overflow: hidden;
  z-index: 10;
}

.circle {
  position: absolute;
  width: 333px;
  height: 430px;
  border-radius: 50%;
  bottom: 0;
  transform: rotate(180deg);
  background-color: white;
  border: 5px solid #977b3c;
  display: flex;
  justify-content: center;
}

.circle img {
  top: 80px;
  right: -80px;
  width: 130px;
  height: 130px;
  transform: rotate(180deg); /* Membalik logo agar tampil normal */
}

.menu {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  margin-right: 40px;
}

.menu-list {
  list-style: none;
  display: flex;
  gap: 36px;
  height: 100%;
}

.menu-list li {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}

.menu-list li a {
  color: #ffffff;
  font-family: "Montserrat";
  font-size: 18px;
  text-decoration: none;
  padding: 0 8px;
  transition: color 0.2s;
}

.menu-list li.active a,
.menu-list li a:hover {
  color: #ffffff;
  font-weight: 700;
}

.menu-list .border {
  width: 1px;
  height: 28px;
  background: #fff;
  display: inline-block;
  vertical-align: middle;
  margin: 0 18px;
  padding: 0;
  border: none;
}

.content-1 {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: calc(100vh);
  background: #fff;
}

.left-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 0 60px 80px;
  background: #fff;
}

.left-section-content {
  max-width: 540px;
}

.left-section h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 50px;
  font-weight: 800;
  color: #8a7037;
  margin-bottom: 18px;
  margin-top: 0;
  line-height: 1.1;
  text-align: justify;
}

.left-section p {
  font-family: "Montserra", sans-serif;
  font-size: 20px;
  color: #8a7037;
  margin-bottom: 32px;
  text-align: justify;
  max-width: 480px;
}

.btn-secondary {
  background: #eec55b;
  color: #8a7037;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 12px;
  border: none;
  border-radius: 6px;
  padding: 14px 32px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(186, 153, 74, 0.12);
  transition: background 0.2s, color 0.2s;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  background: #bf9c4a;
  color: #fff;
}

.right-section {
  flex: 1.2;
  background: #eec55b;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.right-section img {
  width: 100%;
  height: auto;
  max-width: 750px;
  object-fit: cover;
}

.content-2 {
  min-height: calc(100vh);
  background: #eec55b;
}

.content-2 h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 50px;
  font-weight: 800;
  color: #8a7037;
  padding: 70px 0 70px 0;
  margin: 0 auto;
  line-height: 1.1;
  text-align: center;
}

.feature {
  margin: 0 20px 0 20px;
}

.mySwiper {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 0 48px 0;
  box-sizing: border-box;
  align-items: stretch;
  height: 480px;
}

swiper-slide {
  width: 100%;
  height: 100%;
}

swiper-slide img {
  width: 100%;
  max-width: 350px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 auto 18px auto;
  box-shadow: 0 2px 8px rgba(138, 112, 55, 0.1);
  border: 2px solid #333;
  display: block;
}

swiper-slide h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin: 18px 0 10px 0;
  text-align: center;
}

swiper-slide p {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #222;
  text-align: justify;
  margin: 0;
  line-height: 1.5;
}
/* Swiper Review Section (Ulasan Kos) */
.content-3 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 60px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.review-title {
  font-family: "Montserrat", sans-serif;
  font-size: 64px;
  font-weight: 800;
  color: #bf9c4a;
  text-align: center;
  margin-bottom: 5px;
  letter-spacing: 2px;
}

.review-title-center {
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #bf9c4a;
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: 2px;
}

.swiper {
  width: 900px;
  height: 400px;
  background: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-wrapper {
  align-items: center;
}

.swiper-slide {
  background: #f8e07a;
  border: 4px solid #222;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(186, 153, 74, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 800px;
  height: 340px;
  margin: 0 0px;
  position: relative;
}

.review-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 40px 48px;
  box-sizing: border-box;
}

.review-text {
  width: 100%;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #a68b3a;
  line-height: 1.6;
  text-align: justify;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
  margin-bottom: 24px;
}

.review-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: 0;
  margin-top: 0;
}

.review-avatar {
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 18px;
  margin-bottom: 12px;
  border: none;
  display: block;
}

.review-author ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.review-author li {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #a68b3a;
  margin-bottom: 2px;
  font-weight: 500;
  text-align: center;
}

.content-4 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  margin-top: 60px;
  background: #eec55b;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif; /* Pastikan font sama */
}

.content-4 h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 50px;
  font-weight: 800;
  color: #a68b3a;
  margin-bottom: 36px;
  text-align: center;
  letter-spacing: 1px;
}

.map-container {
  width: 100%;
  max-width: 1200px;
  height: 600px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(186, 153, 74, 0.12);
  margin-bottom: 80px;
  border: 4px solid #222;
  background: #fff;
  transition: box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

.map-container:hover {
  box-shadow: 0 8px 32px rgba(186, 153, 74, 0.18);
}

@media (max-width: 900px) {
  .map-container {
    height: 350px;
    max-width: 98vw;
    border-radius: 16px;
    margin-bottom: 24px;
  }
  .content-4 h2 {
    font-size: 32px;
  }
  .content-4 {
    padding: 36px 0;
  }
}

.footer {
  width: 100%;
  background: linear-gradient(135deg, #8a7037 0%, #bf9c4a 50%, #eec55b 100%);
  padding: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  position: relative;
  z-index: 2;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.3fr;
  gap: 50px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px 30px;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.footer-logo img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px;
}

.footer-logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.3;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social-link:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-menu a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-contact-icon {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 0.95rem;
}

.footer-contact-item div {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-item a:hover {
  color: #fff;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.1);
  padding: 20px 0;
  margin-top: 30px;
}

.footer-copyright {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-weight: 500;
}

.footer-copyright i {
  margin-right: 5px;
}

/* Mobile Responsive Styles */
/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  gap: 5px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 12px;
  position: absolute;
  right: 40px;
  width: 50px;
  height: 50px;
  z-index: 1001;
  transition: all 0.3s ease;
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.05);
}

.hamburger:active {
  transform: scale(0.95);
}

.hamburger span {
  width: 28px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

.hamburger.active {
  background: rgba(255, 255, 255, 0.25);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Tablet and Mobile Styles */
@media (max-width: 1024px) {
  .title img {
    margin-left: 100px;
    height: 40px;
  }
  
  .left-section {
    padding: 40px 40px;
  }
  
  .mySwiper {
    max-width: 95%;
    height: 450px;
  }
}

@media (max-width: 768px) {
  /* Header Mobile */
  .header {
    padding: 15px 20px;
    height: 70px;
  }
  
  .hamburger {
    display: flex;
    right: 20px;
  }
  
  .title img {
    margin-left: 70px;
    height: 35px;
  }
  
  .circle-container {
    width: 280px;
    height: 120px;
    left: -75px;
    top: -10px;
  }
  
  .circle {
    width: 280px;
    height: 360px;
  }
  
  .circle img {
    width: 110px;
    height: 110px;
    top: 70px;
    right: -70px;
  }
  
  /* Menu Mobile */
  .menu {
    margin-right: 0;
  }
  
  .menu nav {
    display: none;
  }
  
  #menu-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    display: none;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0;
  }
  
  #menu-nav.active {
    display: block !important;
    animation: slideDown 0.3s ease-out;
  }
  
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .menu-list {
    flex-direction: column !important;
    gap: 0 !important;
    padding: 15px 0 !important;
    width: 100%;
  }
  
  .menu-list li {
    padding: 12px 20px !important;
    width: 100%;
  }
  
  .menu-list li a {
    font-size: 1rem !important;
    color: #8a7037 !important;
  }
  
  .menu-list li.active a,
  .menu-list li a:hover {
    color: #eec55b !important;
  }
  
  .border {
    display: none !important;
  }
  
  /* Content 1 - Hero Section */
  .content-1 {
    flex-direction: column !important;
    min-height: auto !important;
  }
  
  .left-section {
    padding: 100px 30px 30px 30px !important;
    align-items: center !important;
    text-align: center !important;
  }
  
  .left-section-content {
    max-width: 100% !important;
  }
  
  .left-section h2 {
    font-size: 2rem !important;
    line-height: 1.2 !important;
    text-align: center !important;
  }
  
  .left-section p {
    font-size: 1rem !important;
    text-align: center !important;
    max-width: 100% !important;
  }
  
  .btn-secondary {
    font-size: 0.9rem !important;
    padding: 12px 24px !important;
  }
  
  .right-section {
    min-height: 300px !important;
    justify-content: center !important;
  }
  
  .right-section img {
    max-width: 100% !important;
    height: auto !important;
  }
  
  /* Content 2 - Features */
  .content-2 {
    min-height: auto !important;
    padding: 40px 0 !important;
  }
  
  .content-2 h2 {
    font-size: 2rem !important;
    padding: 30px 20px !important;
  }
  
  .mySwiper {
    height: 500px !important;
    padding: 20px 0 40px 0 !important;
  }
  
  swiper-slide h3 {
    font-size: 1.2rem !important;
  }
  
  swiper-slide p {
    font-size: 0.9rem !important;
  }
  
  /* Content 3 - Reviews */
  .content-3 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  
  .review-title {
    font-size: 2rem !important;
    margin-bottom: 5px !important;
  }

  .review-title-center {
    font-size: 1rem !important;
    color: #bf9c4a !important;
    margin-bottom: 20px !important;
  }
  
  .swiper {
    width: 95% !important;
    height: auto !important;
    min-height: 400px !important;
  }
  
  .swiper-slide {
    width: 90% !important;
    height: auto !important;
    min-height: 350px !important;
  }
  
  .review-card-content {
    flex-direction: column !important;
    padding: 25px !important;
  }
  
  .review-text {
    font-size: 0.9rem !important;
    margin-bottom: 20px !important;
  }
  
  .review-side {
    margin-left: 0 !important;
    margin-top: 20px !important;
  }
  
  .review-avatar {
    width: 100px !important;
    height: 100px !important;
  }
  
  .review-author li {
    font-size: 0.95rem !important;
  }
  
  /* Content 4 - Map */
  .content-4 {
    padding: 40px 20px !important;
  }
  
  .content-4 h2 {
    font-size: 2rem !important;
    margin-bottom: 25px !important;
  }
  
  .map-container {
    height: 400px !important;
    border-radius: 16px !important;
    margin-bottom: 40px !important;
  }
  
  /* Footer */
  .footer-container {
    flex-direction: column !important;
    gap: 25px !important;
    padding: 30px 20px !important;
    align-items: center !important;
  }
  
  .footer-menu {
    gap: 30px !important;
  }
  
  .footer-menu-col a {
    font-size: 1.3rem !important;
  }
  
  .footer-divider {
    width: 80px !important;
    height: 2px !important;
    margin: 10px 0 !important;
  }
}

@media (max-width: 480px) {
  /* Header Mobile Small */
  .header {
    padding: 12px 15px;
    height: 65px;
  }
  
  .title img {
    margin-left: 55px;
    height: 32px;
  }
  
  .hamburger {
    right: 15px;
  }
  
  .circle-container {
    width: 240px;
    height: 100px;
    left: -65px;
  }
  
  .circle {
    width: 240px;
    height: 310px;
  }
  
  .circle img {
    width: 90px;
    height: 90px;
    top: 60px;
    right: -60px;
  }
  
  /* Content 1 */
  .left-section {
    padding: 90px 20px 25px 20px !important;
  }
  
  .left-section h2 {
    font-size: 1.5rem !important;
  }
  
  .left-section p {
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
  }
  
  .btn-secondary {
    font-size: 0.85rem !important;
    padding: 10px 20px !important;
  }
  
  /* Content 2 */
  .content-2 h2 {
    font-size: 1.6rem !important;
    padding: 25px 15px !important;
  }
  
  .mySwiper {
    height: 480px !important;
  }
  
  swiper-slide img {
    height: 180px !important;
  }
  
  swiper-slide h3 {
    font-size: 1.1rem !important;
  }
  
  swiper-slide p {
    font-size: 0.85rem !important;
  }
  
  /* Content 3 */
  .review-title {
    font-size: 1.6rem !important;
  }
  
  .swiper-slide {
    width: 95% !important;
  }
  
  .review-card-content {
    padding: 20px !important;
  }
  
  .review-text {
    font-size: 0.85rem !important;
  }
  
  .review-avatar {
    width: 80px !important;
    height: 80px !important;
  }
  
  .review-author li {
    font-size: 0.85rem !important;
  }
  
  /* Content 4 */
  .content-4 h2 {
    font-size: 1.6rem !important;
  }
  
  .map-container {
    height: 300px !important;
    border-width: 2px !important;
  }
  
  /* Footer */
  .footer-menu-col a {
    font-size: 1.1rem !important;
  }
}

