/* =====================================================
   VEDANSH VISUALS — style.css
   Theme: Black · White · Gold
   ===================================================== */

/* ---------- CSS Variables ---------- */
:root {
  --black:      #0a0a0a;
  --white:      #f4f4f0;
  --gold:       #c9a84c;
  --gold-lt:    #ddb96a;
  --dark:       #111111;
  --gray:       #7a7a7a;
  --gray-lt:    #a0a0a0;
  --card-bg:    #161616;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Nunito Sans', system-ui, sans-serif;
  --font-poppins: 'Poppins', system-ui, sans-serif;
  --transition: 0.3s ease;
  --max-w:      1180px;
  --radius:     4px;
  --radius-card: 16px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Prevent layout shifts from scrollbar appearing */
  scrollbar-gutter: stable;
}

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

/* ---------- Utility ---------- */
.container   { width: 90%; max-width: var(--max-w); margin: 0 auto; }
.section     { padding: 100px 0; }
.dark-section { background: var(--dark); }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-label.center,
.section-title.center { text-align: center; }

.section-title {
  font-family: var(--font-poppins);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--white);
  letter-spacing: -0.01em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 32px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,.3);
}
.btn-outline {
  border: 1px solid var(--white);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 6%;
  background: transparent;
  transform: translateZ(0);
  transition:
    background 0.55s ease,
    padding    0.55s ease,
    box-shadow 0.55s ease;
}

/* Scrolled: enhanced glassmorphism + soft shadow */
.navbar.scrolled {
  background: rgba(8, 7, 4, 0.78);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  padding: 14px 6%;
  box-shadow:
    0 1px 0 rgba(201,168,76,.14),
    0 4px 24px rgba(0,0,0,.45),
    0 12px 40px rgba(0,0,0,.3);
}

/* ---- Logo ---- */
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--white);
  transition: text-shadow 0.45s ease, transform 0.45s ease;
}
.nav-logo span { color: var(--gold); }
.nav-logo:hover {
  text-shadow:
    0 0 14px rgba(201,168,76,.55),
    0 0 32px rgba(201,168,76,.22);
  transform: scale(1.03);
}

/* ---- Links list ---- */
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* =====================================================
   NAV LINK — Premium 3D hover
   ===================================================== */
.nav-link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;                     /* contains the shine sweep */
  padding-bottom: 2px;                  /* breathing room for underline */
  transition:
    color       0.4s ease,
    transform   0.4s cubic-bezier(.22,.68,0,1.2),
    text-shadow 0.4s ease;
}

/* Hover: lift 3px + 5 % scale + golden glow */
.nav-link:hover {
  color: var(--gold);
  transform: translateY(-3px) scale(1.05);
  text-shadow:
    0 0 12px rgba(201,168,76,.55),
    0 0 28px rgba(201,168,76,.22);
}
.nav-link.active {
  color: var(--gold);
}

/* ---- Underline: slides left → right on hover ---- */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1.5px;
  background: linear-gradient(90deg, var(--gold-lt), var(--gold), var(--gold-lt));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s cubic-bezier(.4,0,.2,1);
}
.nav-link:hover::after {
  transform: scaleX(1);
}

/* Active: underline always visible */
.nav-link.active::after {
  transform: scaleX(1);
}

/* ---- Shine sweep: passes once on hover ---- */
.nav-link::before {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 55%; height: 100%;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255,255,255,.28) 50%,
    transparent 80%
  );
  transform: skewX(-18deg);
  transition: left 0.55s ease;
  pointer-events: none;
}
.nav-link:hover::before {
  left: 130%;
}

/* ---- CTA button — Contact ---- */
.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 7px 18px;
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    background   0.4s ease,
    color        0.4s ease,
    box-shadow   0.4s ease,
    transform    0.4s cubic-bezier(.22,.68,0,1.2) !important;
}
/* Disable the shared shine-sweep ::before on the CTA (its own shine below) */
.nav-cta::before { display: none; }
/* Disable the shared underline ::after on the CTA */
.nav-cta::after  { display: none; }

/* CTA hover: lift + fill + premium gold glow */
.nav-cta:hover {
  background: var(--gold);
  color: var(--black) !important;
  box-shadow:
    0 6px 20px rgba(201,168,76,.45),
    0 0 0 1px rgba(201,168,76,.25),
    0 0 32px rgba(201,168,76,.15);
  transform: translateY(-3px) scale(1.04) !important;
  text-shadow: none;
}

/* CTA shine sweep via a wrapper span trick — done with a pseudo on the link itself */
.nav-cta .cta-shine {
  position: absolute;
  top: 0; left: -100%;
  width: 55%; height: 100%;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255,255,255,.3) 50%,
    transparent 80%
  );
  pointer-events: none;
  transition: left 0.5s ease;
}
.nav-cta:hover .cta-shine { left: 150%; }

/* ---- Hamburger ---- */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: transform 0.35s ease, opacity 0.35s ease;
}
/* Open state */
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile: disable 3D lift / shine (nav links are full-size in the drawer) */
@media (max-width: 768px) {
  .nav-link:hover {
    transform: translateX(4px);
    text-shadow: none;
  }
  .nav-link::before { display: none; }
}

/* =====================================================
   PORTFOLIO NAV — Desktop: plain link (no dropdown)
   ===================================================== */

/* Hide arrow and submenu on desktop */
.nav-portfolio-arrow { display: none; }
.nav-portfolio-sub   { display: none; }

/* Make the toggle behave exactly like every other .nav-link */
.nav-portfolio-toggle {
  overflow: hidden;
  padding-right: 0;
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05) translateZ(0);
  transition: none;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.80) 0%, rgba(0,0,0,.26) 45%, rgba(0,0,0,.90) 100%),
    linear-gradient(135deg, rgba(201,168,76,.08) 0%, transparent 60%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}
.hero-tagline {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 8.5vw, 7.5rem);
  font-weight: 400;
  line-height: 1.0;
  margin-bottom: 20px;
  color: var(--white);
  letter-spacing: -0.02em;
}
.hero-title em,
.hero-title-visuals {
  font-style: italic;
  color: var(--gold);
  font-size: 0.95em;
}
.hero-sub {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(244,244,240,.6);
  margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- Follow My Journey social bar ---- */
.hero-social {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0;
}
.hero-anim-social {
  animation: heroFadeUp 0.6s cubic-bezier(.22,.68,0,1.2) 1.1s forwards;
}
.hero-social-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(244,244,240,.45);
  position: relative;
}
.hero-social-label::before,
.hero-social-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 28px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.4));
}
.hero-social-label::before { right: calc(100% + 10px); }
.hero-social-label::after  { left:  calc(100% + 10px); background: linear-gradient(90deg, rgba(201,168,76,.4), transparent); }

.hero-social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Base social pill */
.hsoc {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px 9px 14px;
  border: 1px solid rgba(201,168,76,.22);
  border-radius: 50px;
  background: rgba(14,12,8,.85);
  color: rgba(244,244,240,.65);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  transition: border-color 0.4s ease, background 0.4s ease,
              color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.hsoc svg {
  width: 17px; height: 17px;
  flex-shrink: 0;
  transition: color 0.4s ease;
}
.hsoc-name {
  transition: color 0.4s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

/* Instagram — active hover */
.hsoc--ig:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,.08);
  color: var(--gold-lt);
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 8px 24px rgba(201,168,76,.22),
    0 0 0 1px rgba(201,168,76,.18),
    0 0 32px rgba(201,168,76,.10);
}
.hsoc--ig:hover svg { color: var(--gold); }

/* Facebook — same hover as Instagram */
.hsoc--fb:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,.08);
  color: var(--gold-lt);
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 8px 24px rgba(201,168,76,.22),
    0 0 0 1px rgba(201,168,76,.18),
    0 0 32px rgba(201,168,76,.10);
}
.hsoc--fb:hover svg { color: var(--gold); }

/* YouTube — same hover as Instagram & Facebook */
.hsoc--yt:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,.08);
  color: var(--gold-lt);
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 8px 24px rgba(201,168,76,.22),
    0 0 0 1px rgba(201,168,76,.18),
    0 0 32px rgba(201,168,76,.10);
}
.hsoc--yt:hover svg { color: var(--gold); }

/* Pinterest — same hover as other social pills */
.hsoc--pt:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,.08);
  color: var(--gold-lt);
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 8px 24px rgba(201,168,76,.22),
    0 0 0 1px rgba(201,168,76,.18),
    0 0 32px rgba(201,168,76,.10);
}
.hsoc--pt:hover svg { color: var(--gold); }

/* Scroll-down arrow */
.scroll-down {
  position: absolute;
  bottom: 21px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 28px; height: 44px;
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
  transition: border-color var(--transition);
}
.scroll-down:hover { border-color: var(--gold); }
.scroll-down span {
  display: block;
  width: 4px; height: 4px;
  background: var(--white);
  border-radius: 50%;
  animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(14px); }
}

/* =====================================================
   ABOUT
   ===================================================== */
.about {
  background: linear-gradient(160deg, #0e0e0e 0%, #0a0a0a 60%, #0c0b08 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  max-height: 620px;
  overflow: visible;
}
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  filter: grayscale(10%);
  transition: filter 0.4s ease, transform 0.4s ease;
  box-shadow:
    0 40px 90px rgba(0,0,0,.75),
    0 0 0 1px rgba(201,168,76,.15),
    0 0 40px rgba(201,168,76,.06);
}
.about-img-wrap:hover .about-img {
  filter: grayscale(0%);
}

/* Subtle gold accent line on the left edge of the image */
.about-img-wrap::before {
  content: '';
  position: absolute;
  top: 10%; left: -3px;
  width: 3px;
  height: 80%;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  border-radius: 2px;
  opacity: 0.55;
  z-index: 1;
}

.about-badge {
  position: absolute;
  bottom: -18px; right: -18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(201,168,76,.35);
}

.about-text p {
  color: rgba(244,244,240,.7);
  margin-bottom: 16px;
  font-size: 0.94rem;
  line-height: 1.8;
}
.about-stats {
  display: flex;
  gap: 36px;
  margin: 32px 0;
  flex-wrap: wrap;
}
.stat span {
  display: block;
  font-family: var(--font-poppins);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1.1;
}
.stat {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}

/* =====================================================
   MEET THE CREATIVE TEAM
   ===================================================== */
.team-section {
  margin: 36px 0 32px;
}
.team-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.team-heading {
  font-family: var(--font-poppins);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.25;
}

/* Grid: 4 equal-width cols — wider cards, tighter gap */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

/* Premium profile card */
.team-card {
  background: rgba(10, 10, 10, 0.82);
  border: 1px solid rgba(201,168,76,.28);
  border-radius: 16px;
  padding: 20px 22px 18px;
  text-align: center;
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow:
    0 4px 24px rgba(0,0,0,.55),
    0 1px 0 rgba(201,168,76,.06) inset;
  position: relative;
  overflow: hidden;
  transition:
    transform    0.5s cubic-bezier(.22,.68,0,1.15),
    border-color 0.5s ease,
    box-shadow   0.5s ease;
  /* equal height via flex column */
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Subtle ambient corner glow */
.team-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle at top left, rgba(201,168,76,.12) 0%, transparent 70%);
  pointer-events: none;
}
.team-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 60px; height: 60px;
  background: radial-gradient(circle at bottom right, rgba(201,168,76,.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Hover: lift + gold glow */
.team-card:hover {
  transform: translateY(-8px) rotateX(2deg) scale(1.02);
  border-color: rgba(201,168,76,.7);
  box-shadow:
    0 20px 50px rgba(0,0,0,.65),
    0 0 0 1px rgba(201,168,76,.22) inset,
    0 0 36px rgba(201,168,76,.2),
    0 0 70px rgba(201,168,76,.07);
}

/* Golden circular icon bubble */
.team-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #a07828 100%);
  border: 2px solid rgba(221,185,106,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
  box-shadow:
    0 0 0 4px rgba(201,168,76,.12),
    0 6px 20px rgba(201,168,76,.3);
  transition:
    transform  0.5s cubic-bezier(.22,.68,0,1.2),
    box-shadow 0.5s ease;
}
.team-card:hover .team-icon-wrap {
  transform: scale(1.14);
  box-shadow:
    0 0 0 6px rgba(201,168,76,.18),
    0 10px 30px rgba(201,168,76,.45);
}
.team-icon {
  font-size: 1.7rem;
  line-height: 1;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.4));
}

/* Role heading — bold white */
.team-role {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 0;
  padding-bottom: 12px;
  line-height: 1.4;
}

/* Names container — flex: 1 so it fills remaining card height;
   justify-content: center vertically centers names in that space,
   making single-name cards balanced with two-name cards */
.team-names {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 0;
  width: 100%;
}

/* Individual name — gold, bold, larger */
.team-names span:not(.team-divider) {
  font-family: var(--font-poppins);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--gold-lt);
  letter-spacing: 0.3px;
  line-height: 1.4;
  text-shadow: 0 0 18px rgba(201,168,76,.3);
}

/* Thin golden divider between names */
.team-divider {
  display: block;
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.55), transparent);
  border-radius: 1px;
  margin: 8px auto;
}

/* Responsive */
@media (max-width: 960px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
@media (max-width: 480px) {
  .team-grid      { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .team-card      { padding: 16px 14px 14px; border-radius: 13px; }
  .team-icon-wrap { width: 52px; height: 52px; }
  .team-icon      { font-size: 1.4rem; }
  .team-role      { font-size: 0.62rem; }
  .team-names span:not(.team-divider) { font-size: 0.96rem; }
}
@media (max-width: 360px) {
  .team-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .team-card      { transition: none; }
  .team-icon-wrap { transition: none; }
}

/* =====================================================
   SERVICES
   ===================================================== */
.services {
  background:
    radial-gradient(ellipse 55% 45% at 100% 0%,   rgba(201,168,76,.10) 0%, transparent 60%),
    radial-gradient(ellipse 45% 40% at 0%   100%, rgba(201,168,76,.08) 0%, transparent 58%),
    radial-gradient(ellipse 60% 35% at 50%  55%,  rgba(201,168,76,.04) 0%, transparent 65%),
    linear-gradient(175deg, #131313 0%, #0e0e0e 50%, #111108 100%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: stretch;
}
.service-card {
  background: #181818;
  border: 1px solid rgba(201,168,76,.12);
  border-radius: var(--radius-card);
  padding: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow:
    0 4px 24px rgba(0,0,0,.45),
    0 1px 0 rgba(255,255,255,.03) inset;
  transition:
    transform 0.55s cubic-bezier(.22,.68,0,1.05),
    border-color 0.55s ease,
    box-shadow 0.55s ease,
    opacity 0.55s ease;
  /* scroll-reveal initial state */
  opacity: 0;
  transform: translateY(48px);
}
.service-card.sc-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Card image thumbnail */
.sc-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
}
.sc-img-wrap img,
.sc-img-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
  display: block;
  pointer-events: none;
}
.sc-img-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.08) 0%, rgba(0,0,0,.62) 100%);
}
.service-card:hover .sc-img-wrap img {
  transform: scale(1.07);
  filter: brightness(1.1);
}

