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

:root {
  --white: #ffffff;
  --white-soft: #fbfaf8;
  --paper: #f6f3ee;
  --paper-2: #f0ece6;
  --text: #1b1b1f;
  --text-soft: #5f6271;
  --gold: #c4a15a;
  --gold-deep: #a9853d;
  --silver: #cfd4dd;
  --line: rgba(27, 27, 31, 0.08);
  --line-strong: rgba(27, 27, 31, 0.14);
  --accent: #ff4f8b;
  --accent-soft: rgba(255, 79, 139, 0.12);
  --shadow-soft: 0 20px 60px rgba(24, 27, 39, 0.08);
  --shadow-card: 0 24px 70px rgba(24, 27, 39, 0.11);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1220px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(196, 161, 90, 0.12), transparent 24%),
    radial-gradient(circle at 90% 15%, rgba(255, 79, 139, 0.08), transparent 16%),
    linear-gradient(180deg, #fffefe 0%, #f6f2ec 100%);
  color: var(--text);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  background: none;
  border: none;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 108px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(246, 242, 236, 0.82));
  border-top: 1px solid rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid rgba(27, 27, 31, 0.05);
}

.center {
  text-align: center;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 54px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--gold-deep);
}
.eyebrow,
.trust-label,
.card-kicker,
.service-type,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--gold-deep);
}

.section-heading h2,
.hero-copy h1,
.split-copy h2,
.booking-cta-shell h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  margin: 16px 0 16px;
}

.section-heading p,
.hero-description,
.hero-subtext,
.split-copy p,
.contact-copy p,
.special-card p,
.pricing-footer p,
.booking-cta-shell p {
  color: var(--text-soft);
}

.glass-panel {
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

/* =========================================
   2. REUSABLE BUTTONS / LINKS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.28s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #ff7aa8);
  color: var(--white);
  box-shadow: 0 18px 30px rgba(255, 79, 139, 0.26);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 34px rgba(255, 79, 139, 0.3);
}

.btn-secondary {
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
  border-color: rgba(196, 161, 90, 0.45);
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--accent);
}

.text-link::after {
  content: "→";
}

/* =========================================
   3. HEADER / NAVIGATION
   ========================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding-top: 16px;
}

.site-header.scrolled {
  padding-top: 8px;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), #f0dbac);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.1em;
  font-size: 0.98rem;
}

.brand-copy small {
  color: var(--text-soft);
  font-size: 0.82rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.desktop-nav a {
  color: var(--text-soft);
  font-weight: 600;
}

.desktop-nav a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--text);
  transition: 0.25s ease;
}

.mobile-menu {
  display: none;
  width: min(var(--container), calc(100% - 40px));
  margin: 12px auto 0;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.84);
}

.mobile-menu.active {
  display: grid;
  gap: 16px;
}

.mobile-menu a {
  font-weight: 700;
}

.mobile-menu-cta {
  margin-top: 8px;
}

/* =========================================
   4. FLOATING CTA / PROGRESS BAR
   ========================================= */
.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  z-index: 1100;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1000;
  display: grid;
  gap: 2px;
  padding: 14px 16px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffff, #fff6fb);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-card);
}

.floating-whatsapp span {
  color: var(--text-soft);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.floating-whatsapp strong {
  color: var(--accent);
}

/* =========================================
   5. HERO
   ========================================= */
.hero-section {
  padding: 50px 0 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.hero-copy {
  padding: 48px 0 36px;
}

.hero-copy h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
  margin: 18px 0 18px;
  max-width: 12ch;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #000000;
  margin: 0;
}

.rotating-word-wrap {
  display: inline-block;
  position: relative;
  min-width: 210px; /* adjust for longest word */
  text-align: left;
}

.rotating-word {
  display: inline-block;
  position: relative;
  color: #d4af37; /* gold accent */
  transition: opacity 0.65s ease, transform 0.65s ease, filter 0.65s ease;
  will-change: opacity, transform, filter;
}

/* enter / exit motion */
.rotating-word.enter {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(8px);
}

.rotating-word.enter-active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.rotating-word.exit {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.rotating-word.exit-active {
  opacity: 0;
  transform: translateY(-14px);
  filter: blur(8px);
}

/* shimmer layer */
.shimmer-text::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 35%,
    rgba(255, 255, 255, 0.75) 50%,
    rgba(255, 255, 255, 0) 65%,
    transparent 100%
  );
  transform: translateX(-160%);
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}

