/* ═══════════════════════════════════════════════════════════
   GROOM STUDIO — ANTI-GRAVITY THEME
   ═══════════════════════════════════════════════════════════ */

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

:root {
  --gold:       #c9a84c;
  --gold-light: #e8c97e;
  --gold-dark:  #997a32;
  --cream:      #f5ede0;
  --dark:       #0d0b08;
  --dark-2:     #161310;
  --dark-3:     #1f1c18;
  --glass-bg:   rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.12);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Outfit', system-ui, sans-serif;
  --ease-float: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: #f0e8d8;
  font-family: var(--font-sans);
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.7;
}

img { display: block; width: 100%; }

/* ── Utility ── */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  color: #f0e8d8;
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════ */

/* Levitate – gentle up/down float */
@keyframes levitate {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

/* Glow pulse */
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(201,168,76,0.3), 0 0 60px rgba(201,168,76,0.1); }
  50%       { box-shadow: 0 0 40px rgba(201,168,76,0.6), 0 0 100px rgba(201,168,76,0.25); }
}

/* Fade + rise for scroll-triggered elements */
@keyframes fadeRise {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll dot bounce */
@keyframes scrollDot {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(18px); }
}

/* Shimmer on gold elements */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Ring ripple for CTA button */
@keyframes ring-ripple {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Float-in for section elements */
.fade-up   { opacity: 0; animation: fadeRise 1s var(--ease-smooth) forwards; }
.delay-1   { animation-delay: 0.15s; }
.delay-2   { animation-delay: 0.3s; }
.delay-3   { animation-delay: 0.45s; }

/* JS-triggered scroll animation */
.float-in {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}
.float-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.float-in.delay-1.visible { transition-delay: 0.12s; }
.float-in.delay-2.visible { transition-delay: 0.24s; }
.float-in.delay-3.visible { transition-delay: 0.36s; }

/* ═══════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 5%;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.3s;
}

.navbar.scrolled {
  background: rgba(13, 11, 8, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.8rem 5%;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-en {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.06em;
}

.logo-hi {
  font-size: 0.72rem;
  color: rgba(201,168,76,0.65);
  letter-spacing: 0.1em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  color: rgba(240,232,216,0.8);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-smooth);
}

.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--gold-light);
  transition: transform 0.3s;
}

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

.hero-parallax {
  position: absolute;
  inset: -20% 0;
  background: url('hero_bg.png') center / cover no-repeat;
  will-change: transform;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13,11,8,0.75) 0%,
    rgba(13,11,8,0.55) 50%,
    rgba(13,11,8,0.82) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 0 2rem;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
  animation: levitate 6s ease-in-out infinite;
}

.hero-title .hindi {
  display: block;
  font-size: 0.55em;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(240,232,216,0.85);
  font-weight: 300;
  letter-spacing: 0.06em;
  margin-bottom: 2.5rem;
}

/* Glowing CTA Button */
.btn-glow {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.6rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--dark);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  animation: levitate 5s ease-in-out 1s infinite, glow-pulse 3s ease-in-out infinite;
  transition: transform 0.3s var(--ease-float);
  overflow: visible;
}

.btn-glow:hover {
  transform: scale(1.06) translateY(-3px);
}

.btn-glow-ring {
  position: absolute;
  inset: -2px;
  border-radius: 50px;
  border: 1.5px solid var(--gold);
  animation: ring-ripple 2s ease-out infinite;
  pointer-events: none;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: scrollDot 1.5s ease-out infinite;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════ */
.about-section {
  padding: 8rem 5%;
  background: var(--dark-2);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* Glassmorphism card */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 20px;
  padding: 2.4rem 2rem;
  transition: transform 0.4s var(--ease-float), border-color 0.3s;
  animation: levitate 7s ease-in-out infinite;
}

.glass-card:nth-child(1) { animation-delay: 0s; }
.glass-card:nth-child(2) { animation-delay: 1.5s; }
.glass-card:nth-child(3) { animation-delay: 0.8s; }

.glass-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-8px) !important;
}

.glass-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.glass-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
}

.glass-card p { font-size: 0.9rem; color: rgba(240,232,216,0.75); line-height: 1.75; }