/* Card body */
.sc-body {
  padding: 24px 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Animated gold bottom line */
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-lt), transparent);
  transition: width 0.45s ease, left 0.45s ease;
  z-index: 1;
}
.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(201,168,76,.6);
  box-shadow:
    0 20px 48px rgba(0,0,0,.6),
    0 0 0 1px rgba(201,168,76,.22),
    0 0 36px rgba(201,168,76,.16);
}
.service-card:hover::before {
  width: 100%;
  left: 0;
}

.service-icon {
  font-size: 1.45rem;
  color: var(--gold);
  margin-bottom: 10px;
  line-height: 1;
  flex-shrink: 0;
}
.service-card h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
  line-height: 1.35;
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
}
.service-card:hover h3 { color: var(--gold-lt); }
.service-card p {
  font-size: 0.83rem;
  color: var(--gray-lt);
  line-height: 1.75;
  margin-top: 0;
  padding-top: 8px;
}

/* Service card internal links */
.sc-links {
  display: flex;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  flex-wrap: wrap;
}
.sc-link {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(201,168,76,.35);
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.sc-link:hover { color: var(--gold-lt); border-color: var(--gold-lt); }
.sc-link--cta {
  color: var(--white);
  border-color: rgba(244,244,240,.3);
}
.sc-link--cta:hover { color: var(--gold-lt); border-color: var(--gold-lt); }

/* Services section bottom CTA note */
.services-cta-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray-lt);
  margin-top: 36px;
  line-height: 1.7;
}
.services-cta-link {
  color: var(--gold);
  border-bottom: 1px solid rgba(201,168,76,.4);
  transition: color 0.3s ease, border-color 0.3s ease;
}
.services-cta-link:hover { color: var(--gold-lt); border-color: var(--gold-lt); }

.featured-card {
  background: linear-gradient(160deg, #1c1400 0%, #161616 52%);
  border-color: rgba(201,168,76,.42);
  box-shadow:
    0 8px 36px rgba(0,0,0,.5),
    0 0 0 1px rgba(201,168,76,.16),
    0 0 40px rgba(201,168,76,.07);
}
.card-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  color: var(--black);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(201,168,76,.35);
}

/* =====================================================
   WEBSITE DEVELOPMENT SERVICE CARD — additions only
   ===================================================== */

/* Subtitle — sits between h3 and description */
.sc-subtitle {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  margin-top: -4px;
}

/* Uniform equal-size grid — no masonry */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

/* Every card identical size — scroll-reveal initial state */
.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-card);
  cursor: pointer;
  background: #111;
  border: 1px solid rgba(201,168,76,.1);
  transition:
    transform    0.55s cubic-bezier(.22,.68,0,1.05),
    border-color 0.55s ease,
    box-shadow   0.55s ease,
    opacity      0.55s ease;
  opacity: 0;
  transform: translateY(44px) scale(0.97);
}
.gallery-item:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.gallery-item.gi-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Hover: 3D lift + gold glow */
.gallery-item.gi-visible:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(201,168,76,.65);
  box-shadow:
    0 16px 40px rgba(0,0,0,.6),
    0 0 0 1px rgba(201,168,76,.22),
    0 0 28px rgba(201,168,76,.12);
}

/* Image zoom + brighten */
.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease, filter 0.55s ease;
  pointer-events: none;
  background: #111;
}
.gallery-item.gi-visible:hover img,
.gallery-item.gi-visible:hover video {
  transform: scale(1.08);
  filter: brightness(1.1);
}

/* Overlay: full dark gradient fades in on hover */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.82) 0%,
    rgba(0,0,0,.38) 50%,
    rgba(0,0,0,.08) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 18px 16px;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.55s ease;
}
.gallery-item.gi-visible:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}

/* "View Project" button inside overlay — hidden */
.gi-view-btn {
  display: none;
}
.gallery-item.gi-visible:hover .gi-view-btn {
  transform: translateY(0);
  opacity: 1;
}

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

/* Responsive */
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery-item { border-radius: 10px; }
}
@media (max-width: 400px) {
  .gallery-grid { grid-template-columns: 1fr; gap: 10px; }
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.contact {
  position: relative;
  overflow: hidden;
}

/* Premium dark gradient background — no external image */
.contact-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%,  rgba(201,168,76,.07) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 80%,  rgba(201,168,76,.05) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 50%,  rgba(201,168,76,.03) 0%, transparent 60%),
    linear-gradient(160deg, #0d0c0a 0%, #080808 40%, #0a0906 70%, #060606 100%);
  z-index: 0;
}
/* Subtle noise texture overlay for depth */
.contact-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(201,168,76,.012) 2px,
      rgba(201,168,76,.012) 3px
    );
  pointer-events: none;
}

.contact .container { position: relative; z-index: 2; }

/* ---- Section heading block ---- */
.contact-heading {
  max-width: 680px;
  padding-bottom: 48px;
}
.contact-desc {
  font-size: 0.92rem;
  color: rgba(244,244,240,.58);
  line-height: 1.85;
  margin-top: -10px;
  max-width: 620px;
}
.contact-heading-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt), transparent);
  border-radius: 2px;
  margin-top: 24px;
  opacity: 0.7;
}

/* ---- Why Work With Me label ---- */
.contact-sidebar-label {
  font-family: var(--font-poppins);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.2px;
  line-height: 1.3;
  padding-bottom: 14px;
  position: relative;
}
.contact-sidebar-label::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 1.5px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}

/* ============================================================
   SIDEBAR CARDS — fade-in keyframe
   ============================================================ */
@keyframes cscFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- Sidebar wrapper ---- */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ---- Base glassmorphism card ---- */
.csc {
  background: rgba(18,16,10,.90);
  border: 1px solid rgba(201,168,76,.22);
  border-radius: var(--radius-card);
  padding: 28px 26px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 8px 32px rgba(0,0,0,.45),
    0 0 0 1px rgba(201,168,76,.08) inset;
  opacity: 0;
  animation: cscFadeUp 0.7s cubic-bezier(.22,.68,0,1.05) forwards;
  transition: border-color 0.5s ease, box-shadow 0.5s ease, transform 0.5s ease;
}
.csc--response { animation-delay: 0.15s; }
.csc--avail    { animation-delay: 0.35s; }

/* Hover golden glow */
.csc:hover {
  border-color: rgba(201,168,76,.6);
  box-shadow:
    0 16px 48px rgba(0,0,0,.6),
    0 0 0 1px rgba(201,168,76,.2) inset,
    0 0 40px rgba(201,168,76,.12);
  transform: translateY(-4px);
}

/* Subtle gold sweep top-left corner accent */
.csc::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60px; height: 60px;
  background: radial-gradient(circle at top left, rgba(201,168,76,.18) 0%, transparent 70%);
  pointer-events: none;
}

/* ---- Quick Response card ---- */
.csc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.csc-bolt {
  font-size: 1.3rem;
  line-height: 1;
  filter: drop-shadow(0 0 6px rgba(201,168,76,.7));
}
.csc-title {
  font-family: var(--font-poppins);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.2px;
}

.csc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.csc-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.86rem;
  color: rgba(244,244,240,.78);
  line-height: 1.5;
}
.csc-list strong { color: var(--gold-lt); font-weight: 600; }
.csc-dot {
  font-size: 1rem;
  flex-shrink: 0;
  width: 22px;
  text-align: center;
}

/* Thin gold divider between header and list */
.csc--response::after {
  content: '';
  position: absolute;
  top: 72px; left: 26px; right: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.35), transparent);
  pointer-events: none;
}

/* ---- Availability card ---- */
.csc--avail {
  background: linear-gradient(135deg, rgba(10,14,4,.82) 0%, rgba(255,255,255,.03) 100%);
  border-color: rgba(74,186,74,.28);
}
.csc--avail:hover {
  border-color: rgba(74,186,74,.6);
  box-shadow:
    0 16px 48px rgba(0,0,0,.6),
    0 0 0 1px rgba(74,186,74,.15) inset,
    0 0 36px rgba(74,186,74,.08),
    0 0 36px rgba(201,168,76,.06);
}

/* Pulsing green dot */
@keyframes availPulse {
  0%, 100% { transform: scale(1);   box-shadow: 0 0 0 0   rgba(74,186,74,.6); }
  50%       { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(74,186,74,0);  }
}
.csc-avail-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #4aba4a;
  margin-bottom: 14px;
  animation: availPulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(74,186,74,.55);
}
.csc-avail-title {
  font-family: var(--font-poppins);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.35;
}
.csc-avail-desc {
  font-size: 0.82rem;
  color: rgba(244,244,240,.62);
  line-height: 1.75;
}

/* =====================================================
   CONTACT FORM
   ===================================================== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(14,12,8,.85);
  border: 1px solid rgba(201,168,76,.14);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
  opacity: 0;
  animation: cscFadeUp 0.7s cubic-bezier(.22,.68,0,1.05) 0.25s forwards;
}

/* Individual field wrapper */
.cf-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.cf-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(244,244,240,.72);
}
.cf-req { color: var(--gold); }
.cf-opt {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.7rem;
  color: var(--gray);
}

/* Inputs & textarea */
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 14px 18px;
  font-family: var(--font-poppins);
  font-size: 0.88rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
  appearance: none;
  -webkit-appearance: none;
  line-height: 1.6;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(120,120,120,.8); }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,.04);
  box-shadow: 0 0 0 3px rgba(201,168,76,.1);
}
.contact-form textarea { resize: vertical; min-height: 120px; max-height: 320px; }

/* Custom select arrow */
.cf-select-wrap { position: relative; }
.cf-select-wrap::after {
  content: '';
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  width: 10px; height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23c9a84c' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}
.cf-select-wrap select { padding-right: 42px; cursor: pointer; }
.cf-select-wrap select option { background: #1c1c1c; color: var(--white); }

/* Inline error */
.cf-err {
  font-size: 0.72rem;
  color: #e05c5c;
  min-height: 16px;
  padding-left: 2px;
}

/* Submit button */
.cf-submit {
  width: 100%;
  padding: 16px 28px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-poppins);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
  margin-top: 4px;
}
.cf-submit::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.22), transparent);
  transition: left 0.55s ease;
  pointer-events: none;
}
.cf-submit:hover { background: var(--gold-lt); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(201,168,76,.4); }
.cf-submit:hover::before { left: 150%; }
.cf-submit:active { transform: translateY(-1px); }

.cf-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cf-actions .cf-submit { flex: 1; min-width: 0; text-align: center; width: 100%; }

/* Status message */
.form-msg {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  min-height: 18px;
  text-align: center;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(201,168,76,.07) 0%, transparent 60%),
    linear-gradient(180deg, #0a0908 0%, #060606 100%);
  border-top: 1px solid rgba(201,168,76,.18);
  padding: 80px 0 0;
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transform: translateY(24px);
}
.footer.ft-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- 4-column grid ---- */
.ft-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.1fr;
  gap: 48px;
  padding-bottom: 60px;
}

/* ---- Shared column heading ---- */
.ft-heading {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.ft-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 1.5px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

/* ---- Brand column ---- */
.ft-logo {
  display: inline-block;
  font-family: var(--font-poppins);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.3px;
  margin-bottom: 14px;
  transition: text-shadow 0.4s ease;
}
.ft-logo span { color: var(--gold); }
.ft-logo:hover {
  text-shadow: 0 0 20px rgba(201,168,76,.45), 0 0 40px rgba(201,168,76,.15);
}
.ft-tagline {
  font-size: 0.84rem;
  color: rgba(244,244,240,.55);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 280px;
}

/* ---- Social icons ---- */
.ft-socials {
  display: flex;
  gap: 10px;
}
.ft-social {
  width: 38px; height: 38px;
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(244,244,240,.55);
  transition: border-color 0.4s ease, color 0.4s ease,
              background 0.4s ease, transform 0.4s ease,
              box-shadow 0.4s ease;
}
.ft-social svg { width: 16px; height: 16px; }
.ft-social:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,.08);
  transform: translateY(-3px);
  box-shadow:
    0 6px 18px rgba(201,168,76,.2),
    0 0 0 1px rgba(201,168,76,.18),
    0 0 20px rgba(201,168,76,.12);
  cursor: pointer;
}

/* ---- Nav / service links ---- */
.ft-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding-left: 14px;
}
.ft-links a {
  font-size: 0.84rem;
  color: rgba(244,244,240,.55);
  transition: color 0.35s ease, text-shadow 0.35s ease;
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.ft-links a::before {
  content: '';
  position: absolute;
  left: -10px; top: 50%;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%) scale(0);
  transition: transform 0.3s ease;
}
.ft-links a:hover {
  color: var(--gold-lt);
  text-shadow:
    0 0 10px rgba(201,168,76,.55),
    0 0 22px rgba(201,168,76,.25);
}
.ft-links a:hover::before { transform: translateY(-50%) scale(1); }

/* ---- Contact info list ---- */
.ft-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ft-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.83rem;
  color: rgba(244,244,240,.55);
  line-height: 1.55;
  transition: color 0.35s ease;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.ft-contact li:hover { color: rgba(244,244,240,.82); }

/* Clickable contact links (WhatsApp + Email) */
.ft-contact a {
  color: rgba(244,244,240,.55);
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: color 0.35s ease, text-shadow 0.35s ease;
}
.ft-contact a::before {
  content: '';
  position: absolute;
  left: -10px; top: 50%;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%) scale(0);
  transition: transform 0.3s ease;
}
.ft-contact a:hover {
  color: var(--gold-lt);
  text-shadow:
    0 0 10px rgba(201,168,76,.55),
    0 0 22px rgba(201,168,76,.25);
}
.ft-contact a:hover::before { transform: translateY(-50%) scale(1); }
.ft-ci {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
  width: 18px;
  text-align: center;
}

/* ---- Gold divider ---- */
.ft-divider {
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201,168,76,.12) 15%,
    rgba(201,168,76,.45) 50%,
    rgba(201,168,76,.12) 85%,
    transparent 100%);
  margin: 0;
}