.shimmer-text.shimmer-active::after {
  animation: wordShimmer 1s ease forwards;
  opacity: 1;
}

@keyframes wordShimmer {
  0% {
    transform: translateX(-160%);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  100% {
    transform: translateX(160%);
    opacity: 0;
  }
}

.hero-subtext {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text);
}

.hero-description {
  max-width: 58ch;
  margin-top: 16px;
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 30px;
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hero-proof-grid article {
  padding: 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.hero-proof-grid strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.hero-proof-grid span {
  color: var(--text-soft);
  font-size: 0.94rem;
}

.hero-image-stack {
  position: relative;
  min-height: 650px;
}

.hero-main-card {
  position: absolute;
  inset: 24px 52px 24px 24px;
  border-radius: 40px;
  overflow: hidden;
}

.hero-main-card img {
  height: 100%;
  object-fit: cover;
}

.hero-main-card figcaption {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  padding: 18px 20px;
  border-radius: 22px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(22, 23, 29, 0.2), rgba(22, 23, 29, 0.7));
}

.hero-main-card figcaption span {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.82);
}

.hero-main-card figcaption strong {
  font-size: 1.28rem;
  font-family: "Manrope", sans-serif;
}

.hero-floating-card {
  position: absolute;
  padding: 18px 20px;
  border-radius: 24px;
  width: 230px;
}

.hero-floating-card p {
  color: var(--text-soft);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-floating-card strong {
  display: block;
  margin: 8px 0 5px;
  font-family: "Manrope", sans-serif;
  font-size: 1.08rem;
}

.hero-floating-card span {
  color: var(--accent);
  font-weight: 700;
}

.hero-floating-top {
  top: 0;
  right: 0;
}

.hero-floating-bottom {
  bottom: 0;
  left: 0;
}

/* =========================================
   TRUST STRIP
   ========================================= */
.trust-strip {
  position: relative;
  padding: 90px 0;
  background:
    radial-gradient(circle at top left, rgba(255, 215, 0, 0.08), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #0f0f12 0%, #17171c 100%);
  overflow: hidden;
}

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

.trust-card {
  position: relative;
  padding: 32px 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
  overflow: hidden;
  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    background 0.4s ease;
}

.trust-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.35);
  background: rgba(255, 255, 255, 0.11);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(212, 175, 55, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.trust-card-glow {
  position: absolute;
  inset: auto auto -40px -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18), transparent 70%);
  pointer-events: none;
}

.trust-label {
  margin: 0 0 14px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.trust-card h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.6;
  font-weight: 500;
  color: #ffffff;
  max-width: 26ch;
}

/* =========================================
   STAGGER REVEAL
   ========================================= */
.reveal-stagger .trust-card {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(10px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    filter 0.8s ease;
}

.reveal-stagger .trust-card:nth-child(1) {
  transition-delay: 0.1s;
}

.reveal-stagger .trust-card:nth-child(2) {
  transition-delay: 0.25s;
}

.reveal-stagger .trust-card:nth-child(3) {
  transition-delay: 0.4s;
}

.reveal-stagger.is-visible .trust-card {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 991px) {
  .trust-strip-grid {
    grid-template-columns: 1fr;
  }

  .trust-card h3 {
    max-width: none;
  }
}

/* =========================================
   7. SPECIALS / ABOUT / SPLIT
   ========================================= */
.specials-feature {
  display: grid;
  grid-template-columns: 1.2fr auto auto;
  gap: 20px;
  align-items: center;
  padding: 28px;
  margin-bottom: 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #fffdf9, #fff5ee);
  border: 1px solid rgba(196, 161, 90, 0.16);
  box-shadow: var(--shadow-card);
}

.specials-feature h3 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  margin: 10px 0 10px;
}

