:root {
  --primary: #67C6B5;
  --text: #546B6C;
  --accent: #FFC000;
  --white: #ffffff;
  --bg-light: #f4f4f4;
  --dark: #111111;
  --gray-light: #fafafa;
  --border-color: #eeeeee;
  --danger: #ff4d4d;
  --success: #25D366;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: var(--bg-light);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 1200px;
  max-width: 95%;
  margin: auto;
}

/* NAVBAR & DROPDOWNS */
.navbar {
  background: var(--white);
  height: 70px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
}

.logo-img {
  height: 40px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}

.menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.menu-item {
  position: relative;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  padding: 10px 0;
  transition: 0.3s;
}

.menu-item:hover {
  color: var(--primary);
}

.menu-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: 0.3s;
}

.menu-item:hover::after {
  width: 100%;
}

/* Dropdown Menu Container */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1100;
  display: flex;
  flex-direction: column;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  text-decoration: none;
  color: var(--text);
  padding: 12px 20px;
  font-weight: 500;
  transition: 0.3s;
}

.dropdown-item:hover {
  background: var(--gray-light);
  color: var(--primary);
}

.dropdown-item:first-child {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.dropdown-item:last-child {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

/* Hamburger Menu Icon */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 2000;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--primary);
  margin: 5px 0;
  transition: 0.4s;
  border-radius: 3px;
}

/* Open states for hamburger animation */
.hamburger.open span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* HERO SECTION */
.hero {
  height: 400px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero h1 {
  font-size: 54px;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero button, .hero-btn {
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  background: var(--primary);
  color: var(--white);
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.hero button:hover, .hero-btn:hover {
  background: #56b4a3;
  transform: scale(1.02);
}

/* SHORT SUBPAGE HERO */
.sub-hero {
  height: 250px;
}

.sub-hero h1 {
  font-size: 38px;
  margin-bottom: 0;
}

/* SECTION GLOBAL STYLES */
.section {
  padding: 70px 0;
}

.section-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--primary);
  position: relative;
}

/* STATS SECTION */
.stats {
  padding: 60px 0;
  background: var(--white);
}

.stats h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat {
  text-align: center;
  padding: 20px;
}

.stat h3 {
  color: var(--primary);
  font-size: 32px;
  margin-bottom: 10px;
}

.stat p {
  font-weight: 700;
}

/* STATS CAROUSEL MOBILE SPECIFIC */
.stats-carousel {
  display: none;
}

/* CARDS GRID SYSTEM */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

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

.card-img-container {
  width: 100%;
  height: 220px;
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.card-body {
  padding: 12px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.city {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}

.location-text {
  font-size: 13px;
  color: #888;
  margin-top: auto;
}

/* APARTMENT DETAIL & UNIT GRID */
.detail-header {
  margin-bottom: 30px;
}

.detail-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
}

.detail-address-link {
  text-decoration: none;
  color: var(--text);
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 5px;
  transition: 0.3s;
}

.detail-address-link:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* CAROUSEL GALLERY */
.gallery-container {
  position: relative;
  width: 100%;
  height: 480px;
  background: #000000;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
}

.gallery-slides {
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.gallery-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
}

.gallery-slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.7);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 20px;
  font-weight: bold;
  color: var(--text);
  transition: 0.3s;
}

.gallery-arrow:hover {
  background: var(--white);
  color: var(--primary);
}

.gallery-arrow.prev {
  left: 20px;
}

.gallery-arrow.next {
  right: 20px;
}

.gallery-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.gallery-dot.active {
  background: var(--white);
  transform: scale(1.2);
}

/* RENTAL FILTER */
.filter-container {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.filter-label {
  font-weight: 600;
  color: var(--text);
}

.filter-btn {
  padding: 10px 25px;
  border: 1px solid var(--primary);
  background: var(--white);
  color: var(--primary);
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.filter-btn.active, .filter-btn:hover {
  background: var(--primary);
  color: var(--white);
}

.unit-status-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 10px;
  text-align: center;
}

.unit-status-badge.available {
  background: rgba(37, 211, 102, 0.15);
  color: #128C7E;
}

.unit-status-badge.booked {
  background: rgba(255, 77, 77, 0.15);
  color: var(--danger);
}

/* WHY STAY HERE SECTION */
.why-stay-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.why-stay-card {
  background: var(--white);
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
  transition: 0.3s;
}

.why-stay-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.why-stay-icon {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: bold;
}

.why-stay-card h4 {
  font-weight: 600;
  color: var(--text);
  font-size: 15px;
}

/* FACILITIES SECTION */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.facility-item {
  background: var(--white);
  padding: 15px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.02);
  font-weight: 500;
}