/* ---- Bottom bar ---- */
.ft-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 22px 0;
}
.ft-copy, .ft-credit {
  font-size: 0.73rem;
  color: rgba(244,244,240,.38);
  letter-spacing: 0.3px;
}
.ft-credit { color: rgba(244,244,240,.3); }

/* ---- Back-to-top button ---- */
.btt {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, #1a1500, #0e0c07);
  border: 1px solid rgba(201,168,76,.4);
  border-radius: 10px;
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease,
              border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  box-shadow: 0 4px 18px rgba(0,0,0,.5);
}
.btt.btt-show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.btt:hover {
  border-color: var(--gold);
  background: linear-gradient(135deg, #2a1f00, #181400);
  box-shadow: 0 8px 28px rgba(201,168,76,.28);
  transform: translateY(-3px);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .ft-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .ft-brand { grid-column: 1 / -1; }
  .ft-tagline { max-width: 100%; }
}
@media (max-width: 600px) {
  .ft-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .ft-brand { grid-column: auto; }
  .footer  { padding-top: 52px; }
  .ft-bottom { flex-direction: column; text-align: center; }
  .btt { bottom: 20px; right: 20px; width: 42px; height: 42px; font-size: 1.3rem; }
}

/* =====================================================
   SCROLL REVEAL ANIMATION
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .about-grid   { gap: 48px; }
  .contact-grid { gap: 28px; }
}

@media (max-width: 768px) {
  /* Navbar mobile — toggle + drawer (transforms handled inside NAVBAR block) */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: 75%; max-width: 320px; height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: rgba(8,7,4,.92);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    border-left: 1px solid rgba(201,168,76,.1);
    padding: 80px 48px;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.55s cubic-bezier(.4,0,.2,1);
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { font-size: 1rem; }

  /* Portfolio mobile submenu — override desktop flyout styles */
  .nav-portfolio-toggle {
    font-size: 1rem;
    overflow: visible;
    transform: none !important;
    text-shadow: none !important;
  }
  .nav-portfolio-toggle::before,
  .nav-portfolio-toggle::after { display: none; }
  .nav-portfolio-toggle:hover { color: var(--gold); transform: none !important; text-shadow: none !important; }
  .nav-portfolio-arrow {
    position: static;
    transform: none;
    font-size: 0.55rem;
    margin-left: 6px;
    vertical-align: middle;
    pointer-events: none;
  }
  .nav-portfolio-toggle[aria-expanded="true"] .nav-portfolio-arrow {
    transform: rotate(90deg);
  }
  /* Reset desktop flyout positioning — become a normal inline block */
  .nav-portfolio-sub {
    position: static;
    transform: none !important;
    min-width: unset;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    /* Collapsed by default on mobile */
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.35s cubic-bezier(.4,0,.2,1), opacity 0.3s ease;
  }
  .nav-portfolio-sub::before { display: none; }
  .nav-portfolio-sub.open {
    max-height: 160px;
    opacity: 1;
    pointer-events: auto;
  }
  /* Override hover/focus-within open state on mobile */
  .nav-item-portfolio:hover .nav-portfolio-sub,
  .nav-item-portfolio:focus-within .nav-portfolio-sub {
    opacity: 0;
    pointer-events: none;
    transform: none !important;
  }
  .nav-item-portfolio:hover .nav-portfolio-sub.open,
  .nav-item-portfolio:focus-within .nav-portfolio-sub.open {
    opacity: 1;
    pointer-events: auto;
  }
  /* Override hover transforms on the toggle button */
  .nav-item-portfolio:hover .nav-portfolio-toggle,
  .nav-item-portfolio:focus-within .nav-portfolio-toggle {
    transform: none !important;
    text-shadow: none !important;
  }
  .nav-item-portfolio:hover .nav-portfolio-arrow,
  .nav-item-portfolio:focus-within .nav-portfolio-arrow {
    transform: none;
  }
  .nav-sub-link {
    padding: 8px 0 8px 18px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1.2px;
    color: rgba(255,255,255,0.7);
    border-left: 1.5px solid rgba(201,168,76,0.3);
    background: none;
    transition: color 0.25s ease, border-color 0.25s ease;
  }
  .nav-sub-link:hover {
    color: var(--gold);
    border-left-color: var(--gold);
    background: none;
    padding-left: 18px;
  }

  /* Services — handled in dedicated services block above */

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about-img-wrap { max-height: 460px; }
  .about-badge { bottom: -14px; right: 0; }

  /* Gallery — handled in portfolio block above */

  /* Contact — stack sidebar above form on mobile */
  .contact-heading { padding-bottom: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-form { padding: 28px 22px; }

  /* Footer */
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .about-stats { gap: 24px; }

  .contact-form  { padding: 24px 18px; }
  .csc           { padding: 22px 18px; }
}

/* =====================================================
   PRICING SECTION
   ===================================================== */
.pricing {
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%,   rgba(201,168,76,.10) 0%, transparent 62%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(201,168,76,.07) 0%, transparent 58%),
    radial-gradient(ellipse 40% 35% at 0%   100%, rgba(201,168,76,.05) 0%, transparent 55%),
    #0e0c07;
}

.pricing-intro {
  text-align: center;
  font-size: 0.93rem;
  color: var(--gray-lt);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.85;
}
.pricing-intro a {
  color: var(--gold);
  border-bottom: 1px solid rgba(201,168,76,.4);
  transition: color 0.3s ease, border-color 0.3s ease;
}
.pricing-intro a:hover {
  color: var(--gold-lt);
  border-color: var(--gold-lt);
}

/* ---- Grid: 3-col → 2-col → 1-col ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

/* ---- Base card — scroll-reveal initial state ---- */
.pc {
  background: linear-gradient(170deg, #1a1a1a 0%, #141414 100%);
  border: 1px solid rgba(201,168,76,.16);
  border-radius: var(--radius-card);
  padding: 36px 28px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  box-shadow: 0 6px 28px rgba(0,0,0,.45);
  /* scroll-reveal */
  opacity: 0;
  transform: translateY(52px) scale(0.97);
  transition:
    opacity      0.55s cubic-bezier(.22,.68,0,1.05),
    transform    0.55s cubic-bezier(.22,.68,0,1.05),
    border-color 0.55s ease,
    box-shadow   0.55s ease;
}
.pc.pc-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Animated border — pseudo rings that expand on hover */
.pc::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-card);
  border: 1.5px solid transparent;
  background: linear-gradient(135deg, rgba(201,168,76,.0), rgba(201,168,76,.55), rgba(201,168,76,.0)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
  z-index: 0;
}
.pc.pc-visible:hover::before { opacity: 1; }

/* Bottom gold sweep on hover */
.pc::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-lt), transparent);
  transition: width 0.55s ease, left 0.55s ease;
  pointer-events: none;
  z-index: 1;
}
.pc.pc-visible:hover {
  transform: translateY(-12px) scale(1.015);
  border-color: rgba(201,168,76,.6);
  box-shadow:
    0 28px 60px rgba(0,0,0,.65),
    0 0 0 1px rgba(201,168,76,.22),
    0 0 48px rgba(201,168,76,.14),
    0 0 90px rgba(201,168,76,.05);
}
.pc.pc-visible:hover::after { width: 100%; left: 0; }

/* ---- Featured card ---- */
.pc--featured {
  background: linear-gradient(160deg, #211800 0%, #181510 55%, #141414 100%);
  border-color: rgba(201,168,76,.5);
  border-radius: var(--radius-card);
  box-shadow:
    0 12px 44px rgba(0,0,0,.55),
    0 0 0 1px rgba(201,168,76,.2),
    0 0 50px rgba(201,168,76,.07);
}
.pc--featured.pc-visible:hover {
  transform: translateY(-14px) scale(1.02);
  box-shadow:
    0 34px 68px rgba(0,0,0,.68),
    0 0 0 1px rgba(201,168,76,.42),
    0 0 64px rgba(201,168,76,.18),
    0 0 100px rgba(201,168,76,.06);
}

/* ---- Badge pill — gentle pulse every few seconds ---- */
@keyframes pillPulse {
  0%, 80%, 100% { transform: scale(1);    box-shadow: 0 3px 10px rgba(201,168,76,.25); }
  86%           { transform: scale(1.07); box-shadow: 0 5px 18px rgba(201,168,76,.45); }
  93%           { transform: scale(0.98); box-shadow: 0 2px 6px  rgba(201,168,76,.18); }
}
.pc-pill {
  display: inline-block;
  background: rgba(201,168,76,.10);
  border: 1px solid rgba(201,168,76,.28);
  color: var(--gold-lt);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
  white-space: nowrap;
  flex-shrink: 0;
  animation: none;
}
.pc.pc-visible .pc-pill {
  animation: pillPulse 5s ease-in-out infinite;
  animation-play-state: paused;
}
.pc.pc-visible:hover .pc-pill {
  animation-play-state: running;
}
.pc-pill--hot {
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  border-color: transparent;
  color: var(--black);
  box-shadow: 0 4px 14px rgba(201,168,76,.4);
}

/* ---- Circular icon bubble ---- */
.pc-icon-wrap {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,168,76,.20) 0%, rgba(201,168,76,.07) 100%);
  border: 1.5px solid rgba(201,168,76,.38);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 16px;
  box-shadow: 0 0 16px rgba(201,168,76,.10);
  transition: transform 0.55s cubic-bezier(.22,.68,0,1.2),
              box-shadow 0.55s ease,
              border-color 0.55s ease;
}
.pc.pc-visible:hover .pc-icon-wrap {
  transform: scale(1.14);
  border-color: rgba(201,168,76,.8);
  box-shadow: 0 0 32px rgba(201,168,76,.32);
}
.pc-icon {
  font-size: 1.65rem;
  line-height: 1;
  display: block;
}

/* ---- Gold divider line ---- */
.pc-divider {
  width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
  margin-bottom: 16px;
  flex-shrink: 0;
  opacity: 0.55;
}

/* ---- Title block ---- */
.pc-top {
  margin-bottom: 10px;
  width: 100%;
}
.pc-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.32rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  text-align: center;
  letter-spacing: normal;
  text-shadow: 0 1px 6px rgba(0,0,0,.45);
}
.pc--featured .pc-name {
  color: var(--gold-lt);
  text-shadow: 0 1px 8px rgba(201,168,76,.22);
}

/* ---- Price block ---- */
.pc-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  padding: 16px 0 18px;
  margin-bottom: 4px;
  border-top: 1px solid rgba(201,168,76,.12);
  border-bottom: 1px solid rgba(201,168,76,.12);
}
.pc-tagline {
  font-family: var(--font-poppins);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-lt);
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.2px;
}

/* ---- Feature list ---- */
.pc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 4px;
  margin-bottom: 26px;
  flex: 1;
  width: 100%;
  text-align: left;
}
.pc-features li {
  font-size: 0.82rem;
  color: rgba(244,244,240,.68);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.pc-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  top: 1px;
}

/* ---- Button ---- */
.pc-btn {
  width: 100%;
  padding: 14px 24px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  font-family: var(--font-poppins);
  border: none;
  margin-top: auto;
  flex-shrink: 0;
  min-height: 48px;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

/* Auto-repeating premium shine sweep every ~4s */
@keyframes btnAutoShine {
  0%        { left: -100%; }
  18%, 100% { left: 160%;  }
}
.pc-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 55%; height: 100%;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.32) 50%, transparent 80%);
  animation: btnAutoShine 4s ease-in-out infinite;
  animation-play-state: paused;
  pointer-events: none;
}
.pc:hover .pc-btn::before {
  animation-play-state: running;
}
/* On hover: immediate manual sweep overrides the auto animation */
.pc-btn:hover::before {
  animation: none;
  left: 160%;
  transition: left 0.5s ease;
}

.pc-btn--gold {
  background: linear-gradient(90deg, #b8902e 0%, var(--gold) 40%, var(--gold-lt) 70%, #b8902e 100%);
  background-size: 200% auto;
  color: var(--black);
  box-shadow: 0 4px 18px rgba(201,168,76,.35);
  transition: background-position 0.5s ease, transform 0.28s ease,
              box-shadow 0.28s ease, filter 0.28s ease;
}
.pc-btn--gold:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(201,168,76,.5), 0 2px 8px rgba(0,0,0,.3);
  filter: brightness(1.06);
}
.pc-btn--gold:active { transform: translateY(-1px); }
/* =====================================================
   WEDDING / PRE-WEDDING / ANNIVERSARY BOOKING POPUP
   ===================================================== */