/* Main about card */
.about-main {
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.about-main::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.about-badge {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}

.about-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.pill {
  font-size: 0.75rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(240,232,216,0.2);
  background: rgba(255,255,255,0.04);
  color: rgba(240,232,216,0.9);
  letter-spacing: 0.04em;
}

.rainbow-pill {
  border-color: rgba(150,100,220,0.4);
  background: linear-gradient(135deg, rgba(150,100,220,0.12), rgba(80,180,120,0.12));
}

/* ═══════════════════════════════════════════════════════════
   COLLECTION — ROYAL CAROUSEL
   ═══════════════════════════════════════════════════════════ */
.collection-section {
  padding: 8rem 0 6rem;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.collection-section .section-header {
  padding: 0 5%;
}

.collection-bg-accent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ── Card float keyframe ── */
@keyframes rc-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

/* ── Wrapper: holds track + arrows ── */
.royalty-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* ── Track ── */
.royalty-carousel {
  display: flex;
  gap: 1.6rem;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  cursor: grab;
  padding: 2rem 4% 3rem;
  user-select: none;
  -webkit-user-select: none;
}

.royalty-carousel.is-dragging {
  cursor: grabbing;
  transition: none;
}

/* ── Individual Card ── */
.rc-card {
  flex: 0 0 calc((100% - 3.2rem) / 3);
  background: #111;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  animation: rc-float 5s ease-in-out var(--float-delay, 0s) infinite;
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s var(--ease-float);
  will-change: transform;
}

.rc-card:hover {
  border-color: rgba(201,168,76,0.55);
  box-shadow: 0 24px 72px rgba(0,0,0,0.55), 0 0 32px rgba(201,168,76,0.12);
  animation-play-state: paused;
  transform: translateY(-12px) !important;
}

/* ── Image area ── */
.rc-img-wrap {
  position: relative;
  height: 420px;
  overflow: hidden;
  flex-shrink: 0;
}

.rc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.7s var(--ease-smooth);
}

.rc-card:hover .rc-img-wrap img {
  transform: scale(1.05);
}

/* Bottom gradient overlay */
.rc-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,8,5,0.92) 0%,
    rgba(10,8,5,0.5) 35%,
    transparent 65%
  );
  pointer-events: none;
}

/* Gold category tag inside image */
.rc-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(10,8,5,0.7);
  border: 1px solid rgba(201,168,76,0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 0.3rem 0.85rem;
}

/* ── Text body below image ── */
.rc-body {
  padding: 1.4rem 1.4rem 1.6rem;
  position: relative;
}

.rc-name {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 400;
  color: #f0e8d8;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

/* Description — visible on hover */
.rc-desc {
  font-size: 0.83rem;
  color: rgba(240,232,216,0.7);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease, margin 0.4s ease;
}

.rc-card:hover .rc-desc {
  max-height: 6rem;
  opacity: 1;
  margin-bottom: 1rem;
}

/* Enquire CTA */
.rc-cta {
  display: inline-block;
  padding: 0.6rem 1.6rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--dark);
  border: none;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s var(--ease-float), box-shadow 0.3s;
}

.rc-card:hover .rc-cta {
  opacity: 1;
  transform: translateY(0);
}

.rc-cta:hover {
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

/* ── Arrow buttons ── */
.rc-arrow {
  position: absolute;
  top: calc(420px / 2 - 1.5rem + 2rem); /* vertically centred on image */
  z-index: 10;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(10,8,5,0.75);
  border: 1.5px solid rgba(201,168,76,0.5);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease-float);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.rc-arrow svg {
  width: 1.1rem;
  height: 1.1rem;
}

.rc-arrow:hover {
  background: rgba(201,168,76,0.18);
  border-color: var(--gold);
  transform: scale(1.1);
}

.rc-arrow--prev { left: 1.2rem; }
.rc-arrow--next { right: 1.2rem; }

/* ── Dot indicators ── */
.rc-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  padding: 0 0 1rem;
}

.rc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201,168,76,0.25);
  border: 1px solid rgba(201,168,76,0.35);
  cursor: pointer;
  transition: background 0.35s, transform 0.35s var(--ease-float), width 0.35s;
}

