/* ========= GLOBAL STYLE ========= */

body.loading > *:not(#loader) {
  display: none !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(135deg, #f9f9f9, #f1f5f9);
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ========= NAVBAR ========= */
nav {
  background: rgba(15, 28, 46, 0.9);
  backdrop-filter: blur(12px);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 15px 6%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: background 0.4s ease-in-out;
}

nav:hover {
  background: rgba(15, 28, 46, 1);
}

/* ========= LOGO + BRAND TEXT ========= */
nav .brand {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffb703;
  letter-spacing: 0.8px;
  text-shadow: 0 0 5px rgba(255, 183, 3, 0.6);
  transition: transform 0.3s ease;
  gap: 8px;
}

nav .brand:hover {
  transform: scale(1.05) rotate(-2deg);
}

nav .brand img.logo {
  height: 34px;
  width: auto;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.25));
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
  cursor: pointer;
}

nav .brand img.logo:hover {
  transform: scale(1.08) rotate(-3deg);
  filter: drop-shadow(0 4px 7px rgba(255, 183, 3, 0.6));
}

/* ========= HAMBURGER BUTTON ========= */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.hamburger {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  position: relative;
  transition: background 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

.nav-toggle.active .hamburger {
  background: transparent;
}

.nav-toggle.active .hamburger::before {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active .hamburger::after {
  transform: translateY(-8px) rotate(-45deg);
}

/* ========= MENU ========= */
nav .nav-menu {
  display: flex;
  list-style: none;
  gap: 25px;
  margin-left: auto;
  padding: 0;
}

nav .nav-menu li {
  position: relative;
}

nav .nav-menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 4px 0;
  transition: 0.4s;
}

nav .nav-menu li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #ffb703;
  left: 0;
  bottom: -4px;
  transition: 0.4s;
}

nav .nav-menu li a:hover {
  color: #ffb703;
}

nav .nav-menu li a:hover::after {
  width: 100%;
}

/* ========= RESPONSIVE NAVBAR ========= */
@media (max-width: 768px) {
  nav {
    flex-wrap: wrap;
    padding: 15px 5%;
  }

  .nav-toggle {
    display: block;
  }

  nav .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    margin-top: 15px;
    background: rgba(15, 28, 46, 0.95);
    border-radius: 10px;
    overflow: hidden;
  }

  nav .nav-menu.open {
    display: flex;
  }

  nav .nav-menu li {
    width: 100%;
  }

  nav .nav-menu li a {
    display: block;
    padding: 14px 20px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  nav .nav-menu li a::after {
    display: none;
  }

  nav .nav-menu li:last-child a {
    border-bottom: none;
  }

  nav .brand img.logo {
    height: 30px;
  }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  nav {
    padding: 12px 4%;
  }

  nav .nav-menu {
    gap: 18px;
  }

  nav .nav-menu li a {
    font-size: 0.85rem;
  }

  nav .brand {
    font-size: 1rem;
  }
}

/* ============================= */
/* ========= HERO AREA ========= */
/* ============================= */

.hero-wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  background-color: #0b0f1f;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background image layer */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  transition: background-image 0.6s ease-in-out;
}

/* Overlay */
.hero-wrap .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

/* ============================= */
/* ===== HERO CONTENT FIX ====== */
/* ============================= */

.content-wrapper {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  width: 100%;
  max-width: 900px;
  padding: 0 20px;
}

/* Logo */
.hero-logo {
  height: 100px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto 20px auto;
}

/* Dynamic text wrapper */
#dynamic-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  max-width: 800px;
  margin: 0 auto 20px auto;
  transition: opacity 0.4s ease-in-out;
}

/* Title */
#hero-title {
  font-weight: 800;
  font-size: 3.5rem;
  line-height: 1.2;
  text-align: center;

  background: linear-gradient(to right, #ffa500, #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  margin-bottom: 20px;
}

/* Subtitle */
#hero-subtitle {
  color: #e0e0e0;
  font-size: 1.0rem;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
}

/* Fade animation for text change */
#dynamic-content.fade-out {
  opacity: 0;
  pointer-events: none;
}

/* ============================= */
/* ===== SEARCH FORM (KEEP) ==== */
/* ============================= */

.search-location {
  margin-top: 2rem;
  padding: 0 20px;
}

.search-location .form-group {
  margin-bottom: 0;
}