.facility-bullet {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

/* LOCATION SECTION */
.location-map {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  border: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* UNIT DETAIL & CALENDAR & LIGHTBOX */
.unit-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.unit-main-info {
  background: var(--white);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.03);
  margin-bottom: 30px;
}

.unit-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.calendar-card {
  background: var(--white);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.btn-cek-tanggal {
  padding: 10px 20px;
  border: 2px solid var(--primary);
  background: var(--white);
  color: var(--primary);
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-cek-tanggal:hover {
  background: var(--primary);
  color: var(--white);
}

/* Mini Calendar styles */
.calendar-wrapper {
  margin-top: 15px;
  border-top: 1px solid var(--border-color);
  padding-top: 15px;
  display: none;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.calendar-header h4 {
  font-size: 15px;
  font-weight: 600;
}

.calendar-nav-btn {
  background: none;
  border: none;
  color: var(--primary);
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
  padding: 0 10px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}

.calendar-day-name {
  font-size: 11px;
  font-weight: 600;
  color: #888;
  padding-bottom: 5px;
}

.calendar-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  border-radius: 4px;
  font-weight: 500;
}

.calendar-cell.empty {
  background: none;
}

.calendar-cell.available {
  background: rgba(37, 211, 102, 0.1);
  color: #128C7E;
  font-weight: 600;
}

.calendar-cell.booked {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  text-decoration: line-through;
}

.calendar-legend {
  display: flex;
  gap: 15px;
  font-size: 11px;
  margin-top: 15px;
  justify-content: center;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.legend-color {
  width: 10px;
  height: 10px;
  border-radius: 2px;
}

.legend-color.available {
  background: rgba(37, 211, 102, 0.2);
}

.legend-color.booked {
  background: rgba(220, 53, 69, 0.2);
}

/* Lightbox Modal for Zoom Support */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.lightbox-img.zoomed {
  transform: scale(2);
  cursor: zoom-out;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--white);
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px 20px;
}

.lightbox-nav.prev {
  left: 20px;
}

.lightbox-nav.next {
  right: 20px;
}

/* BOOKING BUTTONS STICK ON BOTTOM */
.booking-actions-wrapper {
  margin-top: 30px;
}

.booking-btn-row {
  display: flex;
  gap: 15px;
}

.book-btn-wa {
  flex: 1;
  background: var(--success);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: 0.3s;
}

.book-btn-wa:hover {
  background: #1eb954;
  transform: translateY(-2px);
}

.book-btn-external {
  flex: 1;
  position: relative;
}

.book-btn-ext-trigger {
  width: 100%;
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: 0.3s;
}

.book-btn-ext-trigger:hover {
  background: var(--primary);
  color: var(--white);
}

.book-ext-dropdown {
  position: absolute;
  bottom: 120%;
  right: 0;
  left: 0;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.book-btn-external.active .book-ext-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.book-ext-item {
  padding: 12px 20px;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: 0.3s;
  border-bottom: 1px solid var(--border-color);
}

.book-ext-item:last-child {
  border-bottom: none;
}

.book-ext-item:hover {
  background: var(--gray-light);
  color: var(--primary);
}

/* ABOUT US & MEET OUR TEAM */
.about-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  color: var(--white);
}

.video-container {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.staff-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.staff-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
  text-align: center;
  transition: 0.3s;
  flex: 0 1 calc(25% - 15px);
  min-width: 250px;
}

.staff-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.staff-img-container {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.staff-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.staff-info {
  padding: 20px 15px;
}

.staff-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text);
}

.staff-position {
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
}

/* TESTIMONIAL */
.testimonial {
  padding: 80px 0;
  background: var(--dark);
}

.testimonial-container {
  position: relative;
  max-width: 800px;
  margin: auto;
}

.testimonial-card-wrapper {
  background: var(--white);
  padding: 40px 60px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

.testimonial-card h4 {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 10px;
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
}

.testimonial-arrow:hover {
  background: #56b4a3;
}

.testimonial-arrow.prev {
  left: -20px;
}

.testimonial-arrow.next {
  right: -20px;
}

.testimonial-links-row {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.testimonial-link-btn {
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  font-size: 15px;
}

.testimonial-link-btn.solid {
  background: var(--primary);
  color: var(--white);
}

.testimonial-link-btn.solid:hover {
  background: #56b4a3;
}

.testimonial-link-btn.outline {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.testimonial-link-btn.outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* FAQ ACCORDION GRID */
.faq {
  padding-top: 100px;
}

.faq .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: 0.3s;
}

.faq-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: var(--white);
  transition: 0.3s;
}

.faq-header:hover {
  background: var(--gray-light);
}

.faq-question {
  font-weight: 700;
  font-size: 15px;
  color: var(--accent);
  padding-right: 15px;
}

.faq-icon {
  font-size: 16px;
  color: var(--primary);
  font-weight: bold;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 14px;
  color: var(--text);
  border-top: 1px solid var(--border-color);
  padding-top: 15px;
}

.faq-item.active .faq-content {
  max-height: 300px;
}

/* CLEANING SERVICE CATEGORY & DETAILS */
.cleaning-cat-section {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.03);
}

.cleaning-cat-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.cleaning-cat-rules {
  background: var(--gray-light);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
  font-size: 14px;
  border-left: 4px solid var(--primary);
}

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

.cleaning-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-color);
}