.specials-feature-price {
  text-align: right;
}

.specials-feature-price small,
.specials-feature-price span {
  display: block;
  color: var(--text-soft);
}

.specials-feature-price strong {
  display: block;
  font-size: 3rem;
  line-height: 1;
  color: var(--accent);
  font-family: "Manrope", sans-serif;
}

.specials-grid,
.services-grid,
.pricing-grid,
.testimonials-grid {
  display: grid;
  gap: 22px;
}

.specials-grid,
.services-grid,
.testimonials-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.special-card,
.service-card,
.pricing-card,
.testimonial-card,
.contact-info-card,
.contact-cta-card {
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.special-card h3,
.service-card h3,
.pricing-card h3,
.testimonial-card strong {
  font-family: "Manrope", sans-serif;
}

.featured-card,
.highlighted-service,
.highlighted-pricing {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 245, 250, 0.92));
  border-color: rgba(255, 79, 139, 0.18);
}

.price-line {
  margin: 14px 0;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text);
}

.price-line small {
  margin-left: 8px;
  color: var(--text-soft);
  font-weight: 600;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.media-card {
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.primary-media-card img {
  min-height: 560px;
  object-fit: cover;
}

.mini-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.mini-feature-grid article {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.56);
}

.mini-feature-grid strong {
  display: block;
  margin-bottom: 6px;
}

.mini-feature-grid span {
  color: var(--text-soft);
  font-size: 0.94rem;
}


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

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #ead3a4);
  margin-bottom: 18px;
}

.service-card p {
  color: var(--text-soft);
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.results-toolbar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.results-filter {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  color: var(--text-soft);
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
}

.results-filter.active,
.results-filter:hover {
  background: var(--accent);
  color: var(--white);
  border-color: transparent;
}

.results-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: none;
  padding: 0;
  background: transparent;
  border-radius: 24px;
  cursor: pointer;
  box-shadow: var(--shadow-card);
}

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

.gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(10px);
  font-weight: 700;
  color: var(--text);
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin: 38px 0 30px;
}

.service-tab {
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.service-tab:hover {
  transform: translateY(-2px);
  background: rgba(212, 175, 55, 0.35);
  border-color: transparent
}

.service-tab.active {
  background: linear-gradient(135deg, #d4af37, #f5e6a8);
  color: #111;
  border-color: transparent;
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.22);
}

.service-panel {
  display: none;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 30px;
  padding: 34px 30px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(10px);
}

.service-panel.active {
  display: block;
}

.service-panel-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.service-panel-label {
  margin: 0 0 10px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent, #caa24d);
}

.service-panel h3 {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.25;
  color: var(--text);
  max-width: 640px;
}

.service-panel-meta {
  margin: 0;
  max-width: 320px;
  color: var(--text-soft);
  text-align: right;
  line-height: 1.6;
}

.service-menu-modern {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.service-menu-column {
  display: grid;
  gap: 16px;
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 244, 236, 0.72));
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  border-color: rgba(212, 175, 55, 0.24);
}

.service-item h4 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: var(--text);
}

.service-item p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.55;
  font-size: 0.93rem;
}

.service-item strong {
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--text);
  padding-left: 12px;
  white-space: nowrap;
}

.service-menu-footer {
  margin-top: 26px;
  display: grid;
  gap: 18px;
  justify-items: center;
}

.service-menu-note {
  margin: 0;
  max-width: 760px;
  text-align: center;
  color: var(--text-soft);
}

.mini-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(212, 175, 55, 0.14);
  color: #8a6a16;
  vertical-align: middle;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 12, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  z-index: 9999;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 900px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 82vh;
  border-radius: 22px;
  object-fit: contain;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 2.4rem;
  cursor: pointer;
  line-height: 1;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 108px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.92);
  color: var(--text);
  border: 1px solid rgba(27,27,31,0.1);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.25s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


/* =========================================
   ABOUT LUXURY SECTION
   ========================================= */