.search-location .form-field {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.search-location input,
.search-location select {
  padding: 12px 15px;
  border: none;
  border-radius: 8px;
  min-width: 220px;
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

.search-location select option {
  background: #fff;
  color: #000;
}

.search-location input::placeholder {
  color: #ddd;
}

.search-location input:focus,
.search-location select:focus {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

.search-location button {
  padding: 12px 25px;
  background: linear-gradient(135deg, #ffb703, #fb8500);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: 0.4s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.search-location button:hover {
  background: linear-gradient(135deg, #fb8500, #ffb703);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

#propertyType {
  width: 400px;          /* lebar tetap besar */
  min-width: 300px;      /* tetap ada batas bawah */
  max-width: 100%;        /* tidak melebihi container */
  padding: 12px 15px;
  border-radius: 8px;
  border: none;
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  font-size: 1rem;        /* teks tetap proporsional */
}

#propertyType:focus {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}
/* ============================= */
/* ========= RESPONSIVE ======== */
/* ============================= */

@media (max-width: 992px) {
  #hero-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .hero-bg {
    background-position: 40% center;
  }

  .hero-wrap {
    min-height: 550px;
  }

  .hero-logo {
    height: 70px;
  }

  #hero-title {
    font-size: 2rem;
  }

  #hero-subtitle {
    font-size: 0.85rem;   /* lebih kecil */
    line-height: 1.4;
    padding: 0 10px;      /* biar tidak mepet */
  }


  .search-location .form-field {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .search-location input,
  .search-location select,
  .search-location button {
    width: 100%;
  }
}

/* ========= SERVICES ========= */
.ftco-section {
  padding: 60px 0 30px 0;
  background: linear-gradient(135deg, #0a2540, #102c54);
  color: #fff;
  text-align: center;
}

.heading-section {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  animation: fadeInDown 1s ease;
  color: #ffffff;
}

.subheading {
  font-size: 1.4rem;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  display: inline-block;
  background: linear-gradient(90deg, #f9d423, #ff4e50);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 1s ease;
  letter-spacing: 1px;
}

.services {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 40px 20px;
  background: linear-gradient(135deg, #0a2540, #102c54);
}

.service {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px 20px;
  width: 280px;
  text-align: center;
  color: #fff;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  cursor: pointer;
  animation: fadeIn 1s ease;
}

.service:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.service .icon {
  font-size: 3rem;
  margin-bottom: 15px;
  animation: bounce 2s infinite;
}

.service h5 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.service p {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@media (max-width: 768px) {
  .subheading {
    font-size: 1.0rem;
    white-space: nowrap;
    display: inline-block;
    width: auto;
    max-width: 100%;
  }

  .heading-section {
    font-size: 2rem;
    margin-bottom: 5px;
  }
  .ftco-section {
    padding: 40px 0 20px 0;
  }
}

/* === RECOMMENDED SECTION === */
.recommended {
  background: linear-gradient(135deg, #0a2540, #102c54);
  padding: 60px 5%;
  text-align: center;
  animation: fadeIn 1s ease;
}

.recommended h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 40px;
  font-weight: 700;
  letter-spacing: 1px;
  animation: fadeInDown 1s ease;
}

.recommended {
  display: none;
}


/* === SLIDER / CONTAINER (GRID SYSTEM) === */
.recommended .slider-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
  width: 100%;
  animation: fadeInUp 1.2s ease;
}

/* === PROPERTY CARD === */
.property {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;

  width: 100%;
  max-width: 380px;

  color: #fff;
  animation: zoomIn 0.8s ease;
  display: flex;
  flex-direction: column;
}

.property:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.property img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.property:hover img {
  transform: scale(1.08);
}

/* Text Container */
.property .text {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  animation: fadeIn 1s ease;
}

/* Price */
.property .price {
  font-weight: 700;
  color: #f9d423;
  margin-bottom: 15px;
  font-size: 1.2rem;
  animation: pulse 2s infinite;
}

.property ul {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  font-size: 0.9rem;
  margin-bottom: 20px;
  opacity: 0.9;
  color: #ddd;
}

.property h5 {
  font-size: 1.4rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.property span {
  display: block;
  font-size: 0.9rem;
  color: #bbb;
  margin-bottom: 20px;
}

/* === BUTTON DETAILS === */
.btn-details {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(90deg, #f9d423, #ff4e50);
  color: #0a2540;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.3s ease;
  margin-top: auto;
  animation: glow 2s infinite;
}

.btn-details:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(249, 212, 35, 0.5);
}

/* === RESPONSIVE KHUSUS === */
@media (max-width: 768px) {
  .recommended {
    padding: 50px 20px;
  }

  .recommended .slider-container {
    gap: 20px;
  }

  .property ul {
    gap: 10px;
    font-size: 0.85rem;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes pulse {
  0%,
  100% {
    color: #f9d423;
  }
  50% {
    color: #ff4e50;
  }
}
@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(249, 212, 35, 0.7);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 78, 80, 0.9);
  }
}

/* === WHO WE ARE SECTION === */
#who-we-are {
  padding: 100px 8%;
  background: linear-gradient(135deg, #0a2540, #102c54);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

/* === LEFT CONTENT === */
.who-left {
  flex: 1;
  max-width: 600px;
}

.who-subtitle {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #f9d423;
  margin-bottom: 15px;
  display: inline-block;
  text-transform: uppercase;
}

.who-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-top: -10px;
  margin-bottom: 25px;
  line-height: 1.3;
  color: #fff;
}


.who-desc {
  font-size: 1.00rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  text-align: justify;
}

/* === RIGHT STATS === */
.who-stats {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  justify-items: center;
}

.stat-box {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  position: relative;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.stat-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, #f9d423, #fb8500);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.7;
}

.stat-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.stat-box h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.stat-box h3 span:last-child {
  font-size: 0.85rem;
  color: #f9d423;
  margin-top: 5px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.stat-box p {
  font-size: 0.85rem;
  color: #ccc;
  margin-top: 8px;
  font-weight: 500;
}

/* === RESPONSIVE MOBILE === */
@media (max-width: 968px) {
  #who-we-are {
    padding: 70px 20px;
  }

  .about-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .who-left {
    max-width: 100%;
    padding-right: 0;
  }

  .who-desc {
    text-align: center;
  }

  .who-stats {
    width: 100%;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .who-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .stat-box {
    width: 135px;
    height: 135px;
  }

  .stat-box h3 {
    font-size: 1.5rem;
  }
}
/* ===== TAMBAHKAN DI SINI (PALING BAWAH) ===== */
@media (max-width: 768px) {
  .who-title {
    font-size: 1.6rem;
    line-height: 1.3;
  }
}

@media (max-width: 480px) {
  .who-title {
    font-size: 1.4rem;
  }

  .who-desc {
    font-size: 0.95rem;
  }

  .stat-box {
    width: 120px;
    height: 120px;
  }
}

/* === ABOUT SECTION === */
.about {
  padding: 100px 8%;
  background: linear-gradient(135deg, #0a2540, #102c54);
  color: #fff;
  overflow: hidden;
}

.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.about-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: flex-end; /* geser ke kanan */
  align-items: center;
}


.about-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  margin-left: 80px; /* atur sesuai kebutuhan */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.02) rotate(1deg);
}

/* Container Text (Card) */
.about-text {
  flex: 1 1 400px;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);

  /* --- PERUBAHAN UTAMA DI SINI --- */
  text-align: center; /* Membuat semua isi di dalam card jadi rata tengah */
  display: flex;
  flex-direction: column;
  align-items: center; /* Memastikan elemen flex juga di tengah */
}

/* Judul PT GABE JAI PRO */
.about-text h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 25px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  color: #f5c542;
  line-height: 1.2;

  /* Pastikan judul rata tengah */
  text-align: center;
  width: 100%;
}

/* Paragraf Visi Misi */
.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;

  /* --- UBAH DARI JUSTIFY KE CENTER --- */
  text-align: center;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* === RESPONSIVE KHUSUS (MOBILE / HP) === */
@media (max-width: 900px) {
  .about {
    padding: 60px 20px;
  }

  .about-wrapper {
    flex-direction: column; /* Menyusun gambar dan teks vertikal */
    gap: 30px;
  }

  .about-image,
  .about-text {
    flex: none;
    width: 100%;
  }

  .about-image img {
    max-width: 100%;
    margin-bottom: 10px;
  }

  .about-text {
    padding: 25px 20px;
    /* Tambahan: Pastikan container pembungkus juga rata tengah */
    text-align: center;
    align-items: center;
  }

  .about-text h2 {
    text-align: center;
  }

  .about-text p {
    font-size: 0.95rem;

    /* --- PERUBAHAN DI SINI --- */
    /* Mengubah dari 'left' menjadi 'center' */
    text-align: center;
  }
}

/* ======================
   PROPERTIES SECTION
====================== */
.properties {
  background: #1a2b4c;
  padding: 50px 20px;
}

/* Wrapper Cards */
.cards-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 20px 0;
  max-width: 1140px;
  margin: 0 auto;
}

.properties-title {
  font-family: 'Inter', sans-serif;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 40px;
  color: #ffffff;
}

/* ======================
   PROPERTY CARD
====================== */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&display=swap");

.property {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  max-width: 100%;

  color: #fefefe;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-family: "Playfair Display", serif;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.property:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 215, 0, 0.4);
}

.property img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.5s ease;
}

.property:hover img {
  transform: scale(1.08);
}

.property .text {
  padding: 20px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.property .price {
  font-weight: 700;
  color: #ffd700;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.property h5 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  background: linear-gradient(90deg, #ffd700, #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.property span {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 15px;
  opacity: 0.8;
  color: #ccc;
}

.property ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  margin-bottom: 20px;
  justify-content: center;
  color: #ddd;
  padding: 0;
  list-style: none;
}

/* Tombol */
.btn-details {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(90deg, #f9d423, #ff4e50);
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 78, 80, 0.4);
  margin-top: auto;
}

.btn-details:hover {
  background: linear-gradient(90deg, #ff4e50, #f9d423);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249, 212, 35, 0.6);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  background: rgba(15, 28, 46, 0.95);
  padding: 12px 20px;
  border-radius: 15px;
  margin: 30px auto 10px;
  width: fit-content;
  max-width: 90%;
}

.pagination a {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.pagination a:hover {
  background: #ff4e50;
  color: #fff;
}

.pagination .active {
  background: #f9d423;
  color: #0f1c2e;
  font-weight: 700;
}

/* === TESTIMONIAL SECTION === */
.testimonial {
  background: linear-gradient(135deg, #0a2540, #102c54);
  padding: 80px 5%;
  color: #fff;
  text-align: center;
  position: relative;
}

.testimonial .section-header .subheading {
  color: #f9d423;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.testimonial .section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #fff;
}

/* === WRAPPER (GRID SYSTEM) === */
.testimonial-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
  padding-bottom: 20px;

  overflow-x: visible;
}

/* === TESTIMONIAL CARD === */
.testimonial-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 35px 25px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  height: 100%;
}

.testimonial-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 215, 0, 0.3);
}

