/* ==========================================================================
   CSS FOR INDEX.HTML (HOME PAGE)
   ========================================================================== */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --bg-main: #F8EFE4;
  --header-bg: #D9B99F;
  --header-bg-gradient: linear-gradient(135deg, #D9B99F 0%, #CFAB91 100%);
  --text-dark: #261B16;
  --text-muted: #665045;
  --accent-terracotta: #C44E20;
  --accent-terracotta-hover: #9E3B14;
  --accent-gold: #DA8C2A;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

  --nav-height: 72px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-full: 999px;
  --transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-card: 0 12px 28px rgba(38, 27, 22, 0.1);
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: linear-gradient(180deg, #F8EFE4 0%, #F4E7D7 60%, #EFE1CE 100%);
  color: var(--text-dark);
  line-height: 1.5;
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
  background: none;
}

/* Prevent blue highlight selection on clicks */
.hero-visual,
.carousel-item,
.carousel-nav,
.bento-card,
.btn-primary,
.btn-contact,
.icon-button,
.nav-link,
.brand-logo,
.whatsapp-float {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header & Nav */
.site-header {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--header-bg-gradient);
  box-shadow: 0 4px 16px rgba(38, 27, 22, 0.08);
  border-bottom: 1px solid rgba(196, 78, 32, 0.12);
  transition: var(--transition);
}

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

.brand-logo {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  transition: transform var(--transition), color var(--transition);
  display: inline-block;
  white-space: nowrap;
}

.brand-logo:hover {
  transform: translateY(-1px);
  color: var(--accent-terracotta);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  list-style: none;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: #4A3A31;
  position: relative;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  display: inline-block;
}

.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-full);
  background: rgba(38, 27, 22, 0.07);
  opacity: 0;
  transform: scale(0.85);
  transition: all var(--transition);
  z-index: -1;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 16px;
  height: 2px;
  background-color: var(--accent-terracotta);
  border-radius: 2px;
  opacity: 0;
  transform: translateX(-50%) scaleX(0);
  transition: all var(--transition);
}

.nav-link:hover {
  color: var(--accent-terracotta);
  transform: translateY(-1px);
}

.nav-link:hover::before {
  opacity: 1;
  transform: scale(1);
}

.nav-link:hover::after,
.nav-link.active::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.nav-link.active {
  color: var(--text-dark);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.35);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.icon-button {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.1rem;
  transition: all var(--transition);
  background-color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(38, 27, 22, 0.1);
}

.icon-button:hover {
  background-color: var(--accent-terracotta);
  transform: translateY(-1px) rotate(6deg);
}

