/* 
 * Nagoya Mansion Hotel & Residence
 * Neo-Brutalist Luxury Design
 * HTML/CSS/PHP Version
 * 
 * Design Philosophy: Raw geometric forms with refined execution
 * Color Palette: Charcoal (#1a1a1a), Ivory (#f5f5f0), Gold (#d4af37)
 * Typography: Montserrat Bold (headers), Inter (body)
 */

/* ============================================
   VARIABLES & CUSTOM PROPERTIES
   ============================================ */
:root {
  --primary-dark: #1a1a1a;
  --primary-light: #f5f5f0;
  --accent-gold: #d4af37;
  --text-dark: #2a2a2a;
  --text-light: #666666;
  --border-color: #e0e0d8;
  --bg-light: #fafaf8;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  /* Standard responsive breakpoints */
  --bp-xs: 0;
  --bp-sm: 576px;
  --bp-md: 768px;
  --bp-lg: 992px;
  --bp-xl: 1200px;
  --bp-xxl: 1400px;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

/* Responsive images by default */
img:not(.logo-img) {
  max-width: 100%;
  height: auto;
}

img {
  display: block;
}

/* Logo keeps aspect ratio, scales via height in header */
.logo-img {
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background-color: var(--primary-light);
  line-height: 1.6;
  letter-spacing: 0.3px;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

h1 {
  font-size: clamp(1.75rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--text-dark);
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 576px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 992px) {
  .container {
    padding: 0 2rem;
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border-radius: 0;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: #c49d2e;
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--accent-gold);
  border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
/* Header global - .site-header punya style sendiri di header.php, tanpa border bawah */
header:not(.site-header) {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--primary-light);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background-color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  padding-bottom: 0.25rem;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

.btn-book {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 0;
}

.btn-book:hover {
  background-color: #c49d2e;
}

@media (max-width: 768px) {
  nav ul {
    gap: 1rem;
    font-size: 0.9rem;
  }
  
  .header-content {
    padding: 1rem 0;
  }
}

/* ============================================
   HERO SECTION + SIMPLE BACKGROUND SLIDESHOW
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--primary-light);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
}

.hero-bg.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.5), rgba(26,26,26,0.8));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 1.5rem;
  animation: fadeInUp 1s ease-out;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.35);
}

.hero .accent {
  color: var(--accent-gold);
}

.hero p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 300;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons .btn-primary {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
  box-shadow: var(--shadow-sm);
}

.hero-buttons .btn-primary:hover {
  background-color: #c49d2e;
  box-shadow: var(--shadow-lg);
}

.hero-buttons .btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.hero-buttons .btn-secondary:hover {
  background-color: #ffffff;
  color: var(--primary-dark);
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: clamp(2rem, 7vw, 2.7rem);
  }
  
  .hero p {
    font-size: 1rem;
  }
}

/* ============================================
   SECTIONS
   ============================================ */
section {
  padding: 5rem 0;
  animation: fadeInUp 0.8s ease-out;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent-gold);
}

/* ============================================
   SPECIAL PROMOTIONS
   ============================================ */
.promotions {
  background-color: var(--primary-light);
}

/* Promo grid: hanya gambar, auto-fit menyesuaikan jumlah & lebar layar */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.9rem;
}

.promo-tile {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-tile-img {
  width: 100%;
  height: 110px; /* kecil & proporsional seperti thumbnail */
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: saturate(1) contrast(1.02);
}

.promo-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.4);
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.promo-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.promo-tile:hover .promo-tile-img {
  transform: scale(1.08);
  filter: saturate(1.1) contrast(1.05);
}

.promo-tile:hover::before {
  opacity: 1;
  transform: scale(1);
}

/* Lightbox untuk gambar promo (full screen) */
.promo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.promo-lightbox.is-open {
  display: flex;
}

.promo-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
}

.promo-lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  background: rgba(10, 10, 10, 0.9);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}