/* === TEXT QUOTE === */
.testimonial-item p {
  font-style: italic;
  font-size: 0.95rem;
  color: #e0e0e0;
  line-height: 1.7;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.testimonial-item p::before {
  content: "“";
  font-family: serif;
  font-size: 4rem;
  color: rgba(249, 212, 35, 0.2);
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.client {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: auto;
}

.client img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f9d423;
  padding: 3px;
  background: transparent;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  margin-bottom: 15px;
  transition: transform 0.3s;
}

.testimonial-item:hover .client img {
  transform: scale(1.1) rotate(5deg);
}

.client-info h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
}

.client-info span {
  font-size: 0.85rem;
  opacity: 0.7;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dots {
  display: none;
}

.testimonial {
  display: none;
}


/* === RESPONSIVE MOBILE === */
@media (max-width: 768px) {
  .testimonial {
    padding: 60px 20px;
  }

  .testimonial-wrapper {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .testimonial-item {
    padding: 30px 20px;
  }
}

/* ========= FAQ SECTION ========= */
#faq {
  padding: 80px 5%;
  background: linear-gradient(135deg, #0a2540, #102c54);
  color: #fff;
}

.faq-title {
  text-align: center;
  margin-top: -20px;
  margin-bottom: 30px;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #f9d423;
  text-shadow: 0 0 15px rgba(249, 212, 35, 0.5);
  animation: fadeInDown 1s ease-in-out;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  outline: none;
  padding: 20px 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  transition: color 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.faq-question:hover {
  color: #ffb703;
}

/* Arrow (Panah) */
.faq-question .arrow {
  font-size: 1.2rem;
  font-weight: bold;
  color: #bbb;
  transition:
    transform 0.4s ease,
    color 0.3s;
  flex-shrink: 0;
}

/* State Aktif (Saat dibuka) */
.faq-item.active .faq-question {
  color: #ffb703;
}

.faq-item.active .arrow {
  transform: rotate(90deg);
  color: #ffb703;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  background: rgba(0, 0, 0, 0.1);
  color: #ddd;
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding-bottom: 25px;
  opacity: 1;
}

/* === RESPONSIVE MOBILE === */
@media (max-width: 768px) {
  #faq {
    padding: 60px 20px;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 0.95rem;
  }

  .faq-answer {
    font-size: 0.9rem;
  }
}

@keyframes fadeInDown {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ======================
   BLOG SECTION
====================== */
.blog {
  padding: 80px 5%;
  background: linear-gradient(135deg, #0a2540, #102c54);
  color: #fff;
}

.blog {
  display: none;
}

.blog .section-header .subheading {
  color: #f9d423;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
}

.blog .section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #fff;
}

/* === BLOG WRAPPER (GRID SYSTEM) === */
.blog-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;

  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

/* === BLOG CARD === */
.blog-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;

  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.05);

  display: flex;
  flex-direction: column;
}

.blog-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Gambar Blog */
.blog-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.6s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-item:hover img {
  transform: scale(1.05);
}

.blog-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-content .meta {
  font-size: 0.8rem;
  color: #f9d423;
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.blog-content h5 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.4;
  font-family: "Playfair Display", serif;
}

.blog-content h5 a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-content h5 a:hover {
  color: #f9d423;
}

.blog-content p {
  font-size: 0.95rem;
  color: #ddd;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0;
}

/* === RESPONSIVE MOBILE === */
@media (max-width: 768px) {
  .blog {
    padding: 60px 20px;
  }

  .blog-wrapper {
    gap: 20px;
  }

  .blog-item img {
    height: 200px;
  }

  .blog-content h5 {
    font-size: 1.2rem;
  }
}

/* ======================
   FOOTER SECTION
====================== */

.footer {
  background: linear-gradient(180deg, #0b1623, #08101a);
  color: #b0b0b0;
  padding: 60px 0 0;
  font-size: 0.95rem;
}

/* ===== CONTAINER ===== */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5% 70px;

  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* ===== COLUMN ===== */
.footer-col {
  display: flex;
  flex-direction: column;
}

/* ===== BRAND ===== */
.footer-brand {
  color: #fff;
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.company-desc {
  line-height: 1.7;
  margin-bottom: 30px;
  color: #d0d0d0;
}

/* ===== CONTACT ===== */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  line-height: 1.7;
  color: #ddd;
}

.contact-item i {
  color: #ffb703;
  font-size: 1.1rem;
  min-width: 22px;
  margin-top: 4px;
}

.contact-item a {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
}

.contact-item a:hover {
  color: #ffb703;
}

/* ===== HEADING ===== */
.footer h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
}

.footer h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 40px;
  height: 2px;
  background: #ffb703;
}

