/* ── Variables ── */
:root {
  --gold: #c9a84c;
  --gold-l: #e2c47a;
  --gold-d: #9a7a2e;
  --gold-glow: rgba(201, 168, 76, 0.3);
  --gold-dim: rgba(201, 168, 76, 0.15);
  --black: #060606;
  --dark: #0d0d0d;
  --dark2: #141414;
  --dark3: #1a1a1a;
  --grey: rgba(255, 255, 255, 0.5);
  --white: #ffffff;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
  z-index: 1;
  position: relative;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Gold link utility */
.gold-link {
  color: var(--gold);
}

ul {
  list-style: none;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dim);
}

/* ══ NAVBAR ══ */
nav {
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 40px;
  background: linear-gradient(180deg, rgba(6, 6, 6, 0.98) 0%, rgba(6, 6, 6, 0.85) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-dim);
  transition:
    padding 0.4s,
    background 0.4s;
}

nav.scrolled {
  padding: 0 40px;
  background: rgba(6, 6, 6, 0.99);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo h2 {
  font-size: 18px;
  padding-left: 7px;
  text-transform: uppercase;
  position: relative;
  top: 2px;
}

.nav-logo h2 span {
  color: var(--gold);
}

.nav-logo img {
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px var(--gold-glow));
}

.nav-logo-name {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: right;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 12px 28px;
  border: none;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.2s,
    box-shadow 0.3s;
}

.nav-cta:hover {
  background: var(--gold-l);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--gold-glow);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: transform 0.3s;
}

/* ══ HERO ══ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 120px;
  z-index: -1;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(0.6);
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 6, 6, 0.1) 0%, rgba(6, 6, 6, 0.2) 50%, rgba(6, 6, 6, 0.85) 90%, rgba(6, 6, 6, 1) 100%);
}

/* Gold vignette sides */
.hero-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 100% at 50% 50%, transparent 40%, rgba(6, 6, 6, 0.6) 100%);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  padding: 0 40px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.hero-tag-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-name {
  font-family: "Manrope", sans-serif;
  font-size: clamp(4.5rem, 10vw, 9rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 6px;
  margin-bottom: 0;
}

.hero-name .line1 {
  display: block;
  color: var(--white);
}

.hero-name .line2 {
  text-shadow: 0 0 60px var(--gold-glow);
  color: var(--gold, #c4a05f);
}

.hero-subtitle {
  margin-top: 28px;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
}

.hero-desc {
  margin-top: 14px;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 1px;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 44px;
  flex-wrap: wrap;
}

.btn-primary {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 18px 44px;
  transition:
    background 0.3s,
    transform 0.2s,
    box-shadow 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary:hover {
  background: var(--gold-l);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px var(--gold-glow);
}

.btn-secondary {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  padding: 17px 44px;
  border: 1px solid var(--gold-dim);
  transition:
    border-color 0.3s,
    background 0.3s,
    transform 0.2s;
  display: flex;
  align-items: center;
}

.btn-secondary:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
  transform: translateY(-3px);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scrollBob 2.5s ease-in-out infinite;
  z-index: 2;
}

.hero-scroll span {
  font-size: 0.45rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
}

.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, var(--gold), transparent);
}

@keyframes scrollBob {

  0%,
  100% {
    opacity: 0.5;
    transform: translateX(-50%) translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(8px);
  }
}

/* ══ SECTION COMMONS ══ */
.section-tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
}

.section-tag::before,
.section-tag::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  color: var(--white);
  line-height: 1;
}

.section-title span {
  color: var(--gold);
}

/* Accent title utility used for important headings */
.accent-title {
  display: inline-block;
  text-align: left;
  color: var(--white);
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  position: relative;
}

.accent-title .accent {
  color: var(--gold);
  text-shadow: 0 6px 30px rgba(201, 168, 76, 0.12);
}

.accent-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.95;
}

@media (max-width: 900px) {
  .accent-title {
    font-size: 1.5rem;
  }
}

.section-divider {
  width: 60px;
  height: 1px;
  margin: 28px auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ══ CLIENTS / LOGO STRIP ══ */
.clients-sec {
  background: var(--dark2);
  border-top: 1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
  padding: 80px 0 60px;
  overflow: hidden;
}

.clients-sec .section-title {
  margin-bottom: 0;
}

.logo-strip {
  overflow: hidden;
  margin-top: 48px;
  max-width: 1300px;
  margin: 40px auto 0;
}

.logo-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: stripScroll 28s linear infinite;
}

.logo-track:hover {
  animation-play-state: paused;
}

@keyframes stripScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.logo-item {
  flex-shrink: 0;
  width: 160px;
  height: 80px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  margin-right: 3px;
  transition: transform 0.3s;
}

.logo-item:hover {
  transform: scaleY(1.05);
}

.logo-item img {
  height: 75px;
  width: auto;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.3s;
}

.logo-item:hover img {
  filter: none;
}

.clients-tagline {
  text-align: center;
  margin-top: 28px;
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

/* ══ SHOW REEL ══ */
.reel-sec {
  padding: 120px 0;
  background: var(--black);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.reel-wrap {
  max-width: 100%;
  margin: 48px auto 0;
  padding: 0 40px;
  position: relative;
}

.reel-player {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border: 1.5px solid var(--gold-dim);
  transition:
    border-color 0.4s,
    box-shadow 0.4s;
}

.reel-player:hover {
  border-color: var(--gold);
  box-shadow: 0 0 60px rgba(201, 168, 76, 0.2);
}

.reel-player video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-poster {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    background 0.3s;
  box-shadow: 0 8px 40px var(--gold-glow);
  z-index: 3;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 16px 60px rgba(201, 168, 76, 0.5);
  background: var(--gold-l);
}

.play-btn svg {
  width: 36px;
  height: 36px;
  fill: var(--black);
  margin-left: 4px;
}

.play-btn.hidden {
  opacity: 0;
  pointer-events: none;
}

/* ══ TV APPEARANCE ══ */
.tv-sec {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--dark2) 0%, var(--black) 100%);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.tv-grid {
  gap: 30px;
  margin: 48px auto 0;
  padding: 0 40px;
}

.tv-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark3);
}

.tv-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: brightness(0.5) saturate(0.7);
  transition:
    filter 0.5s,
    transform 0.6s;
}

.tv-card:hover img {
  filter: brightness(0.7) saturate(1);
  transform: scale(1.04);
}

.tv-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6, 6, 6, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.tv-card-label {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tv-card-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
}

.tv-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 168, 76, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  transition:
    border-color 0.3s,
    background 0.3s,
    transform 0.3s;
}

.tv-card:hover .tv-play {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.15);
  transform: translate(-50%, -50%) scale(1.1);
}

.tv-play svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
  margin-left: 3px;
}

/* ══ SERVICES ══ */
.services-sec {
  padding: 120px 0;
  background: var(--dark2);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin: 56px auto 0;
  padding: 0 40px;
}

.service-card {
  position: relative;
  overflow: hidden;
  background: var(--dark3);
  padding: 52px 36px 44px;
  border: 1px solid rgba(201, 168, 76, 0.06);
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.4s,
    transform 0.4s,
    box-shadow 0.4s;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.5s;
}

.service-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-num {
  font-family: "Cormorant Garamond";
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 24px;
  transition: color 0.4s;
}

.service-card:hover .service-num {
  color: rgb(201 168 76);
}

.service-tag {
  display: inline-block;
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 5px 12px;
  margin-bottom: 20px;
}

.service-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  filter: brightness(0.6) saturate(0.7);
  margin-bottom: 24px;
  transition: filter 0.4s;
}

.service-card:hover .service-img {
  filter: brightness(0.8) saturate(1);
}

.service-title {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}

.service-desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.9;
  color: #fff;
  flex: 1;
}

div#strip-home {
  background: linear-gradient(135deg, var(--dark2) 0%, var(--dark3) 100%);
  position: relative;
}

div#strip-home h2.hs-title {
  color: #fff;
}

div#strip-home .hs-inner {
  max-width: 100%;
}

.key-ig img {
  width: 70px;
}

.key-ig {
  position: absolute;
  bottom: 32px;
  right: 89px;
}

.key-ig img.philosophy-key {
  position: initial !important;
  height: auto;
}

.video-cell img {
  width: 100%;
}

div#strip-home p.hs-desc {
  font-size: 18px;
  line-height: 25px;
  max-width: 800px;
  margin: 0 auto 20px;
  color: #fff;
}

.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-l);
  margin-top: 28px;
  transition: gap 0.3s;
}

.service-card:hover .service-arrow {
  gap: 16px;
}

.service-arrow svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ══ CONTACT / BOOKING ══ */
.booking-sec {
  padding: 100px 0;
  background: var(--black);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.booking-card {
  max-width: 1300px;
  margin: 0 auto;
}

.booking-inner {
  background: linear-gradient(135deg, var(--dark2) 0%, var(--dark3) 100%);
  border: 1px solid rgba(201, 168, 76, 0.1);
  padding: 64px 72px;
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 64px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.booking-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.booking-inner::after {
  content: "JIGAR";
  position: absolute;
  right: -30px;
  bottom: -40px;
  font-family: "Manrope", sans-serif;
  font-size: 9rem;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.04);
  letter-spacing: 8px;
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
}

.booking-label {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.booking-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.booking-desc {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--grey);
  margin-bottom: 36px;
  max-width: 580px;
}

.booking-info {
  margin-bottom: 36px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-key {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.info-val {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
}

.booking-img-wrap {
  flex-shrink: 0;
}

.booking-img-wrap img {
  width: 100%;
  object-fit: cover;
  filter: saturate(0.85);
  clip-path: polygon(0 0, 92% 0, 100% 8%, 100% 100%, 8% 100%, 0 92%);
  border: 3px solid rgba(201, 168, 76, 0.1);
}

/* ══ EVENTS FIT SECTION ══ */
.events-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 40px;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 22px;
}

.event-item {
  background: linear-gradient(180deg, var(--dark3), var(--dark2));
  border: 1px solid rgba(201, 168, 76, 0.05);
  padding: 22px;
  border-radius: 6px;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.event-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

.event-item h3 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-item p {
  color: var(--grey);
  font-size: 0.95rem;
  line-height: 1.6;
}

.section-subtitle {
  color: var(--white);
  margin-top: 30px;
  font-weight: 700;
  font-size: 1.05rem;
}

@media (max-width: 900px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .events-grid {
    grid-template-columns: 1fr;
  }

  .events-inner {
    padding: 36px 20px;
  }
}

/* Callout styling for Events section */
.events-callout {
  margin-top: 22px;
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.02), rgba(6, 6, 6, 0.02));
  border-left: 4px solid var(--gold);
  padding: 20px 22px;
  border-radius: 4px;
}

.events-callout .callout-lead {
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.events-callout .callout-body {
  color: var(--grey);
  line-height: 1.7;
  font-size: 0.98rem;
}

@media (max-width: 900px) {
  .events-callout {
    padding: 18px;
  }
}

/* ══ TESTIMONIALS ══ */
.testi-sec {
  padding: 120px 0;
  background: var(--dark2);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin: 56px auto 0;
  padding: 0 40px;
}

.testi-card {
  background: var(--dark3);
  padding: 44px 36px;
  border: 1px solid rgba(201, 168, 76, 0.06);
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.4s,
    transform 0.4s;
}

.testi-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.5s;
}

.testi-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-6px);
}