.btn-contact {
  background: linear-gradient(135deg, var(--accent-terracotta) 0%, #9E3B14 100%);
  color: #FFFFFF;
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 14px rgba(196, 78, 32, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-contact:hover {
  background: linear-gradient(135deg, #D65A29 0%, var(--accent-terracotta) 100%);
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 8px 18px rgba(196, 78, 32, 0.38);
}

.mobile-toggle {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 3px;
  width: 22px;
  height: 22px;
  cursor: pointer;
  z-index: 1001;
  background: transparent;
  border: none;
  padding: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-toggle .grid-square {
  width: 9.5px;
  height: 9.5px;
  border: 1.8px solid var(--text-dark);
  border-radius: 3px;
  background-color: transparent;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-toggle:hover .grid-square {
  border-color: var(--accent-terracotta);
}

/* Active State (When clicked / open menu) */
.mobile-toggle.active {
  transform: rotate(90deg);
}

.mobile-toggle.active .grid-square {
  background-color: var(--accent-terracotta);
  border-color: var(--accent-terracotta);
  box-shadow: 0 2px 8px rgba(196, 78, 32, 0.4);
}

/* Hero Section */
.hero-section {
  padding: 2.5rem 0 3.75rem 0;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 2.5rem;
}

.hero-content {
  max-width: 500px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.75rem;
  line-height: 1.05;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: italic;
  font-weight: 600;
  color: var(--accent-terracotta);
  display: block;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.75rem;
  max-width: 440px;
  font-weight: 500;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-terracotta) 0%, #cc8a70 100%);
  color: #FFFFFF;
  padding: 0.8rem 2rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 6px 18px rgba(196, 78, 32, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #D65A29 0%, var(--accent-terracotta) 100%);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 24px rgba(196, 78, 32, 0.4);
}

.btn-secondary {
  background: #ee4e04;
  color: #FFFFFF;
  border: 1.5px solid #ee4e04;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 16px rgba(238, 78, 4, 0.3);
  text-decoration: none;
}

.btn-secondary:hover {
  background: #c94102;
  border-color: #c94102;
  color: #FFFFFF;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 22px rgba(238, 78, 4, 0.45);
}

/* 3-Circle Hero Carousel (100% Perfectly Centered Y-Axis Midline) */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(38, 27, 22, 0.16);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Center Active Circle (Centered Y-Axis & X-Axis) */
.carousel-item.active {
  transform: translate(-50%, -50%) scale(1.22);
  opacity: 1;
  z-index: 10;
  box-shadow: 0 24px 50px rgba(140, 55, 26, 0.28);
  border: none;
}

/* Left Circle (Shifted left on Y-Axis Midline) */
.carousel-item.prev-item {
  transform: translate(calc(-50% - 145px), -50%) scale(0.8);
  opacity: 0.45;
  z-index: 5;
  filter: blur(0.5px);
}

/* Right Circle (Shifted right on Y-Axis Midline) */
.carousel-item.next-item {
  transform: translate(calc(-50% + 145px), -50%) scale(0.8);
  opacity: 0.45;
  z-index: 5;
  filter: blur(0.5px);
}

.carousel-item:hover:not(.active) {
  opacity: 0.75;
  filter: blur(0px);
}

/* Nav Arrows (Centered Exactly on Y-Axis Midline & Optically Shifted) */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-terracotta);
  color: #FFFFFF;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 3px 0;
  /* Optical alignment shift for arrow glyph */
  line-height: 1;
  z-index: 20;
  box-shadow: 0 6px 16px rgba(196, 78, 32, 0.38);
  transition: all var(--transition);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.carousel-nav.prev {
  left: -16px;
  padding-right: 2px;
}

.carousel-nav.next {
  right: -16px;
  padding-left: 2px;
}

.carousel-nav:hover {
  background: var(--accent-terracotta-hover);
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 8px 22px rgba(196, 78, 32, 0.55);
}

.hero-glow {
  position: absolute;
  width: 125%;
  height: 125%;
  background: radial-gradient(circle, rgba(217, 185, 159, 0.5) 0%, rgba(196, 78, 32, 0.14) 50%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

/* Spaces Section */
.spaces-section {
  padding: 3.5rem 0 4.5rem 0;
  background: linear-gradient(180deg, #EFE0D0 0%, #E9D5C2 100%);
  position: relative;
  border-top: 1px solid rgba(140, 55, 26, 0.08);
}

.spaces-header {
  margin-bottom: 2rem;
}

.spaces-title {
  font-family: var(--font-heading);
  font-size: 2.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.spaces-subtitle {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 520px;
  font-weight: 500;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.bento-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  border: none;
  background-color: var(--bg-card);
}

.bento-card-tall {
  height: 100%;
  min-height: 400px;
}

.bento-column-right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  height: 100%;
}

.bento-row-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  flex: 1;
}

.bento-card-small {
  height: 100%;
  min-height: 185px;
}

.bento-card-wide {
  flex: 1;
  min-height: 185px;
}

.bento-card .bento-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(38, 27, 22, 0.75) 100%);
  z-index: 2;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(140, 55, 26, 0.2);
}

.bento-card:hover .bento-bg {
  transform: scale(1.06);
}

.bento-content-overlay {
  position: relative;
  z-index: 3;
  margin: 0;
  padding: 0;
}

.bento-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-terracotta) 0%, #9E3B14 100%);
  color: #FFFFFF;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(196, 78, 32, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 2rem;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  text-decoration: none;
  border: 2px solid #FFFFFF;
}

.whatsapp-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
}

/* Footer */
.site-footer {
  background-color: var(--header-bg);
  background: var(--header-bg-gradient);
  color: var(--text-dark);
  padding: 2.25rem 0;
  border-top: 1px solid rgba(38, 27, 22, 0.1);
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
}

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
}

.footer-info-item {
  font-size: 0.88rem;
  color: rgba(38, 27, 22, 0.85);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.footer-wa-link {
  color: var(--text-dark);
  font-weight: 600;
  transition: color var(--transition);
}

.footer-wa-link:hover {
  color: var(--accent-terracotta);
  text-decoration: underline;
}

.info-divider {
  color: var(--accent-terracotta);
  opacity: 0.5;
}

.footer-copy {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.25rem;
  }

  .hero-grid {
    gap: 2rem;
  }

  .hero-carousel-wrapper {
    max-width: 460px;
  }

  .carousel-item {
    width: 200px;
    height: 200px;
  }

  .carousel-item.prev-item {
    transform: translate(calc(-50% - 110px), -50%) scale(0.8);
  }

  .carousel-item.next-item {
    transform: translate(calc(-50% + 110px), -50%) scale(0.8);
  }
}

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

  .bento-card-tall {
    min-height: 350px;
  }

  .bento-row-top {
    grid-template-columns: 1fr;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
  }

  .booking-notice-card {
    flex-direction: column;
    text-align: center;
    padding: 1.75rem 1.25rem;
  }

  .booking-notice-info {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
  }

  .time-badge-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    gap: 0.6rem;
    min-width: 0;
  }

  .time-badge {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.65rem 1rem;
    box-sizing: border-box;
  }

  .time-badge span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    text-align: center;
    width: 100%;
  }

  .time-badge strong {
    text-align: center;
    width: 100%;
    margin-top: 0.15rem;
  }

  .booking-notice-platforms {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .brand-logo {
    font-size: 1.2rem;
  }

  .container {
    padding: 0 1.25rem;
  }

  .mobile-toggle {
    display: grid;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: var(--header-bg);
    padding: 1.5rem 1.5rem 1.75rem 1.5rem;
    box-shadow: 0 12px 28px rgba(38, 27, 22, 0.15);
    gap: 0.85rem;
    border-bottom: 1px solid rgba(196, 78, 32, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, -10px, 0);
    transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s;
    will-change: opacity, transform;
    backface-visibility: hidden;
    pointer-events: none;
    z-index: 999;
  }

  .nav-links.mobile-open {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
  }

  .hero-section {
    padding: 1.75rem 0 2.5rem 0;
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    order: -1;
  }

  .hero-carousel-wrapper {
    max-width: 360px;
  }

  .hero-carousel {
    height: 290px;
  }

  .carousel-item {
    width: 180px;
    height: 180px;
  }

  .carousel-item.active {
    transform: translate(-50%, -50%) scale(1.2);
  }

  .carousel-item.prev-item {
    transform: translate(calc(-50% - 95px), -50%) scale(0.78);
  }

  .carousel-item.next-item {
    transform: translate(calc(-50% + 95px), -50%) scale(0.78);
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .whatsapp-float {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }

  .hero-chips {
    justify-content: center;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .space-tabs {
    justify-content: center;
  }
}

/* ==========================================================================
   NEW HERO & FEATURES SECTION STYLING
   ========================================================================== */

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(196, 78, 32, 0.1);
  border: 1px solid rgba(196, 78, 32, 0.25);
  color: var(--accent-terracotta);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

/* Hero Chips */
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.chip {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(38, 27, 22, 0.1);
  color: var(--text-dark);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.chip-discount {
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
  color: #FFFFFF;
  border: none;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(18, 140, 126, 0.3);
}

.discount-badge-inline {
  display: inline-block;
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.5rem;
  box-shadow: 0 3px 8px rgba(18, 140, 126, 0.25);
}

/* Hero CTA Group */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

/* Features Section */
.features-section {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(38, 27, 22, 0.06);
  border-bottom: 1px solid rgba(38, 27, 22, 0.06);
}

/* Section Header Centering Rules */
.spaces-header {
  text-align: center;
  margin: 0 auto 2.5rem auto;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.spaces-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0.35rem 0 0.65rem 0;
  text-align: center;
  line-height: 1.15;
  width: 100%;
}

.spaces-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0 auto;
  max-width: 580px;
  line-height: 1.5;
  width: 100%;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-terracotta);
  margin-bottom: 0.25rem;
  text-align: center;
}

.text-center {
  text-align: center !important;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 3rem;
}

.feature-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 10px 24px rgba(38, 27, 22, 0.05);
  border: 1px solid rgba(38, 27, 22, 0.08);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(38, 27, 22, 0.1);
  border-color: rgba(196, 78, 32, 0.25);
}

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.85rem;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.feature-list li strong {
  color: var(--text-dark);
}