.wpa-popup {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 16px;
  overflow-y: auto;
}
.wpa-popup.wpa-popup--open {
  opacity: 1;
  pointer-events: all;
}
.wpa-popup__box {
  position: relative;
  background: linear-gradient(160deg, #1c1a14 0%, #141414 55%, #111 100%);
  border: 1px solid rgba(201,168,76,.38);
  border-radius: var(--radius-card);
  width: min(780px, 96vw);
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
  padding: 36px 36px 32px;
  box-shadow:
    0 32px 80px rgba(0,0,0,.75),
    0 0 0 1px rgba(201,168,76,.12),
    0 0 60px rgba(201,168,76,.07);
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(.22,.68,0,1.12), opacity 0.45s ease;
  scrollbar-width: thin;
  scrollbar-color: rgba(201,168,76,.3) transparent;
}
.wpa-popup--open .wpa-popup__box {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.wpa-popup__box::-webkit-scrollbar { width: 5px; }
.wpa-popup__box::-webkit-scrollbar-track { background: transparent; }
.wpa-popup__box::-webkit-scrollbar-thumb { background: rgba(201,168,76,.3); border-radius: 4px; }
.wpa-popup__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(201,168,76,.18);
  position: relative;
}
.wpa-popup__head-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,168,76,.22) 0%, rgba(201,168,76,.08) 100%);
  border: 1.5px solid rgba(201,168,76,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 0 18px rgba(201,168,76,.15);
}
.wpa-popup__title {
  font-family: var(--font-poppins);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin: 0;
}
.wpa-popup__sub {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
.wpa-popup__close {
  position: absolute;
  top: 0; right: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: var(--white);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  margin-left: auto;
}
.wpa-popup__close:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.wpa-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.wpa-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.wpa-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.wpa-field--full { grid-column: 1 / -1; }
.wpa-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(244,244,240,.72);
}
.wpa-req { color: var(--gold); }
.wpa-opt {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.68rem;
  color: var(--gray);
}
.wpa-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.wpa-icon {
  position: absolute;
  left: 14px;
  font-size: 1rem;
  line-height: 1;
  pointer-events: none;
  z-index: 1;
  color: rgba(201,168,76,.65);
}
.wpa-icon--top { top: 14px; align-self: flex-start; }
.wpa-input {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 13px 16px 13px 42px;
  font-family: var(--font-poppins);
  font-size: 0.87rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
  appearance: none;
  -webkit-appearance: none;
  line-height: 1.5;
}
.wpa-input::placeholder { color: rgba(120,120,120,.8); }
.wpa-input:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,.04);
  box-shadow: 0 0 0 3px rgba(201,168,76,.1);
}
.wpa-input.wpa-input--error {
  border-color: #e05c5c;
  box-shadow: 0 0 0 3px rgba(224,92,92,.1);
}
.wpa-input[type="date"],
.wpa-input[type="time"] { color-scheme: dark; }
.wpa-select-wrap::after {
  content: '\25BE';
  position: absolute;
  right: 14px;
  color: var(--gold);
  font-size: 0.85rem;
  pointer-events: none;
  z-index: 1;
}
.wpa-select { padding-right: 38px; cursor: pointer; }
.wpa-select option { background: #1c1c1c; color: var(--white); }
.wpa-textarea { resize: vertical; min-height: 90px; padding-top: 13px; align-self: stretch; }
.wpa-textarea-wrap { align-items: flex-start; }
.wpa-err {
  font-size: 0.7rem;
  color: #e05c5c;
  min-height: 14px;
  padding-left: 2px;
}
.wpa-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 6px;
  flex-wrap: wrap;
}
.wpa-btn {
  padding: 13px 28px;
  font-family: var(--font-poppins);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease;
  position: relative;
  overflow: hidden;
}
.wpa-btn--cancel {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.2);
  color: rgba(244,244,240,.65);
}
.wpa-btn--cancel:hover {
  border-color: rgba(255,255,255,.45);
  color: var(--white);
  transform: translateY(-2px);
}
.wpa-btn--book {
  background: linear-gradient(90deg, #b8902e 0%, var(--gold) 40%, var(--gold-lt) 70%, #b8902e 100%);
  background-size: 200% auto;
  color: var(--black);
  box-shadow: 0 4px 18px rgba(201,168,76,.35);
  min-width: 140px;
}
.wpa-btn--book::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 55%; height: 100%;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.3) 50%, transparent 80%);
  transition: left 0.5s ease;
  pointer-events: none;
}
.wpa-btn--book:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(201,168,76,.5);
}
.wpa-btn--book:hover::before { left: 160%; }
.wpa-btn--book:active { transform: translateY(-1px); }
@media (max-width: 640px) {
  .wpa-popup__box { padding: 24px 20px 22px; }
  .wpa-row { grid-template-columns: 1fr; gap: 14px; }
  .wpa-popup__title { font-size: 1.15rem; }
  .wpa-actions { justify-content: stretch; }
  .wpa-btn { flex: 1; text-align: center; }
}
@media (max-width: 400px) {
  .wpa-popup__box { padding: 20px 14px 18px; }
  .wpa-popup__head { gap: 10px; }
  .wpa-popup__head-icon { width: 42px; height: 42px; font-size: 1.2rem; }
  .wpa-input { font-size: 0.82rem; padding: 11px 14px 11px 38px; }
}


/* ---- Keyframes ---- */
@keyframes heroSlideLeft {
  from { opacity: 0; transform: translateX(-52px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes heroSlideRight {
  from { opacity: 0; transform: translateX(52px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroZoomIn {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}

/* ---- Initial hidden state — prevents flash before animation fires ---- */
.hero-anim-tagline,
.hero-anim-title,
.hero-anim-sub,
.hero-anim-btns { opacity: 0; }

/* ---- Animations with staggered delays ---- */
.hero-anim-tagline {
  animation: heroFadeUp 0.65s cubic-bezier(.22,.68,0,1.2) 0.15s forwards;
}
.hero-anim-title {
  animation: heroSlideLeft 0.75s cubic-bezier(.22,.68,0,1.1) 0.35s forwards;
}
.hero-anim-sub {
  animation: heroSlideRight 0.65s cubic-bezier(.22,.68,0,1.1) 0.60s forwards;
}
.hero-anim-btns {
  animation: heroZoomIn 0.60s cubic-bezier(.34,1.38,.64,1) 0.85s forwards;
}

/* ---- Scroll indicator refinement ---- */
.scroll-down {
  /* override — remove the old hover scale-down from hero-bg rule interference */
  z-index: 3;
}

/* Pulse ring around scroll indicator */
.scroll-down::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 20px;
  border: 1px solid rgba(201,168,76,.18);
  animation: scrollPulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes scrollPulse {
  0%   { opacity: .6; transform: scale(1); }
  70%  { opacity: 0;  transform: scale(1.35); }
  100% { opacity: 0;  transform: scale(1.35); }
}

/* Respect prefers-reduced-motion — disable ALL non-essential animations */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-anim-tagline,
  .hero-anim-title,
  .hero-anim-sub,
  .hero-anim-btns,
  .hero-anim-social {
    opacity: 1;
    animation: none;
  }
  .scroll-down::before { animation: none; }
  .hero-bg { will-change: auto; }
  .service-card, .gallery-item, .pc { will-change: auto; }
}

/* =====================================================
   ABOUT SECTION — Scroll Animations
   ===================================================== */

/* ---- Slide-in initial states ---- */
.about-slide-left,
.about-slide-right {
  opacity: 0;
  transition:
    opacity  0.72s cubic-bezier(.22,.68,0,1.05),
    transform 0.72s cubic-bezier(.22,.68,0,1.05);
}
.about-slide-left  { transform: translateX(-56px); }
.about-slide-right { transform: translateX(56px); }

/* Text side gets a slightly longer delay — fires after image */
.about-slide-right { transition-delay: 0.15s; }

/* ---- Visible state (class toggled by JS) ---- */
.about-slide-left.about-visible,
.about-slide-right.about-visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---- Floating image effect (runs once visible) ---- */
@keyframes aboutFloat {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}
/* Float runs on the inner image, not the wrapper, to avoid conflicting with slide-in */
.about-img-wrap.about-visible .about-img {
  animation: aboutFloat 5.5s ease-in-out 0.8s infinite;
}
.about-img-wrap.about-visible:hover .about-img {
  animation-play-state: paused;
  filter: grayscale(0%);
  /* scale applied via parent wrapper hover to avoid transform conflict with float */
}

/* ---- Golden shine sweep on the Explore Services button ---- */
.about-btn-shine {
  position: relative;
  overflow: hidden;
}
.about-btn-shine::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 55%; height: 100%;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255,255,255,.32) 45%,
    rgba(255,255,255,.12) 55%,
    transparent 100%
  );
  transition: left 0.6s ease;
  pointer-events: none;
}
.about-btn-shine:hover::after { left: 160%; }

/* ---- Stat card glow on hover ---- */
.stat {
  padding: 10px 14px;
  border-radius: 8px;
  transition: box-shadow 0.4s ease, background 0.4s ease;
  cursor: default;
}
/* ---- Stat: Projects card — premium interactive ---- */
.stat--link {
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(201,168,76,.35);
  background: rgba(201,168,76,.04);
  padding: 10px 14px;          /* same as .stat — keeps both cards identical height */
  border-radius: 10px;
  transition:
    transform    0.45s cubic-bezier(.22,.68,0,1.15),
    box-shadow   0.45s ease,
    border-color 0.45s ease,
    background   0.45s ease;
  overflow: visible;           /* arrow sits inside padding, no clip needed */
}

/* Hover: 3D lift + gold glow */
.stat--link:hover {
  transform: translateY(-6px) rotateX(3deg) scale(1.04);
  border-color: rgba(201,168,76,.75);
  background: rgba(201,168,76,.08);
  box-shadow:
    0 12px 32px rgba(0,0,0,.55),
    0 0 0 1px rgba(201,168,76,.25),
    0 0 28px rgba(201,168,76,.18);
}
.stat--link:hover span[data-target] {
  text-shadow: 0 0 22px rgba(201,168,76,.6);
}

/* Focus ring for keyboard nav */
.stat--link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Bottom-right arrow — hidden at rest, slides in on hover */
.stat-arrow {
  position: absolute;
  bottom: 6px;
  right: 8px;
  font-size: 0.75rem;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(.22,.68,0,1.3);
  line-height: 1;
  pointer-events: none;
}
.stat--link:hover .stat-arrow {
  opacity: 1;
  transform: translateX(0);
}
.stat:not(.stat--link):hover {
  background: rgba(201,168,76,.06);
  box-shadow:
    0 0 0 1px rgba(201,168,76,.22),
    0 4px 20px rgba(201,168,76,.14);
}
.stat span {
  transition: text-shadow 0.4s ease;
}
.stat:hover span {
  text-shadow: 0 0 16px rgba(201,168,76,.45);
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .about-slide-left,
  .about-slide-right {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
  .about-img-wrap.about-visible .about-img { animation: none; }
  .service-card, .gallery-item, .pc { opacity: 1; transform: none; }
  .pc-pill, .pc-btn::before { animation: none; }
  .csc, .contact-form { opacity: 1; animation: none; }
  .csc-avail-dot { animation: none; }
}

/* =====================================================
   RESPONSIVE AUDIT — full consolidated overrides
   Covers: 320 · 375 · 425 · 480 · 600 · 768 · 1024px
   ===================================================== */

/* ── Shared: reduce section padding on smaller screens ── */
@media (max-width: 768px) {
  .section { padding: 80px 0; }
}
@media (max-width: 480px) {
  .section { padding: 64px 0; }
}
@media (max-width: 375px) {
  .section { padding: 56px 0; }
}

/* ── NAVBAR ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .navbar        { padding: 18px 5%; }
  .navbar.scrolled { padding: 12px 5%; }
  .nav-logo      { font-size: 1.2rem; }
  /* Ensure hamburger is always visible on mobile */
  .nav-toggle    { display: flex; z-index: 1001; }
}
@media (max-width: 375px) {
  .nav-logo { font-size: 1.08rem; }
}

/* ── HERO ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero          { min-height: 100dvh; height: 100dvh; }   /* dynamic viewport on mobile browsers */
  .hero-content  { padding: 0 24px; max-width: 100%; }
  .hero-sub      { letter-spacing: 2px; font-size: 0.65rem; }
  .hero-tagline  { letter-spacing: 3px; }
  .scroll-down   { bottom: 24px; }
  /* Hero social: stacked on tablet */
  .hero-social-icons  { flex-direction: column; align-items: stretch; gap: 9px; width: 100%; max-width: 280px; }
  .hsoc               { justify-content: flex-start; width: 100%; padding: 10px 18px; border-radius: 12px; }
}
@media (max-width: 480px) {
  .hero-title    { font-size: clamp(2.4rem, 11vw, 3.6rem); }
  .hero-btns     { gap: 10px; }
  .btn           { padding: 11px 22px; font-size: 0.7rem; }

  /* ── Hero social: stacked full-width buttons on mobile ── */
  .hero-social        { margin-top: 22px; gap: 12px; }
  .hero-social-icons  {
    flex-direction: column;
    align-items: stretch;
    gap: 9px;
    width: 100%;
    max-width: 260px;
  }
  .hsoc {
    justify-content: flex-start;
    width: 100%;
    padding: 11px 18px;
    font-size: 0.72rem;
    gap: 11px;
    border-radius: 12px;
    white-space: nowrap;
    background: rgba(14,12,8,.88);
    border: 1px solid rgba(201,168,76,.28);
    box-shadow: 0 2px 12px rgba(0,0,0,.35), 0 0 0 1px rgba(201,168,76,.06) inset;
    transition: border-color 0.35s ease, background 0.35s ease,
                color 0.35s ease, transform 0.25s ease, box-shadow 0.35s ease;
  }
  .hsoc svg   { width: 16px; height: 16px; flex-shrink: 0; }
  .hsoc:active {
    transform: scale(0.97);
    background: rgba(201,168,76,.10);
    border-color: var(--gold);
    box-shadow: 0 4px 18px rgba(201,168,76,.22), 0 0 0 1px rgba(201,168,76,.18) inset;
  }
}
@media (max-width: 390px) {
  .hero-title         { font-size: clamp(2.1rem, 11vw, 3rem); }
  .hero-social        { margin-top: 18px; gap: 10px; }
  .hero-social-icons  { max-width: 240px; gap: 8px; }
  .hsoc               { padding: 10px 16px; font-size: 0.7rem; gap: 10px; }
  .hsoc svg           { width: 15px; height: 15px; }
}
@media (max-width: 375px) {
  .hero-title    { font-size: clamp(2rem, 12vw, 2.8rem); }
  .hero-sub      { display: none; }
  .hero-tagline  { font-size: 0.58rem; letter-spacing: 2.5px; margin-bottom: 10px; }
  .hero-btns     { flex-direction: column; align-items: center; gap: 10px; }
  .btn           { width: 100%; max-width: 220px; text-align: center; padding: 11px 18px; }
}
@media (max-width: 320px) {
  .hero-title    { font-size: 1.9rem; }
  .hero-tagline  { font-size: 0.54rem; letter-spacing: 2px; }
  .hero-social   { display: none; }
  .scroll-down   { display: none; }
}

/* ── ABOUT ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .about-grid    { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap { max-height: 380px; aspect-ratio: 3/2; overflow: hidden; }
  .about-badge   { font-size: 0.6rem; padding: 10px 16px; position: static; margin-top: 10px; display: inline-block; bottom: auto; right: auto; }
  .about-stats   { gap: 16px; }
}
@media (max-width: 480px) {
  .about-img-wrap   { max-height: 280px; }
  .about-badge      { position: static; margin-top: 12px; display: inline-block; bottom: auto; right: auto; }
  .about-img-wrap::before { display: none; } /* gold left line clips on mobile */
  .about-text p     { font-size: 0.88rem; }
  .stat span        { font-size: 2rem; }
  .about-stats      { gap: 12px; }
}
@media (max-width: 375px) {
  .about-img-wrap   { max-height: 220px; overflow: hidden; }
  .stat span        { font-size: 1.75rem; }
}


