/* Ultra Premium Layer v3 — Dedeman Village */

:root {
  --gold: #c9a962;
  --gold-light: #e8d5a3;
  --premium-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
  --premium-glow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

body {
  background: #f7f6f3;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(201, 169, 98, 0.06), transparent),
    radial-gradient(circle at 100% 100%, rgba(27, 67, 50, 0.04), transparent 40%);
}

/* Header */
.site-header {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(201, 169, 98, 0.15);
}
.site-header.scrolled {
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.96);
}
.header-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}
.header-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.2) 50%, transparent 60%);
  transform: translateX(-100%);
  animation: headerShine 4s ease-in-out infinite;
}
@keyframes headerShine {
  0%, 80% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.logo-mark {
  background: linear-gradient(145deg, var(--primary), var(--primary-light));
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Hero premium */
.hero-badge {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(201, 169, 98, 0.45);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  letter-spacing: 0.1em;
}
.hero h1 {
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
}
.hero-stats .stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: transform 0.35s ease, background 0.35s;
}
.hero-stats .stat-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.16);
}

/* Trust strip */
.trust-strip {
  background: #fff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  padding: 1.25rem 0;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
}
.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 768px) {
  .trust-strip-grid { grid-template-columns: repeat(2, 1fr); }
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.5rem;
}
.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--bg-soft), #fff);
  border: 1px solid rgba(201, 169, 98, 0.25);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.trust-item strong {
  display: block;
  font-size: 0.88rem;
  color: var(--primary);
  line-height: 1.2;
}
.trust-item span {
  font-size: 0.75rem;
  color: #64748b;
}

/* Section titles */
.section-title {
  position: relative;
  padding-bottom: 0.75rem;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  border-radius: 999px;
}
.section-label {
  letter-spacing: 0.14em;
  font-weight: 800;
}

/* Stats bar */
.stats-bar {
  border: 1px solid rgba(201, 169, 98, 0.2);
  box-shadow: var(--premium-shadow);
}
.stat-item {
  transition: background 0.3s;
}
.stat-item:hover {
  background: var(--bg-soft);
}

/* Room cards */
.room-card {
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s;
  overflow: hidden;
}
.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--premium-shadow);
}
.room-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(201, 169, 98, 0.4), transparent 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}
.room-card:hover::before { opacity: 1; }

/* Reviews */
.review-card {
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
  transition: transform 0.35s, box-shadow 0.35s;
  background: #fff;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--premium-shadow);
}

/* Premium CTA band */
.premium-cta-band {
  margin: 4rem 0;
  padding: 3.5rem 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--premium-shadow);
}
.premium-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(201, 169, 98, 0.2), transparent 50%);
  pointer-events: none;
}
.premium-cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
  position: relative;
}
.premium-cta-band p {
  opacity: 0.92;
  max-width: 520px;
  margin: 0 auto 1.5rem;
  position: relative;
}
.premium-cta-band .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  position: relative;
}
.premium-cta-band .btn-light {
  background: #fff;
  color: var(--primary);
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s, box-shadow 0.25s;
}
.premium-cta-band .btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.premium-cta-band .btn-glass {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  font-weight: 700;
  transition: background 0.25s;
}
.premium-cta-band .btn-glass:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Floating mobile CTA */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(201, 169, 98, 0.25);
  box-shadow: 0 -8px 32px rgba(15, 23, 42, 0.1);
  display: none;
  gap: 0.5rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.floating-cta.visible { transform: translateY(0); }
@media (max-width: 768px) {
  .floating-cta { display: grid; grid-template-columns: 1fr 1fr; }
}
.floating-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.82rem;
}
.floating-cta .fc-wa { background: #25d366; color: #fff; }
.floating-cta .fc-book { background: var(--primary); color: #fff; }

/* Gallery & Instagram */
.gallery-grid a,
.instagram-strip-grid a {
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.1);
}

/* FAQ */
.faq-item {
  border-radius: var(--radius);
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.3s;
}
.faq-item.open {
  box-shadow: var(--premium-shadow);
}

/* Footer enhancement */
.footer-grid {
  gap: 2.5rem;
}
.footer-brand p {
  opacity: 0.75;
  line-height: 1.7;
}