/* Advantages Banner (Kotak Frame) */
.advantages-banner {
  background: linear-gradient(135deg, #261B16 0%, #3D2B24 100%);
  color: #FFFFFF;
  border-radius: 0;
  padding: 2.25rem 2rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 12px 30px rgba(38, 27, 22, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.adv-header h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: #F8EFE4;
  margin-bottom: 1.5rem;
  text-align: center;
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.adv-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.adv-icon {
  font-size: 1.8rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.6rem;
  border-radius: 0;
  line-height: 1;
}

.adv-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}

.adv-item p {
  font-size: 0.88rem;
  color: rgba(248, 239, 228, 0.8);
  line-height: 1.45;
}

/* Booking Notice Card (Kotak Frame) */
.booking-notice-card {
  background: #FFFFFF;
  border-radius: 0;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid rgba(196, 78, 32, 0.3);
  box-shadow: 0 10px 24px rgba(196, 78, 32, 0.06);
}

.booking-notice-info {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.time-badge-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-width: 150px;
}

.time-badge {
  background: #F8EFE4;
  padding: 0.5rem 0.85rem;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(38, 27, 22, 0.12);
}

.time-badge span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.time-badge strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent-terracotta);
}

.booking-text h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.booking-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 420px;
}

.booking-notice-platforms {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-width: 280px;
  max-width: 320px;
  width: 100%;
}