.promo-lightbox-close {
  position: absolute;
  top: 0.35rem;
  right: 0.5rem;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.promo-lightbox-close:hover {
  color: var(--accent-gold);
}

/* ============================================
   ROOM VARIETIES
   ============================================ */
.rooms {
  background-color: var(--bg-light);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.room-card {
  background-color: white;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition);
}

.room-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.room-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.room-card:hover .room-image,
.room-card:hover img {
  transform: scale(1.08);
}

.room-info {
  padding: 2rem;
}

.room-info h3 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.room-size {
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.room-amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.amenity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-light);
}

.amenity-icon {
  width: 20px;
  height: 20px;
  background-color: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  background-color: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--accent-gold);
  background-color: var(--bg-light);
}

.service-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-gold);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-dark);
}

.service-card h3 {
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.service-card p {
  font-size: 0.95rem;
}

/* ============================================
   EXPERIENCES
   ============================================ */
.experiences {
  background-color: var(--bg-light);
}

.experience-item {
  background-color: white;
  padding: 2.5rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--accent-gold);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.experience-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.experience-item h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.experience-item p {
  color: var(--text-light);
  line-height: 1.8;
}

.testimonial {
  background-color: white;
  padding: 2rem;
  border: 1px solid var(--border-color);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.testimonial:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.testimonial-author {
  font-weight: 600;
  color: var(--accent-gold);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-card {
  background-color: white;
  padding: 2rem;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--accent-gold);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-dark);
}

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

.faq-item {
  background-color: white;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
}

.faq-question {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.faq-answer {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background-color: var(--primary-light);
  border-top: 1px solid var(--border-color);
  padding: 3rem 0;
  margin-top: 5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: var(--text-light);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--accent-gold);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 1.2rem;
  transition: var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background-color: var(--text-dark);
  color: var(--primary-light);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============================================
   RESPONSIVE DESIGN (Standard breakpoints)
   Mobile: < 576px | Tablet: 576–991px | Desktop: 992px+
   ============================================ */

/* Mobile first: base is small screen */
section {
  padding: 3rem 0;
}

@media (min-width: 576px) {
  section {
    padding: 4rem 0;
  }
}

@media (min-width: 992px) {
  section {
    padding: 5rem 0;
  }
}

/* Grids: 1 column on mobile, auto-fit on larger */
.promo-grid,
.rooms-grid,
.services-grid,
.contact-info,
.faq-grid {
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 576px) {
  .promo-grid,
  .rooms-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  .services-grid,
  .contact-info,
  .faq-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}

@media (min-width: 992px) {
  .promo-grid,
  .rooms-grid,
  .services-grid {
    gap: 2rem;
  }
}

/* Room amenities: 1 col mobile, 2 col tablet+ */
.room-amenities {
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

@media (min-width: 480px) {
  .room-amenities {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
}

/* Hero responsive */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  padding: 2rem 1rem;
}

.hero h1 {
  font-size: clamp(1.75rem, 6vw, 4rem);
}

.hero p {
  font-size: clamp(0.95rem, 2vw, 1.25rem);
}

.hero-buttons {
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 576px) {
  .hero-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
}

.btn {
  width: 100%;
  max-width: 280px;
}

@media (min-width: 576px) {
  .btn {
    width: auto;
    max-width: none;
  }
}

/* Location section: stack on mobile/tablet */
.location-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 2rem !important;
}

@media (min-width: 992px) {
  .location-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem !important;
  }
}

.location iframe {
  min-height: 280px;
  width: 100%;
}

@media (min-width: 576px) {
  .location iframe {
    min-height: 320px;
  }
}

@media (min-width: 992px) {
  .location iframe {
    min-height: 400px;
  }
}

/* ============================================
   STRATEGIC LOCATION – Hero + Destinasi + Animasi
   ============================================ */

/* --- Animasi masuk (dipakai JS .in-view) --- */
.location-anim {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.location-anim.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* --- Hero (foto + overlay) --- */
.location-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
  overflow: hidden;
}

.location-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: locationHeroZoom 20s ease-out infinite alternate;
}

@keyframes locationHeroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.location-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(26, 26, 26, 0.82) 0%, rgba(26, 26, 26, 0.65) 45%, rgba(26, 26, 26, 0.78) 100%);
}