.rc-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
  transform: scaleY(1.1);
}

/* ── Shared enquire btn (other sections) ── */
.btn-enquire {
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--dark);
  border: none;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.4s var(--ease-float);
}

/* ═══════════════════════════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════════════════════════ */
.reviews-section {
  padding: 8rem 5%;
  background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark-3) 100%);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
  align-items: start;
}

.review-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 2.2rem 2rem;
  position: relative;
  transition: transform 0.4s var(--ease-float), border-color 0.3s;
  animation: levitate 7s ease-in-out infinite;
}

.review-card:nth-child(1) { animation-delay: 0s; }
.review-card:nth-child(2) { animation-delay: 1s; }
.review-card:nth-child(3) { animation-delay: 2s; }

.review-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-8px) !important;
}

.review-card--large { padding: 2.8rem 2.4rem; }

.quote-mark {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 1rem;
  display: block;
}

.review-text {
  font-size: 0.92rem;
  color: rgba(240,232,216,0.85);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.reviewer-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.reviewer strong {
  display: block;
  font-size: 0.85rem;
  color: #f0e8d8;
  font-weight: 500;
}

.stars { font-size: 0.75rem; color: var(--gold); letter-spacing: 0.05em; }

/* Rating aggregate badge */
.rating-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  max-width: 380px;
  margin: 0 auto;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 1.5rem 2.5rem;
}

.rating-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}

.rating-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stars-lg { font-size: 1.1rem; color: var(--gold); letter-spacing: 0.08em; }

.rating-info span:not(.stars-lg) {
  font-size: 0.7rem;
  color: rgba(240,232,216,0.55);
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════════════
   LOCATION
   ═══════════════════════════════════════════════════════════ */
.location-section {
  padding: 8rem 5%;
  background: var(--dark);
}

.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.location-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: #f0e8d8;
  margin: 0.6rem 0 2rem;
}

.address-block {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.address-icon { font-size: 1.4rem; }

address {
  font-style: normal;
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(240,232,216,0.8);
}

.store-hours { margin-bottom: 2rem; }

.hours-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 0.4rem;
}

.hours-day {
  font-size: 0.85rem;
  color: rgba(240,232,216,0.7);
  min-width: 140px;
}

.hours-time {
  font-size: 0.85rem;
  color: var(--gold-light);
  font-weight: 500;
}

.open-dot { font-size: 0.82rem; color: #8cba80; }

.contact-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--dark);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: transform 0.3s var(--ease-float), box-shadow 0.3s;
}

.btn-directions:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.35);
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.btn-call:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
  transform: translateY(-4px);
}

.map-container {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  position: relative;
}

.map-placeholder {
  position: relative;
  height: 420px;
  background: var(--dark-3);
  overflow: hidden;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  filter: saturate(0.6) brightness(0.8);
}