.testi-card:hover::before {
  transform: scaleX(1);
}

.testi-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 20px;
}

.testi-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 28px;
}

.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testi-stars span {
  color: var(--gold);
  font-size: 0.75rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-dim);
  filter: grayscale(30%);
}

.testi-name {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--white);
}

.testi-role {
  font-size: 13px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 1px;
  margin-top: 2px;
}

/* ══ STATS STRIP ══ */
.stats-strip {
  padding: 80px 0;
  background: var(--black);
  border-top: 1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  gap: 3px;
}

.stat-item {
  text-align: center;
  padding: 36px 20px;
  border-right: 1px solid var(--gold-dim);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.stat-plus {
  color: var(--gold-l);
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 10px;
}

/* ══ CTA BANNER ══ */
.cta-banner {
  padding: 100px 40px;
  background: linear-gradient(135deg, var(--dark2) 0%, var(--dark3) 50%, var(--dark2) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-banner-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 8px;
}

.cta-banner-title span {
  color: var(--gold);
}

.cta-banner-sub {
  font-family: "Manrope";
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 40px;
}

.philosophy {
  padding: 80px 0 120px;
  background: linear-gradient(180deg, var(--dark2), var(--dark1));
}

.philosophy-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
}

.philosophy .section-tag {
  justify-content: start;
}

section.philosophy .section-title {
  text-align: left;
}

.play-btn svg {
  width: 40px;
  height: 40px;
  fill: #fff;
}

img.box-key {
  width: 40px;
  position: absolute;
  bottom: 30px;
  left: 30px;
}

.interactive-visual-box {
  position: relative;
}

section.philosophy .section-divider {
  margin: 18px 0 28px 0px;
}

section.philosophy .philosophy-body {
  text-align: justify;
  margin: 0;
}

.philosophy-body {
  font-size: 1.03rem;
  font-weight: 300;
  line-height: 1.75;
  color: #eaeaea;
  max-width: 720px;
  letter-spacing: 0.2px;
  text-align: left;
  margin: 0;
}

.pull-quote {
  margin: 20px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  background: rgba(201, 168, 76, 0.02);
  color: var(--gold-l);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.4;
}

.philosophy-core p {
  margin-bottom: 16px;
}

.philosophy-diff {
  margin-top: 18px;
  padding: 18px 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(6, 6, 6, 0.02));
  border: 1px solid rgba(201, 168, 76, 0.04);
  border-radius: 6px;
}

.philosophy-diff h4 {
  margin: 0 0 10px 0;
  color: var(--white);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.philosophy-diff p {
  color: var(--grey);
  line-height: 1.7;
}

.philosophy-portrait img {
  width: 100%;
  max-width: 460px;
  filter: grayscale(6%);
  display: block;
  border-radius: 6px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(201, 168, 76, 0.06) inset;
  clip-path: polygon(0 0, 95% 0, 100% 5%, 100% 100%, 5% 100%, 0 95%);
}

.philosophy-key {
  width: 140px;
  height: 240px;
  object-fit: contain;
  position: absolute;
  left: 92%;
  top: 50%;
  /*transform: translate(-50%, -50%);*/
  /*z-index: 10;*/
  /*display: block;*/
  /*animation: keyFloat 3s ease-in-out infinite;*/
}

section.showcase {
  padding: 100px 40px;
}

@media (max-width: 900px) {
  .philosophy-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .philosophy-portrait {
    order: 2;
  }

  .philosophy-text-block {
    order: 1;
  }

  .philosophy-body {
    text-align: left;
  }
}

.video-mosaic {
  display: flex;
  gap: 20px;
  margin-top: 50px;
}

.video-cell.large,
.vd-cell-outer {
  width: calc(50% - 10px);
}

.video-cell {
  position: relative;
  overflow: hidden;
  background: var(--dark3);
  aspect-ratio: 16/9;
  width: calc(50% - 5px);
}

.showcase-play-btn.is-playing .icon-pause {
  display: block;
}

.play-circle svg {
  width: 25px;
  height: 25px;
  fill: var(--white);
  margin-left: 3px;
}

.showcase-play-btn.is-playing .icon-play {
  display: none;
}

svg.icon-pause {
  display: none;
}

.video-cell video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #000;
  filter: brightness(0.82) saturate(0.9);
  transition: filter 0.35s ease;
}

.vd-cell-outer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.video-cell-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(10, 10, 10, 0.34) 100%);
}

.showcase-play-btn {
  background: rgba(0, 0, 0, 0.35);
  cursor: pointer;
  z-index: 2;
}

.play-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.3s,
    transform 0.3s;
}

@keyframes keyFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.philosophy-portrait {
  position: relative;
}

.philosophy-text-block {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.portrait-frame {
  position: absolute;
  inset: -12px;
  z-index: -1;
  border: 1px solid var(--gold-dim);
  clip-path: polygon(0 0, 95% 0, 100% 5%, 100% 100%, 5% 100%, 0 95%);
}

.portrait-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

/* ══ FOOTER ══ */
footer {
  background: var(--dark2);
  border-top: 1px solid var(--gold-dim);
  padding: 72px 0 0;
}

.footer-inner {
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 80px;
}

.footer-brand img {
  height: 48px;
  object-fit: contain;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 12px var(--gold-glow));
}

.footer-brand-name {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 15px;
  color: #fff;
}

.footer-copy {
  font-size: 0.55rem;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.2);
  margin-top: 28px;
}

.footer-section h6 {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gold-dim);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links-list a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}

.footer-links-list a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: rgba(201, 168, 76, 0.4);
  transition:
    color 0.3s,
    border-color 0.3s,
    background 0.3s,
    transform 0.3s;
}

.social-icon:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: var(--gold-dim);
  transform: translateY(-3px);
}

.footer-contact {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 2;
}

.footer-contact a {
  color: rgba(201, 168, 76, 0.7);
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-bottom {
  margin-top: 60px;
  padding: 24px 60px;
  border-top: 1px solid var(--gold-dim);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom span {
  font-size: 15px;
  text-transform: capitalize;
  color: #fff;
}

.footer-bottom a {
  font-size: 14px;
  text-transform: capitalize;
  color: #fff;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: var(--gold);
}

/* ══ REVEAL ANIMATIONS ══ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.9s ease,
    transform 0.9s var(--ease);
}

.reveal.up {
  transform: translateY(40px);
}

.reveal.left {
  transform: translateX(-40px);
}

.reveal.right {
  transform: translateX(40px);
}

.reveal.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.d1 {
  transition-delay: 0.1s;
}

.d2 {
  transition-delay: 0.2s;
}

.d3 {
  transition-delay: 0.32s;
}

.d4 {
  transition-delay: 0.44s;
}

.d5 {
  transition-delay: 0.56s;
}

/* ══ MOBILE NAV ══ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(6, 6, 6, 0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  padding: 0px 15px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  padding: 9px 0;
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--gold);
}

.mobile-close {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 1.5rem;
  color: var(--gold);
  cursor: pointer;
  background: none;
  border: none;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1024px) {

  .services-grid,
  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }

  .booking-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px;
  }

  .booking-img-wrap {
    width: 100%;
  }

  .booking-img-wrap img {
    height: 300px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .tv-grid {
    grid-template-columns: 1fr;
  }

  .tv-card img {
    height: 240px;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0 15px;
  }

  .split-slider-sec {
    padding: 40px 0 !important;
  }

  section#text-page-sec {
    padding: 50px 0px 10px 0;
  }

  .popup-form-side,
  .popup-image-side {
    width: 100% !important;
  }

  .event-popup {
    display: none !important;
  }

  .popup-wrapper {
    display: block !important;
  }

  .walk-slide-text {
    font-size: 15px !important;
  }

  .faq-inner {
    margin: 26px auto 0 !important;
  }

  /*  .walk-slider::before {
    display: none;
  }*/
  .split-slider-sec {
    padding: 60px 0 0 0;
  }

  nav.scrolled {
    padding: 0 15px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-content {
    padding: 0 15px;
  }

  .hero-name {
    letter-spacing: 3px;
  }

  .services-grid,
  .testi-grid {
    grid-template-columns: 1fr;
    padding: 0 15px;
    margin-top: 20px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    padding: 0;
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .clients-sec {
    padding: 60px 0 40px;
  }

  .logo-item {
    width: 130px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 15px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    padding: 24px 15px;
    text-align: center;
    margin-top: 0;
  }

  .booking-inner {
    padding: 26px 18px;
  }

  .booking-inner::after {
    display: none;
  }

  .reel-wrap,
  .tv-grid,
  .booking-card {
    padding: 0 15px;
  }

  .testi-grid {
    padding: 0 15px;
  }

  .testi-sec {
    padding: 50px 0;
  }

  .philosophy {
    padding: 60px 15px 70px;
  }

  .philosophy-layout {
    grid-template-columns: inherit;
    padding: 0;
    gap: 30px;
  }

  .philosophy-key,
  .portrait-frame,
  .portrait-accent {
    display: none;
  }

  .philosophy-body {
    font-size: 16px;
    margin-top: 0;
    text-align: center;
  }

  .faq-title-display {
    font-size: clamp(1.5rem, 5vw, 3.8rem);
    margin-bottom: 20px;
  }

  .cta-banner {
    padding: 50px 15px;
  }

  .cta-banner-title {
    font-size: clamp(1.5rem, 5vw, 3.8rem);
    line-height: normal;
  }

  .cta-banner-sub {
    margin-bottom: 20px;
  }

  footer {
    padding: 42px 0 0;
  }

  div#strip-home p.hs-desc {
    font-size: 16px;
  }
}

/*contace page css*/

.hero.contact-hero-size {
  min-height: auto;
  padding: 220px 0px 120px 0px;
  background-image: url(assets/img/contact-banner.jpg);
  background-position: center;
  background-size: cover;
  z-index: -1;
}

/* Eyebrow + title entry animations (not in styles.css) */
.hero-eyebrow-anim {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: ctaFsu 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.eyebar {
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.contact-page-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 6px;
  opacity: 0;
  animation: ctaFsu 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.contact-page-title .ln1 {
  display: block;
  color: var(--white);
}

.contact-page-title .ln2 {
  display: inline-block;
  background: linear-gradient(90deg, var(--gold-d) 0%, var(--gold-l) 40%, var(--gold-d) 60%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation:
    ctaShimmer 4s linear 1.5s infinite,
    ctaFsu 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

@keyframes ctaShimmer {
  to {
    background-position: 200% center;
  }
}

.hero-vert-div {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, var(--gold), transparent);
  margin: 20px auto;
  opacity: 0;
  animation: ctaFi 1s ease 0.9s forwards;
}

.contact-page-sub {
  font-family: "Manrope";
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 3px;
  opacity: 0;
  animation: ctaFsu 1s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

@keyframes ctaFsu {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes ctaFi {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ── Corner accents (same logic as homepage) ── */
.h-corner {
  position: absolute;
  z-index: 3;
  width: 70px;
  height: 70px;
  pointer-events: none;
}

.h-corner.tl {
  top: 100px;
  left: 40px;
  border-top: 1px solid var(--gold-dim);
  border-left: 1px solid var(--gold-dim);
}

.h-corner.tr {
  top: 100px;
  right: 40px;
  border-top: 1px solid var(--gold-dim);
  border-right: 1px solid var(--gold-dim);
}

.h-corner.bl {
  bottom: 40px;
  left: 40px;
  border-bottom: 1px solid var(--gold-dim);
  border-left: 1px solid var(--gold-dim);
}

.h-corner.br {
  bottom: 40px;
  right: 40px;
  border-bottom: 1px solid var(--gold-dim);
  border-right: 1px solid var(--gold-dim);
}

/* ── BOOKING INQUIRIES ── */
.inquiries-sec {
  padding: 100px 0 80px;
  background: var(--black);
  border-top: 1px solid rgba(201, 168, 76, 0.07);
  position: relative;
}

.inquiries-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
}

.inquiries-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 60px;
}

.inquiries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 56px;
}

.inq-card {
  background: var(--dark2);
  border: 1px solid rgba(201, 168, 76, 0.08);
  padding: 48px 40px 44px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s,
    box-shadow 0.4s;
}

.inq-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.inq-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold-dim);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.inq-card:hover::before {
  transform: scaleX(1);
}

.inq-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition:
    background 0.3s,
    border-color 0.3s;
}

.inq-card:hover .inq-icon {
  background: var(--gold-dim);
  border-color: var(--gold);
}

.inq-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.inq-label {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.inq-title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.inq-values {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inq-val {
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.inq-val a {
  color: rgba(201, 168, 76, 0.75);
  transition: color 0.3s;
}

.inq-val a:hover {
  color: var(--gold-l);
}

/* ── FORM SECTION ── */
.form-sec {
  padding: 100px 0 120px;
  background: var(--dark2);
  border-top: 1px solid rgba(201, 168, 76, 0.07);
  position: relative;
  overflow: hidden;
}

.form-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 50% 70% at 30% 50%, rgba(201, 168, 76, 0.03) 0%, transparent 70%);
}

.form-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 60px;
}

/* Left info panel */
.form-info {
  padding-top: 10px;
}

.form-info-body {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--grey);
  margin-top: 24px;
  max-width: 380px;
}

.form-info-divider {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 32px 0;
}

.form-detail-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.fdi-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.3s,
    border-color 0.3s;
}

.form-detail-item:hover .fdi-icon {
  background: var(--gold-dim);
  border-color: var(--gold);
}

.fdi-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fdi-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.fdi-label {
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

.fdi-val {
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.fdi-val a {
  color: rgba(201, 168, 76, 0.75);
  transition: color 0.3s;
}

.fdi-val a:hover {
  color: var(--gold-l);
}

/* Form card */
.form-card {
  background: linear-gradient(135deg, var(--dark3) 0%, rgba(26, 26, 26, 0.8) 100%);
  border: 1px solid rgba(201, 168, 76, 0.1);
  padding: 32px 20px;
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.form-card-title {
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 6px;
}

.form-card-sub {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 36px;
}

/* Fields */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row.single {
  grid-template-columns: 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.form-label .req {
  color: var(--gold);
  margin-left: 3px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  padding: 15px 18px;
  outline: none;
  transition:
    border-color 0.3s,
    background 0.3s,
    box-shadow 0.3s;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.04);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.07);
}

.form-textarea {
  resize: none;
  min-height: 130px;
  line-height: 1.7;
}

/* Phone */
.phone-wrap {
  position: relative;
  display: flex;
}

.phone-flag {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 15px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-right: none;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.3s;
}

.phone-wrap:focus-within .phone-flag,
.phone-wrap:focus-within .phone-input {
  border-color: var(--gold);
}

.phone-flag-img {
  font-size: 1.1rem;
}

.phone-flag-code {
  font-size: 0.75rem;
  font-weight: 600;
}

.phone-caret {
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.3);
}

.phone-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 0.85rem;
  padding: 15px 18px;
  outline: none;
  transition:
    border-color 0.3s,
    background 0.3s,
    box-shadow 0.3s;
}

.phone-input::placeholder {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
}

.phone-input:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.04);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.07);
}