.platform-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.1rem;
  border-radius: var(--radius-full, 9999px);
  text-decoration: none;
  transition: all var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  width: 100%;
}

.platform-card:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.platform-wa {
  background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
  color: #FFFFFF;
}

.platform-booking {
  background: linear-gradient(135deg, #003580 0%, #00224F 100%);
  color: #FFFFFF;
}

.platform-airbnb {
  background: linear-gradient(135deg, #FF5A5F 0%, #D93B40 100%);
  color: #FFFFFF;
}

.platform-icon {
  font-size: 1.25rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.platform-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.platform-name {
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.platform-sub {
  font-size: 0.76rem;
  opacity: 0.95;
  font-weight: 500;
}

.platform-arrow {
  font-size: 1.1rem;
  font-weight: 700;
  margin-left: 0.75rem;
}

.badge-discount {
  background: #075E54;
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full, 9999px);
  margin-left: 0.4rem;
  vertical-align: middle;
}


/* ==========================================================================
   SCROLL REVEAL FADE-IN ANIMATION (ULTRA LIGHTWEIGHT & SMOOTH)
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* ==========================================================================
   SPACE DOCUMENTATION & GUEST REVIEWS SIDE-BY-SIDE SECTION
   ========================================================================== */

.space-reviews-section {
  padding: 4.5rem 0 5rem 0;
  background: linear-gradient(180deg, rgba(248, 239, 228, 0.4) 0%, rgba(255, 255, 255, 1) 100%);
  position: relative;
}

.space-reviews-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
  align-items: stretch;
}

/* Left Column: Interactive Single Photo Frame */
.space-frame-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}

.space-single-card {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(38, 27, 22, 0.1);
  border: 1px solid rgba(196, 78, 32, 0.15);
  background: #261B16;
}

.space-single-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.space-single-card:hover .space-single-img {
  transform: scale(1.03);
}

.space-single-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
}

.space-active-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: var(--accent-terracotta);
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  box-shadow: 0 4px 14px rgba(196, 78, 32, 0.4);
  z-index: 2;
}