/* -- SERVICES ----------------------------------------- */
@media (max-width: 1024px) {
  .services-grid    { grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
  .sc-img-wrap      { height: 180px; }
  .sc-body          { padding: 22px 20px 24px; }
}
/* Tablet: 2 cards per row */
@media (max-width: 767px) and (min-width: 481px) {
  .services-grid    { grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 32px; }
  .sc-img-wrap      { height: 150px; }
  .sc-body          { padding: 16px 14px 18px; flex: none; gap: 0; }
  .service-card     { height: auto; }
  .service-card p   { margin-top: 0; }
  .service-card:hover { transform: translateY(-4px) scale(1.01); }
  .service-icon     { font-size: 1.2rem; margin-bottom: 8px; }
  .service-card h3  { font-size: 0.95rem; line-height: 1.35; margin-bottom: 6px; }
  .service-card p   { font-size: 0.78rem; line-height: 1.65; padding-top: 0; }
}
/* Mobile: 1 card per row, full width */
@media (max-width: 480px) {
  .services-grid    { grid-template-columns: 1fr; gap: 14px; margin-top: 28px; }
  .sc-img-wrap      { height: 180px; }
  .sc-body          { padding: 18px 16px 20px; flex: none; gap: 0; }
  .service-card     { height: auto; }
  .service-card p   { margin-top: 0; }
  .service-card:hover { transform: translateY(-4px) scale(1.01); }
  .service-icon     { font-size: 1.35rem; margin-bottom: 10px; }
  .service-card h3  { font-size: 1.05rem; line-height: 1.35; margin-bottom: 8px; }
  .service-card p   { font-size: 0.82rem; line-height: 1.7; padding-top: 0; }
}
@media (max-width: 375px) {
  .sc-img-wrap      { height: 160px; }
  .sc-body          { padding: 16px 14px 18px; }
  .service-icon     { font-size: 1.25rem; margin-bottom: 8px; }
  .service-card h3  { font-size: 1rem; margin-bottom: 6px; }
  .service-card p   { font-size: 0.8rem; line-height: 1.65; }
}
@media (max-width: 320px) {
  .sc-img-wrap      { height: 140px; }
  .sc-body          { padding: 14px 12px 16px; }
  .service-card h3  { font-size: 0.95rem; }
  .service-card p   { font-size: 0.76rem; }
}
/* ── PRICING ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pricing-grid     { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 640px) {
  .pricing-grid     { grid-template-columns: 1fr; gap: 16px; }
  .pc               { padding: 28px 20px 26px; border-radius: var(--radius-card); }
  .pricing-intro    { font-size: 0.86rem; margin-bottom: 40px; }
  /* Disable heavy 3D hover on touch devices */
  .pc.pc-visible:hover { transform: translateY(-6px) scale(1.01); }
}
@media (max-width: 375px) {
  .pc               { padding: 24px 16px 22px; }
  .pc-name          { font-size: 1.1rem; }
  .pc-features li   { font-size: 0.78rem; }
  .pc-btn           { padding: 13px 18px; font-size: 0.7rem; }
}

/* ── CONTACT ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .contact-heading        { max-width: 100%; padding-bottom: 28px; }
  .contact-desc           { max-width: 100%; font-size: 0.86rem; }
  .contact-grid           { grid-template-columns: 1fr; gap: 20px; }
  .contact-form           { padding: 26px 20px; gap: 16px; }
  .contact-sidebar-label  { font-size: 1.1rem; }
  .cf-actions             { flex-direction: column; }
}
@media (max-width: 480px) {
  .contact-form           { padding: 22px 16px; }
  .contact-form input,
  .contact-form textarea,
  .contact-form select    { padding: 12px 14px; font-size: 0.84rem; }
  .cf-submit              { padding: 14px 20px; font-size: 0.78rem; }
  .csc                    { padding: 20px 16px; }
  .csc-title              { font-size: 1rem; }
  .csc-list li            { font-size: 0.8rem; }
}
@media (max-width: 375px) {
  .contact-form           { padding: 18px 14px; }
  .contact-form input,
  .contact-form textarea,
  .contact-form select    { padding: 11px 12px; font-size: 0.82rem; }
  .cf-label               { font-size: 0.65rem; }
}

/* ── FOOTER ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ft-grid          { grid-template-columns: 1fr 1fr; gap: 32px; padding-bottom: 48px; }
  .ft-brand         { grid-column: 1 / -1; }
  .ft-tagline       { max-width: 100%; }
}
@media (max-width: 600px) {
  .ft-grid          { grid-template-columns: 1fr; gap: 28px; padding-bottom: 40px; }
  .ft-brand         { grid-column: auto; }
  .footer           { padding-top: 56px; padding-bottom: 24px; }
  .ft-bottom        { flex-direction: column; align-items: center; text-align: center; gap: 6px; }
  .ft-tagline       { font-size: 0.8rem; }
}
@media (max-width: 375px) {
  .ft-logo          { font-size: 1.3rem; }
  .ft-heading       { font-size: 0.6rem; }
  .ft-links a       { font-size: 0.78rem; }
  .ft-contact li    { font-size: 0.76rem; }
  .ft-copy,
  .ft-credit        { font-size: 0.67rem; }
  .btt              { bottom: 16px; right: 16px; width: 38px; height: 38px; font-size: 1.2rem; }
}

/* ── GLOBAL: prevent any horizontal overflow ─────────── */
@media (max-width: 768px) {
  .container { width: 92%; }
  .ft-links  { padding-left: 0; }
  .gallery-stats { overflow-x: auto; }
}
@media (max-width: 375px) {
  .container { width: 94%; }
}


/* =====================================================
   CINEMATIC VIDEO RECORDING & EDITING BOOKING POPUP
   ===================================================== */
.cinematic-popup {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 16px;
  overflow-y: auto;
}
.cinematic-popup.cinematic-popup--open {
  opacity: 1;
  pointer-events: all;
}
.cinematic-popup__box {
  position: relative;
  background: linear-gradient(160deg, #1c1a14 0%, #141414 55%, #111 100%);
  border: 1px solid rgba(201,168,76,.38);
  border-radius: var(--radius-card);
  width: min(780px, 96vw);
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  padding: 36px 36px 32px;
  box-shadow:
    0 32px 80px rgba(0,0,0,.75),
    0 0 0 1px rgba(201,168,76,.12),
    0 0 60px rgba(201,168,76,.07);
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(.22,.68,0,1.12), opacity 0.45s ease;
  scrollbar-width: thin;
  scrollbar-color: rgba(201,168,76,.3) transparent;
}
.cinematic-popup--open .cinematic-popup__box {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.cinematic-popup__box::-webkit-scrollbar { width: 5px; }
.cinematic-popup__box::-webkit-scrollbar-track { background: transparent; }
.cinematic-popup__box::-webkit-scrollbar-thumb { background: rgba(201,168,76,.3); border-radius: 4px; }

.cinematic-popup__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(201,168,76,.18);
  position: relative;
}
.cinematic-popup__head-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,168,76,.22) 0%, rgba(201,168,76,.08) 100%);
  border: 1.5px solid rgba(201,168,76,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 0 18px rgba(201,168,76,.15);
}
.cinematic-popup__title {
  font-family: var(--font-poppins);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin: 0;
}
.cinematic-popup__sub {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
.cinematic-popup__close {
  position: absolute;
  top: 0; right: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: var(--white);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  margin-left: auto;
}
.cinematic-popup__close:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.cinematic-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cinematic-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cinematic-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cinematic-field--full { grid-column: 1 / -1; }
.cinematic-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(244,244,240,.72);
}
.cinematic-req { color: var(--gold); }
.cinematic-opt {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.68rem;
  color: var(--gray);
}
.cinematic-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.cinematic-icon {
  position: absolute;
  left: 14px;
  font-size: 1rem;
  line-height: 1;
  pointer-events: none;
  z-index: 1;
  color: rgba(201,168,76,.65);
}
.cinematic-icon--top { top: 14px; align-self: flex-start; }
.cinematic-input {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 13px 16px 13px 42px;
  font-family: var(--font-poppins);
  font-size: 0.87rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
  appearance: none;
  -webkit-appearance: none;
  line-height: 1.5;
}
.cinematic-input::placeholder { color: rgba(120,120,120,.8); }
.cinematic-input:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,.04);
  box-shadow: 0 0 0 3px rgba(201,168,76,.1);
}
.cinematic-input.cinematic-input--error {
  border-color: #e05c5c;
  box-shadow: 0 0 0 3px rgba(224,92,92,.1);
}
.cinematic-input[type="date"],
.cinematic-input[type="time"] { color-scheme: dark; }
.cinematic-select-wrap::after {
  content: '\25BE';
  position: absolute;
  right: 14px;
  color: var(--gold);
  font-size: 0.85rem;
  pointer-events: none;
  z-index: 1;
}
.cinematic-select { padding-right: 38px; cursor: pointer; }
.cinematic-select option { background: #1c1c1c; color: var(--white); }
.cinematic-textarea { resize: vertical; min-height: 90px; padding-top: 13px; align-self: stretch; }
.cinematic-textarea-wrap { align-items: flex-start; }
.cinematic-err {
  font-size: 0.7rem;
  color: #e05c5c;
  min-height: 14px;
  padding-left: 2px;
}

/* Budget note */
.cinematic-budget-note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,.07);
  border: 1px solid rgba(201,168,76,.22);
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 0.84rem;
  color: rgba(244,244,240,.75);
}
.cinematic-budget-icon { font-size: 1.1rem; flex-shrink: 0; }
.cinematic-budget-note strong { color: var(--gold-lt); font-weight: 600; }

.cinematic-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 6px;
  flex-wrap: wrap;
}
.cinematic-btn {
  padding: 13px 28px;
  font-family: var(--font-poppins);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease;
  position: relative;
  overflow: hidden;
}
.cinematic-btn--cancel {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.2);
  color: rgba(244,244,240,.65);
}
.cinematic-btn--cancel:hover {
  border-color: rgba(255,255,255,.45);
  color: var(--white);
  transform: translateY(-2px);
}
.cinematic-btn--book {
  background: linear-gradient(90deg, #b8902e 0%, var(--gold) 40%, var(--gold-lt) 70%, #b8902e 100%);
  background-size: 200% auto;
  color: var(--black);
  box-shadow: 0 4px 18px rgba(201,168,76,.35);
  min-width: 140px;
}
.cinematic-btn--book::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 55%; height: 100%;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.3) 50%, transparent 80%);
  transition: left 0.5s ease;
  pointer-events: none;
}
.cinematic-btn--book:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(201,168,76,.5);
}
.cinematic-btn--book:hover::before { left: 160%; }
.cinematic-btn--book:active { transform: translateY(-1px); }

@media (max-width: 640px) {
  .cinematic-popup__box { padding: 24px 20px 22px; }
  .cinematic-row { grid-template-columns: 1fr; gap: 14px; }
  .cinematic-popup__title { font-size: 1.15rem; }
  .cinematic-actions { justify-content: stretch; }
  .cinematic-btn { flex: 1; text-align: center; }
}
@media (max-width: 400px) {
  .cinematic-popup__box { padding: 20px 14px 18px; }
  .cinematic-popup__head { gap: 10px; }
  .cinematic-popup__head-icon { width: 42px; height: 42px; font-size: 1.2rem; }
  .cinematic-input { font-size: 0.82rem; padding: 11px 14px 11px 38px; }
}

/* =====================================================
   CINEMATIC POPUP — Pricing Information Card
   ===================================================== */
.cinematic-pricing-card {
  background: linear-gradient(135deg, rgba(201,168,76,.10) 0%, rgba(201,168,76,.04) 100%);
  border: 1px solid rgba(201,168,76,.32);
  border-radius: 12px;
  padding: 20px 22px 16px;
  position: relative;
  overflow: hidden;
}
.cinematic-pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle at top left, rgba(201,168,76,.18) 0%, transparent 70%);
  pointer-events: none;
}
.cinematic-pricing-card__head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,168,76,.2);
}
.cinematic-pricing-card__icon { font-size: 1.1rem; line-height: 1; }
.cinematic-pricing-card__title {
  font-family: var(--font-poppins);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-lt);
}
.cinematic-pricing-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}
.cinematic-pricing-card__list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.cinematic-pricing-card__service {
  font-size: 0.82rem;
  color: rgba(244,244,240,.78);
  font-weight: 500;
  flex-shrink: 0;
}
.cinematic-pricing-card__price {
  font-family: var(--font-poppins);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--gold-lt);
  white-space: nowrap;
  text-align: right;
}
.cinematic-pricing-card__note {
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(201,168,76,.7);
  display: block;
  text-align: right;
  margin-top: 2px;
}
.cinematic-pricing-card__disclaimer {
  font-size: 0.72rem;
  color: rgba(244,244,240,.45);
  line-height: 1.6;
  border-top: 1px solid rgba(201,168,76,.12);
  padding-top: 10px;
  margin: 0;
  font-style: italic;
}


/* =====================================================
   TRAVEL REEL & VIDEO EDITING BOOKING POPUP
   ===================================================== */