/* Select */
.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid rgba(201, 168, 76, 0.6);
  pointer-events: none;
}

.form-select {
  padding-right: 44px;
  cursor: pointer;
}

.form-select option {
  background: var(--dark3);
  color: var(--white);
}

/* Date */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.6) sepia(1) saturate(2) hue-rotate(3deg);
  cursor: pointer;
  opacity: 0.6;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

input[type="date"] {
  color-scheme: dark;
}

/* Submit */
.form-submit-row {
  margin-top: 32px;
}

.form-submit {
  width: 100%;
  padding: 20px;
  font-family: "Manrope", sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-l) 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    filter 0.3s;
  position: relative;
  overflow: hidden;
}

.form-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.form-submit:hover::before {
  transform: translateX(100%);
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(201, 168, 76, 0.4);
  filter: brightness(1.06);
}

.form-submit svg {
  width: 18px;
  height: 18px;
  stroke: var(--black);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  background: var(--dark3);
  border: 1px solid var(--gold-dim);
  border-left: 3px solid var(--gold);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translateY(120px);
  opacity: 0;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.5s;
  max-width: 360px;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.toast-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.toast-msg {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.5;
}

.toast-msg span {
  display: block;
  font-size: 0.62rem;
  font-weight: 400;
  color: var(--grey);
  margin-top: 3px;
}

/* CTA strip */
.cta-strip {
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--dark3);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
}

.cta-strip-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-s-title {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1;
}

.cta-s-title .gc {
  color: var(--gold);
}

.cta-s-sub {
  font-family: "Manrope";
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 36px;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
  .form-layout {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 0 40px;
  }

  .form-info-body {
    max-width: 100%;
  }

  .inquiries-inner {
    padding: 0 40px;
  }

  .inq-card {
    padding: 24px 20px 24px;
  }
}

@media (max-width: 768px) {
  .hero.contact-hero-size {
    padding: 90px 0px 70px 0px;
  }

  .split-slide-text {
    font-size: 15px;
  }

  .h-corner {
    display: none;
  }

  .section-tag {
    font-size: 7px;
  }

  .contact-page-title {
    letter-spacing: 2px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-layout {
    padding: 0 15px;
  }

  .inquiries-inner {
    padding: 0 15px;
  }

  .form-card {
    padding: 25px 18px;
  }

  .hero-vert-div {
    height: 14px;
  }

  .booking-sec {
    padding: 40px 0;
  }

  .inquiries-sec,
  .form-sec {
    padding: 60px 0 60px;
  }

  .section-title,
  .cta-s-title {
    font-size: clamp(1.5rem, 5vw, 3.8rem);
    line-height: normal;
  }

  .inquiries-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .cta-strip {
    padding: 40px 15px;
  }

  .contact-page-title {
    font-size: clamp(2.2rem, 8vw, 7rem);
  }

  .service-card {
    padding: 22px 16px 24px;
  }
}

/*about us*/
.about-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
  overflow: hidden;
  padding: 140px 24px 80px;
  background-image: url('https://res.cloudinary.com/dy7gtko8g/image/upload/q_auto/f_auto/v1779788365/about-banner_2_b7oono.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #000000c2;
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
}

.about-hero-inner .section-tag {
  margin-bottom: 18px;
}

.about-hero-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 6px;
  font-style: normal;
}

.about-hero-title span {
  color: var(--gold, #c4a05f);
}

.about-hero-sub {
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: #fff;
  font-weight: 300;
  max-width: 560px;
  margin: 20px auto 0;
  line-height: 1.8;
}

.about-hero-line {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold, #c4a05f);
  margin: 32px auto 0;
  opacity: 0.6;
}

section#text-page-sec {
  padding: 80px 0px;
}

/* ─── INTRO SPLIT ─── */
.about-intro {
  background: #0e0e0e;
  padding: 100px 40px;
}

.about-hero .key-ig,
.hero.contact-hero-size .key-ig,
.page-hero .key-ig,
section.policy-hero .key-ig,
section.terms-hero .key-ig {
  position: inherit !important;
  text-align: center;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  top: inherit !important;
  right: inherit !important;
}

.about-hero .key-ig img.philosophy-key,
.hero.contact-hero-size .key-ig img,
.page-hero .key-ig img,
section.policy-hero .key-ig img,
section.terms-hero .key-ig img {
  width: 40px;
}

.about-intro-inner {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-intro-img-wrap {
  position: relative;
}

.about-intro-img-wrap img {
  width: 100%;
  max-width: 100%;
  display: block;
  border-radius: 2px;
  object-fit: cover;
  aspect-ratio: 3/4;
  filter: grayscale(20%);
}

.about-intro-img-frame {
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid rgba(196, 160, 95, 0.25);
  border-radius: 2px;
  pointer-events: none;
  z-index: 0;
}

section#test-banner {
  background-image: url(assets/img/test-banner.jpg);
}

.about-intro-img-wrap img {
  position: relative;
  z-index: 1;
}

.about-intro-gold-tag {
  position: absolute;
  bottom: -10px;
  right: 30px;
  background: var(--gold, #c4a05f);
  color: #0a0a0a;
  font-family: "Manrope", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 10px 20px;
  z-index: 2;
}

.about-intro-text .section-tag {
  margin-bottom: 16px;
}

.about-intro-text .section-title {
  margin-bottom: 28px;
}

.about-intro-body {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  color: #fff;
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 20px;
}

.about-intro-body+.about-intro-body {
  margin-top: -4px;
}

.about-intro-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.highlight-dot {
  width: 6px;
  height: 6px;
  min-width: 6px;
  background: var(--gold, #c4a05f);
  border-radius: 50%;
  margin-top: 7px;
}

.highlight-text {
  font-family: "Manrope", sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
  line-height: 1.5;
}

/* ─── MAGIC ACTS SECTION ─── */
.magic-acts-sec {
  background: #080808;
  padding: 100px 40px;
}

.magic-acts-sec .section-title {
  text-align: center;
  margin-bottom: 12px;
}

.magic-acts-sec .section-tag {
  text-align: center;
}

.magic-acts-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  color: #fff;
  line-height: 1.85;
  font-weight: 300;
}

.magic-acts-grid {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.magic-act-card {
  background: #111;
  padding: 28px 26px;
  /*border: 1px solid rgba(255,255,255,0.04);*/
  position: relative;
  overflow: hidden;
}

.magic-act-card.reveal.d1.visible {
  background-image: url(assets/img/cps-event.jpg);
  background-size: cover;
  background-position: center;
}

.magic-act-card.reveal.d3.visible {
  background-image: url(assets/img/lx-wedding.jpg);
  background-size: cover;
  background-position: center;
}

.magic-act-card.reveal.d5.visible {
  background-image: url(assets/img/vip-gathering.jpg);
  background-size: cover;
  background-position: center;
}

.magic-act-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000000b8;
  transition: opacity 0.3s;
  z-index: -1;
}

.magic-act-card:hover {
  background: #141414;
  border-color: rgba(196, 160, 95, 0.15);
}

.magic-act-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 24px;
  border: 2px solid rgba(196, 160, 95, 0.2);
  object-fit: cover;
}

.magic-act-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.magic-act-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  letter-spacing: 4px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
  font-weight: bold;
}

.magic-act-title {
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 14px;
  letter-spacing: 0.3px;
}