/* Room Category Tab Buttons */
.space-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.space-tab-btn {
  background: #FFFFFF;
  border: 1.5px solid rgba(196, 78, 32, 0.2);
  color: var(--text-dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(38, 27, 22, 0.04);
}

.space-tab-btn:hover {
  border-color: var(--accent-terracotta);
  color: var(--accent-terracotta);
  transform: translateY(-2px);
}

.space-tab-btn.active {
  background: var(--accent-terracotta);
  color: #FFFFFF;
  border-color: var(--accent-terracotta);
  box-shadow: 0 4px 14px rgba(196, 78, 32, 0.3);
}

/* Right Column: Single Review Card Slider */
.reviews-single-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.reviews-slider-single {
  overflow: hidden;
  border-radius: var(--radius-xl);
  height: 300px;
}

.reviews-track-single {
  display: flex;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.review-card-single {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.75rem 1.25rem 1.75rem;
  border: 1.5px solid rgba(196, 78, 32, 0.12);
  box-shadow: 0 12px 32px rgba(38, 27, 22, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.review-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.review-user-info {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

.avatar-airbnb {
  background: linear-gradient(135deg, #FF5A5F 0%, #E00007 100%);
}

.avatar-booking {
  background: linear-gradient(135deg, #003580 0%, #00224f 100%);
}

.avatar-google {
  background: linear-gradient(135deg, #4285F4 0%, #1765e3 100%);
}

.review-user-name {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.15rem;
}

.review-user-sub {
  font-size: 0.8rem;
  color: rgba(38, 27, 22, 0.55);
  display: block;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.badge-airbnb {
  background: #FF5A5F;
  color: #FFFFFF;
}

.badge-booking {
  background: #003580;
  color: #FFFFFF;
}

.badge-google {
  background: #1a73e8;
  color: #FFFFFF;
}

.review-body {
  margin: 1rem 0;
  flex-grow: 1;
}

.review-text-short,
.review-text-full {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #3d322c;
  font-style: italic;
  margin: 0;
}

.read-more-btn,
.read-less-btn {
  background: none;
  border: none;
  color: var(--accent-terracotta);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  padding: 0 0 0 0.3rem;
  text-decoration: underline;
}

.read-more-btn:hover,
.read-less-btn:hover {
  color: #b54117;
}

/* Loading Skeleton for Reviews */
.review-loading {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1.5px solid rgba(196, 78, 32, 0.12);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  box-sizing: border-box;
  color: rgba(38, 27, 22, 0.4);
  font-size: 0.95rem;
  font-style: italic;
}

.review-loading-shimmer {
  height: 18px;
  border-radius: 8px;
  background: linear-gradient(90deg, #f0e8e0 25%, #f8f0e8 50%, #f0e8e0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}

.review-loading-shimmer.short {
  width: 70%;
}

.review-loading-shimmer.shorter {
  width: 45%;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.hidden {
  display: none !important;
}

/* Footer Controls Inside Review Card */
.review-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(196, 78, 32, 0.08);
}

.review-ctrl-arrows {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.review-ctrl-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid rgba(196, 78, 32, 0.2);
  color: var(--text-dark);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(38, 27, 22, 0.06);
}

.review-ctrl-btn:hover {
  background: var(--accent-terracotta);
  color: #FFFFFF;
  border-color: var(--accent-terracotta);
}

.review-single-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.review-ctrl-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid rgba(196, 78, 32, 0.2);
  color: var(--text-dark);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(38, 27, 22, 0.06);
}

.review-ctrl-btn:hover {
  background: var(--accent-terracotta);
  color: #FFFFFF;
  border-color: var(--accent-terracotta);
}

.review-single-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Responsive Media Queries */
@media (max-width: 900px) {
  .space-reviews-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .space-single-card,
  .reviews-slider-single {
    height: 340px;
  }
}

.delay-4 {
  transition-delay: 0.4s;
}

@media (max-width: 480px) {
  .brand-logo {
    font-size: 1.08rem;
  }

  .footer-brand {
    font-size: 1.15rem;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-carousel-wrapper {
    max-width: 290px;
  }

  .hero-carousel {
    height: 230px;
  }

  .carousel-item {
    width: 145px;
    height: 145px;
  }

  .carousel-item.prev-item {
    transform: translate(calc(-50% - 75px), -50%) scale(0.75);
  }

  .carousel-item.next-item {
    transform: translate(calc(-50% + 75px), -50%) scale(0.75);
  }

  .carousel-nav.prev {
    left: -4px;
  }

  .carousel-nav.next {
    right: -4px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .advantages-banner {
    padding: 1.5rem 1.15rem;
  }

  .booking-notice-card {
    padding: 1.5rem 1rem;
  }

  .time-badge-group {
    width: 100%;
    max-width: 290px;
    margin: 0 auto;
    gap: 0.55rem;
  }

  .time-badge {
    padding: 0.6rem 0.75rem;
  }

  .feature-card {
    padding: 1.35rem 1.15rem;
  }

  .space-single-card {
    height: 260px;
  }

  .reviews-slider-single {
    height: 330px;
  }

  .review-card-single {
    padding: 1.25rem 1rem;
  }
}