.map-overlay-label {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(13,11,8,0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 12px;
  padding: 0.7rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  white-space: nowrap;
}

.map-overlay-label span { font-size: 0.95rem; color: var(--gold-light); font-weight: 500; }
.map-sublabel { font-size: 0.7rem !important; color: rgba(240,232,216,0.5) !important; font-weight: 300 !important; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: #080705;
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: 5rem 5% 1.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  margin-bottom: 0.3rem;
}

.footer-logo-hi {
  font-size: 0.85rem;
  color: rgba(201,168,76,0.5);
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(240,232,216,0.45);
  line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  letter-spacing: 0.08em;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: rgba(240,232,216,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-contact p {
  font-size: 0.85rem;
  color: rgba(240,232,216,0.5);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.footer-badge {
  font-size: 0.7rem;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(240,232,216,0.55);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  font-size: 0.75rem;
  color: rgba(240,232,216,0.3);
  letter-spacing: 0.05em;
  max-width: 1200px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-grid .glass-card:first-child {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(13,11,8,0.97);
    backdrop-filter: blur(24px);
    z-index: 999;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
  }
  .nav-links.open a { font-size: 1.2rem; }
  .hamburger { display: flex; }

  .about-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
  .about-grid .glass-card:first-child { display: block; }

  .rc-card {
    flex: 0 0 calc(100% - 2rem);
  }
  .rc-arrow--prev { left: 0.5rem; }
  .rc-arrow--next { right: 0.5rem; }

  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto 2rem;
  }

  .location-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.8rem; }
  .contact-actions { flex-direction: column; }
  .btn-directions, .btn-call { justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════
   WHATSAPP INTEGRATION
   ═══════════════════════════════════════════════════════════ */

/* ── Nav WhatsApp button ── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1.1rem;
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.35);
  border-radius: 50px;
  color: #25d366;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.nav-whatsapp:hover {
  background: rgba(37,211,102,0.22);
  border-color: rgba(37,211,102,0.6);
  transform: translateY(-2px);
}

/* ── Hero CTA group (two buttons side by side) ── */
.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.btn-whatsapp-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 1rem 2.2rem;
  background: rgba(37,211,102,0.14);
  border: 1.5px solid rgba(37,211,102,0.45);
  border-radius: 50px;
  color: #25d366;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease-float), box-shadow 0.3s;
}

.btn-whatsapp-hero:hover {
  background: rgba(37,211,102,0.24);
  border-color: rgba(37,211,102,0.7);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.18);
}

/* ── About card WhatsApp consult button ── */
.btn-whatsapp-consult {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.7rem 1.5rem;
  background: #25d366;
  color: #0d0b08;
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.3s var(--ease-float), box-shadow 0.3s;
}

.btn-whatsapp-consult:hover {
  background: #20c05a;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(37,211,102,0.3);
}

/* ── Carousel WhatsApp enquire button ── */
.btn-enquire-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 1.4rem;
  background: #25d366;
  color: #0d0b08;
  border: none;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s var(--ease-float), box-shadow 0.3s, background 0.3s;
}

.rc-card:hover .btn-enquire-wa {
  opacity: 1;
  transform: translateY(0);
}

.btn-enquire-wa:hover {
  background: #20c05a;
  box-shadow: 0 8px 24px rgba(37,211,102,0.32);
}

/* ── Location WhatsApp button ── */
.btn-whatsapp-location {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  background: #25d366;
  color: #0d0b08;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: background 0.3s, transform 0.3s var(--ease-float), box-shadow 0.3s;
}

.btn-whatsapp-location:hover {
  background: #20c05a;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.28);
}

/* ── Footer WhatsApp link ── */
.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
  padding: 0.5rem 1.2rem;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: 50px;
  color: #25d366;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: background 0.3s, border-color 0.3s;
}

.footer-whatsapp:hover {
  background: rgba(37,211,102,0.2);
  border-color: rgba(37,211,102,0.55);
}

/* ── Floating WhatsApp Button ── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.4rem 0.85rem 1.2rem;
  background: #25d366;
  color: #0d0b08;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4), 0 2px 8px rgba(0,0,0,0.3);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  animation: wa-float-pulse 3s ease-in-out infinite;
  transition: transform 0.3s var(--ease-float), box-shadow 0.3s, padding 0.3s;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 16px 48px rgba(37,211,102,0.55), 0 4px 16px rgba(0,0,0,0.3);
}

.whatsapp-float-label {
  white-space: nowrap;
}

@keyframes wa-float-pulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(37,211,102,0.4), 0 2px 8px rgba(0,0,0,0.3); }
  50%       { box-shadow: 0 12px 48px rgba(37,211,102,0.6), 0 4px 16px rgba(0,0,0,0.3); }
}

/* ── Responsive WhatsApp adjustments ── */
@media (max-width: 768px) {
  .nav-whatsapp span { display: none; }
  .nav-whatsapp { padding: 0.5rem 0.7rem; }

  .hero-cta-group { flex-direction: column; gap: 0.8rem; }
  .btn-whatsapp-hero { width: 100%; max-width: 300px; justify-content: center; }

  .whatsapp-float-label { display: none; }
  .whatsapp-float {
    padding: 1rem;
    border-radius: 50%;
    width: 3.5rem;
    height: 3.5rem;
    justify-content: center;
  }
}