.magic-act-desc {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  color: #fff;
  line-height: 26px;
  font-weight: 300;
  margin: 0;
}

.magic-act-card.wide {
  grid-column: span 1;
}

/* ─── INTERACTIVE SECTION ─── */
.interactive-sec {
  background: #0e0e0e;
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}

.interactive-sec::before {
  content: "INTERACTIVE";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(5rem, 14vw, 14rem);
  font-weight: 300;
  color: rgba(196, 160, 95, 0.03);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 10px;
}

.interactive-inner {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.interactive-text .section-tag {
  margin-bottom: 16px;
}

.interactive-heading {
  font-family: "Manrope";
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
}

.interactive-heading span {
  color: var(--gold, #c4a05f);
}

.interactive-body {
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 36px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.feature-list li::before {
  content: "→";
  color: var(--gold, #c4a05f);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.interactive-visual {
  position: relative;
}

.interactive-visual-box {
  background: #131313;
  border: 1px solid rgba(196, 160, 95, 0.12);
  padding: 48px;
  text-align: center;
}

.interactive-visual-box .big-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 28px;
}

.interactive-visual-box .big-quote span {
  color: var(--gold, #c4a05f);
}

.interactive-line {
  width: 40px;
  height: 1px;
  background: var(--gold, #c4a05f);
  margin: 0 auto 20px;
  opacity: 0.5;
}

.interactive-visual-box .author-name {
  font-family: "Manrope", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold, #c4a05f);
  text-transform: uppercase;
}

/* ─── FAQ SECTION ─── */
.faq-sec {
  background: #080808;
  padding: 1px 24px 110px 24px;
}

.faq-sec .section-tag {
  text-align: center;
}

.faq-sec .section-title {
  text-align: center;
  margin-bottom: 12px;
}

.faq-title-display {
  font-family: "Manrope";
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: -1px;
}

.faq-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.faq-item {
  background: #111;
  padding: 16px 30px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: background 0.25s;
  margin-bottom: 20px;
}

.faq-item:hover {
  background: #151515;
}

.faq-q {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 10px;
  line-height: 1.5;
}

.faq-a {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
  font-weight: 300;
  display: none;
  margin-top: 12px;
}

.faq-item.open .faq-a {
  display: block;
}

.faq-read-more {
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold, #c4a05f);
  letter-spacing: 1px;
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .about-intro-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-intro-img-wrap {
    max-width: 360px;
    margin: 0 auto;
  }

  .magic-acts-grid {
    grid-template-columns: 1fr 1fr;
  }

  .interactive-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .about-hero-title {
    font-size: clamp(2.2rem, 8vw, 7rem);
    line-height: normal;
  }

  .about-hero {
    min-height: auto;
    padding: 80px 15px 60px;
    background-position: center;
  }

  .about-intro {
    padding: 50px 16px;
  }

  .about-intro-img-frame {
    display: none;
  }

  .section-divider {
    margin: 18px auto;
  }

  .stats-strip {
    padding: 40px 15px;
  }

  .magic-acts-sec {
    padding: 50px 15px;
  }

  .magic-acts-intro {
    margin: 0 auto 30px;
  }

  .magic-act-card {
    padding: 25px 16px;
  }

  .interactive-sec {
    padding: 50px 15px;
  }

  .interactive-heading {
    font-size: clamp(1.5rem, 5vw, 3.8rem);
    margin-bottom: 10px;
    line-height: normal;
  }

  .interactive-visual-box {
    padding: 18px;
  }

  .faq-title-display {
    font-size: clamp(1.5rem, 5vw, 3.8rem);
    margin-bottom: 20px;
  }

  .faq-item {
    padding: 18px 12px;
  }

  .faq-sec {
    padding: 21px 15px 60px 15px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .hero-desc {
    font-size: 18px;
  }

  section.showcase {
    padding: 40px 15px;
  }

  .video-mosaic {
    flex-wrap: wrap;
  }

  .video-cell.large,
  .vd-cell-outer {
    width: 100%;
  }

  .video-cell {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .magic-acts-grid {
    grid-template-columns: 1fr;
  }

  .about-intro-highlights {
    grid-template-columns: 1fr;
  }
}

/*modal*/
/* POPUP OVERLAY */
.event-popup {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 80%;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
}

/* ACTIVE */
.event-popup.active {
  opacity: 1;
  visibility: visible;
}

/* POPUP BOX */
.popup-wrapper {
  width: 92%;
  max-width: 1000px;
  background: #000;
  display: flex;
  position: relative;
  overflow: hidden;
}

/* CLOSE BUTTON */
.popup-close {
  position: absolute;
  top: 0;
  right: 0;
  color: var(--gold);
  font-size: 35px;
  cursor: pointer;
  z-index: 10;
  background-color: #000;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* LEFT SIDE */
.popup-form-side {
  width: 60%;
  padding: 20px;
  color: #fff;
}

.popup-form-side h2 {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 40px;
  text-align: center;
  font-family: "Manrope";
}

.popup-form-side h2 br {
  display: none;
}

/* FORM */
.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.form-group {
  width: 100%;
}

.form-group label {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 600;
  font-family: "Manrope";
}

.form-group input,
.form-group select {
  width: 100%;
  height: 45px;
  border: none;
  padding: 0 18px;
  font-size: 15px;
  outline: none;
  background: #f2f2f2;
  box-sizing: border-box;
  color: #000;
  font-family: "Manrope";
}

.full-width {
  margin-bottom: 30px;
}

.submit-btn {
  width: 100%;
  height: 55px;
  border: none;
  background: var(--gold);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  font-family: "Manrope";
}

/* RIGHT SIDE */
.popup-image-side {
  width: 40%;
}

.popup-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/*private party*/

/* ── HERO BANNER ── */
.page-hero {
  padding-bottom: 130px;
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 130px;
  z-index: -1;
}

.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.38) saturate(0.6);
  transition: transform 8s ease;
}

.page-hero:hover .page-hero-img {
  transform: scale(1.04);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 6, 6, 0.12) 0%, rgba(6, 6, 6, 0.18) 30%, rgba(6, 6, 6, 0.72) 78%, rgba(6, 6, 6, 1) 100%),
    linear-gradient(90deg, rgba(6, 6, 6, 0.42) 0%, transparent 38%, transparent 62%, rgba(6, 6, 6, 0.28) 100%);
}

.page-hero-scanline {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(201, 168, 76, 0.011) 3px, rgba(201, 168, 76, 0.011) 4px);
}

.pg-corner {
  position: absolute;
  z-index: 3;
  width: 70px;
  height: 70px;
  pointer-events: none;
}

.pg-corner.tl {
  top: 100px;
  left: 40px;
  border-top: 1px solid rgba(201, 168, 76, 0.25);
  border-left: 1px solid rgba(201, 168, 76, 0.25);
}

.pg-corner.tr {
  top: 100px;
  right: 40px;
  border-top: 1px solid rgba(201, 168, 76, 0.25);
  border-right: 1px solid rgba(201, 168, 76, 0.25);
}

.pg-corner.bl {
  bottom: 44px;
  left: 40px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
  border-left: 1px solid rgba(201, 168, 76, 0.25);
}

.pg-corner.br {
  bottom: 44px;
  right: 40px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
  border-right: 1px solid rgba(201, 168, 76, 0.25);
}

/* Breadcrumb */
.page-hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
  opacity: 0;
  animation: pgFsu 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.page-hero-breadcrumb a {
  color: var(--gold, #c4a05f);
  opacity: 0.75;
  transition: opacity 0.3s;
}

.page-hero-breadcrumb a:hover {
  opacity: 1;
}

.bc-sep {
  color: rgba(201, 168, 76, 0.35);
}

/* Eyebrow */
.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold, #c4a05f);
  margin-bottom: 20px;
  opacity: 0;
  animation: pgFsu 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
}

.ph-bar {
  width: 36px;
  height: 1px;
  background: var(--gold, #c4a05f);
  opacity: 0.6;
}

/* Hero heading */
.page-hero-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.4rem, 6vw, 6rem);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #fff;
  opacity: 0;
  animation: pgFsu 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.page-hero-title .gold-stroke {
  display: block;
  background: linear-gradient(90deg, #b8892f 0%, #e2c06a 40%, #b8892f 60%, #c4a05f 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation:
    pgShimmer 4s linear 1.5s infinite,
    pgFsu 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

@keyframes pgShimmer {
  to {
    background-position: 200% center;
  }
}

.page-hero-sub {
  font-family: "Manrope";
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.58);
  letter-spacing: 2px;
  margin-top: 16px;
  opacity: 0;
  animation: pgFsu 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

.page-hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
  opacity: 0;
  animation: pgFsu 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
  justify-content: center;
}

@keyframes pgFsu {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* Scroll cue */
.page-hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scrlPls 2.5s ease-in-out infinite;
}

.page-hero-scroll span {
  font-size: 0.4rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold, #c4a05f);
  opacity: 0.5;
}

.ph-scroll-bar {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, var(--gold, #c4a05f), transparent);
}

@keyframes scrlPls {

  0%,
  100% {
    opacity: 0.4;
    transform: translateX(-50%) translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(8px);
  }
}

/* ── INTRO ── */
.intro-sec {
  padding: 100px 0;
  background: #060606;
  border-top: 1px solid rgba(201, 168, 76, 0.07);
  position: relative;
}

.intro-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 50% 60% at 50% 40%, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
}

.intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.intro-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #fff;
  margin-bottom: 24px;
}

.intro-text {
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.intro-text a {
  color: var(--gold, #c4a05f);
  opacity: 0.85;
  transition: opacity 0.3s;
}

.intro-text a:hover {
  opacity: 1;
}

/* ── RED/GOLD HIGHLIGHT STRIP ── */
.highlight-strip {
  padding: 48px 60px;
  background: var(--gold, #c4a05f);
  position: relative;
  overflow: hidden;
}

.highlight-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
}

.hs-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.hs-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #0a0a0a;
  margin-bottom: 0;
}

/* ── SERVICES GRID ── */
.svc-grid-sec {
  padding: 100px 40px 100px;
  background: #060606;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.svc-cell {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.svc-cell-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.42) saturate(0.65);
  transition:
    filter 0.6s,
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.svc-cell:hover .svc-cell-img {
  filter: brightness(0.6) saturate(1);
  transform: scale(1.06);
}

.svc-cell-overlay {
  position: absolute;
  inset: 0;
  background: #00000026;
}

.svc-cell-content {
  position: relative;
  z-index: 2;
  padding: 28px 28px 32px;
}

.svc-cell-tag {
  font-family: "Manrope", sans-serif;
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold, #c4a05f);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.svc-cell-tag::before {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--gold, #c4a05f);
}

.svc-cell-title {
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}

.svc-cell-desc {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: #fff;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s;
  opacity: 0;
}

.svc-cell:hover .svc-cell-desc {
  max-height: 190px;
  opacity: 1;
}

.svc-cell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold, #c4a05f), transparent);
  transform: scaleX(0);
  transition: transform 0.5s;
  z-index: 3;
}

.svc-cell:hover::before {
  transform: scaleX(1);
}

/* ── WALK PERFORMANCE SLIDER ── */
.walk-sec {
  padding: 100px 0;
  background: #0e0e0e;
  border-top: 1px solid rgba(201, 168, 76, 0.07);
  position: relative;
}

.walk-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
}

.walk-slider {
  position: relative;
  max-width: 860px;
  margin: 52px auto 0;
  padding: 0 60px;
}

.walk-slides {
  overflow: hidden;
}

.walk-slide {
  display: none;
  text-align: center;
  padding: 0 20px;
}

.walk-slide.active {
  display: block;
  animation: wsFadeIn 0.6s ease;
}

@keyframes wsFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.walk-slide-tag {
  font-family: "Manrope", sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold, #c4a05f);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.walk-slide-tag .w-bar {
  width: 28px;
  height: 1px;
  background: var(--gold, #c4a05f);
}

.walk-slide-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #fff;
  margin-bottom: 24px;
}

.walk-slide-title .gc {
  color: var(--gold, #c4a05f);
}

.walk-divider {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold, #c4a05f), transparent);
  margin: 0 auto 24px;
}

.walk-slide-text {
  font-family: "Manrope", sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.6);
  max-width: 680px;
  margin: 0 auto;
}

.walk-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(201, 168, 76, 0.5);
  transition:
    border-color 0.3s,
    color 0.3s,
    background 0.3s;
  z-index: 3;
}

.walk-arrow:hover {
  border-color: var(--gold, #c4a05f);
  color: var(--gold, #c4a05f);
  background: rgba(201, 168, 76, 0.08);
}

.walk-arrow.prev {
  left: 0;
}

.walk-arrow.next {
  right: 0;
}

.walk-arrow svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.walk-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 36px;
}

.walk-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.25);
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s;
}

.walk-dot.active {
  background: var(--gold, #c4a05f);
  transform: scale(1.3);
}

/* ── RED CTA BAND (matches old site) ── */
.red-cta-band {
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.red-cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
}

.red-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}

.red-cta-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.15;
}

