/* styles.css */
:root{
  --primary: #1e40af;
  --primary-light: #3b82f6;
  --primary-dark: #1e3a8a;
  --accent: #f59e0b;
  --accent-light: #fbbf24;
  
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-alt: #f1f5f9;
  --text: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;
  
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  
  --radius: 12px;
  --radius-lg: 16px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a{ color: inherit; text-decoration: none; }
.container{ width: min(1200px, 92%); margin: 0 auto; }

/* ===== Topbar ===== */
.topbar{
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  font-size: 13px;
}
.topbar__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
}
.topbar__left{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  font-weight: 800;
  letter-spacing: 0.5px;
  font-size: 11px;
}
.topbar__text{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0.95;
}
.topbar__right{
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.topbar__link{
  text-decoration: none;
  opacity: 0.95;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.2s;
}
.topbar__link:hover{ background: rgba(255,255,255,0.15); }
.topbar__link--wa{
  background: #25d366;
  opacity: 1;
}
.topbar__link--wa:hover{ background: #20b358; }

/* ===== Header ===== */
.header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.header__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}
.brand{
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
}
.brand__logo-img{
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 12px;
  background: var(--primary);
  padding: 6px;
}
.brand__logo-img--sm{
  width: 48px;
  height: 48px;
  border-radius: 10px;
}
.brand__text{ min-width: 0; }
.brand__name{ 
  font-weight: 800; 
  font-size: 1.25rem;
  color: var(--primary-dark);
  letter-spacing: -0.3px;
}
.brand__tagline{ 
  font-size: 12px; 
  color: var(--text-muted);
  font-weight: 500;
}

.nav{
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav a{
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 700;
  color: var(--text);
  font-size: 14px;
  transition: all 0.2s;
}
.nav a:hover{ 
  background: var(--surface-alt); 
  color: var(--primary);
}
.nav__cta{
  background: var(--primary);
  color: white !important;
}
.nav__cta:hover{
  background: var(--primary-dark) !important;
  color: white !important;
}

.nav-toggle{
  display: none;
  border: none;
  background: var(--surface-alt);
  border-radius: 12px;
  padding: 12px;
  cursor: pointer;
}
.nav-toggle span{
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle--open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle--open span:nth-child(2){ opacity: 0; }
.nav-toggle--open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.nav-mobile{
  display: none;
  padding: 0 0 16px;
}
.nav-mobile a{
  display: block;
  text-decoration: none;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 700;
  color: var(--text);
  transition: all 0.2s;
}
.nav-mobile a:hover{ background: var(--surface-alt); color: var(--primary); }
.nav-mobile .nav__cta{
  background: var(--primary);
  color: white !important;
  margin-top: 8px;
}
.nav-mobile--open{ display: block; }

@media (max-width: 900px){
  .nav{ display: none; }
  .nav-toggle{ display: inline-block; }
  .topbar__text{ display: none; }
}

/* ===== Hero ===== */
.hero{
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero__inner{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1{
  margin: 0 0 20px;
  font-size: 3rem;
  line-height: 1.15;
  letter-spacing: -1px;
  color: white;
  font-weight: 800;
}
.hero p{
  margin: 0 0 24px;
  max-width: 560px;
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  font-weight: 500;
}
.hero__cta{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero__meta{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.meta-card{
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 14px 20px;
}
.meta-card__title{ font-size: 12px; opacity: 0.85; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.meta-card__value{ font-weight: 800; font-size: 1.1rem; color: white; }

.hero__visual{ display: flex; justify-content: flex-end; }
.hero-card{
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-xl);
  max-width: 380px;
}
.hero-card__title{ 
  font-weight: 800; 
  margin-bottom: 16px; 
  color: var(--primary-dark);
  font-size: 1.1rem;
}
.hero-card__list{ margin: 0; padding-left: 0; list-style: none; }
.hero-card__list li{ 
  margin: 12px 0; 
  font-weight: 600; 
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-card__list li::before{
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 900px){
  .hero__inner{ grid-template-columns: 1fr; gap: 32px; }
  .hero h1{ font-size: 2.25rem; }
  .hero__visual{ justify-content: flex-start; }
  .hero__meta{ flex-direction: column; }
}

@media (max-width: 600px){
  .hero h1{ font-size: 1.75rem; }
  .hero{ padding: 48px 0 40px; }
}

/* ===== Section ===== */
.section{ padding: 80px 0; }
.section--alt{ background: var(--surface-alt); }
.section__header{
  text-align: center;
  margin-bottom: 48px;
}
.section__header h2{
  margin: 0 0 12px;
  font-size: 2.5rem;
  line-height: 1.2;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.5px;
}
.section__header p{
  margin: 0;
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Grid Cards ===== */
.grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px){
  .grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px){
  .grid{ grid-template-columns: 1fr; }
}

.card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}
.card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card__media{
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  display: block;
  background: var(--surface-alt);
}
.card__body{
  padding: 20px 22px 24px;
}
.card h3{ 
  margin: 0 0 8px; 
  font-size: 1.25rem; 
  color: var(--text);
  font-weight: 700;
}
.card p{ 
  margin: 0; 
  color: var(--text-muted); 
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ===== Buttons ===== */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease;
}
.btn--primary{
  background: var(--accent);
  color: var(--primary-dark);
}
.btn--primary:hover{ 
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn--ghost{
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--ghost:hover{ 
  background: rgba(255,255,255,0.15); 
  border-color: white;
}

/* ===== Gallery ===== */
.gallery{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px){
  .gallery{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px){
  .gallery{ grid-template-columns: 1fr; }
}
.gallery__item{
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}
.gallery__item:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.gallery__img{
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  display: block;
  background: var(--surface-alt);
}
.gallery__item figcaption{
  padding: 14px 16px;
  font-weight: 700;
  color: var(--text);
  font-size: 14px;
}

/* ===== Booking ===== */
.booking{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 900px){
  .booking{ grid-template-columns: 1fr; }
}
.booking__card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.booking__card h3{ 
  margin: 0 0 12px; 
  font-size: 1.25rem;
  color: var(--primary-dark);
}
.booking__card p{ 
  margin: 0 0 20px; 
  color: var(--text-muted);
  line-height: 1.6;
}
.booking__card--info{ 
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border: none;
}
.booking__card--info h3{ color: white; }
.booking__card--info p{ color: rgba(255,255,255,0.9); }
.muted{ 
  font-size: 14px; 
  color: var(--text-muted); 
  margin-top: 16px;
}

.checklist{ margin: 0; padding-left: 0; list-style: none; }
.checklist li{ 
  margin: 12px 0; 
  color: var(--text); 
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.checklist li::before{
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}

.booking__iframe{
  width: 100%;
  height: 600px;
  border: 0;
  border-radius: var(--radius);
  margin-top: 16px;
}

/* ===== Contact ===== */
.contact{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px){
  .contact{ grid-template-columns: 1fr; }
}
.contact__card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}
.contact__card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.contact__card h3{ 
  margin: 0 0 12px; 
  font-size: 1.25rem;
  color: var(--primary-dark);
}
.contact__card p{ 
  margin: 0 0 20px; 
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== Footer ===== */
.footer{
  background: var(--primary-dark);
  color: white;
  padding: 48px 0 24px;
}
.footer__inner{
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 900px){
  .footer__inner{ 
    grid-template-columns: 1fr; 
    text-align: center;
  }
}
.footer__brand{
  display: flex;
  align-items: center;
  gap: 14px;
}
@media (max-width: 900px){
  .footer__brand{ justify-content: center; }
}
.footer__brand .brand__logo-img{
  background: rgba(255,255,255,0.15);
}
.footer__title{ 
  font-weight: 800; 
  font-size: 1.1rem;
}
.footer__sub{ 
  font-size: 13px; 
  opacity: 0.8; 
  margin-top: 4px;
}

.footer__links{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__links a{
  text-decoration: none;
  opacity: 0.85;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.2s;
}
.footer__links a:hover{ 
  background: rgba(255,255,255,0.15); 
  opacity: 1; 
}

.footer__copy{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 13px;
  opacity: 0.75;
}
@media (max-width: 900px){
  .footer__copy{ justify-content: center; }
}

/* Animations */
@keyframes fadeInUp{
  from{
    opacity: 0;
    transform: translateY(20px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__content > *{
  animation: fadeInUp 0.6s ease forwards;
}
.hero__content > *:nth-child(2){ animation-delay: 0.1s; }
.hero__content > *:nth-child(3){ animation-delay: 0.2s; }
.hero__content > *:nth-child(4){ animation-delay: 0.3s; }
.hero__visual{ animation: fadeInUp 0.6s ease 0.3s forwards; opacity: 0; }
