/* =========================================
   DESTCUTZ – Premium Barbershop Stylesheet
   Black & Gold Royal Theme
   ========================================= */

/* ---- CSS Variables ---- */
:root {
  --gold: #C9A84C;
  --gold-light: #F0C040;
  --gold-dark: #9A7A2E;
  --gold-shine: #FFD700;
  --black: #0A0A0A;
  --black-2: #111111;
  --black-3: #1A1A1A;
  --black-4: #222222;
  --black-5: #2A2A2A;
  --white: #FFFFFF;
  --off-white: #F5F0E8;
  --text-muted: #888888;
  --text-light: #CCCCCC;
  --instagram: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  --whatsapp: #25D366;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-gold: 0 4px 30px rgba(201, 168, 76, 0.25);
  --shadow-dark: 0 8px 40px rgba(0, 0, 0, 0.6);
  --border-gold: 1px solid rgba(201, 168, 76, 0.3);
  --radius: 12px;
  --radius-lg: 20px;
  --font-head: 'Cinzel Decorative', serif;
  --font-body: 'Outfit', sans-serif;
  --font-accent: 'Playfair Display', serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Reusable ---- */
.gold-text {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-family: var(--font-body);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 520px;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: var(--black);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(201, 168, 76, 0.55); }
.btn-primary:hover::after { opacity: 1; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: transparent;
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  border: 1.5px solid var(--gold);
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.btn-outline:hover {
  background: rgba(201, 168, 76, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.2);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  border-bottom: var(--border-gold);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 52px; width: auto; object-fit: contain; filter: drop-shadow(0 2px 8px rgba(201, 168, 76, 0.4)); }

.nav-brand-name {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 1px;
  white-space: nowrap;
}
.brand-dest {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.brand-cutz {
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.3px;
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
  border-radius: 2px;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }

.btn-nav-cta {
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50px;
  white-space: nowrap;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(201, 168, 76, 0.35);
}
.btn-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201, 168, 76, 0.5); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 14s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.88) 0%,
    rgba(10,10,10,0.75) 40%,
    rgba(10,5,0,0.88) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: fadeDown 0.8s ease both;
}

.hero-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
  animation: fadeDown 0.9s ease 0.15s both;
}

.hero-logo-img {
  width: min(420px, 75vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 40px rgba(201, 168, 76, 0.55))
          drop-shadow(0 0 80px rgba(201, 168, 76, 0.25));
  animation: herLogoFloat 5s ease-in-out infinite;
}

@keyframes herLogoFloat {
  0%, 100% { filter: drop-shadow(0 6px 40px rgba(201,168,76,0.55)) drop-shadow(0 0 80px rgba(201,168,76,0.25)); transform: translateY(0); }
  50%       { filter: drop-shadow(0 10px 60px rgba(201,168,76,0.75)) drop-shadow(0 0 100px rgba(201,168,76,0.4)); transform: translateY(-6px); }
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--text-light);
  letter-spacing: 1px;
  margin-bottom: 40px;
  animation: fadeDown 1s ease 0.3s both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeDown 1s ease 0.45s both;
  margin-bottom: 48px;
}

.hero-socials {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeDown 1s ease 0.6s both;
}

.hero-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-light);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px 20px;
  border-radius: 50px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.hero-social-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.hero-social-link:hover {
  color: var(--gold-light);
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  transform: translateY(-2px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0.4; }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section {
  padding: 100px 0;
  background: var(--black-2);
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-lead {
  font-size: 1.15rem;
  color: var(--off-white);
  line-height: 1.8;
  margin-bottom: 18px;
  font-family: var(--font-accent);
  font-style: italic;
}
.about-text p:not(.about-lead) {
  color: var(--text-light);
  margin-bottom: 32px;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-logo-wrap { text-align: center; }
.about-logo-ring {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: radial-gradient(circle at center, rgba(201,168,76,0.06) 0%, transparent 70%);
  box-shadow: 0 0 60px rgba(201,168,76,0.12), inset 0 0 60px rgba(201,168,76,0.04);
  position: relative;
  animation: ringPulse 4s ease-in-out infinite;
}
.about-logo-ring::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.1);
}
@keyframes ringPulse {
  0%, 100% { box-shadow: 0 0 60px rgba(201,168,76,0.12); }
  50% { box-shadow: 0 0 80px rgba(201,168,76,0.22); }
}
.about-logo { width: 260px; height: auto; object-fit: contain; }
.about-tagline {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 1px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
  padding: 100px 0;
  background: var(--black);
  position: relative;
}
.services-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

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

.service-card {
  background: var(--black-3);
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.5);
  box-shadow: var(--shadow-gold);
  background: var(--black-4);
}
.service-card:hover::before { opacity: 1; }