.red-cta-text {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
}

/* ── LET THE MAGIC BEGIN ── */
.magic-begin-sec {
  padding: 90px 60px;
  text-align: center;
  background-image: url(assets/img/art.avif);
  position: relative;
}

.magic-begin-sec::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000000ab;
  position: absolute;
  top: 0;
  right: 0;
}

.magic-begin-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}

.magic-begin-sec a.btn-primary {
  position: relative;
  z-index: 1;
}

.magic-begin-text {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 1.9;
  max-width: 810px;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
}

.magic-begin-text a {
  color: #c9a84c;
  font-weight: 600;
}

/* ── FAQ ── */
.faq-sec {
  padding: 100px 0 120px;
  background: #060606;
  border-top: 1px solid rgba(201, 168, 76, 0.07);
}

.faq-inner {
  max-width: 860px;
  margin: 56px auto 0;
  padding: 0 40px;
}

.faq-item {
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  overflow: hidden;
}

.faq-item:first-child {
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  margin: auto;
}

.faq-q-text {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  line-height: 1.5;
  transition: color 0.3s;
}

.faq-item.open .faq-q-text {
  color: var(--gold, #c4a05f);
}

.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.3s,
    border-color 0.3s;
}

.faq-icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--gold, #c4a05f);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  transition: transform 0.35s;
}

.faq-item.open .faq-icon {
  background: rgba(201, 168, 76, 0.12);
  border-color: var(--gold, #c4a05f);
}

.faq-item.open .faq-icon svg {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s;
  opacity: 0;
}

.faq-item.open .faq-a {
  max-height: 300px;
  opacity: 1;
}

.faq-a-inner {
  padding: 0 0 22px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.55);
}

.faq-a-inner strong {
  color: var(--gold, #c4a05f);
  font-weight: 600;
}

/* ── NAV DROPDOWN ── */
.nav-dropdown-item {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #fff;
  min-width: 260px;
  padding: 10px 0;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s,
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.nav-dropdown-item:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 14px 28px;
  font-family: "Manrope", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #111 !important;
  transition:
    color 0.2s,
    background 0.2s;
}

.nav-dropdown a:hover {
  color: var(--gold, #c4a05f) !important;
  background: rgba(201, 168, 76, 0.06);
}

.nav-dropdown a.active-service {
  color: var(--gold, #c4a05f) !important;
  font-weight: 700;
}

.dd-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(201, 168, 76, 0.55);
  margin-left: 5px;
  vertical-align: middle;
  transition: transform 0.3s;
}

.nav-dropdown-item:hover .dd-arrow {
  transform: rotate(180deg);
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 500;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.wa-float:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.5);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .svc-grid {
    grid-template-columns: 1fr 1fr;
  }

  .highlight-strip {
    padding: 40px;
  }

  .red-cta-band {
    padding: 60px 40px;
  }

  .magic-begin-sec {
    padding: 70px 40px;
  }
}

@media (max-width: 768px) {
  .pg-corner {
    display: none;
  }

  .svc-grid {
    grid-template-columns: 1fr;
  }

  .walk-slider {
    padding: 0 15px;
  }

  .faq-inner {
    padding: 0 15px;
  }

  .intro-inner {
    padding: 0 15px;
  }

  .highlight-strip {
    padding: 30px 15px;
  }

  .red-cta-band {
    padding: 48px 15px;
  }

  .magic-begin-sec {
    padding: 50px 15px;
  }

  section.page-hero {
    padding: 80px 15px 60px;
  }

  .page-hero-title {
    line-height: 40px;
    font-size: 30px;
  }

  .intro-sec {
    padding: 40px 0;
  }

  .intro-title {
    font-size: clamp(1.5rem, 5vw, 3.8rem);
  }

  .walk-sec {
    padding: 40px 0;
  }

  .walk-arrow.next,
  .walk-arrow.prev {
    display: none;
  }

  .faq-sec {
    padding: 60px 0 50px;
  }
}

/*wedding page*/

.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.38) saturate(0.6);
  transition: transform 8s ease;
  z-index: -1;
}

.page-hero:hover .page-hero-img {
  transform: scale(1.04);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 6, 6, 0.12) 0%, rgba(6, 6, 6, 0.18) 30%, rgba(6, 6, 6, 0.72) 78%, rgba(6, 6, 6, 1) 100%),
    linear-gradient(90deg, rgba(6, 6, 6, 0.42) 0%, transparent 38%, transparent 62%, rgba(6, 6, 6, 0.28) 100%);
  z-index: -1;
}

.page-hero-scanline {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(201, 168, 76, 0.011) 3px, rgba(201, 168, 76, 0.011) 4px);
}

/* Corner accents */
.pg-corner {
  position: absolute;
  z-index: 3;
  width: 70px;
  height: 70px;
  pointer-events: none;
}

.pg-corner.tl {
  top: 100px;
  left: 40px;
  border-top: 1px solid var(--gold-dim);
  border-left: 1px solid var(--gold-dim);
}

.pg-corner.tr {
  top: 100px;
  right: 40px;
  border-top: 1px solid var(--gold-dim);
  border-right: 1px solid var(--gold-dim);
}

.pg-corner.bl {
  bottom: 44px;
  left: 40px;
  border-bottom: 1px solid var(--gold-dim);
  border-left: 1px solid var(--gold-dim);
}

.pg-corner.br {
  bottom: 44px;
  right: 40px;
  border-bottom: 1px solid var(--gold-dim);
  border-right: 1px solid var(--gold-dim);
}

/* Breadcrumb */
.page-hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
  opacity: 0;
  animation: pgFsu 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.page-hero-breadcrumb a {
  color: var(--gold);
  opacity: 0.75;
  transition: opacity 0.3s;
}

.page-hero-breadcrumb a:hover {
  opacity: 1;
}

.bc-sep {
  color: rgba(201, 168, 76, 0.35);
}

/* Hero eyebrow */
.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: pgFsu 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
}

.ph-bar {
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

/* Hero heading */
.page-hero-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.4rem, 6vw, 6rem);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--white);
  opacity: 0;
  animation: pgFsu 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.page-hero-title .gold-stroke {
  display: block;
  background: linear-gradient(90deg, var(--gold-d) 0%, var(--gold-l) 40%, var(--gold-d) 60%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation:
    pgShimmer 4s linear 1.5s infinite,
    pgFsu 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

@keyframes pgShimmer {
  to {
    background-position: 200% center;
  }
}

.page-hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
  opacity: 0;
  animation: pgFsu 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
}

@keyframes pgFsu {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes pgFi {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Scroll cue */
.page-hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scrlPls 2.5s ease-in-out infinite;
}

.page-hero-scroll span {
  font-size: 0.4rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.5;
}

.ph-scroll-bar {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, var(--gold), transparent);
}

@keyframes scrlPls {

  0%,
  100% {
    opacity: 0.4;
    transform: translateX(-50%) translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(8px);
  }
}

/* ── INTRO / MAGICAL UNION ── */
.intro-sec {
  padding: 100px 0;
  background: var(--black);
  border-top: 1px solid rgba(201, 168, 76, 0.07);
  position: relative;
}

.intro-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 50% 60% at 50% 40%, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
}

.intro-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.intro-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 24px;
}

.intro-text {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.6);
}

.intro-text a {
  color: var(--gold);
  opacity: 0.85;
  transition: opacity 0.3s;
}

.intro-text a:hover {
  opacity: 1;
}

/* ── GOLD HIGHLIGHT STRIP ── */
.highlight-strip {
  padding: 60px 40px;
  background: var(--gold);
  position: relative;
  overflow: hidden;
}

.highlight-strip p.hs-desc {
  margin: 0 auto;
}

.highlight-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
}

.hs-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.hs-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--black);
  margin-bottom: 16px;
}

.hs-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
  color: rgba(0, 0, 0, 0.7);
  max-width: 600px;
}

div#wedding-page .hs-inner {
  max-width: 1200px;
}

div#wedding-page .hs-inner h2.section-title {
  margin-bottom: 20px;
}

div#wedding-page a.btn-primary {
  background-color: #000;
  color: var(--gold);
  margin-top: 20px;
}

div#wedding-page p.hs-desc {
  color: #fff;
}

/* ── SERVICES GRID ── */
.svc-grid-sec {
  padding: 100px 40px 100px;
  background: var(--black);
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.svc-cell {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.svc-cell-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.42) saturate(0.65);
  transition:
    filter 0.6s,
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.svc-cell:hover .svc-cell-img {
  filter: brightness(0.6) saturate(1);
  transform: scale(1.06);
}

.svc-cell-content {
  position: relative;
  z-index: 2;
  padding: 28px 28px 32px;
}

.svc-cell-tag {
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.svc-cell-tag::before {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--gold);
}

.svc-cell-title {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}

/* Top border reveal on hover */
.svc-cell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.5s;
  z-index: 3;
}

.svc-cell:hover::before {
  transform: scaleX(1);
}

/* ── WALK PERFORMANCE SLIDER ── */
.walk-sec {
  padding: 100px 0;
  background: var(--dark2);
  border-top: 1px solid rgba(201, 168, 76, 0.07);
  position: relative;
}

.walk-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
}

.walk-slider {
  position: relative;
  max-width: 860px;
  margin: 52px auto 0;
  padding: 0 40px;
}

.walk-slides {
  overflow: hidden;
}

.walk-slide {
  display: none;
  text-align: center;
  padding: 0 20px;
}

.walk-slide.active {
  display: block;
  animation: wsFadeIn 0.6s ease;
}