.travel-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.travel-popup--open {
  display: flex;
}
.travel-popup__box {
  position: relative;
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  overflow-y: auto;
  background: linear-gradient(160deg, #1c1a14 0%, #111 100%);
  border: 1px solid rgba(201,168,76,.38);
  border-radius: 18px;
  padding: 32px 28px 28px;
  box-shadow: 0 24px 80px rgba(0,0,0,.75), 0 0 0 1px rgba(201,168,76,.10);
  scrollbar-width: thin;
  scrollbar-color: rgba(201,168,76,.3) transparent;
}
.travel-popup__box::-webkit-scrollbar { width: 5px; }
.travel-popup__box::-webkit-scrollbar-track { background: transparent; }
.travel-popup__box::-webkit-scrollbar-thumb { background: rgba(201,168,76,.3); border-radius: 4px; }

.travel-popup__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(201,168,76,.18);
}
.travel-popup__head-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}
.travel-popup__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #c9a84c;
  margin: 0 0 2px;
}
.travel-popup__sub {
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin: 0;
}
.travel-popup__close {
  margin-left: auto;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.7);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s, color .2s;
}
.travel-popup__close:hover { background: rgba(201,168,76,.18); color: #c9a84c; }

/* Form layout */
.travel-form { display: flex; flex-direction: column; gap: 16px; }
.travel-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.travel-field { display: flex; flex-direction: column; gap: 5px; }
.travel-field--full { grid-column: 1 / -1; }

.travel-label {
  font-family: 'Poppins', sans-serif;
  font-size: .78rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  letter-spacing: .02em;
}
.travel-req { color: #e05c5c; margin-left: 2px; }
.travel-opt { color: rgba(255,255,255,.4); font-size: .72rem; font-weight: 400; }

.travel-input-wrap {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,168,76,.22);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.travel-input-wrap:focus-within {
  border-color: rgba(201,168,76,.6);
  box-shadow: 0 0 0 3px rgba(201,168,76,.10);
}
.travel-select-wrap { cursor: pointer; }
.travel-textarea-wrap { align-items: flex-start; }

.travel-icon {
  padding: 0 10px;
  font-size: .95rem;
  color: rgba(201,168,76,.7);
  flex-shrink: 0;
  line-height: 1;
}
.travel-icon--top { padding-top: 11px; }

.travel-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: .85rem;
  padding: 10px 12px 10px 0;
  min-width: 0;
}
.travel-input::placeholder { color: rgba(255,255,255,.3); }
.travel-input option { background: #1c1a14; color: #fff; }
.travel-textarea { resize: vertical; min-height: 80px; padding-top: 10px; }

/* Date/time inputs */
.travel-input[type="date"],
.travel-input[type="time"] {
  color-scheme: dark;
  padding-right: 10px;
}

/* Error state */
.travel-input--error { border-color: #e05c5c !important; box-shadow: 0 0 0 3px rgba(224,92,92,.10) !important; }
.travel-err {
  font-family: 'Poppins', sans-serif;
  font-size: .72rem;
  color: #e05c5c;
  min-height: 14px;
}

/* Pricing card */
.travel-pricing-card {
  background: rgba(201,168,76,.07);
  border: 1px solid rgba(201,168,76,.28);
  border-radius: 12px;
  padding: 16px 18px 14px;
  position: relative;
  overflow: hidden;
}
.travel-pricing-card::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 70%);
  pointer-events: none;
}
.travel-pricing-card__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.travel-pricing-card__icon { font-size: 1.1rem; }
.travel-pricing-card__title {
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  color: #c9a84c;
  letter-spacing: .03em;
}
.travel-pricing-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.travel-pricing-card__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(201,168,76,.12);
}
.travel-pricing-card__list li:last-child { border-bottom: none; padding-bottom: 0; }
.travel-pricing-card__service {
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  color: rgba(255,255,255,.75);
}
.travel-pricing-card__price {
  font-family: 'Poppins', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  color: #c9a84c;
  white-space: nowrap;
  text-align: right;
}
.travel-pricing-card__note {
  display: block;
  font-size: .72rem;
  font-weight: 400;
  color: rgba(201,168,76,.7);
  margin-top: 2px;
}
.travel-pricing-card__disclaimer {
  font-family: 'Poppins', sans-serif;
  font-size: .72rem;
  color: rgba(255,255,255,.4);
  font-style: italic;
  margin: 10px 0 0;
}

/* Action buttons */
.travel-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 4px;
}
.travel-btn {
  font-family: 'Poppins', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  padding: 11px 26px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.travel-btn--cancel {
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.12);
}
.travel-btn--cancel:hover { background: rgba(255,255,255,.12); color: #fff; }
.travel-btn--book {
  background: linear-gradient(135deg, #c9a84c 0%, #e8c96a 50%, #c9a84c 100%);
  background-size: 200% auto;
  color: #111;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(201,168,76,.35);
}
.travel-btn--book:hover {
  background-position: right center;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201,168,76,.5);
}
.travel-btn--book:active { transform: translateY(0); }

/* Responsive */
@media (max-width: 640px) {
  .travel-popup__box { padding: 22px 16px 20px; }
  .travel-row { grid-template-columns: 1fr; }
  .travel-actions { flex-direction: column-reverse; }
  .travel-btn { width: 100%; text-align: center; }
}
@media (max-width: 400px) {
  .travel-popup__title { font-size: 1.05rem; }
  .travel-popup__head-icon { font-size: 1.6rem; }
}

/* =====================================================
   TRAVEL POPUP — Important Notice Card
   ===================================================== */
.travel-notice-card {
  background: linear-gradient(135deg, rgba(201,168,76,.13) 0%, rgba(201,168,76,.06) 100%);
  border: 1.5px solid rgba(201,168,76,.55);
  border-radius: 12px;
  padding: 18px 20px 16px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 20px rgba(201,168,76,.12),
    0 0 0 1px rgba(201,168,76,.08) inset;
}
.travel-notice-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, #c9a84c, #e8c96a, #c9a84c, transparent);
  border-radius: 12px 12px 0 0;
}
.travel-notice-card::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(201,168,76,.14) 0%, transparent 70%);
  pointer-events: none;
}
.travel-notice-card__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.travel-notice-card__icon {
  font-size: 1.15rem;
  line-height: 1;
  color: #c9a84c;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(201,168,76,.6));
}
.travel-notice-card__heading {
  font-family: 'Poppins', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  color: #e8c96a;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(201,168,76,.4);
}
.travel-notice-card__line {
  font-family: 'Poppins', sans-serif;
  font-size: .86rem;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  line-height: 1.65;
  margin: 0 0 7px;
  padding-left: 4px;
}
.travel-notice-card__line:last-child { margin-bottom: 0; }
.travel-notice-card__line strong {
  color: #e8c96a;
  font-weight: 700;
}

/* =====================================================
   CINEMATIC POPUP — Important Notice Card
   ===================================================== */
.cinematic-notice-card {
  background: linear-gradient(135deg, rgba(201,168,76,.13) 0%, rgba(201,168,76,.06) 100%);
  border: 1.5px solid rgba(201,168,76,.55);
  border-radius: 12px;
  padding: 18px 20px 16px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 20px rgba(201,168,76,.12),
    0 0 0 1px rgba(201,168,76,.08) inset;
}
.cinematic-notice-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, #c9a84c, #e8c96a, #c9a84c, transparent);
  border-radius: 12px 12px 0 0;
}
.cinematic-notice-card::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(201,168,76,.14) 0%, transparent 70%);
  pointer-events: none;
}
.cinematic-notice-card__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.cinematic-notice-card__icon {
  font-size: 1.15rem;
  line-height: 1;
  color: #c9a84c;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(201,168,76,.6));
}
.cinematic-notice-card__heading {
  font-family: 'Poppins', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  color: #e8c96a;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(201,168,76,.4);
}
.cinematic-notice-card__line {
  font-family: 'Poppins', sans-serif;
  font-size: .86rem;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  line-height: 1.65;
  margin: 0 0 7px;
  padding-left: 4px;
}
.cinematic-notice-card__line:last-child { margin-bottom: 0; }
.cinematic-notice-card__line strong {
  color: #e8c96a;
  font-weight: 700;
}


/* =====================================================
   BIRTHDAY SHOOT & EDITING BOOKING POPUP
   ===================================================== */
.bday-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.bday-popup--open {
  display: flex;
}
.bday-popup__box {
  position: relative;
  background: linear-gradient(160deg, #1c1a14 0%, #111 100%);
  border: 1px solid rgba(201,168,76,.38);
  border-radius: 18px;
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px 28px 28px;
  box-shadow: 0 8px 48px rgba(0,0,0,.72), 0 0 0 1px rgba(201,168,76,.12);
  font-family: 'Poppins', sans-serif;
  scrollbar-width: thin;
  scrollbar-color: rgba(201,168,76,.3) transparent;
}
.bday-popup__box::-webkit-scrollbar { width: 5px; }
.bday-popup__box::-webkit-scrollbar-track { background: transparent; }
.bday-popup__box::-webkit-scrollbar-thumb { background: rgba(201,168,76,.3); border-radius: 4px; }

/* Head */
.bday-popup__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(201,168,76,.2);
}
.bday-popup__head-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}
.bday-popup__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #f0e6c8;
  margin: 0 0 2px;
  line-height: 1.2;
}
.bday-popup__sub {
  font-size: .8rem;
  color: rgba(201,168,76,.8);
  margin: 0;
}
.bday-popup__close {
  margin-left: auto;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: #ccc;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s, color .2s;
}
.bday-popup__close:hover { background: rgba(201,168,76,.18); color: #c9a84c; }

/* Form layout */
.bday-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.bday-field { display: flex; flex-direction: column; gap: 5px; }
.bday-field--full { margin-bottom: 14px; }
.bday-label {
  font-size: .78rem;
  font-weight: 500;
  color: rgba(240,230,200,.75);
  letter-spacing: .02em;
}
.bday-req { color: #c9a84c; }
.bday-opt { color: rgba(201,168,76,.6); font-size: .72rem; }

.bday-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.bday-icon {
  position: absolute;
  left: 11px;
  font-size: .95rem;
  pointer-events: none;
  z-index: 1;
  line-height: 1;
}
.bday-icon--top { top: 11px; align-self: flex-start; }
.bday-input {
  width: 100%;
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(201,168,76,.22);
  border-radius: 10px;
  color: #f0e6c8;
  font-family: 'Poppins', sans-serif;
  font-size: .85rem;
  padding: 10px 12px 10px 36px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}
.bday-input:focus {
  border-color: rgba(201,168,76,.65);
  box-shadow: 0 0 0 3px rgba(201,168,76,.1);
}
.bday-input--error {
  border-color: #e05c5c !important;
  box-shadow: 0 0 0 3px rgba(224,92,92,.1) !important;
}
.bday-input::placeholder { color: rgba(240,230,200,.3); }
.bday-select { cursor: pointer; }
.bday-select-wrap::after {
  content: '▾';
  position: absolute;
  right: 12px;
  color: rgba(201,168,76,.7);
  pointer-events: none;
  font-size: .8rem;
}
.bday-textarea {
  resize: vertical;
  min-height: 80px;
  padding-top: 10px;
  padding-left: 36px;
}
.bday-textarea-wrap { align-items: flex-start; }
.bday-err {
  font-size: .72rem;
  color: #e05c5c;
  min-height: 14px;
  line-height: 1.3;
}

/* Pricing card */
.bday-pricing-card {
  background: linear-gradient(135deg, rgba(201,168,76,.1) 0%, rgba(201,168,76,.04) 100%);
  border: 1.5px solid rgba(201,168,76,.35);
  border-radius: 12px;
  padding: 18px 20px 16px;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 18px rgba(201,168,76,.08), inset 0 0 30px rgba(201,168,76,.03);
}
.bday-pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.8), rgba(255,220,100,.9), rgba(201,168,76,.8), transparent);
}
.bday-pricing-card__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.bday-pricing-card__icon { font-size: 1.1rem; }
.bday-pricing-card__title {
  font-size: .9rem;
  font-weight: 600;
  color: #c9a84c;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.bday-pricing-card__amount {
  font-size: 2rem;
  font-weight: 700;
  color: #e8c96a;
  letter-spacing: .02em;
  margin-bottom: 12px;
  text-shadow: 0 0 20px rgba(201,168,76,.4);
}
.bday-pricing-card__includes-label {
  font-size: .8rem;
  color: rgba(240,230,200,.65);
  margin: 0 0 6px;
}
.bday-pricing-card__includes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.bday-pricing-card__includes li {
  font-size: .83rem;
  color: rgba(240,230,200,.85);
  padding-left: 16px;
  position: relative;
}
.bday-pricing-card__includes li::before {
  content: '•';
  position: absolute;
  left: 4px;
  color: #c9a84c;
}

/* Notice card */
.bday-notice-card {
  position: relative;
  background: linear-gradient(135deg, rgba(201,168,76,.1) 0%, rgba(201,168,76,.04) 100%);
  border: 1.5px solid rgba(201,168,76,.35);
  border-radius: 12px;
  padding: 16px 18px 14px;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 0 18px rgba(201,168,76,.08), inset 0 0 30px rgba(201,168,76,.03);
}
.bday-notice-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.8), rgba(255,220,100,.9), rgba(201,168,76,.8), transparent);
}
.bday-notice-card::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 70%);
  pointer-events: none;
}
.bday-notice-card__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.bday-notice-card__icon {
  font-size: 1rem;
  color: #c9a84c;
  flex-shrink: 0;
}
.bday-notice-card__heading {
  font-size: .82rem;
  font-weight: 700;
  color: #c9a84c;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-shadow: 0 0 12px rgba(201,168,76,.4);
}
.bday-notice-card__line {
  font-size: .86rem;
  font-weight: 500;
  color: rgba(240,230,200,.82);
  margin: 0 0 6px;
  line-height: 1.55;
}
.bday-notice-card__line:last-child { margin-bottom: 0; }
.bday-notice-card__line strong { color: #e8c96a; font-weight: 600; }

/* Actions */
.bday-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 6px;
}
.bday-btn {
  font-family: 'Poppins', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  border-radius: 10px;
  padding: 11px 26px;
  cursor: pointer;
  border: none;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.bday-btn--cancel {
  background: rgba(255,255,255,.07);
  color: rgba(240,230,200,.7);
  border: 1px solid rgba(255,255,255,.12);
}
.bday-btn--cancel:hover { background: rgba(255,255,255,.12); color: #f0e6c8; }
.bday-btn--book {
  background: linear-gradient(135deg, #c9a84c 0%, #e8c96a 50%, #c9a84c 100%);
  color: #111;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(201,168,76,.35);
}
.bday-btn--book::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  transform: skewX(-20deg);
  transition: left .5s;
}
.bday-btn--book:hover::after { left: 160%; }
.bday-btn--book:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(201,168,76,.45); }
.bday-btn--book:active { transform: translateY(0); }

/* Responsive */
@media (max-width: 600px) {
  .bday-popup__box { padding: 22px 16px 20px; }
  .bday-row { grid-template-columns: 1fr; }
  .bday-actions { flex-direction: column-reverse; }
  .bday-btn { width: 100%; text-align: center; }
  .bday-pricing-card__amount { font-size: 1.6rem; }
}


/* =====================================================
   SOCIAL MEDIA CONTENT BOOKING POPUP
   ===================================================== */
.social-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-family: 'Poppins', sans-serif;
}
.social-popup--open {
  display: flex;
}
.social-popup__box {
  position: relative;
  background: linear-gradient(160deg, #1c1a14 0%, #111 100%);
  border: 1.5px solid rgba(201,168,76,.38);
  border-radius: 18px;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px 28px 28px;
  box-shadow: 0 24px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(201,168,76,.08);
  scrollbar-width: thin;
  scrollbar-color: rgba(201,168,76,.3) transparent;
}
.social-popup__box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.7), transparent);
  border-radius: 18px 18px 0 0;
}
.social-popup__box::-webkit-scrollbar { width: 5px; }
.social-popup__box::-webkit-scrollbar-track { background: transparent; }
.social-popup__box::-webkit-scrollbar-thumb { background: rgba(201,168,76,.3); border-radius: 4px; }

