/* ==========================
   FOOTER
========================== */

.site-footer {
  background-color: #6f8578;
  color: #ffffff;
  padding: 50px 0 40px;
  font-family: "Montserrat", sans-serif;
}

/* CONTAINER */
.site-footer .container {
  padding-left: 60px;
  padding-right: 60px;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 60px;
}

/* ==========================
   FOOTER TITLE – RESPONSIVE
========================== */

.footer-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem; /* Desktop */
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: #ffffff;
  line-height: 1.3;
}

/* Tablet */
@media (max-width: 1024px) {
  .footer-title {
    font-size: 1.1rem;
    letter-spacing: 1.8px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .footer-title {
    font-size: 1rem;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .footer-title {
    font-size: 0.95rem;
    letter-spacing: 1.2px;
  }
}

.footer-title.small {
  margin-top: 40px;
}

/* GLOBAL FOOTER TEXT */
.site-footer p,
.site-footer li,
.site-footer span {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ffffff;
}

/* LINKS */
.site-footer a {
  color: #ffffff;
  text-decoration: none;
}

/* LEFT */
.footer-contact {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-contact i {
  font-size: 1.1rem;
}

/* SOCIAL */
.footer-social span {
  display: block;
  margin-bottom: 10px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  opacity: 0.85;
}

.social-icons a {
  margin-right: 16px;
  font-size: 1.2rem;
  transition: opacity 0.3s ease;
}

.social-icons a:hover {
  opacity: 0.75;
}

/* WHATSAPP BUTTON */
.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  background: #ffffff;
  color: #6f8578 !important;
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-wa i {
  font-size: 1.2rem;
}

.footer-wa:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* ==========================
   REVIEW SECTION (FIXED)
========================== */

.footer-review a {
  display: block;
  text-decoration: none;
  margin-bottom: 18px;
}

/* CARD */
.footer-review .review-box {
  background: #ffffff;
  border-radius: 22px;
  padding: 24px 26px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transition: transform 0.25s ease;
}

.footer-review .review-box:hover {
  transform: translateY(-3px);
}

/* FORCE BLACK TEXT */
.footer-review .review-box *,
.footer-review .review-box strong,
.footer-review .review-box p,
.footer-review .review-box small,
.footer-review .review-box span {
  color: #000000 !important;
}

/* STARS */
.footer-review .review-stars {
  color: #f4b400 !important;
  font-size: 1rem;
  margin-bottom: 6px;
}

/* ==========================
   PARTNER / FEATURED (NO CARD, NO BG)
========================== */

.partner-logos,
.featured-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: center;
}

.partner-logos a,
.featured-box a {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* LOGO ONLY – NO CARD */
.partner-logos img,
.featured-box img {
  max-width: 120px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* ==========================
   FOOTER BOTTOM
========================== */

.footer-bottom {
  text-align: center;
  margin-top: 80px;
  font-size: 0.85rem;
  opacity: 0.85;
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .site-footer .container {
    padding-left: 28px;
    padding-right: 28px;
  }

  .footer-bottom {
    margin-top: 40px;
  }
}

.partner-logos img,
.featured-box img {
  max-width: 130px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Tablet */
@media (max-width: 1024px) {
  .partner-logos img,
  .featured-box img {
    max-width: 115px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .partner-logos img,
  .featured-box img {
    max-width: 95px;
  }
}

/* =========================
   FLOATING BUTTON
========================= */
.book-now-btn {
  position: fixed;
  bottom: 10px;
  right: 20px;
  z-index: 10000;

  background: #2f5d50;
  color: #fff;
  border: none;
  padding: 14px 26px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* =========================
   MODAL
========================= */
.booking-modal {
  display: none;
}

.booking-modal.active {
  display: block;
}

.booking-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
}

/* FLOATING CARD */
.booking-content {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  width: calc(100% - 20px); /* spasi kiri kanan 10px */
  max-width: 420px;

  background: #fff;
  border-radius: 20px;
  padding: 28px 22px;

  z-index: 9999;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translate(-50%, 40px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.booking-close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
}

/* =========================
   FORM STYLE
========================= */
.contact-card {
  font-family: "Montserrat", sans-serif;
}

.contact-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  color: #2e3b34;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #4a5a52;
}

.form-group input,
.form-group select {
  width: 90%;
  padding: 11px 12px;
  font-size: 0.95rem;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-family: "Montserrat", sans-serif;
}

.people-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.btn-whatsapp {
  margin-top: 18px;
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  background: #25d366;
  color: #fff;
  border: none;
  cursor: pointer;
}

/* MOBILE EXTRA POLISH */
@media (max-width: 768px) {
  .contact-card h3 {
    font-size: 1.9rem;
  }
}

/* CTA WIGGLE ANIMATION */
@keyframes ctaWiggle {
  0% {
    transform: translateX(0);
  }
  85% {
    transform: translateX(0);
  }
  88% {
    transform: translateX(-4px);
  }
  91% {
    transform: translateX(4px);
  }
  94% {
    transform: translateX(-4px);
  }
  97% {
    transform: translateX(4px);
  }
  100% {
    transform: translateX(0);
  }
}

.book-now-btn {
  animation: ctaWiggle 4s infinite;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .book-now-btn {
    bottom: 80px; /* Naikkan agar tidak tertutup cookie banner */
    right: 10px;
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}

/* ==========================
   FOOTER SOCIAL CLEAN
========================== */

.footer-social-clean {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-social-text {
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: #ffffff;
  opacity: 0.85;
}

.footer-social-icons {
  display: flex;
  gap: 16px;
}

.footer-social-icons a {
  color: #ffffff !important;
  font-size: 1.3rem;
  line-height: 1;
  transition: all 0.25s ease;
}

.footer-social-icons a i {
  color: #ffffff !important;
}

.footer-social-icons a:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}

/* ==========================
   FOOTER SOCIAL FIX SAFE
========================== */

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

.footer-social-clean {
  margin-top: 18px;
}

.footer-social-text {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: #ffffff;
  opacity: 0.85;
}

.footer-social-icons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}

.footer-social-icons a {
  color: #ffffff !important;
  font-size: 1.25rem;
  line-height: 1;
  transition: all 0.25s ease;
}

.footer-social-icons a i {
  color: #ffffff !important;
}

.footer-social-icons a:hover {
  opacity: 0.75;
  transform: translateY(-2px);
}