@keyframes wsFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.walk-slide-tag {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.walk-slide-tag .w-bar {
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.walk-slide-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 24px;
}

.walk-slide-title .gc {
  color: var(--gold);
}

.walk-divider {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 24px;
}

.walk-slide-text {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.95;
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
}

section#hm-hero .key-ig {
  position: initial;
  margin-bottom: 25px;
  text-align: center;
  display: flex;
  justify-content: center;
}

div#strip-home h2.section-title {
  margin-bottom: 30px;
}

section#hm-hero .key-ig img {
  width: 40px;
}

/* Arrows */
.walk-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold-dim);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(201, 168, 76, 0.5);
  font-size: 1.2rem;
  transition:
    border-color 0.3s,
    color 0.3s,
    background 0.3s;
  z-index: 3;
}

.walk-arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

.walk-arrow.prev {
  left: 0;
}

.walk-arrow.next {
  right: 0;
}

.walk-arrow svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Dots */
.walk-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 36px;
}

.walk-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.25);
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s;
}

.walk-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ── JIGAR IN ACTION ── */
.action-sec {
  padding: 100px 0;
  background: var(--black);
  border-top: 1px solid rgba(201, 168, 76, 0.07);
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  max-width: 1100px;
  margin: 52px auto 0;
  padding: 0 40px;
}

.action-cell {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--dark3);
}

.action-cell img,
.action-cell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.7);
  transition:
    filter 0.5s,
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.action-cell:hover img,
.action-cell:hover video {
  filter: brightness(0.78) saturate(1);
  transform: scale(1.05);
}

.action-cell-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6, 6, 6, 0.6) 100%);
}

.action-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 168, 76, 0.45);
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.3s,
    background 0.3s,
    transform 0.35s;
  z-index: 2;
}

.action-cell:hover .action-play {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.12);
  transform: translate(-50%, -50%) scale(1.12);
}

.action-play svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
  margin-left: 3px;
}

/* Top border */
.action-cell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.5s;
  z-index: 3;
}

.action-cell:hover::before {
  transform: scaleX(1);
}

/* ── CTA BAND ── */
.cta-band {
  padding: 64px 60px;
  background: var(--dark2);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.07);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}

.cta-band-text {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.62);
}

.cta-band-text a {
  color: var(--gold);
  font-weight: 600;
  transition: opacity 0.3s;
}

.cta-band-text a:hover {
  opacity: 0.8;
}

/* ── FAQ ── */
.faq-sec {
  padding: 100px 0 120px;
  background: var(--black);
  border-top: 1px solid rgba(201, 168, 76, 0.07);
}

.faq-inner {
  max-width: 860px;
  margin: 56px auto 0;
  padding: 0 40px;
}

.faq-item {
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  overflow: hidden;
}

.faq-item:first-child {
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.faq-q-text {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--white);
  line-height: 1.5;
  transition: color 0.3s;
}

.faq-item.open .faq-q-text {
  color: var(--gold);
}

.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.35s;
}

.faq-icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  transition: transform 0.35s;
}

.faq-item.open .faq-icon {
  background: var(--gold-dim);
  border-color: var(--gold);
}

.faq-item.open .faq-icon svg {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s;
  opacity: 0;
}

.faq-item.open .faq-a {
  max-height: 300px;
  opacity: 1;
}

.faq-a-inner strong {
  color: var(--gold);
  font-weight: 600;
}

/* ── DROPDOWN NAV (from image 2) ── */
.nav-dropdown-item {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  min-width: 340px;
  padding: 10px 0;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s,
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.nav-dropdown-item:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 14px 28px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #111 !important;
  transition:
    color 0.2s,
    background 0.2s;
}

.nav-dropdown a:hover {
  color: var(--gold) !important;
  background: rgba(201, 168, 76, 0.06);
}

.nav-dropdown a.active-service {
  color: var(--gold) !important;
  font-weight: 700;
}

/* small arrow under nav link */
.nav-dropdown-item>a::after {
  display: none !important;
}

.dd-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(201, 168, 76, 0.55);
  margin-left: 5px;
  vertical-align: middle;
  transition: transform 0.3s;
}

.nav-dropdown-item:hover .dd-arrow {
  transform: rotate(180deg);
}

/* WhatsApp float */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 500;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.wa-float:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.5);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
  .svc-grid {
    grid-template-columns: 1fr 1fr;
  }

  .action-grid {
    grid-template-columns: 1fr 1fr;
    padding: 0 24px;
  }

  .highlight-strip {
    padding: 50px 40px;
  }
}

@media (max-width: 768px) {
  .pg-corner {
    display: none;
  }

  .page-hero-title {
    letter-spacing: 2px;
  }

  .svc-grid {
    grid-template-columns: 1fr;
  }

  .action-grid {
    grid-template-columns: 1fr;
  }

  .walk-slider {
    padding: 0px;
  }

  .faq-inner {
    padding: 0 15px;
  }

  .intro-inner {
    padding: 0 15px;
  }

  .highlight-strip {
    padding: 40px 15px;
  }

  .cta-band {
    padding: 48px 15px;
  }

  .intro-sec {
    padding: 40px 0;
  }

  .svc-grid-sec {
    padding: 50px 15px 50px;
  }

  .svc-cell-content {
    padding: 18px 15px 22px;
  }

  .walk-sec {
    padding: 50px 15px;
  }

  .walk-slide {
    padding: 0;
  }

  .svc-cell-desc {
    max-height: 100%;
    opacity: 1;
  }

  .action-sec {
    padding: 50px 0;
  }

  .action-grid {
    padding: 0 15px;
  }

  .faq-sec {
    padding: 60px 0 50px;
  }

  .faq-inner {
    margin: 26px auto 0;
  }
}

/*corporate page*/

.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.32) saturate(0.55);
  transition: transform 8s ease;
}

.page-hero:hover .page-hero-img {
  transform: scale(1.04);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 6, 6, 0.1) 0%, rgba(6, 6, 6, 0.15) 30%, rgba(6, 6, 6, 0.75) 78%, rgba(6, 6, 6, 1) 100%),
    linear-gradient(90deg, rgba(6, 6, 6, 0.4) 0%, transparent 38%, transparent 62%, rgba(6, 6, 6, 0.25) 100%);
}

.page-hero-scanline {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(201, 168, 76, 0.011) 3px, rgba(201, 168, 76, 0.011) 4px);
}

.pg-corner {
  position: absolute;
  z-index: 3;
  width: 70px;
  height: 70px;
  pointer-events: none;
}

.pg-corner.tl {
  top: 100px;
  left: 40px;
  border-top: 1px solid var(--gold-dim);
  border-left: 1px solid var(--gold-dim);
}

.pg-corner.tr {
  top: 100px;
  right: 40px;
  border-top: 1px solid var(--gold-dim);
  border-right: 1px solid var(--gold-dim);
}

.pg-corner.bl {
  bottom: 44px;
  left: 40px;
  border-bottom: 1px solid var(--gold-dim);
  border-left: 1px solid var(--gold-dim);
}

.pg-corner.br {
  bottom: 44px;
  right: 40px;
  border-bottom: 1px solid var(--gold-dim);
  border-right: 1px solid var(--gold-dim);
}

/* Hero animations */
.page-hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
  opacity: 0;
  animation: pgFsu 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.page-hero-breadcrumb a {
  color: var(--gold);
  opacity: 0.8;
  transition: opacity 0.3s;
}

.page-hero-breadcrumb a:hover {
  opacity: 1;
}

.bc-sep {
  color: rgba(201, 168, 76, 0.35);
}

.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: pgFsu 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
}

.ph-bar {
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.page-hero-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.4rem, 6vw, 6rem);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--white);
  opacity: 0;
  animation: pgFsu 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.page-hero-title .gold-stroke {
  display: block;
  background: linear-gradient(90deg, var(--gold-d) 0%, var(--gold-l) 40%, var(--gold-d) 60%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation:
    pgShimmer 4s linear 1.5s infinite,
    pgFsu 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

@keyframes pgShimmer {
  to {
    background-position: 200% center;
  }
}

.page-hero-sub {
  font-family: "Manrope";
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.58);
  letter-spacing: 2px;
  margin-top: 16px;
  opacity: 0;
  animation: pgFsu 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

.policy-refund-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.policy-refund-card {
  background: #0f0f0f;
  border: 1px solid rgba(201, 168, 76, 0.12);
  padding: 20px 22px;
}

.policy-refund-card-label {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold, #c4a05f);
  margin-bottom: 8px;
}

.policy-refund-card-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
}

.policy-refund-card-sub {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}




.page-hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
  opacity: 0;
  animation: pgFsu 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
}

@keyframes pgFsu {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.page-hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scrlPls 2.5s ease-in-out infinite;
}

.page-hero-scroll span {
  font-size: 0.4rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.5;
}

.ph-scroll-bar {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, var(--gold), transparent);
}

@keyframes scrlPls {

  0%,
  100% {
    opacity: 0.4;
    transform: translateX(-50%) translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(8px);
  }
}

/* ── INTRO ── */
.intro-sec {
  padding: 100px 0;
  background: var(--black);
  border-top: 1px solid rgba(201, 168, 76, 0.07);
  position: relative;
}

.intro-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 50% 60% at 50% 40%, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
}

.intro-inner {
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.walk-arrow.prev,
.walk-arrow.next {
  display: none;
}

.intro-heading {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.15;
}

.intro-heading span {
  color: var(--gold);
}

.intro-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.95;
  color: #fff;
}

/* ── SPLIT SLIDER (Mingling Magic layout from screenshot) ── */
.split-slider-sec {
  padding: 80px 0;
  background: var(--dark2);
  border-top: 1px solid rgba(201, 168, 76, 0.07);
  position: relative;
}

.split-slider-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
}

/* Title floats left, content slides right — like screenshot */
.split-slider-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

/* Left panel — gold title */
.split-left {
  padding: 60px 40px 50px 40px;
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 360px;
  position: relative;
}

.split-left::after {
  content: "";
  position: absolute;
  top: 40px;
  bottom: 40px;
  right: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold-dim), transparent);
}

.split-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #fff;
  line-height: 1.1;
}

/* Slide nav dots — left panel bottom */
.split-dots {
  display: flex;
  gap: 8px;
  margin-top: 40px;
}

.split-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.25);
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s;
}

.split-dot.active {
  background: var(--gold);
  transform: scale(1.35);
}

/* Arrows */
.split-arrows {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.sp-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold-dim);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(201, 168, 76, 0.5);
  transition:
    border-color 0.3s,
    color 0.3s,
    background 0.3s;
}

.sp-arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

.sp-arrow svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Right panel — slide content */
.split-right {
  padding: 80px 60px 80px 60px;
  position: relative;
  overflow: hidden;
}

.split-slide {
  display: none;
  animation: sFadeIn 0.5s ease;
}

.split-slide.active {
  display: block;
}

@keyframes sFadeIn {
  from {
    opacity: 0;
    transform: translateX(16px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.split-slide-text {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.95;
  color: #fff;
}

.split-slide-divider {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 20px 0;
}

/* ── GOLD HIGHLIGHT STRIP ── */
.highlight-strip {
  padding: 44px 60px;
  background: var(--gold);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.highlight-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 55%);
}

.hs-inner {
  position: relative;
  z-index: 1;
  max-width: 940px;
  margin: 0 auto;
}

.hs-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1rem, 2.5vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--black);
}