/* ===== QUICK LINKS ===== */
.footer-middle ul {
  list-style: none;
  padding: 0;
}

.footer-middle li {
  margin-bottom: 14px;
}

.footer-middle a {
  color: #b0b0b0;
  text-decoration: none;
  transition: 0.3s;
}

.footer-middle a:hover {
  color: #ffb703;
  padding-left: 6px;
}

/* ===== SOCIAL ===== */
.social-links {
  display: flex;
  gap: 15px;
  margin-bottom: 35px;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  transition: 0.3s ease;
}

.social-links a:hover {
  background: #ffb703;
  color: #0b1623;
  transform: translateY(-4px);
}

/* ===== LEGAL ===== */
.legal-links h3 {
  margin-bottom: 18px;
}

.legal-links p {
  margin-bottom: 10px;
}

.legal-links a {
  color: #888;
  text-decoration: none;
  font-size: 0.9rem;
}

.legal-links a:hover {
  color: #ffb703;
}

/* ===== BOTTOM ===== */
.footer-bottom {
  background: #050d15;
  text-align: center;
  padding: 25px 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: #777;
}

.footer-bottom strong {
  color: #fff;
}

/* ======================
   RESPONSIVE
====================== */

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .footer-left {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {

  .footer {
    padding: 50px 0 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 0 25px 50px;
    text-align: center;
  }

  .footer-brand {
    font-size: 1.6rem;
  }

  .company-desc {
    font-size: 0.95rem;
  }

  .footer h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-item i {
    margin-bottom: 6px;
  }

  .social-links {
    justify-content: center;
  }

  .footer-middle a:hover {
    padding-left: 0;
  }
}