.about-luxury-section {
  position: relative;
  padding: 110px 0;
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.08), transparent 24%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(180deg, #111116 0%, #17171d 100%);
  overflow: hidden;
}

.about-luxury-layout {
  align-items: center;
  gap: 56px;
}

.about-media-shell {
  position: relative;
}

.about-media-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  left: -40px;
  bottom: -40px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}

.about-luxury-card {
  position: relative;
  z-index: 1;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.about-luxury-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform 0.8s ease, filter 0.8s ease;
}

.about-luxury-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.05);
}

.luxury-tag {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.about-luxury-title {
  margin: 0 0 22px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
  color: #ffffff;
  max-width: 12ch;
}

.about-luxury-text {
  margin: 0 0 18px;
  max-width: 58ch;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
}

.luxury-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.luxury-feature-card {
  position: relative;
  padding: 22px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.luxury-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.32);
  background: rgba(255, 255, 255, 0.1);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(212, 175, 55, 0.06);
}

.luxury-feature-glow {
  position: absolute;
  width: 120px;
  height: 120px;
  left: -24px;
  bottom: -30px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.14), transparent 72%);
  pointer-events: none;
}

.luxury-feature-card strong {
  position: relative;
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  z-index: 1;
}

.luxury-feature-card span:last-child {
  position: relative;
  display: block;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.68);
  z-index: 1;
}

/* =========================================
   ABOUT REVEAL ANIMATION
   ========================================= */
.reveal-left,
.reveal-right {
  opacity: 0;
  filter: blur(10px);
  transition:
    opacity 0.95s ease,
    transform 0.95s ease,
    filter 0.95s ease;
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

/* feature cards stagger in after copy appears */
.luxury-feature-card {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(8px);
}

.reveal-right.is-visible .luxury-feature-card {
  animation: luxuryCardReveal 0.8s ease forwards;
}

.reveal-right.is-visible .luxury-feature-card:nth-child(1) {
  animation-delay: 0.15s;
}

.reveal-right.is-visible .luxury-feature-card:nth-child(2) {
  animation-delay: 0.28s;
}

.reveal-right.is-visible .luxury-feature-card:nth-child(3) {
  animation-delay: 0.41s;
}

.reveal-right.is-visible .luxury-feature-card:nth-child(4) {
  animation-delay: 0.54s;
}

@keyframes luxuryCardReveal {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 991px) {
  .about-luxury-layout {
    gap: 38px;
  }

  .about-luxury-card img {
    min-height: 380px;
  }

  .about-luxury-title {
    max-width: none;
  }

  .luxury-feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .about-luxury-section {
    padding: 85px 0;
  }

  .about-luxury-text {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .luxury-feature-card {
    padding: 20px 18px;
  }
}
/* =========================================
   9. INSTAGRAM
   ========================================= */
.instagram-layout {
  grid-template-columns: 0.95fr 1.05fr;
}

.instagram-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.instagram-preview-card {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--white);
}

.instagram-preview-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

    /* =========================================
    9.1   CLIENT REVIEWS SECTION
      ========================================= */
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
      margin-top: 40px;
    }

    .review-card {
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(212, 175, 55, 0.14);
      border-radius: 28px;
      padding: 28px 24px;
      box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
      backdrop-filter: blur(10px);
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .review-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 22px 50px rgba(15, 23, 42, 0.12);
      border-color: rgba(212, 175, 55, 0.28);
    }

    .review-stars {
      font-size: 1.1rem;
      letter-spacing: 0.12em;
      color: #d4af37;
    }

    .review-quote {
      margin: 0;
      font-size: 1rem;
      line-height: 1.75;
      color: var(--text-dark);
    }

    .review-meta h3 {
      margin: 0 0 4px;
      font-size: 1rem;
      color: var(--text-dark);
    }

    .review-meta p {
      margin: 0;
      color: var(--text-muted);
      font-size: 0.95rem;
    }

    .review-badge {
      align-self: flex-start;
      margin-top: auto;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(212, 175, 55, 0.12);
      color: #8a6a16;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.03em;
    }

    .reviews-actions {
      margin-top: 32px;
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    @media (max-width: 980px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   10. CTA BAND / CONTACT / FOOTER
   ========================================= */
.booking-cta-band {
  padding: 0 0 28px;
}

.booking-cta-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(28, 29, 37, 0.96), rgba(46, 34, 44, 0.94));
  color: var(--white);
  box-shadow: var(--shadow-card);
}