.hs-title .gc {
  color: var(--black);
  font-style: italic;
}

/* ── WHY JIGAR — NUMBERED CARDS GRID ── */
.why-sec {
  padding: 100px 0 80px;
  background: var(--black);
  border-top: 1px solid rgba(201, 168, 76, 0.07);
  position: relative;
}

.why-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 60% at 50% 40%, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 28px;
  max-width: 1300px;
  margin: 0 auto 40px;
  padding: 0 24px;
}

section#jigar-gd h3.why-card-title {
  padding: 15px 20px 10px 20px;
  margin-bottom: 0;
}

section#jigar-gd p.why-card-desc {
  padding: 0px 20px;
}

.why-card {
  background: linear-gradient(180deg, #fffaf2 0%, #ffffff 100%);
  padding: 26px 28px 34px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s;
  border-radius: 12px;
  min-height: 420px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 8px 24px rgba(6, 6, 6, 0.45);
}

.why-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55);
}

/* Gold top border on hover */
.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-family: "Manrope", sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.why-card:hover .why-num {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.45);
}

.why-card-title {
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--dark3);
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 6px;
}

.why-card-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
}

.why-card-desc {
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.9;
  color: rgba(10, 10, 10, 0.7);
  margin-top: 10px;
  flex: 1 1 auto;
}

/* Links inside the why-card should use the gold accent */
.why-card a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
}

.why-card a:hover {
  text-decoration: underline;
}

/* Links in philosophy body should match gold accent */
.philosophy-body a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
}

.philosophy-body a:hover {
  text-decoration: underline;
}

/* Bottom row — centred 2 cards */
.why-grid-row2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  max-width: 800px;
  margin: 3px auto 0;
  padding: 0 40px;
}

@media (max-width: 980px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .why-card {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .why-grid {
    grid-template-columns: 1fr;
    padding: 0 18px;
  }

  .why-card {
    min-height: auto;
  }
}

/* ── FAQ ── */
.faq-sec {
  padding: 100px 0 120px;
  background: var(--dark2);
  border-top: 1px solid rgba(201, 168, 76, 0.07);
}

.faq-inner {
  max-width: 860px;
  margin: 56px auto 0;
  padding: 0 40px;
}

.faq-item {
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  overflow: hidden;
}

.faq-item:first-child {
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
}

.faq-q-text {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--white);
  line-height: 1.5;
  transition: color 0.3s;
}

.faq-item.open .faq-q-text {
  color: var(--gold);
}

.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.3s,
    border-color 0.3s;
}

.faq-icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  transition: transform 0.35s;
}

.faq-item.open .faq-icon {
  background: var(--gold-dim);
  border-color: var(--gold);
}

.faq-item.open .faq-icon svg {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s;
  opacity: 0;
}

.faq-item.open .faq-a {
  max-height: 300px;
  opacity: 1;
}

.faq-a-inner {
  padding: 0 0 22px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.55);
}

.faq-a-inner strong {
  color: var(--gold);
  font-weight: 600;
}

/* ── CONTACT CTA SECTION (bottom split — matches screenshot) ── */
.contact-cta-sec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

/* Left — image side */
.cta-img-side {
  position: relative;
  overflow: hidden;
  background: var(--dark3);
}

section#jigar-gd .why-card img {
  height: 200px;
  object-fit: cover;
}

.cta-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter 0.5s,
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cta-img-side:hover img {
  filter: brightness(0.72) saturate(1);
  transform: scale(1.04);
}

.cta-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(6, 6, 6, 0.6) 100%);
}

/* Right — text side */
.cta-text-side {
  background: var(--gold);
  padding: 72px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.cta-text-side::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 55%);
}

.cta-text-inner {
  position: relative;
  z-index: 1;
}

.cta-side-label {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.55);
  margin-bottom: 16px;
}

.cta-side-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--black);
  margin-bottom: 20px;
  line-height: 1.1;
}

.cta-side-desc {
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.85;
  color: rgba(0, 0, 0, 0.68);
  margin-bottom: 32px;
  max-width: 380px;
}

.btn-dark-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Manrope", sans-serif;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  background: #0a0a0a;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.2s,
    box-shadow 0.3s;
}

.btn-dark-cta:hover {
  background: #222;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  color: var(--white);
}

.btn-dark-cta svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── NAV DROPDOWN ── */
.nav-dropdown-item {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  min-width: 340px;
  padding: 10px 0;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s,
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.nav-dropdown-item:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 14px 28px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #111 !important;
  transition:
    color 0.2s,
    background 0.2s;
}

.nav-dropdown a:hover {
  color: var(--gold) !important;
  background: rgba(201, 168, 76, 0.06);
}

.nav-dropdown a.active-service {
  color: var(--gold) !important;
  font-weight: 700;
}

.nav-dropdown-item>a::after {
  display: none !important;
}

.dd-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(201, 168, 76, 0.55);
  margin-left: 5px;
  vertical-align: middle;
  transition: transform 0.3s;
}

.nav-dropdown-item:hover .dd-arrow {
  transform: rotate(180deg);
}

/* ── WhatsApp float ── */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 500;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.wa-float:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.5);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-grid-row2 {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
  }

  .contact-cta-sec {
    grid-template-columns: 1fr;
  }

  .cta-img-side {
    min-height: 300px;
  }

  .split-slider-inner {
    grid-template-columns: 1fr;
  }

  .split-left {
    min-height: auto;
    padding: 48px 40px 24px;
  }

  .split-left::after {
    display: none;
  }

  .split-right {
    padding: 24px 40px 48px;
  }
}

@media (max-width: 768px) {
  .pg-corner {
    display: none;
  }

  .page-hero-title {
    letter-spacing: 2px;
  }

  .why-grid,
  .why-grid-row2 {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }

  .why-grid-row2 {
    padding: 0 15px;
  }

  .faq-inner,
  .intro-inner {
    padding: 0 15px;
  }

  .highlight-strip {
    padding: 36px 24px;
  }

  .split-slide-text {
    font-size: 15px;
  }

  .cta-text-side {
    padding: 48px 28px;
  }

  .split-left,
  .split-right {
    padding: 40px 15px;
  }

  .intro-sec {
    padding: 60px 0;
  }

  .why-sec {
    padding: 60px 0 50px;
  }

  .faq-sec {
    padding: 60px 0 60px;
  }

  .play-btn {
    width: 50px;
    height: 50px;
  }

  .play-btn svg {
    width: 20px;
    height: 30px;
  }

  .reel-sec,
  .tv-sec,
  .services-sec {
    padding: 50px 0;
  }

  .services-grid {
    margin: 26px auto 0;
  }
}

.social-icon img {
  width: 25px;
}

.hero .hero-overlay {
  z-index: -1;
}

/*term-condition page*/

/* ── PAGE HERO ── */
.terms-hero {
  background: #060606;
  padding: 140px 24px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  z-index: -1;
}

.terms-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 70% at 50% 60%, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
}