.service-img-wrap {
  width: 100%;
  height: 160px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 18px;
  position: relative;
}
.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img { transform: scale(1.07); }
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.55) 100%);
  border-radius: 10px;
}


.service-card-cta {
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.02));
  border-color: rgba(201,168,76,0.4);
}

.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  color: var(--gold);
  transition: transform 0.35s;
}
.service-icon svg { width: 100%; height: 100%; }
.service-card:hover .service-icon { transform: scale(1.1) rotate(-5deg); }

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 16px;
}
.service-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(201,168,76,0.12);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.25);
}
.service-tag-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  border-color: transparent;
}

.services-cta { text-align: center; margin-top: 48px; }

/* ============================================================
   GALLERY GRID
   ============================================================ */
.gallery-section {
  padding: 100px 0;
  background: var(--black-2);
}

.gallery-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-btn {
  padding: 9px 22px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-body);
  border-radius: 50px;
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--text-muted);
  background: transparent;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  box-shadow: 0 4px 14px rgba(201,168,76,0.3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  border: var(--border-gold);
  background: var(--black-4);
}
.gallery-item-tall { grid-row: span 2; }
.gallery-item-wide { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.35s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.5px;
}
.gallery-zoom-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(201,168,76,0.2);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.gallery-zoom-btn:hover {
  background: var(--gold);
  color: var(--black);
}

.gallery-item.hidden { display: none; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}
.lightbox-content img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius);
  border: var(--border-gold);
  box-shadow: var(--shadow-gold);
}
.lightbox-caption {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: fixed;
  z-index: 10;
  color: var(--white);
  font-size: 1.4rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: var(--gold);
  color: var(--black);
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ============================================================
   SLIDESHOW
   ============================================================ */
.slideshow-section {
  padding: 100px 0 60px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.slideshow-header {
  text-align: center;
  padding: 0 24px;
  margin-bottom: 48px;
}

.slideshow-wrapper {
  position: relative;
  height: 560px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transform: scale(0.98);
  pointer-events: none;
}
.slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: all;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 48px 40px;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
  text-align: center;
}
.slide-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.slide-caption h3 {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: 6px;
}
.slide-caption p { color: var(--text-light); font-size: 0.9rem; }

.slideshow-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 28px 24px 0;
}
.ss-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.ss-btn:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 4px 14px rgba(201,168,76,0.35);
}
.ss-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}
.ss-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201,168,76,0.25);
  border: 1px solid rgba(201,168,76,0.4);
  transition: var(--transition);
  cursor: pointer;
}
.ss-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}
.ss-progress-bar {
  margin: 20px auto 0;
  width: min(600px, 90%);
  height: 2px;
  background: rgba(201,168,76,0.15);
  border-radius: 2px;
  overflow: hidden;
}
.ss-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  border-radius: 2px;
  width: 0%;
  transition: width linear;
}

/* ============================================================
   BOOKING
   ============================================================ */
.booking-section {
  padding: 100px 0;
  background: var(--black-2);
  position: relative;
  overflow: hidden;
}
.booking-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.booking-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.booking-info-card {
  background: var(--black-3);
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: sticky;
  top: 100px;
}
.booking-logo {
  width: 130px;
  height: auto;
  margin: 0 auto 20px;
  object-fit: contain;
}
.booking-info-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 20px;
}
.booking-perks {
  text-align: left;
  margin-bottom: 28px;
}
.booking-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.booking-perks li:last-child { border-bottom: none; }
.perk-icon { color: var(--gold); font-size: 0.85rem; flex-shrink: 0; }