.location-hero .container {
  position: relative;
  z-index: 2;
}

.location-hero-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.location-hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 100px;
}

.location-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 3.75rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.location-hero-title .accent {
  color: var(--accent-gold);
}

.location-hero-intro {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.location-hero .location-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--accent-gold);
  color: var(--primary-dark);
  padding: 0.9rem 1.75rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.4);
}

.location-hero .location-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.5);
  color: var(--primary-dark);
}

.location-scroll-hint {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

.location-scroll-hint i {
  animation: locationBounce 2s ease-in-out infinite;
}

@keyframes locationBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* --- Section destinasi (kartu) --- */
.location-destinations-section {
  padding: 4.5rem 0;
  background: linear-gradient(180deg, #fafaf8 0%, var(--primary-light) 100%);
}

.location-dest-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 0.5rem;
}

.location-dest-title .accent {
  color: var(--accent-gold);
}

.location-dest-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.location-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 576px) {
  .location-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

@media (min-width: 992px) {
  .location-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.location-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.location-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(212, 175, 55, 0.25);
}

.location-card:hover .location-card-icon-wrap {
  transform: scale(1.08);
  background: linear-gradient(135deg, #d4af37 0%, #c49d2e 100%);
  color: #fff;
}

.location-card-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.location-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.location-card-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.location-card-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.location-card-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--text-dark);
  font-size: 0.92rem;
  transition: padding-left 0.25s ease;
}

.location-card-list--transport li {
  align-items: flex-start;
}

.location-item-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.location-card-list--transport .name {
  flex: 1;
  min-width: 0;
}

.location-card-list li:last-child {
  border-bottom: none;
}

.location-card:hover .location-card-list li {
  padding-left: 2px;
}

.location-card-list .name {
  font-weight: 500;
}

.location-card-list .distance {
  background: rgba(212, 175, 55, 0.15);
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  white-space: nowrap;
}

.location-cta-wrap {
  text-align: center;
}

.location-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary-dark);
  color: #fff;
  padding: 0.9rem 1.75rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.location-cta-secondary:hover {
  transform: translateY(-2px);
  background: var(--accent-gold);
  color: var(--primary-dark);
}

.location-map-strip {
  padding: 3rem 0;
  background: var(--primary-light);
}

.location-map-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.location-map-wrap iframe {
  display: block;
  width: 100%;
  min-height: 280px;
}

@media (min-width: 576px) {
  .location-map-wrap iframe {
    min-height: 320px;
  }
}

/* Section grids: 1 col mobile, auto-fit tablet+ */
.section-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 1.5rem !important;
}

@media (min-width: 576px) {
  .section-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 2rem !important;
  }
}

/* Rooms grid: default 3 columns di desktop agar jelas */
.rooms-grid {
  grid-template-columns: 1fr !important;
}
@media (min-width: 576px) {
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (min-width: 992px) {
  .rooms-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

/* Services grid: default 3 columns di desktop agar jelas */
.services-grid {
  grid-template-columns: 1fr !important;
}
@media (min-width: 576px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (min-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

/* CTA section buttons stack on small screens */
.cta a,
section.cta a {
  display: inline-block;
  width: 100%;
  max-width: 280px;
  text-align: center;
  padding: 0.875rem 1.5rem;
}

@media (min-width: 576px) {
  .cta a,
  section.cta a {
    width: auto;
    max-width: none;
  }
}

/* Footer responsive */
.footer-content {
  grid-template-columns: 1fr;
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 576px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
  }
}

@media (min-width: 992px) {
  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
  }
}

.social-links {
  justify-content: center;
}

@media (min-width: 576px) {
  .social-links {
    justify-content: flex-start;
  }
}

.footer-bottom {
  padding-top: 1.5rem;
  font-size: 0.85rem;
}

@media (min-width: 576px) {
  .footer-bottom {
    font-size: 0.9rem;
  }
}

/* Container padding on very small screens */
@media (max-width: 575px) {
  .container {
    padding: 0 1rem;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
  text-align: center;
}

.text-accent {
  color: var(--accent-gold);
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.hidden {
  display: none;
}