.terms-hero-eyebrow {
  font-family: "Manrope", sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold, #c4a05f);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  opacity: 0;
  animation: tFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.terms-hero-eyebrow span {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold, #c4a05f);
  opacity: 0.6;
}

.terms-hero-title {
  font-family: "Manrope";
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -1px;
  margin: 0 0 20px;
  opacity: 0;
  animation: tFade 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
  font-style: normal;
}

.terms-hero-title span {
  color: var(--gold, #c4a05f);
}

.terms-hero-meta {
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 2px;
  opacity: 0;
  animation: tFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
}

.terms-hero-line {
  display: block;
  width: 50px;
  height: 1px;
  background: var(--gold, #c4a05f);
  margin: 24px auto 0;
  opacity: 0;
  animation: tFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.65s forwards;
}

@keyframes tFade {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ── BODY LAYOUT ── */
.terms-body {
  background: #080808;
  padding: 80px 24px 120px;
}

.terms-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── TABLE OF CONTENTS ── */
.terms-toc {
  background: #0f0f0f;
  border: 1px solid rgba(201, 168, 76, 0.12);
  padding: 36px 40px;
  margin-bottom: 64px;
}

.terms-toc-title {
  font-family: "Manrope", sans-serif;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold, #c4a05f);
  margin-bottom: 20px;
}

.terms-toc ol {
  margin: 0;
  padding-left: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 40px;
}

.terms-toc ol li {
  font-family: "Manrope", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  transition: color 0.2s;
}

.terms-toc ol li a {
  color: inherit;
  transition: color 0.2s;
}

.terms-toc ol li a:hover {
  color: var(--gold, #c4a05f);
}

/* ── SECTION BLOCKS ── */
.terms-section {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.terms-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.terms-section-num {
  font-family: "Manrope", sans-serif;
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold, #c4a05f);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.terms-section-num::after {
  content: "";
  flex: 1;
  max-width: 40px;
  height: 1px;
  background: var(--gold, #c4a05f);
  opacity: 0.35;
}

.terms-section-heading {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
  margin: 0 0 20px;
  line-height: 1.25;
}

.terms-section-text {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  line-height: 1.95;
  margin-bottom: 14px;
}

.terms-section-text a {
  color: var(--gold, #c4a05f);
  font-weight: 500;
  transition: opacity 0.2s;
}

.terms-section-text a:hover {
  opacity: 0.75;
}

.terms-section-text:last-child {
  margin-bottom: 0;
}

/* ── BULLET LIST ── */
.terms-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.terms-list li {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.85;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.terms-list li::before {
  content: "";
  display: block;
  min-width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold, #c4a05f);
  margin-top: 9px;
  flex-shrink: 0;
}

/* ── HIGHLIGHT BOX ── */
.terms-highlight {
  background: #0f0f0f;
  border-left: 2px solid var(--gold, #c4a05f);
  padding: 20px 24px;
  margin: 20px 0 0;
}

.terms-highlight p {
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.85;
  margin: 0;
}

.terms-highlight p strong {
  color: var(--gold, #c4a05f);
  font-weight: 700;
}

/* ── CONTACT BOX ── */
.terms-contact-box {
  background: #0f0f0f;
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 36px 40px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.terms-contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.terms-contact-key {
  font-family: "Manrope", sans-serif;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold, #c4a05f);
  min-width: 70px;
}

.terms-contact-val {
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}

.terms-contact-val a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.terms-contact-val a:hover {
  color: var(--gold, #c4a05f);
}

/* ── LAST UPDATED BADGE ── */
.terms-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.07);
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 8px 18px;
  font-family: "Manrope", sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold, #c4a05f);
  margin-bottom: 48px;
}

.terms-updated-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold, #c4a05f);
}

/* ── NAV DROPDOWN ── */
.nav-dropdown-item {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #fff;
  min-width: 260px;
  padding: 10px 0;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s,
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.nav-dropdown-item:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 14px 28px;
  font-family: "Manrope", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #111 !important;
  transition:
    color 0.2s,
    background 0.2s;
}

.nav-dropdown a:hover {
  color: var(--gold, #c4a05f) !important;
  background: rgba(201, 168, 76, 0.06);
}

.dd-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(201, 168, 76, 0.55);
  margin-left: 5px;
  vertical-align: middle;
  transition: transform 0.3s;
}

.nav-dropdown-item:hover .dd-arrow {
  transform: rotate(180deg);
}

/* ── WHATSAPP ── */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 500;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.wa-float:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.5);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .terms-hero {
    padding: 80px 14px 50px;
  }

  .terms-body {
    padding: 50px 15px 50px;
  }
}

@media (max-width: 680px) {
  .terms-toc ol {
    grid-template-columns: 1fr;
  }

  .terms-toc {
    padding: 20px 15px;
    margin-bottom: 20px;
  }

  .terms-contact-box {
    padding: 28px 24px;
  }

  .terms-contact-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

/*gallery page*/

/* ── GALLERY HERO ── */
.gallery-hero {
  min-height: 42vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #06091a;
  padding: 130px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gallery-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 60%, rgba(196, 160, 95, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.gallery-hero-logo {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: ghFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.gallery-hero-logo img {
  width: 52px;
  filter: invert(1) sepia(1) saturate(2) hue-rotate(5deg) brightness(0.9);
}

.gallery-hero-logo-name {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: 10px;
  text-transform: uppercase;
  color: #fff;
}

.gallery-hero-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.8rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: 12px;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: ghFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.gallery-hero-line {
  width: 60px;
  height: 2px;
  background: var(--gold, #c4a05f);
  margin: 20px auto 0;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: ghFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

@keyframes ghFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ── FILTER TABS ── */

.filter-btn {
  font-family: "Manrope", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 22px;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn:hover {
  color: var(--gold, #c4a05f);
  border-color: rgba(201, 168, 76, 0.4);
}

.filter-btn.active {
  color: #0a0a0a;
  background: var(--gold, #c4a05f);
  border-color: var(--gold, #c4a05f);
}

/* ── MASONRY GRID ── */
.gallery-sec {
  background: #000;
  padding: 60px 40px 100px;
}

.gallery-grid {
  max-width: 100%;
  margin: 0 auto;
  columns: 3;
  column-gap: 6px;
}

.gallery-item {
  break-inside: avoid;
  position: relative;
  overflow: hidden;
  margin-bottom: 6px;
  cursor: pointer;
  display: block;
}

.gallery-item img {
  width: 100%;
  display: block;
  object-fit: cover;
  filter: brightness(0.82) saturate(0.75);
  transition:
    filter 0.5s,
    transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
  filter: brightness(1) saturate(1);
  transform: scale(1.04);
}

/* Top gold border on hover */
.gallery-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold, #c4a05f), transparent);
  transform: scaleX(0);
  transition: transform 0.45s;
  z-index: 2;
}

.gallery-item:hover::before {
  transform: scaleX(1);
}

/* Zoom icon */
.gallery-item-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s;
  z-index: 3;
  background: rgba(0, 0, 0, 0.28);
}

.gallery-item:hover .gallery-item-icon {
  opacity: 1;
}

.gallery-item-icon svg {
  width: 36px;
  height: 36px;
  stroke: rgba(255, 255, 255, 0.85);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* hidden filter classes */
.gallery-item.hidden {
  display: none;
}

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 5, 14, 0.96);
  backdrop-filter: blur(8px);
}

.lb-inner {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-img-wrap {
  position: relative;
  max-width: 88vw;
  max-height: 86vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-img-wrap img {
  max-width: 88vw;
  max-height: 86vh;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  border: 1px solid rgba(201, 168, 76, 0.15);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.8);
  transform: scale(0.92);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.open .lb-img-wrap img {
  transform: scale(1);
}

/* Prev / Next */
.lb-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1010;
  transition:
    border-color 0.3s,
    background 0.3s;
}

.lb-arrow:hover {
  border-color: var(--gold, #c4a05f);
  background: rgba(201, 168, 76, 0.1);
}

.lb-arrow.prev {
  left: 20px;
}

.lb-arrow.next {
  right: 20px;
}

.lb-arrow svg {
  width: 22px;
  height: 22px;
  stroke: rgba(255, 255, 255, 0.8);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Close */
.lb-close {
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1010;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    border-color 0.3s,
    background 0.3s;
}

.lb-close:hover {
  border-color: var(--gold, #c4a05f);
  background: rgba(201, 168, 76, 0.1);
}

.lb-close svg {
  width: 18px;
  height: 18px;
  stroke: rgba(255, 255, 255, 0.85);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

/* Counter */
.lb-counter {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1010;
  font-family: "Manrope", sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

.lb-counter span {
  color: var(--gold, #c4a05f);
}

/* Gold caption bar */
.lb-caption {
  position: fixed;
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1010;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 2px;
  white-space: nowrap;
}

/* WhatsApp Float */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 500;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.wa-float:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.5);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* Nav Dropdown */
.nav-dropdown-item {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #fff;
  min-width: 260px;
  padding: 10px 0;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s,
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.nav-dropdown-item:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 14px 28px;
  font-family: "Manrope", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #111 !important;
  transition:
    color 0.2s,
    background 0.2s;
}

.nav-dropdown a:hover {
  color: var(--gold, #c4a05f) !important;
  background: rgba(201, 168, 76, 0.06);
}

.dd-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(201, 168, 76, 0.55);
  margin-left: 5px;
  vertical-align: middle;
  transition: transform 0.3s;
}

.nav-dropdown-item:hover .dd-arrow {
  transform: rotate(180deg);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .gallery-grid {
    columns: 2;
  }

  .gallery-sec {
    padding: 40px 20px 80px;
  }
}

@media (max-width: 580px) {
  .gallery-grid {
    columns: 1;
  }

  .lb-arrow.prev {
    left: 8px;
  }

  .lb-arrow.next {
    right: 8px;
  }

  .filter-btn {
    font-size: 0.6rem;
    padding: 8px 14px;
  }
}

/* === LIGHTBOX === */
/* ══ SLIDER TRACK ══ */
.showcase-slider {
  width: 100%;
}

/* ══ EACH SLIDE ══ */
.slide-item {
  padding: 0 6px;
  outline: none;
}

.slide-inner {
  position: relative;
  width: 100%;
  /* Tall portrait-ish ratio like the screenshot */
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  background: #1a1a1a;
}

/* Image */
.slide-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.slide-inner:hover img {
  transform: scale(1.06);
}

/* Video */
.slide-inner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.slide-inner:hover video {
  transform: scale(1.06);
}

/* Hover overlay on image slides */
.slide-inner .hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s;
  z-index: 2;
}

.slide-inner:hover .hover-overlay {
  background: rgba(0, 0, 0, 0.22);
}

/* Play button on video slides */
/* .play-btn {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 3;
      cursor: pointer;
    }*/
.play-btn-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.2s,
    background 0.2s;
}

.play-btn:hover .play-btn-icon {
  transform: scale(1.12);
  background: #fff;
}

.play-btn-icon svg {
  width: 22px;
  height: 22px;
  fill: #111;
  margin-left: 4px;
}

.play-btn.hidden {
  display: none;
}

/* ══ SLICK DOTS ══ */
.showcase-section .slick-dots {
  bottom: -20px;
  position: relative;
}

.showcase-section .slick-dots li button:before {
  font-size: 10px !important;
  color: #888 !important;
  opacity: 1 !important;
  transition: color 0.3s;
}

.showcase-section .slick-dots li.slick-active button:before {
  color: #e8d5a3 !important;
  opacity: 1 !important;
}

.showcase-section .slick-dotted.slick-slider {
  margin-bottom: 30px;
  margin-top: 40px;
  padding: 0px 20px;
  padding-bottom: 50px;
}

/* Hide default arrows */
.showcase-section .slick-prev,
.showcase-section .slick-next {
  display: none !important;
}

/* ══ LIGHTBOX ══ */
#lb-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.93);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

#lb-backdrop.open {
  display: flex;
}

#lb-box {
  position: relative;
  max-width: 900px;
  width: 94vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#lb-close {
  position: absolute;
  top: -46px;
  right: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

#lb-close:hover {
  background: rgba(255, 255, 255, 0.15);
}

#lb-media-wrap {
  width: 100%;
  max-height: 80vh;
  border-radius: 10px;
  overflow: hidden;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

#lb-media-wrap img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}

#lb-media-wrap video {
  max-width: 100%;
  max-height: 80vh;
  display: block;
}

#lb-caption {
  margin-top: 0px;
  font-size: 0rem;
  letter-spacing: 0.08em;
  color: rgba(232, 213, 163, 0.7);
  text-transform: uppercase;
  text-align: center;
}

/* LB nav arrows */
.lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10;
}

.lb-arrow:hover {
  background: rgba(255, 255, 255, 0.22);
}

#lb-prev {
  left: -56px;
}

#lb-next {
  right: -56px;
}

@media (max-width: 600px) {
  #lb-prev {
    left: -14px;
  }

  #lb-next {
    right: -14px;
  }
}

.image-slider .slick-slide img {
  height: 220px;
  object-fit: cover;
}

.image-slider .slick-dotted.slick-slider {
  margin-bottom: 0;
}

section.image-slider {
  padding-bottom: 120px;
}

section.image-slider .slick-dots li button::before {
  display: none;
}

.image-slider .slick-dots li button {
  background-color: #fff;
  width: 10px;
  height: 10px;
  border-radius: 100%;
}

.image-slider .slick-dots li {
  width: 10px;
  height: 10px;
  border-radius: 100%;
}

.image-slider .slick-dots li.slick-active button {
  background-color: var(--gold);
}

.image-slider .slick-dots {
  bottom: -40px;
}

div#instr-sc-key {
  position: inherit;
  text-align: center;
  display: flex;
  justify-content: center;
}

.walk-sec {
  background-image: var(--slide-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.6s ease-in-out;
  position: relative;
}

.walk-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  /* overlay - darken as needed */
  z-index: 0;
}

.walk-slider {
  position: relative;
  z-index: 1;
}

.split-left {
  background-image: var(--split-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.6s ease-in-out;
  position: relative;
}

.split-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 6, 6, 0.1) 0%, rgba(6, 6, 6, 0.15) 30%, rgba(6, 6, 6, 0.75) 78%, rgba(6, 6, 6, 1) 100%),
    linear-gradient(90deg, rgba(6, 6, 6, 0.4) 0%, transparent 38%, transparent 62%, rgba(6, 6, 6, 0.25) 100%);
  z-index: 0;
}

.split-left>* {
  position: relative;
  z-index: 1;
}

.walk-slider {
  background-image: var(--walk-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.6s ease-in-out;
  position: relative;
}

div#occaion-sec a.btn-primary {
  background-color: #000;
  color: var(--gold);
  margin-top: 20px;
}

.walk-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 0;
}

section#walkPerformance .walk-slider {
  padding-top: 60px;
  padding-bottom: 60px;
}

div#occaion-sec h2.hs-title {
  margin-bottom: 0;
}

.walk-slider>* {
  position: relative;
  z-index: 1;
}

div#walkSlider {
  max-width: 100%;
}

div#walkSlider button.walk-arrow.prev,
div#walkSlider button.walk-arrow.next {
  display: none;
}

.walk-sec.walk-wed {
  padding-bottom: 30px !important;
}

.walk-sec.walk-wed .walk-dots {
  position: relative;
  top: 50px;
}

div#walkSlider {
  padding: 100px 10px;
  background-position: center !important;
}

.showcase-section .play-btn {
  width: auto !important;
  height: auto !important;
  background-color: transparent !important;
}