.cleaning-img-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.cleaning-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cleaning-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.cleaning-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.cleaning-desc {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
  flex-grow: 1;
}

.cleaning-book-btn {
  align-self: flex-start;
  background: var(--success);
  color: var(--white);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.cleaning-book-btn:hover {
  background: #1eb954;
  transform: translateY(-2px);
}

/* INTERNSHIPS */
.internship-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.internship-card {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.03);
  border-left: 5px solid var(--primary);
}

.internship-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}

.internship-section-title {
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 5px;
  color: var(--text);
}

.internship-desc {
  font-size: 14px;
  color: var(--text);
}

.internship-quals {
  padding-left: 20px;
  font-size: 14px;
}

/* FOOTER */
.footer {
  background: var(--white);
  padding: 50px 0;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.footer h3 {
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 700;
}

.footer p {
  color: #888;
  font-size: 14px;
  margin-bottom: 20px;
}

.footer-address-link {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: 0.3s;
  display: inline-block;
  margin-bottom: 20px;
}

.footer-address-link:hover {
  color: var(--primary);
  text-decoration: underline;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.social-link {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s;
}

.social-link:hover {
  color: var(--primary);
}

/* FLOATING WHATSAPP BUTTON */
.floating-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  z-index: 999;
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
}

.floating-wa:hover {
  transform: scale(1.1);
  background: #1eb954;
}

.floating-wa-svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

/* WHATSAPP CONTACT BOX (GLOBAL PAGE BOTTOM) */
.whatsapp-box {
  text-align: center;
  margin-top: 40px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.whatsapp-box h3 {
  color: var(--accent);
  margin-bottom: 20px;
  font-size: 22px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  background: var(--success);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.whatsapp-btn:hover {
  background: #1eb954;
  transform: translateY(-2px);
}

/* ANIMATIONS */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* MEDIA QUERIES (RESPONSIVENESS) */
@media(max-width: 992px) {
  .hero h1 {
    font-size: 38px;
  }
  
  .sub-hero h1 {
    font-size: 28px;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-stay-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .unit-detail-grid {
    grid-template-columns: 1fr;
  }

  .about-inner {
    grid-template-columns: 1fr;
  }

  .staff-card {
    flex: 0 1 calc(50% - 10px);
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .cleaning-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 768px) {
  /* MOBILE NAVBAR Hamburger Drawer */
  .hamburger {
    display: block;
  }

  .menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: calc(100vh - 70px);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.05);
    transition: 0.3s ease-in-out;
    z-index: 999;
    gap: 20px;
    border-left: 1px solid var(--border-color);
    overflow-y: auto;
  }

  .menu.open {
    right: 0;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--primary);
    margin-left: 15px;
    padding-left: 10px;
    display: none;
    background: transparent;
  }

  .dropdown.active .dropdown-menu {
    display: flex;
  }

  .dropdown-item {
    padding: 8px 10px;
  }

  /* STATS CAROUSEL ON MOBILE */
  .stats-grid {
    display: none;
  }

  .stats-carousel {
    display: block;
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
  }

  .stats-carousel-inner {
    display: flex;
    transition: transform 0.3s ease-in-out;
  }

  .stat-carousel-item {
    min-width: 100%;
    text-align: center;
    padding: 10px;
  }

  .stats-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
  }

  .stats-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
  }

  .stats-dot.active {
    background: var(--primary);
  }

  /* APARTMENT DETAIL & GRID FOR MOBILE */
  .cards {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .gallery-container {
    height: 300px;
  }

  .why-stay-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* TESTIMONIAL MOBILE */
  .testimonial-card-wrapper {
    padding: 30px 20px;
  }

  .testimonial-arrow {
    display: none; /* Hide arrows on mobile to prevent layout overflow */
  }

  /* STICKY BOTTOM BUTTONS ON MOBILE */
  .booking-actions-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 12px 15px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
    z-index: 998;
    margin-top: 0;
  }

  .booking-btn-row {
    max-width: 600px;
    margin: auto;
  }
  
  .unit-sidebar {
    padding-bottom: 80px; /* Prevent sticky buttons from overlapping content */
  }

  .floating-wa {
    bottom: 85px; /* Adjust floating WA button position on mobile */
  }
}

@media(max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

  .sub-hero h1 {
    font-size: 22px;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr) !important; /* Forces 2 columns for unit grid and apartments */
  }

  .why-stay-grid {
    grid-template-columns: 1fr;
  }

  .facilities-grid {
    grid-template-columns: 1fr;
  }

  .staff-card {
    flex: 0 1 100%;
  }
}