.booking-contact-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.booking-social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: var(--radius);
  border: var(--border-gold);
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--text-light);
  transition: var(--transition);
  background: rgba(201,168,76,0.04);
}
.booking-social-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.booking-social-link:hover {
  color: var(--gold-light);
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
  transform: translateX(4px);
}

/* ---- Form ---- */
.booking-form-wrap {
  background: var(--black-3);
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--black-5);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group select option {
  background: var(--black-4);
  color: var(--off-white);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input[type="date"]::-webkit-calendar-picker-indicator,
.form-group input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(70%) sepia(40%) saturate(400%) hue-rotate(5deg);
  cursor: pointer;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #e05555;
}
.form-error {
  font-size: 0.77rem;
  color: #e05555;
  margin-top: 4px;
  min-height: 16px;
}

.btn-booking-submit {
  width: 100%;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: var(--black);
  font-weight: 800;
  font-size: 1rem;
  border-radius: var(--radius);
  letter-spacing: 0.3px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
  position: relative;
  overflow: hidden;
  margin-top: 8px;
}
.btn-booking-submit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-booking-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.5);
}
.btn-booking-submit:hover::after { opacity: 1; }

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  padding: 100px 0;
  background: var(--black);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 24px;
  background: var(--black-3);
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.04), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.5);
  box-shadow: var(--shadow-gold);
}
.contact-card:hover::before { opacity: 1; }
.contact-card-gold {
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.03));
  border-color: rgba(201,168,76,0.4);
}

.contact-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon svg { width: 26px; height: 26px; }
.instagram-icon {
  background: var(--instagram);
  color: white;
}
.whatsapp-icon {
  background: rgba(37,211,102,0.15);
  border: 1px solid rgba(37,211,102,0.3);
  color: var(--whatsapp);
}
.book-icon {
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
}

.contact-card-text { display: flex; flex-direction: column; gap: 3px; }
.contact-platform { font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); }
.contact-handle { font-size: 1rem; font-weight: 700; color: var(--white); }
.contact-action { font-size: 0.78rem; color: var(--gold); font-weight: 500; transition: letter-spacing 0.3s; }
.contact-card:hover .contact-action { letter-spacing: 0.5px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black-2);
  border-top: var(--border-gold);
  padding: 60px 0 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer-logo-wrap { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.footer-logo { width: 90px; height: auto; object-fit: contain; }
.footer-tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold);
}
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.25s;
  letter-spacing: 0.3px;
}
.footer-links a:hover { color: var(--gold-light); }

.footer-socials { display: flex; gap: 16px; }
.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: var(--border-gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-socials a svg { width: 18px; height: 18px; }
.footer-socials a:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-bottom {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.floating-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: var(--transition);
  animation: waPulse 2.5s ease-in-out infinite;
}
.floating-wa svg { width: 28px; height: 28px; }
.floating-wa:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 10px 32px rgba(37,211,102,0.6);
  animation: none;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 6px 30px rgba(37,211,102,0.8), 0 0 0 10px rgba(37,211,102,0.1); }
}
.floating-wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--black-3);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 8px;
  border: var(--border-gold);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.floating-wa:hover .floating-wa-tooltip { opacity: 1; }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
  }
  .booking-wrapper {
    grid-template-columns: 1fr;
  }
  .booking-info-card {
    position: static;
  }
  .contact-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav-cta { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 999;
  }
  .nav-links.open a {
    font-size: 1.3rem;
    color: var(--white);
  }

  .about-grid { grid-template-columns: 1fr; }
  .about-logo-wrap { order: -1; }
  .about-logo-ring { width: 240px; height: 240px; }
  .about-logo { width: 190px; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-item-wide { grid-column: span 1; }

  .slideshow-wrapper { height: 420px; }

  .form-row { grid-template-columns: 1fr; }
  .booking-form-wrap { padding: 28px 20px; }
  .contact-cards { grid-template-columns: 1fr; }

  .footer-links { gap: 16px; }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.6rem; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 170px;
  }
  .gallery-item-tall { grid-row: span 1; }
  .hero-title { font-size: 2.4rem; }
  .contact-card { flex-direction: column; text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