/* Head */
.social-popup__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.social-popup__head-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}
.social-popup__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f0e6c8;
  margin: 0 0 2px;
  letter-spacing: .02em;
}
.social-popup__sub {
  font-size: .8rem;
  color: rgba(201,168,76,.8);
  margin: 0;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.social-popup__close {
  margin-left: auto;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: #ccc;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s, color .2s;
}
.social-popup__close:hover { background: rgba(201,168,76,.18); color: #c9a84c; }

/* Rows */
.social-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

/* Fields */
.social-field { display: flex; flex-direction: column; gap: 5px; }
.social-field--full { grid-column: 1 / -1; margin-bottom: 14px; }
.social-label {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(240,230,200,.75);
  letter-spacing: .03em;
  text-transform: uppercase;
}
.social-req { color: #e05c5c; margin-left: 2px; }
.social-opt { color: rgba(201,168,76,.6); font-weight: 400; text-transform: none; font-size: .75rem; }

/* Input wrap */
.social-input-wrap {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(201,168,76,.22);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.social-input-wrap:focus-within {
  border-color: rgba(201,168,76,.6);
  box-shadow: 0 0 0 3px rgba(201,168,76,.1);
}
.social-icon {
  padding: 0 10px;
  font-size: .95rem;
  color: rgba(201,168,76,.7);
  flex-shrink: 0;
  line-height: 1;
}
.social-icon--top { align-self: flex-start; padding-top: 11px; }
.social-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #f0e6c8;
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
  padding: 10px 12px 10px 0;
}
.social-input::placeholder { color: rgba(240,230,200,.3); }
.social-input--error + .social-err,
.social-input-wrap:has(.social-input--error) {
  border-color: rgba(224,92,92,.6);
  box-shadow: 0 0 0 3px rgba(224,92,92,.08);
}

/* Select */
.social-select-wrap { position: relative; }
.social-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.social-select option { background: #1c1a14; color: #f0e6c8; }

/* Textarea */
.social-textarea-wrap { align-items: flex-start; }
.social-textarea {
  resize: vertical;
  min-height: 80px;
  padding: 10px 12px 10px 0;
  line-height: 1.5;
}

/* Error messages */
.social-err {
  font-size: .72rem;
  color: #e05c5c;
  min-height: 16px;
  padding-left: 2px;
}

/* Pricing card */
.social-pricing-card {
  background: linear-gradient(135deg, rgba(201,168,76,.1) 0%, rgba(201,168,76,.04) 100%);
  border: 1.5px solid rgba(201,168,76,.3);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}
.social-pricing-card::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 70%);
  pointer-events: none;
}
.social-pricing-card__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.social-pricing-card__icon { font-size: 1.1rem; }
.social-pricing-card__title {
  font-size: .88rem;
  font-weight: 700;
  color: #c9a84c;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.social-pricing-card__amount {
  font-size: 1.6rem;
  font-weight: 800;
  color: #e8c96a;
  letter-spacing: .01em;
  margin-bottom: 10px;
}
.social-pricing-card__includes-label {
  font-size: .78rem;
  color: rgba(240,230,200,.6);
  margin: 0 0 6px;
  font-weight: 500;
}
.social-pricing-card__includes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.social-pricing-card__includes li {
  font-size: .82rem;
  color: rgba(240,230,200,.85);
  padding-left: 16px;
  position: relative;
}
.social-pricing-card__includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #c9a84c;
  font-weight: 700;
  font-size: .75rem;
}

/* Notice card */
.social-notice-card {
  background: linear-gradient(135deg, rgba(201,168,76,.08) 0%, rgba(201,168,76,.03) 100%);
  border: 1.5px solid rgba(201,168,76,.28);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}
.social-notice-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.5), transparent);
}
.social-notice-card::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(201,168,76,.1) 0%, transparent 70%);
  pointer-events: none;
}
.social-notice-card__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.social-notice-card__icon {
  font-size: 1rem;
  color: #c9a84c;
  flex-shrink: 0;
}
.social-notice-card__heading {
  font-size: .82rem;
  font-weight: 800;
  color: #c9a84c;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.social-notice-card__line {
  font-size: .86rem;
  color: rgba(240,230,200,.8);
  font-weight: 500;
  margin: 0 0 6px;
  line-height: 1.55;
}
.social-notice-card__line:last-child { margin-bottom: 0; }
.social-notice-card__line strong { color: #e8c96a; font-weight: 700; }

/* Action buttons */
.social-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 4px;
}
.social-btn {
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  padding: 11px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  letter-spacing: .04em;
}
.social-btn--cancel {
  background: rgba(255,255,255,.07);
  color: rgba(240,230,200,.7);
  border: 1px solid rgba(255,255,255,.1);
}
.social-btn--cancel:hover { background: rgba(255,255,255,.12); color: #f0e6c8; }
.social-btn--book {
  background: linear-gradient(135deg, #c9a84c 0%, #e8c96a 50%, #c9a84c 100%);
  background-size: 200% auto;
  color: #111;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(201,168,76,.35);
  position: relative;
  overflow: hidden;
}
.social-btn--book::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transform: skewX(-20deg);
  transition: left .5s;
}
.social-btn--book:hover {
  background-position: right center;
  box-shadow: 0 6px 24px rgba(201,168,76,.5);
  transform: translateY(-1px);
}
.social-btn--book:hover::after { left: 140%; }

/* Responsive */
@media (max-width: 600px) {
  .social-popup__box { padding: 22px 16px 20px; }
  .social-row { grid-template-columns: 1fr; }
  .social-actions { flex-direction: column-reverse; }
  .social-btn { width: 100%; text-align: center; }
  .social-pricing-card__amount { font-size: 1.35rem; }
}


/* =====================================================
   WEBSITE DEVELOPMENT BOOKING POPUP
   ===================================================== */
.wd-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-family: 'Poppins', sans-serif;
}
.wd-popup--open {
  display: flex;
}
.wd-popup__box {
  position: relative;
  background: linear-gradient(160deg, #1c1a14 0%, #111 100%);
  border: 1.5px solid rgba(201,168,76,.38);
  border-radius: 18px;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px 28px 28px;
  box-shadow: 0 24px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(201,168,76,.08);
  scrollbar-width: thin;
  scrollbar-color: rgba(201,168,76,.3) transparent;
}
.wd-popup__box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.7), transparent);
  border-radius: 18px 18px 0 0;
}
.wd-popup__box::-webkit-scrollbar { width: 5px; }
.wd-popup__box::-webkit-scrollbar-track { background: transparent; }
.wd-popup__box::-webkit-scrollbar-thumb { background: rgba(201,168,76,.3); border-radius: 4px; }

/* Head */
.wd-popup__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.wd-popup__head-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}
.wd-popup__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f0e6c8;
  margin: 0 0 2px;
  letter-spacing: .02em;
}
.wd-popup__sub {
  font-size: .8rem;
  color: rgba(201,168,76,.8);
  margin: 0;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.wd-popup__close {
  margin-left: auto;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: #ccc;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s, color .2s;
}
.wd-popup__close:hover { background: rgba(201,168,76,.18); color: #c9a84c; }

/* Rows */
.wd-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

/* Fields */
.wd-field { display: flex; flex-direction: column; gap: 5px; }
.wd-field--full { grid-column: 1 / -1; margin-bottom: 14px; }
.wd-label {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(240,230,200,.75);
  letter-spacing: .03em;
  text-transform: uppercase;
}
.wd-req { color: #e05c5c; margin-left: 2px; }
.wd-opt { color: rgba(201,168,76,.6); font-weight: 400; text-transform: none; font-size: .75rem; }

/* Input wrap */
.wd-input-wrap {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(201,168,76,.22);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.wd-input-wrap:focus-within {
  border-color: rgba(201,168,76,.6);
  box-shadow: 0 0 0 3px rgba(201,168,76,.1);
}
.wd-icon {
  padding: 0 10px;
  font-size: .95rem;
  color: rgba(201,168,76,.7);
  flex-shrink: 0;
  line-height: 1;
}
.wd-icon--top { align-self: flex-start; padding-top: 11px; }
.wd-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #f0e6c8;
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
  padding: 10px 12px 10px 0;
}
.wd-input::placeholder { color: rgba(240,230,200,.3); }
.wd-input--error + .wd-err,
.wd-input-wrap:has(.wd-input--error) {
  border-color: rgba(224,92,92,.6);
  box-shadow: 0 0 0 3px rgba(224,92,92,.08);
}

/* Select */
.wd-select-wrap { position: relative; }
.wd-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.wd-select option { background: #1c1a14; color: #f0e6c8; }

/* Textarea */
.wd-textarea-wrap { align-items: flex-start; }
.wd-textarea {
  resize: vertical;
  min-height: 80px;
  padding: 10px 12px 10px 0;
  line-height: 1.5;
}

/* Error messages */
.wd-err {
  font-size: .72rem;
  color: #e05c5c;
  min-height: 16px;
  padding-left: 2px;
}

/* Pricing card */
.wd-pricing-card {
  background: linear-gradient(135deg, rgba(201,168,76,.1) 0%, rgba(201,168,76,.04) 100%);
  border: 1.5px solid rgba(201,168,76,.3);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}
.wd-pricing-card::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 70%);
  pointer-events: none;
}
.wd-pricing-card__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.wd-pricing-card__icon { font-size: 1.1rem; }
.wd-pricing-card__title {
  font-size: .88rem;
  font-weight: 700;
  color: #c9a84c;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.wd-pricing-card__amount {
  font-size: 1.6rem;
  font-weight: 800;
  color: #e8c96a;
  letter-spacing: .01em;
  margin-bottom: 10px;
}
.wd-pricing-card__includes-label {
  font-size: .78rem;
  color: rgba(240,230,200,.6);
  margin: 0 0 6px;
  font-weight: 500;
}
.wd-pricing-card__includes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.wd-pricing-card__includes li {
  font-size: .82rem;
  color: rgba(240,230,200,.85);
  padding-left: 16px;
  position: relative;
}
.wd-pricing-card__includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #c9a84c;
  font-weight: 700;
  font-size: .75rem;
}

/* Notice card */
.wd-notice-card {
  background: linear-gradient(135deg, rgba(201,168,76,.08) 0%, rgba(201,168,76,.03) 100%);
  border: 1.5px solid rgba(201,168,76,.28);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}
.wd-notice-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.5), transparent);
}
.wd-notice-card::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(201,168,76,.1) 0%, transparent 70%);
  pointer-events: none;
}
.wd-notice-card__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.wd-notice-card__icon {
  font-size: 1rem;
  color: #c9a84c;
  flex-shrink: 0;
}
.wd-notice-card__heading {
  font-size: .82rem;
  font-weight: 800;
  color: #c9a84c;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.wd-notice-card__line {
  font-size: .86rem;
  color: rgba(240,230,200,.8);
  font-weight: 500;
  margin: 0 0 6px;
  line-height: 1.55;
}
.wd-notice-card__line:last-child { margin-bottom: 0; }
.wd-notice-card__line strong { color: #e8c96a; font-weight: 700; }

/* Action buttons */
.wd-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 4px;
}
.wd-btn {
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  padding: 11px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  letter-spacing: .04em;
}
.wd-btn--cancel {
  background: rgba(255,255,255,.07);
  color: rgba(240,230,200,.7);
  border: 1px solid rgba(255,255,255,.1);
}
.wd-btn--cancel:hover { background: rgba(255,255,255,.12); color: #f0e6c8; }
.wd-btn--book {
  background: linear-gradient(135deg, #c9a84c 0%, #e8c96a 50%, #c9a84c 100%);
  background-size: 200% auto;
  color: #111;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(201,168,76,.35);
  position: relative;
  overflow: hidden;
}
.wd-btn--book::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transform: skewX(-20deg);
  transition: left .5s;
}
.wd-btn--book:hover {
  background-position: right center;
  box-shadow: 0 6px 24px rgba(201,168,76,.5);
  transform: translateY(-1px);
}
.wd-btn--book:hover::after { left: 140%; }

/* Responsive */
@media (max-width: 600px) {
  .wd-popup__box { padding: 22px 16px 20px; }
  .wd-row { grid-template-columns: 1fr; }
  .wd-actions { flex-direction: column-reverse; }
  .wd-btn { width: 100%; text-align: center; }
  .wd-pricing-card__amount { font-size: 1.35rem; }
}


/* =====================================================
   GALLERY SECTION — layout + subtitle
   ===================================================== */
.gallery-section {
  background:
    radial-gradient(ellipse 60% 45% at 50% 0%, rgba(201,168,76,.06) 0%, transparent 65%),
    #0d0d0d;
}
.gallery-subtitle {
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray-lt);
  max-width: 520px;
  margin: -8px auto 48px;
  line-height: 1.8;
}

/* =====================================================
   GALLERY STATS — automatic counter cards
   ===================================================== */
.gallery-stats {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 36px;
}

/* Glassmorphism card */
.gstat-card {
  background: rgba(22,20,14,.92);
  border: 1px solid rgba(201,168,76,.22);
  border-radius: var(--radius-card);
  padding: 16px 20px 14px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 8px 32px rgba(0,0,0,.45),
    0 0 0 1px rgba(201,168,76,.06) inset;
  transition:
    transform    0.45s cubic-bezier(.22,.68,0,1.15),
    border-color 0.45s ease,
    box-shadow   0.45s ease;
  cursor: default;
  min-width: 120px;
  flex: 1;
  max-width: 180px;
}

/* Corner glow accents */
.gstat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 70px; height: 70px;
  background: radial-gradient(circle at top left, rgba(201,168,76,.16) 0%, transparent 70%);
  pointer-events: none;
}
.gstat-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 50px; height: 50px;
  background: radial-gradient(circle at bottom right, rgba(201,168,76,.10) 0%, transparent 70%);
  pointer-events: none;
}

/* Hover lift + gold glow */
.gstat-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(201,168,76,.6);
  box-shadow:
    0 20px 50px rgba(0,0,0,.6),
    0 0 0 1px rgba(201,168,76,.2) inset,
    0 0 36px rgba(201,168,76,.16);
}

/* Icon */
.gstat-icon {
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 8px rgba(201,168,76,.45));
  transition: transform 0.45s cubic-bezier(.22,.68,0,1.2);
}
.gstat-card:hover .gstat-icon {
  transform: scale(1.18);
}

/* Animated number */
.gstat-num {
  font-family: var(--font-poppins);
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--gold-lt);
  line-height: 1.1;
  margin-bottom: 4px;
  text-shadow: 0 0 24px rgba(201,168,76,.35);
  transition: text-shadow 0.4s ease;
}
.gstat-card:hover .gstat-num {
  text-shadow: 0 0 32px rgba(201,168,76,.6);
}