.booking-cta-shell .section-tag,
.booking-cta-shell p {
  color: rgba(255, 255, 255, 0.76);
}

.booking-cta-shell h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  margin: 10px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.contact-stack {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.contact-cta-card {
  background: linear-gradient(135deg, var(--accent), #ff7aa8);
  color: var(--white);
  border: none;
}

.contact-cta-card span,
.contact-info-card span {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}

.contact-cta-card strong,
.contact-info-card strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.12rem;
}

.contact-form {
  padding: 28px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.contact-form label span {
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 79, 139, 0.4);
  box-shadow: 0 0 0 4px rgba(255, 79, 139, 0.08);
}

.site-footer {
  padding: 0 0 38px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
  gap: 22px;
  padding: 32px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links a {
  color: var(--text-soft);
  font-weight: 600;
}

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

/* =========================================
   11. REVEAL STATES
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-delay {
  transition-delay: 0.14s;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   12. RESPONSIVE STYLES
   ========================================= */
@media (max-width: 1180px) {
  .desktop-nav,
  .nav-actions .btn-primary {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .hero-grid,
  .split-layout,
  .contact-grid,
  .instagram-layout,
  .services-grid,
  .pricing-grid,
  .testimonials-grid,
  .specials-grid,
  .results-grid,
  .trust-strip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-image-stack {
    min-height: 560px;
  }

  .gallery-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tile-large,
  .tile-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .specials-feature,
  .booking-cta-shell,
  .pricing-footer {
    grid-template-columns: 1fr;
    display: grid;
    text-align: left;
  }

  .specials-feature-price {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 82px 0;
  }

  .nav-shell {
    min-height: 74px;
    padding: 12px 14px;
  }

  .hero-grid,
  .split-layout,
  .contact-grid,
  .instagram-layout,
  .services-grid,
  .pricing-grid,
  .testimonials-grid,
  .specials-grid,
  .results-grid,
  .trust-strip-grid,
  .mini-feature-grid,
  .form-grid,
  .footer-grid,
  .instagram-preview {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 18px;
  }

  .hero-proof-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-stack {
    min-height: 470px;
  }

  .hero-main-card {
    inset: 18px;
  }

  .hero-floating-card {
    width: 190px;
    padding: 14px 16px;
  }

  .hero-floating-top {
    top: -8px;
    right: 10px;
  }

  .hero-floating-bottom {
    bottom: -8px;
    left: 10px;
  }

  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
  }

  .booking-cta-shell {
    padding: 24px;
  }
}


@media (max-width: 1180px) {
  .services-grid,
  .results-gallery,
  .testimonials-grid,
  .instagram-preview,
  .footer-grid,
  .trust-strip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .service-panel-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-panel-meta {
    max-width: none;
    text-align: left;
  }

  .service-menu-modern {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .results-gallery,
  .services-grid,
  .testimonials-grid,
  .instagram-preview,
  .contact-grid,
  .footer-grid,
  .form-grid,
  .trust-strip-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 260px;
  }

  .lightbox {
    padding: 18px;
  }

  .lightbox-nav {
    width: 46px;
    height: 46px;
  }

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }
}

@media (max-width: 640px) {
  .service-tabs {
    justify-content: flex-start;
  }

  .service-tab {
    flex: 1 1 calc(50% - 10px);
    text-align: center;
  }

  .service-panel {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .service-panel h3 {
    font-size: 1.3rem;
  }

  .service-item {
    padding: 18px 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .service-item strong {
    padding-left: 0;
  }

  .back-to-top {
    right: 16px;
    bottom: 96px;
  }
}