/* Label */
.gstat-label {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(244,244,240,.55);
}

/* Responsive */
@media (max-width: 600px) {
  .gallery-stats { gap: 10px; margin-bottom: 28px; }
  .gstat-card    { width: 130px; padding: 14px 14px 12px; }
  .gstat-icon    { font-size: 1.3rem; margin-bottom: 6px; }
  .gstat-num     { font-size: 1.35rem; }
  .gstat-label   { font-size: 0.54rem; letter-spacing: 1.4px; }
}
@media (max-width: 400px) {
  .gallery-stats { flex-wrap: wrap; }
  .gstat-card    { width: calc(50% - 5px); }
}

/* =====================================================
   GALLERY FILTERS
   ===================================================== */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}
.gf-btn {
  padding: 9px 22px;
  font-family: var(--font-poppins);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(244,244,240,.5);
  border: 1px solid rgba(201,168,76,.18);
  border-radius: 50px;
  background: rgba(255,255,255,.03);
  cursor: pointer;
  transition:
    color        0.3s ease,
    background   0.3s ease,
    border-color 0.3s ease,
    box-shadow   0.3s ease,
    transform    0.3s cubic-bezier(.22,.68,0,1.2);
  white-space: nowrap;
}
.gf-btn:hover {
  color: rgba(244,244,240,.85);
  border-color: rgba(201,168,76,.4);
  transform: translateY(-2px);
}
.gf-btn.active {
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  border-color: transparent;
  color: var(--black);
  box-shadow: 0 4px 18px rgba(201,168,76,.4);
  transform: translateY(0);
}
@media (max-width: 480px) {
  .gf-btn { padding: 8px 16px; font-size: 0.62rem; letter-spacing: 1.4px; }
}

/* =====================================================
   GALLERY LIGHTBOX (glb)
   ===================================================== */
.glb {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.glb.glb--open {
  opacity: 1;
  pointer-events: all;
}
.glb__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.93);
  cursor: pointer;
}
.glb__box {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 92vh;
  transform: scale(0.88);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(.22,.68,0,1.12), opacity 0.5s ease;
}
.glb.glb--open .glb__box {
  transform: scale(1);
  opacity: 1;
}
.glb__img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
#glbImg {
  display: block;
  max-width: 88vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0,0,0,.8);
  border: 1px solid rgba(201,168,76,.2);
  transition: opacity 0.3s ease;
  opacity: 1;
}
.glb__loader {
  position: absolute;
  width: 32px; height: 32px;
  border: 2px solid rgba(201,168,76,.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  display: none;
}
.glb__loader--active { display: block; animation: lbSpin 0.7s linear infinite; }
.glb__caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 88vw;
  padding: 12px 4px 0;
}
#glbTitle {
  font-family: var(--font-poppins);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
}
#glbCounter {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}
.glb__close {
  position: fixed;
  top: 20px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 2;
}
.glb__close:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.glb__arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 2;
}
.glb__prev { left: 20px; }
.glb__next { right: 20px; }
.glb__arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.glb__arrow:disabled { opacity: 0.2; cursor: default; pointer-events: none; }
@media (max-width: 480px) {
  .glb__arrow { width: 36px; height: 36px; font-size: 0.9rem; }
  .glb__prev  { left: 8px; }
  .glb__next  { right: 8px; }
  .glb__close { top: 12px; right: 12px; width: 38px; height: 38px; }
}

/* gi-hidden / hidden: used by filter to hide items */
.gallery-item.gi-hidden,
.gallery-item.hidden { display: none; }

@media (prefers-reduced-motion: reduce) {
  .gstat-card { transition: none; }
  .gstat-icon { transition: none; }
  .gstat-num  { transition: none; }
}


/* =====================================================
   GALLERY VIDEO CARD — Premium redesign
   ===================================================== */

/* Thumbnail image fills the card exactly like image cards */
.gallery-item--video .gi-video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease, filter 0.55s ease;
  pointer-events: none;
}
.gallery-item--video.gi-visible:hover .gi-video-thumb {
  transform: scale(1.08);
  filter: brightness(0.75);
}

/* VIDEO badge — top-right corner */
.gi-video-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  color: var(--black);
  font-family: var(--font-poppins);
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 6px;
  box-shadow: 0 3px 12px rgba(201,168,76,.45);
  z-index: 3;
  pointer-events: none;
}

/* Premium circular play button */
.gi-play-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  color: var(--gold);
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 4px 16px rgba(201,168,76,.55));
  transition:
    transform 0.45s cubic-bezier(.22,.68,0,1.3),
    filter    0.45s ease,
    color     0.45s ease;
  animation: playPulse 2.4s ease-in-out infinite;
}
.gi-play-circle svg {
  width: 100%;
  height: 100%;
  display: block;
}
.gallery-item--video.gi-visible:hover .gi-play-circle {
  transform: translate(-50%, -50%) scale(1.18);
  filter: drop-shadow(0 6px 24px rgba(201,168,76,.8));
  color: var(--gold-lt);
  animation-play-state: paused;
}

/* Soft dark overlay on hover (in addition to gallery-overlay) */
.gallery-item--video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.45s ease;
  z-index: 1;
  pointer-events: none;
}
.gallery-item--video.gi-visible:hover::after {
  background: rgba(0,0,0,.28);
}

/* Ensure overlay and badge sit above the dark overlay */
.gallery-item--video .gallery-overlay,
.gallery-item--video .gi-video-badge,
.gallery-item--video .gi-play-circle {
  z-index: 3;
}


/* =====================================================
   LOCAL VIDEO LIGHTBOX
   ===================================================== */
.lvl {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}
.lvl.lvl--open {
  opacity: 1;
  pointer-events: all;
}

.lvl__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.94);
  cursor: pointer;
}

.lvl__box {
  position: relative;
  z-index: 1;
  width: min(92vw, 960px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transform: scale(0.88);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(.22,.68,0,1.12),
              opacity   0.5s ease;
}
.lvl.lvl--open .lvl__box {
  transform: scale(1);
  opacity: 1;
}

.lvl__video-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.22);
  box-shadow: 0 24px 80px rgba(0,0,0,.85);
  background: #000;
}
.lvl__video-wrap video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
}

.lvl__title {
  font-family: var(--font-poppins);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.5px;
  align-self: flex-start;
}

.lvl__close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  font-size: 1.3rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 2;
}
.lvl__close:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

@media (max-width: 600px) {
  .lvl__box  { width: 96vw; }
  .lvl__close { top: 12px; right: 12px; width: 38px; height: 38px; }
  .gi-play-circle { width: 46px; height: 46px; }
  .gi-video-badge { font-size: 0.48rem; padding: 3px 7px; }
}


/* =====================================================
   GALLERY VIDEO CARD — Premium redesign (override)
   ===================================================== */

/* Thumbnail zoom on hover */
.gallery-item--video .gi-video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease, filter 0.55s ease;
  pointer-events: none;
}
.gallery-item--video.gi-visible:hover .gi-video-thumb {
  transform: scale(1.08);
  filter: brightness(0.72);
}

/* Persistent cinematic dark gradient */
.gi-video-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,.32) 0%, rgba(0,0,0,.08) 45%, rgba(0,0,0,.58) 100%);
  z-index: 1;
  pointer-events: none;
  transition: background 0.45s ease;
}
.gallery-item--video.gi-visible:hover .gi-video-grad {
  background: linear-gradient(160deg, rgba(0,0,0,.48) 0%, rgba(0,0,0,.20) 45%, rgba(0,0,0,.72) 100%);
}

/* Camera icon — top-left */
.gi-cam-icon {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 4;
  width: 28px;
  height: 28px;
  background: rgba(0,0,0,.52);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(201,168,76,.38);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(.22,.68,0,1.3), border-color 0.45s ease, background 0.45s ease;
}
.gi-cam-icon svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
  display: block;
  flex-shrink: 0;
  transition: color 0.45s ease;
}
.gallery-item--video.gi-visible:hover .gi-cam-icon {
  transform: scale(1.15);
  border-color: var(--gold);
  background: rgba(0,0,0,.72);
}
.gallery-item--video.gi-visible:hover .gi-cam-icon svg { color: var(--gold-lt); }

/* Duration badge — bottom-right */
.gi-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 4;
  font-family: var(--font-poppins);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: var(--white);
  background: rgba(0,0,0,.58);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 5px;
  padding: 3px 7px;
  pointer-events: none;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
.gallery-item--video.gi-visible:hover .gi-duration { opacity: 1; }

/* Play circle — override old color-based version */
.gi-play-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  z-index: 4;
  pointer-events: none;
  filter: drop-shadow(0 4px 16px rgba(201,168,76,.6));
  transition: transform 0.45s cubic-bezier(.22,.68,0,1.3), filter 0.45s ease;
  animation: playPulse 2.4s ease-in-out infinite;
}
.gi-play-circle svg { width: 100%; height: 100%; display: block; }
.gallery-item--video.gi-visible:hover .gi-play-circle {
  transform: translate(-50%, -50%) scale(1.18);
  filter: drop-shadow(0 6px 28px rgba(201,168,76,.95));
  animation-play-state: paused;
}

/* Remove old ::after dark overlay (replaced by gi-video-grad) */
.gallery-item--video::after { display: none; }

/* Stacking order */
.gallery-item--video .gi-video-grad  { z-index: 1; }
.gallery-item--video .gi-play-circle,
.gallery-item--video .gi-cam-icon,
.gallery-item--video .gi-duration,
.gallery-item--video .gallery-overlay { z-index: 4; }

@media (max-width: 600px) {
  .gi-play-circle { width: 46px; height: 46px; }
  .gi-cam-icon    { width: 24px; height: 24px; top: 8px; left: 8px; }
  .gi-cam-icon svg { width: 12px; height: 12px; }
  .gi-duration    { font-size: 0.55rem; padding: 2px 6px; bottom: 8px; right: 8px; }
}

/* Video card duration auto-populate — JS hook already in script.js */
/* playPulse gold glow override */
@keyframes playPulse {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(201,168,76,.5)) drop-shadow(0 0 0px rgba(201,168,76,0)); }
  50%       { filter: drop-shadow(0 0 14px rgba(201,168,76,.85)) drop-shadow(0 0 28px rgba(201,168,76,.35)); }
}

/* Hide empty duration badge until video metadata loads */
.gi-duration:empty { display: none; }

/* =====================================================
   BUG FIX: Travel / Bday / Social / WD popups —
   Replace display:none toggle with opacity/pointer-events
   so they animate consistently with wpa & cinematic popups.
   Also adds dimmed backdrop (background + backdrop-filter).
   ===================================================== */
.travel-popup,
.bday-popup,
.social-popup,
.wd-popup {
  display: flex;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  overflow-y: auto;
}
.travel-popup--open,
.bday-popup--open,
.social-popup--open,
.wd-popup--open {
  opacity: 1;
  pointer-events: all;
}

/* =====================================================
   BUG FIX: Travel / Bday / Social / WD popup boxes —
   Add scale/translateY entry animation to match the
   wpa-popup__box and cinematic-popup__box behaviour.
   ===================================================== */
.travel-popup__box,
.bday-popup__box,
.social-popup__box,
.wd-popup__box {
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(.22,.68,0,1.12), opacity 0.45s ease;
}
.travel-popup--open .travel-popup__box,
.bday-popup--open   .bday-popup__box,
.social-popup--open .social-popup__box,
.wd-popup--open     .wd-popup__box {
  transform: scale(1) translateY(0);
  opacity: 1;
}


/* =====================================================
   IDEA FORM — two-column row layout
   ===================================================== */
.idea-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Date input dark theme */
.idea-form input[type="date"] {
  color-scheme: dark;
}

@media (max-width: 600px) {
  .idea-row { grid-template-columns: 1fr; gap: 0; }
}

/* =====================================================
   GALLERY — See More / See Less button
   ===================================================== */
.gallery-item.gi-collapsed { display: none; }

.gallery-see-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}
.gallery-see-more-btn {
  padding: 13px 40px;
  font-family: var(--font-poppins);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(90deg, #b8902e 0%, var(--gold) 40%, var(--gold-lt) 70%, #b8902e 100%);
  background-size: 200% auto;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(201,168,76,.35);
  transition: background-position 0.5s ease, transform 0.28s ease, box-shadow 0.28s ease;
}
.gallery-see-more-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 55%; height: 100%;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.28) 50%, transparent 80%);
  transition: left 0.5s ease;
  pointer-events: none;
}
.gallery-see-more-btn:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(201,168,76,.5);
}
.gallery-see-more-btn:hover::before { left: 160%; }
.gallery-see-more-btn:active { transform: translateY(-1px); }

/* =====================================================
   GALLERY VIDEO CARD — hover title overlay
   ===================================================== */
.gallery-item--video::before {
  content: attr(data-title);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  padding: 32px 14px 14px;
  background: linear-gradient(to top, rgba(0,0,0,.80) 0%, rgba(0,0,0,.30) 60%, transparent 100%);
  font-family: var(--font-poppins);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold);
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(.22,.68,0,1.2);
}
.gallery-item--video.gi-visible:hover::before {
  opacity: 1;
  transform: translateY(0);
}


/* =====================================================
   FOCUS INDICATORS — keyboard navigation only
   ===================================================== */

/* Shared gold ring used across all interactive elements */
.nav-logo:focus-visible,
.nav-link:focus-visible,
.nav-cta:focus-visible,
.nav-toggle:focus-visible,
.nav-sub-link:focus-visible,
.btn:focus-visible,
.hsoc:focus-visible,
.scroll-down:focus-visible,
.sc-link:focus-visible,
.services-cta-link:focus-visible,
.pricing-intro a:focus-visible,
.ft-logo:focus-visible,
.ft-links a:focus-visible,
.ft-social:focus-visible,
.ft-contact a:focus-visible,
.btt:focus-visible,
.cf-submit:focus-visible,
.gf-btn:focus-visible,
.gallery-see-more-btn:focus-visible,
.glb__close:focus-visible,
.glb__arrow:focus-visible,
.lvl__close:focus-visible,
.wpa-popup__close:focus-visible,
.wpa-btn:focus-visible,
.cinematic-popup__close:focus-visible,
.cinematic-btn:focus-visible,
.travel-popup__close:focus-visible,
.travel-btn:focus-visible,
.bday-popup__close:focus-visible,
.bday-btn:focus-visible,
.social-popup__close:focus-visible,
.social-btn:focus-visible,
.wd-popup__close:focus-visible,
.wd-btn:focus-visible,
.pc-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
