@font-face {
  font-family: 'ADAM.CG PRO';
  src: url('../fonts/ADAM.CG-PRO.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* DoubleLayer Photography - Luxury Design System & Premium Styles */

/* --- 1. FONTS & ROOT VARIABLES --- */
:root {
  --bg-color: #050609;
  --bg-gradient: radial-gradient(circle at center, #0e1017 0%, #050609 100%);
  --text-main: #F8FAFC;
  --text-muted: #64748B;
  --gold-accent: #cfa853;
  --gold-accent-light: #e5c473;
  --gold-accent-dark: #a8853b;
  --gold-glow: rgba(207, 168, 83, 0.15);
  --silver-accent: #C0C0C0;
  --diamond-accent: #b9f2ff;
  
  /* Glassmorphic tokens */
  --glass-bg: rgba(9, 11, 17, 0.45);
  --glass-bg-hover: rgba(14, 17, 26, 0.6);
  --glass-border: rgba(255, 255, 255, 0.03);
  --glass-border-hover: rgba(207, 168, 83, 0.18);
  --glass-blur: 28px;
}

/* --- 2. GLOBAL RESET & BASE RULES --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

html {
  background: var(--bg-gradient);
  background-attachment: fixed;
}

body {
  background: transparent !important;
  color: var(--text-main);
  font-family: 'Montserrat', sans-serif;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

/* Custom Scrollbar inside sections */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-accent);
}

/* --- 3. BACKGROUND ORBS & NOISE GRAIN --- */
.orb-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -3;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.22;
  mix-blend-mode: screen;
}

.orb-gold {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--gold-accent) 0%, transparent 70%);
  top: -10%;
  right: -5%;
  animation: floatGold 35s ease-in-out infinite alternate;
}

.orb-blue {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
  bottom: -15%;
  left: -10%;
  animation: floatBlue 40s ease-in-out infinite alternate;
}

.orb-purple {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
  top: 35%;
  left: 25%;
  opacity: 0.12;
  animation: floatPurple 30s ease-in-out infinite alternate;
}

@keyframes floatGold {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-100px, 150px) scale(1.15); }
}

@keyframes floatBlue {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(120px, -120px) scale(0.9); }
}

@keyframes floatPurple {
  0% { transform: translate(0, 0) scale(0.95); }
  100% { transform: translate(-80px, -80px) scale(1.1); }
}

.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2; /* stacks on top of background image, but behind content */
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.02'/%3E%3C/svg%3E");
}

/* --- 4. GLASSMORPHISM PANEL & CARD SYSTEM --- */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), 
              inset 0 1px 1px 0 rgba(255, 255, 255, 0.05);
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: 0 15px 35px 0 rgba(0, 0, 0, 0.5),
              inset 0 1px 1px 0 rgba(255, 255, 255, 0.03);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: var(--glass-border-hover);
  box-shadow: 0 25px 45px 0 rgba(0, 0, 0, 0.65),
              0 0 20px 0 var(--gold-glow);
}

/* --- 5. TYPOGRAPHY RULES --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'ADAM.CG PRO', 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.35;
}

.text-gradient {
  background: linear-gradient(135deg, #FFF 0%, #ecd399 40%, var(--gold-accent) 70%, var(--gold-accent-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding-bottom: 0.18em; /* prevents background-clipped letters (y, g) from cutting off */
  margin-bottom: -0.18em;
}

.tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--gold-accent-light);
  margin-bottom: 12px;
  display: block;
}

/* Cursor Spotlight Follower */
.cursor-spotlight {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(207, 168, 83, 0.08) 0%, rgba(207, 168, 83, 0.02) 40%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
  mix-blend-mode: screen;
}

/* --- 6. STATIC LEFT NAVIGATION BAR --- */
header {
  position: fixed;
  top: 24px;
  bottom: 24px;
  left: 24px;
  width: 80px;
  height: calc(100% - 48px);
  z-index: 100;
  background: rgba(10, 11, 16, 0.3);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6),
              inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.nav-container {
  height: 100%;
  padding: 24px 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.logo {
  text-decoration: none;
  display: flex;
  justify-content: center;
  width: 100%;
  line-height: 1;
}

.logo-img {
  width: 62px;
  height: auto;
  display: block;
  mix-blend-mode: screen;
  transition: opacity 0.3s ease, transform 0.3s ease;
  margin: 0 auto;
  animation: logoPulse 4s infinite ease-in-out;
}

.logo-img:hover {
  opacity: 0.8;
}

.nav-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  list-style: none;
}

.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 12px;
  border-radius: 12px;
  transition: all 0.3s ease;
  width: 100%;
}

/* Icon-only mode: center icons, hide no text */
.icon-only-nav .nav-link {
  padding: 12px;
  justify-content: center;
}

.icon-only-nav .nav-link span {
  display: none;
}

.nav-link i,
.nav-link svg {
  width: 18px;
  height: 18px;
  stroke-width: 2px;
  flex-shrink: 0;
  display: block;
}

.nav-link:hover, .nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.nav-link.active {
  border-left: 2px solid var(--gold-accent);
  padding-left: 10px;
  color: var(--gold-accent);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.btn-book-cta {
  background: linear-gradient(135deg, var(--gold-accent), #b8860b);
  color: #050505;
  border: none;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  white-space: nowrap;
}

.btn-book-gold-glow {
  box-shadow: 0 0 18px rgba(207, 168, 83, 0.5), 0 0 30px rgba(207, 168, 83, 0.2);
  animation: bookNowPulse 2.5s ease-in-out infinite;
}

@keyframes bookNowPulse {
  0%, 100% { box-shadow: 0 0 15px rgba(207, 168, 83, 0.4), 0 0 25px rgba(207, 168, 83, 0.15); }
  50%       { box-shadow: 0 0 25px rgba(207, 168, 83, 0.8), 0 0 45px rgba(207, 168, 83, 0.35); }
}

.btn-book-cta:hover {
  background: linear-gradient(135deg, var(--gold-accent-light), var(--gold-accent));
  color: #050609;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(207, 168, 83, 0.6);
}

.mobile-toggle {
  display: none;
}

/* --- 7. STATIC RIGHT SOCIAL SIDEBAR --- */
.social-sidebar {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 100;
}

.social-nav-item {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10, 12, 18, 0.85);
  border: 1.5px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  backdrop-filter: blur(10px);
}

.social-nav-item i,
.social-nav-item svg {
  width: 19px;
  height: 19px;
  display: block;
  stroke-width: 2px;
}

.social-nav-item.wa-icon {
  border-color: rgba(37, 211, 102, 0.5);
  box-shadow: 0 0 12px rgba(37, 211, 102, 0.2);
}
.social-nav-item.wa-icon i, .social-nav-item.wa-icon svg {
  color: #25d366 !important;
  stroke: #25d366 !important;
}

.social-nav-item.ig-icon {
  border-color: rgba(225, 48, 108, 0.5);
  box-shadow: 0 0 12px rgba(225, 48, 108, 0.2);
}
.social-nav-item.ig-icon i, .social-nav-item.ig-icon svg {
  color: #e1306c !important;
  stroke: #e1306c !important;
}

.social-nav-item.fb-icon {
  border-color: rgba(24, 119, 242, 0.5);
  box-shadow: 0 0 12px rgba(24, 119, 242, 0.2);
}
.social-nav-item.fb-icon i, .social-nav-item.fb-icon svg {
  color: #1877f2 !important;
  stroke: #1877f2 !important;
}

.social-nav-item.li-icon {
  border-color: rgba(10, 102, 194, 0.5);
  box-shadow: 0 0 12px rgba(10, 102, 194, 0.2);
}
.social-nav-item.li-icon i, .social-nav-item.li-icon svg {
  color: #0a66c2 !important;
  stroke: #0a66c2 !important;
}

/* Hover: full brand fill */
.social-nav-item:hover {
  transform: scale(1.15) translateY(-2px);
}
.social-nav-item.wa-icon:hover {
  background: #25d366;
  box-shadow: 0 0 22px rgba(37, 211, 102, 0.6);
  border-color: #25d366;
}
.social-nav-item.wa-icon:hover i, .social-nav-item.wa-icon:hover svg { color: #fff !important; stroke: #fff !important; }

.social-nav-item.ig-icon:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  box-shadow: 0 0 22px rgba(225, 48, 108, 0.6);
  border-color: transparent;
}
.social-nav-item.ig-icon:hover i, .social-nav-item.ig-icon:hover svg { color: #fff !important; stroke: #fff !important; }

.social-nav-item.fb-icon:hover {
  background: #1877f2;
  box-shadow: 0 0 22px rgba(24, 119, 242, 0.6);
  border-color: #1877f2;
}
.social-nav-item.fb-icon:hover i, .social-nav-item.fb-icon:hover svg { color: #fff !important; stroke: #fff !important; }

.social-nav-item.li-icon:hover {
  background: #0a66c2;
  box-shadow: 0 0 22px rgba(10, 102, 194, 0.6);
  border-color: #0a66c2;
}
.social-nav-item.li-icon:hover i, .social-nav-item.li-icon:hover svg { color: #fff !important; stroke: #fff !important; }

/* --- 8. CENTRAL 3D PAGE-TURNING COMPOSITION --- */
.sections-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 130px; /* space cleared for slim icon-only nav bar */
  width: calc(100% - 200px); /* clears right social area too */
  max-width: 1400px;
  height: 100%;
  perspective: 2000px;
  transform-style: preserve-3d;
  z-index: 10; /* stacks in front of background image and grain overlay */
}

section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 60px 24px 80px;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: rotateY(90deg) translateZ(-150px);
  transform-origin: left center;
  transition: transform 0.9s cubic-bezier(0.65, 0, 0.35, 1), 
              opacity 0.9s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 1;
}

section.active {
  opacity: 1;
  pointer-events: auto;
  transform: rotateY(0deg) translateZ(0);
  z-index: 5;
}

section.flipped-next {
  opacity: 0;
  pointer-events: none;
  transform: rotateY(-90deg) translateZ(-150px);
  z-index: 1;
}

section.flipped-prev {
  opacity: 0;
  pointer-events: none;
  transform: rotateY(90deg) translateZ(-150px);
  z-index: 1;
}

.section-intro {
  max-width: 700px;
  margin-bottom: 45px;
}

.section-title {
  font-size: 44px;
  line-height: 1.35;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- 9. INTERACTIVE FULLSCREEN BACKGROUND HERO --- */
.hero-bg-video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.hero-bg-image-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1; /* stacks in front of body background, but behind grain and content */
  overflow: hidden;
  background-image: url('../images/hero_bg.jpeg?v=3.8');
  background-size: cover;
  background-position: center 15%;
  background-repeat: no-repeat;
  background-color: #050609;
  pointer-events: none; /* prevents blocking click events on interactive content */
  transition: opacity 0.9s cubic-bezier(0.65, 0, 0.35, 1);
}

@media (max-width: 767px) {
  .hero-bg-image-wrap {
    /* If you place a portrait image named hero_bg_mobile.jpeg in the images/ folder, 
       it will load here automatically on mobile screens. Otherwise, it falls back to the centered desktop image. */
    background-image: url('../images/hero_bg_mobile.jpeg?v=3.8'), url('../images/hero_bg.jpeg?v=3.8');
    background-position: right 15%;
  }
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay,
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 7, 10, 0.65); /* preserves copy readability over background */
  pointer-events: none;
}

.hero-center-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 120px);
  width: 100%;
}

.hero-glass-card {
  max-width: 960px;
  width: 100%;
  padding: 50px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
  /* Glassmorphism removed */
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.hero-logo-box {
  margin-bottom: 25px;
}

.hero-original-logo {
  height: 135px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
}

.hero-title {
  font-family: 'ADAM.CG PRO', 'Montserrat', sans-serif !important;
  font-size: 52px;
  line-height: 1.25;
  letter-spacing: 0.05em;
  font-weight: bold;
  white-space: nowrap;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 14.5px;
  color: #f1f5f9;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 4px 12px rgba(0, 0, 0, 0.6);
  line-height: 1.65;
  margin-bottom: 35px;
  max-width: 600px; /* keep description narrow and readable */
  padding: 12px 24px;
  background: rgba(5, 5, 8, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.hero-locations-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #94a3b8; /* slate-400 */
  text-transform: uppercase;
}

.hero-locations-badge i,
.hero-locations-badge svg {
  width: 13px;
  height: 13px;
  color: var(--gold-accent);
  flex-shrink: 0;
}

.btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 16px 32px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
}

.btn-primary {
  background: var(--text-main);
  color: #050609;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.08);
}

.btn-primary:hover {
  background: var(--gold-accent);
  color: #050609;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--gold-glow);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(207, 168, 83, 0.06);
  border-color: var(--glass-border-hover);
  color: var(--gold-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* --- 10. SINGLE PHILOSOPHY CARD LAYOUT --- */
.single-philosophy-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.philosophy-wide-card {
  max-width: 900px;
  width: 100%;
  padding: 45px;
  display: flex;
  gap: 35px;
  align-items: flex-start;
  text-align: left;
}

.wide-philo-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-accent);
  flex-shrink: 0;
}

.wide-philo-content h3 {
  font-size: 26px;
  color: #fff;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.philo-subtitle {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 20px;
}

.wide-philo-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Card Spotlight glow coordinates */
.card-glow-element {
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(255, 255, 255, 0.035), transparent 60%);
  pointer-events: none;
}

/* --- 11. CINEMATIC SHOWCASE (FILMS) --- */
.films-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.film-card {
  display: block;
  width: 100%;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 20px;
  cursor: pointer;
}

.film-thumb-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.film-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.film-card:hover .film-thumbnail {
  transform: scale(1.06);
}

.film-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 5, 8, 0.85) 0%, rgba(5, 5, 8, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  z-index: 2;
  transition: background 0.4s ease;
}

.film-card:hover .film-card-overlay {
  background: linear-gradient(to top, rgba(5, 5, 8, 0.95) 0%, rgba(5, 5, 8, 0.35) 60%, rgba(0,0,0,0.2) 100%);
}

.play-icon-bubble {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
}

.play-icon-bubble i {
  width: 18px;
  height: 18px;
  fill: currentColor;
  margin-left: 2px;
}

.film-card:hover .play-icon-bubble {
  background: #fff;
  color: #050505;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.25);
}

.film-metadata {
  text-align: left;
}

.film-category {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-accent);
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}

.film-metadata h3 {
  font-size: 24px;
  color: #fff;
}

/* --- 12. PORTFOLIO GALLERY GRID --- */
.masonry-gallery-grid {
  column-count: 3;
  column-gap: 24px;
  width: 100%;
  margin-top: 15px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 24px;
  width: 100%;
  cursor: pointer;
  display: block;
}

.gallery-img-container {
  width: 100%;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  background: #111;
}

.gallery-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

.gallery-item-overlay {
  padding: 20px;
  background: rgba(10, 11, 16, 0.45);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--glass-border);
}

.gallery-text {
  text-align: left;
}

.gallery-item-tag {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-accent);
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.gallery-text h3 {
  font-size: 18px;
  color: #fff;
}

.gallery-btn-action {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover .gallery-btn-action {
  background: #fff;
  color: #050505;
  box-shadow: 0 0 10px rgba(255,255,255,0.2);
}

/* --- 13. VISUAL PRICING PACKAGES --- */
.package-tabs-wrapper {
  margin-bottom: 35px;
  display: flex;
  justify-content: center;
}

.package-tabs {
  display: inline-flex;
  background: rgba(9, 11, 17, 0.6);
  border: 1px solid var(--glass-border);
  padding: 5px;
  border-radius: 30px;
  gap: 5px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

.pack-tab-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 10px 24px;
  border-radius: 25px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pack-tab-btn:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.02);
}

.pack-tab-btn.active {
  background: var(--gold-accent);
  color: #050609;
  border-color: var(--gold-accent);
  box-shadow: 0 4px 15px rgba(207, 168, 83, 0.3);
  font-weight: 800;
}

.packages-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.package-card-v2 {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px 35px 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  height: 520px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.package-card-v2::after {
  content: attr(data-number);
  position: absolute;
  bottom: -10px;
  right: -5px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 150px;
  font-weight: 200;
  color: rgba(255, 255, 255, 0.025);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.package-card-v2:hover {
  transform: translateY(-8px);
  border-color: var(--glass-border-hover);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.65), 0 0 30px rgba(207, 168, 83, 0.05);
}

.package-card-v2:hover::after {
  color: rgba(207, 168, 83, 0.05);
  transform: translateY(-5px) scale(1.05);
}

.package-accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  transition: all 0.3s ease;
}

.package-accent-bar.silver { background: linear-gradient(90deg, transparent, #c0c0c0 50%, transparent); }
.package-accent-bar.gold { background: linear-gradient(90deg, transparent, var(--gold-accent) 50%, transparent); }
.package-accent-bar.diamond { background: linear-gradient(90deg, transparent, var(--diamond-accent) 50%, transparent); }

.featured-pack {
  border-color: rgba(207, 168, 83, 0.3);
  box-shadow: 0 0 35px rgba(207, 168, 83, 0.1), 0 15px 40px rgba(0, 0, 0, 0.4), inset 0 0 60px rgba(207, 168, 83, 0.02);
  background: rgba(207, 168, 83, 0.02);
}

.featured-pack:hover {
  border-color: var(--gold-accent);
  box-shadow: 0 0 50px rgba(207, 168, 83, 0.2), 0 25px 50px rgba(0, 0, 0, 0.55), inset 0 0 80px rgba(207, 168, 83, 0.05);
}

.popular-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, var(--gold-accent-light), var(--gold-accent));
  color: #050609;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 5px 12px;
  border-radius: 50px;
  box-shadow: 0 3px 10px rgba(207, 168, 83, 0.3);
  z-index: 2;
}

.pack-head {
  text-align: left;
  z-index: 1;
}

.pack-tier {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 12px;
}

.pack-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 400;
  line-height: 1.35;
  padding-bottom: 0.18em; /* safe space for descenders */
}

.pack-info {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 25px;
}

/* Package tier price color variants */
.pack-price-silver {
  color: #e2e8f0;
  text-shadow: 0 0 20px rgba(226, 232, 240, 0.2);
}

.pack-price-gold {
  background: linear-gradient(135deg, #FFF, var(--gold-accent) 60%, var(--gold-accent-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 5px rgba(207, 168, 83, 0.3));
  display: inline-block;
  padding-bottom: 0.18em; /* prevents background-clipped letters (g) from cutting off */
  margin-bottom: -0.18em;
}

.pack-price-diamond {
  color: #b9f2ff;
  text-shadow: 0 0 20px rgba(185, 242, 255, 0.35);
}

/* Customizable badge text */
.pack-customizable {
  font-size: 12px;
  font-style: italic;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  margin-bottom: 18px;
}

/* Other event tab button highlight */
.pack-tab-other {
  border: 1px dashed rgba(207, 168, 83, 0.4) !important;
  color: var(--gold-accent) !important;
}

.pack-tab-other:hover {
  background: rgba(207, 168, 83, 0.05) !important;
  border-color: var(--gold-accent) !important;
}

.pack-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  margin-bottom: 30px;
  z-index: 1;
}

.pack-details li {
  font-size: 12.5px;
  color: var(--text-main);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pack-details li i,
.pack-details li svg {
  width: 14px;
  height: 14px;
  color: var(--gold-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.pack-footer {
  z-index: 1;
}

.pack-footer .btn {
  width: 100%;
}

/* Customizer Unified Package Card ( Christening, Fixation ) */
.unified-package-card {
  border-radius: 24px;
  padding: 45px;
  width: 100%;
}

.unified-card-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 40px;
}

.unified-card-left {
  border-right: 1px solid var(--glass-border);
  padding-right: 40px;
}

.unified-package-tagline {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  text-align: left;
}

.unified-card-right h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 6px;
  text-align: left;
}

.addon-subtitle {
  font-size: 10.5px;
  color: var(--text-muted);
  margin-bottom: 20px;
  text-align: left;
}

.unified-addons-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.unified-addon-item {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  gap: 14px;
  align-items: start;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.unified-addon-item input[type="checkbox"] {
  accent-color: var(--gold-accent);
  width: 15px;
  height: 15px;
  margin-top: 2px;
  cursor: pointer;
}

.addon-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.addon-name {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.addon-name i {
  width: 13px;
  height: 13px;
  color: var(--gold-accent);
}

.addon-desc {
  font-size: 9.5px;
  color: var(--text-muted);
}

.unified-addon-item.active {
  border-color: var(--gold-accent);
  background: rgba(212, 175, 55, 0.03);
}

.unified-card-footer {
  margin-top: 35px;
  display: flex;
  justify-content: center;
}

.unified-finalize-btn {
  padding: 16px 45px;
}

/* Custom Calculator Banner */
.calculator-banner {
  margin-top: 40px;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  gap: 30px;
}

.banner-body {
  display: flex;
  align-items: center;
  gap: 20px;
}

.banner-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  color: var(--gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-icon-box i {
  width: 20px;
  height: 20px;
}

.banner-text h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 4px;
}

.banner-text p {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 650px;
  line-height: 1.5;
}

/* --- 14. CLIENT REACTIONS (TESTIMONIALS) --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 35px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 25px;
}

.testi-stars {
  display: flex;
  gap: 4px;
}

.testi-stars i {
  width: 14px;
  height: 14px;
  color: var(--gold-accent);
}

.testi-stars i.star-fill {
  fill: currentColor;
}

/* Delete reaction button styling */
.delete-reaction-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.4);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
  padding: 0;
}

.delete-reaction-btn:hover {
  background: rgba(239, 68, 68, 0.25);
  border-color: rgba(239, 68, 68, 0.5);
  color: #ff4d4d;
  transform: scale(1.1);
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.3);
}

.delete-reaction-btn i,
.delete-reaction-btn svg {
  width: 13px;
  height: 13px;
  display: block;
}

.testi-quote {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  color: var(--gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-avatar i {
  width: 16px;
  height: 16px;
}

.testi-info h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.testi-info span {
  font-size: 10px;
  color: var(--text-muted);
}

/* --- 15. RESERVATION SPLIT CONTAINER --- */
.booking-split-container {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 30px;
  align-items: start;
}

.booking-card-panel {
  padding: 40px;
}

.booking-form-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

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

.form-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-item label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.input-field {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  padding: 14px 18px;
  outline: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.input-field::placeholder {
  color: rgba(255, 255, 255, 0.18);
}

.input-field:focus {
  border-color: rgba(207, 168, 83, 0.45);
  background: rgba(207, 168, 83, 0.02);
  box-shadow: 0 0 15px rgba(207, 168, 83, 0.08);
}

.select-field {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 40px;
}

.select-field option {
  background: #0B0D14;
  color: #fff;
}

.textarea-field {
  resize: none;
}

/* Calendar styling - Re-enabled & grid layout corrected */
.calendar-panel {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 20px;
  width: 100%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.calendar-panel.invalid-glow {
  border-color: rgba(239, 68, 68, 0.4);
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.08);
}

.cal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.cal-nav-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
}

.cal-nav-btn:hover {
  background: rgba(212, 175, 55, 0.10);
  border-color: var(--gold-accent);
  color: var(--gold-accent);
}

.cal-nav-btn:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

.cal-nav-btn i {
  width: 14px;
  height: 14px;
}

.cal-month-year {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
}

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr); /* Corrected from grid-template-cols */
  gap: 6px;
  text-align: center;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 8px;
}

.cal-weekdays span {
  font-size: 9px;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cal-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr); /* Corrected from grid-template-cols to render 7 columns */
  gap: 6px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  position: relative;
  border: 1px solid transparent;
}

.cal-day.empty {
  cursor: default;
  pointer-events: none;
  visibility: hidden;
}

.cal-day.past {
  color: rgba(255, 255, 255, 0.15);
  cursor: not-allowed;
  pointer-events: none;
}

.cal-day.available {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.cal-day.available:hover {
  background: rgba(212, 175, 55, 0.05);
  border-color: rgba(212, 175, 55, 0.4);
  color: var(--gold-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.1);
}

.cal-day.selected {
  background: linear-gradient(135deg, #FFF5D6 0%, var(--gold-accent) 100%);
  color: #000;
  font-weight: 700;
  border-color: var(--gold-accent);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
  transform: scale(1.05);
}

.cal-day.today::before {
  content: "";
  position: absolute;
  bottom: 4px;
  width: 4px;
  height: 4px;
  background-color: var(--gold-accent);
  border-radius: 50%;
}

.cal-day.selected.today::before {
  background-color: #000;
}

.btn-submit-booking {
  width: 100%;
}

.booking-details-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: left;
}

.package-summary-card {
  padding: 30px;
  border-left: 3px solid var(--gold-accent);
}

.package-summary-card h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  font-weight: 700;
}

.summary-divider {
  height: 1px;
  background: var(--glass-border);
  margin: 15px 0;
}

.summary-placeholder {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.gold-text-link {
  color: var(--gold-accent);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed var(--gold-accent);
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
}

.gold-text-link:hover {
  color: var(--gold-accent-light);
  border-bottom-style: solid;
  text-shadow: 0 0 8px var(--gold-glow);
}

.summary-detail-row {
  margin-bottom: 18px;
}

.summary-detail-row:last-child {
  margin-bottom: 0;
}

.summary-detail-row .lbl {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 6px;
}

.summary-detail-row strong {
  font-size: 16px;
}

.val-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.val-list li {
  font-size: 13px;
  color: #fff;
}

.quick-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.contact-card-v2 {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-accent);
}

.card-icon i {
  width: 16px;
  height: 16px;
}

.card-text h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.card-text a, .card-text p {
  font-size: 13px;
  color: #fff;
  text-decoration: none;
}

.card-text a:hover {
  text-decoration: underline;
  color: var(--gold-accent);
}

/* Success form screen */
.success-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  min-height: 400px;
}

.success-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--gold-accent);
  color: var(--gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 0 20px var(--gold-glow);
}

.success-icon i {
  width: 32px;
  height: 32px;
}

.success-screen h3 {
  font-size: 26px;
  color: #fff;
  margin-bottom: 12px;
}

.success-screen p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- 16. SIMPLE CONTACT SECTION --- */
.contact-split-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  align-items: start;
}

.contact-coordinates {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.coordinate-item {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.coordinate-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-accent);
  flex-shrink: 0;
}

.coordinate-icon i {
  width: 18px;
  height: 18px;
}

.coordinate-text h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.coordinate-text a, .coordinate-text p {
  font-size: 13.5px;
  color: #fff;
  text-decoration: none;
}

.coordinate-text a:hover {
  color: var(--gold-accent);
  text-decoration: underline;
}

.contact-form-card {
  padding: 35px;
}

/* --- 17. DEDICATED LEGAL PAGE --- */
.legal-page-container {
  max-width: 950px;
  margin: 25px auto 0;
  padding: 40px;
  text-align: left;
}

.legal-sections-tabs {
  display: flex;
  gap: 15px;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 12px;
  margin-bottom: 25px;
}

.legal-tab-btn {
  background: transparent;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 8px 16px;
  position: relative;
}

.legal-tab-btn:hover, .legal-tab-btn.active {
  color: #fff;
}

.legal-tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--gold-accent);
  box-shadow: 0 0 8px var(--gold-accent);
}

.legal-tab-content-area {
  max-height: 420px;
  overflow-y: auto;
  padding-right: 15px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

.legal-tab-content-area h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: #fff;
  font-weight: 700;
  margin-top: 25px;
  margin-bottom: 10px;
}

.legal-tab-content-area h4:first-of-type {
  margin-top: 0;
}

.legal-tab-content-area p {
  margin-bottom: 15px;
}

/* Legal T&C page footer styling */
footer {
  margin-top: 50px;
  border-top: 1px solid var(--glass-border);
  padding-top: 25px;
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand .logo-text {
  font-size: 15px;
  margin-bottom: 6px;
  display: inline-block;
  font-family: 'Syne', sans-serif;
  text-transform: uppercase;
  color: #fff;
}

.footer-brand p {
  font-size: 11px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.legal-link {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.3s ease;
  text-decoration: none;
}

.legal-link:hover {
  color: #fff;
}

/* --- 18. INTRO SPLASH VIDEO OVERLAY --- */
#intro-video-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease;
}

#intro-video-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

#intro-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#intro-mute-btn, #intro-skip-btn {
  position: absolute;
  bottom: 40px;
  z-index: 1010;
  background: rgba(10, 11, 16, 0.5);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  color: #fff;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

#intro-mute-btn:hover, #intro-skip-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255,255,255,0.25);
}

#intro-mute-btn {
  left: 40px;
  width: 44px;
  height: 44px;
  padding: 0;
  justify-content: center;
}

#intro-skip-btn {
  right: 40px;
}

/* --- 19. SUB-GALLERY LIGHTBOX/DETAIL OVERLAY --- */
.sub-gallery-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--bg-color);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.95);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  padding: 40px;
}

.sub-gallery-overlay.open {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.sub-gallery-navbar {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  text-align: left;
}

.btn-sub-back {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  color: #fff;
  border-radius: 50px;
  padding: 10px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-sub-back:hover {
  background: rgba(255,255,255,0.08);
}

.sub-nav-titles h3 {
  font-size: 28px;
  color: #fff;
}

.sub-gallery-content {
  max-width: 1200px;
  margin: 0 auto;
}

.sub-gallery-banner {
  width: 100%;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  margin-bottom: 40px;
}

.sub-gallery-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sub-banner-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-color) 0%, transparent 100%);
}

.sub-images-grid {
  column-count: 3;
  column-gap: 20px;
}

.sub-image-card {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  cursor: zoom-in;
}

.sub-image-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.sub-image-card:hover img {
  transform: scale(1.03);
}

/* --- 20. FULLSCREEN LIGHTBOX MODAL --- */
.image-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(4, 5, 8, 0.96);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img-wrapper {
  max-width: 85%;
  max-height: 85%;
  transform: scale(0.95);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.image-lightbox.open .lightbox-img-wrapper {
  transform: scale(1);
}

.lightbox-img-wrapper img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  object-fit: contain;
}

.btn-lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.btn-lightbox-close:hover {
  opacity: 1;
}

.btn-lightbox-close i {
  width: 24px;
  height: 24px;
}

.btn-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-lightbox-nav.prev { left: 40px; }
.btn-lightbox-nav.next { right: 40px; }

/* --- 21. BESPOKE CUSTOMIZER MODAL OVERLAY --- */
.customizer-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 5, 8, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 180;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.customizer-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.customizer-modal-card {
  width: 90%;
  max-width: 1050px;
  border-radius: 24px;
  padding: 40px;
  position: relative;
  text-align: left;
  transform: translateY(30px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  height: 82vh; /* Fixed height on desktop to force correct flexbox calculations and prevent bottom clipping */
  max-height: 82vh;
  overflow: hidden; /* prevents double scrollbars on the main card */
  display: flex;
  flex-direction: column;
}

.customizer-modal-overlay.open .customizer-modal-card {
  transform: translateY(0);
}

.btn-modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.3s ease;
}

.btn-modal-close:hover {
  color: #fff;
}

.btn-modal-close i {
  width: 18px;
  height: 18px;
}

.modal-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
  margin-bottom: 30px;
}

.customizer-modal-columns {
  display: flex; /* Changed from grid to flex to fix browser height calculations */
  flex-direction: row;
  gap: 30px;
  align-items: stretch; /* ensures equal height columns */
  flex-grow: 1; /* fills remaining height of card */
  min-height: 0; /* allows children to shrink and scroll */
  width: 100%;
}

.customizer-modal-controls {
  flex: 1.35;
  min-width: 0;
  height: 100%;
  overflow-y: auto;
  padding-right: 15px;
}

.control-block {
  margin-bottom: 30px;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 25px;
}

.control-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.control-block h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 6px;
}

.block-desc {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.counter-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.counter-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--glass-border);
  padding: 16px 20px;
  border-radius: 12px;
}

.counter-info h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.counter-info p {
  font-size: 10.5px;
  color: var(--text-muted);
}

.counter-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.counter-act-btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.counter-act-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

.counter-number {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-accent);
  min-width: 14px;
  text-align: center;
}

.addons-selection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.addon-selection-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  gap: 15px;
  align-items: start;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.addon-selection-card input[type="checkbox"] {
  accent-color: var(--gold-accent);
  width: 15px;
  height: 15px;
  margin-top: 2px;
  cursor: pointer;
}

.addon-card-text h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.addon-card-text h5 i {
  width: 13px;
  height: 13px;
  color: var(--gold-accent);
}

.addon-card-text p {
  font-size: 10px;
  color: var(--text-muted);
  line-height: 1.4;
}

.addon-selection-card:hover {
  background: rgba(255, 255, 255, 0.03);
}

.addon-selection-card.active {
  border-color: var(--gold-accent);
  background: rgba(212, 175, 55, 0.03);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.05);
}

.customizer-modal-summary {
  flex: 1;
  min-width: 0;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.customizer-modal-summary h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  font-weight: 700;
}

.sum-scrollable-area {
  flex-grow: 1;
  overflow-y: auto;
  padding-right: 10px;
  min-height: 0;
}

.sum-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.sum-lbl {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 600;
}

.sum-val {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

.sum-bullets {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
  margin-top: 10px;
}

.sum-bullets li {
  font-size: 11.5px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sum-bullets li::before {
  content: "•";
  color: var(--gold-accent);
  font-size: 14px;
}

.sum-action-block {
  margin-top: 25px;
}

.sum-action-block p {
  font-size: 10px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 15px;
}

/* --- 22. RESPONSIVE DESIGN MEDIA QUERIES --- */
@media (max-width: 1180px) {
  .hero-title { font-size: 48px; }
  .sections-container {
    width: calc(100% - 300px);
  }
}

@media (max-width: 1024px) {
  .philosophy-grid, .packages-container, .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .booking-split-container, .contact-split-container, .unified-card-grid {
    grid-template-columns: 1fr;
  }
  .customizer-modal-columns {
    display: flex;
    flex-direction: column;
    height: auto;
    gap: 24px;
  }
  .unified-card-left {
    border-right: none;
    border-bottom: 1px solid var(--glass-border);
    padding-right: 0;
    padding-bottom: 30px;
  }
  .customizer-modal-controls {
    flex: none;
    height: auto;
    overflow-y: visible;
    padding-right: 0;
  }
  .customizer-modal-card {
    height: auto; /* reset fixed height on mobile */
    max-height: 90vh;
    overflow-y: auto;
    display: block;
  }
  .customizer-modal-summary {
    flex: none;
    height: auto;
    display: flex;
    flex-direction: column;
    margin-top: 25px;
  }
  .sum-scrollable-area {
    max-height: none;
    overflow-y: visible;
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  /* Mobile navbar at top */
  header {
    top: 16px;
    left: 16px;
    right: 16px;
    bottom: auto;
    width: calc(100% - 32px);
    height: 60px;
    border-radius: 50px;
  }
  
  .nav-container {
    flex-direction: row;
    padding: 0 16px;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    position: relative;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    z-index: 10;
  }

  .logo-img {
    height: 48px !important;
    width: auto !important;
    margin: 0 auto !important;
  }

  .package-tabs-wrapper {
    display: flex !important;
    justify-content: flex-start !important;
    overflow-x: auto !important;
    max-width: 100% !important;
    padding: 0 16px 8px 16px !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
  }
  .package-tabs-wrapper::-webkit-scrollbar {
    display: none !important;
  }
  .package-tabs {
    display: inline-flex !important;
    flex-wrap: nowrap !important;
    flex-shrink: 0 !important;
    width: max-content !important;
  }

  .nav-menu {
    position: fixed;
    top: 85px;
    left: 16px;
    right: 16px;
    background: rgba(10, 11, 16, 0.95);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 24px;
    display: none;
    z-index: 100;
  }

  .nav-menu.open {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px;
  }

  .icon-only-nav .nav-link span {
    display: inline-block !important;
  }

  .icon-only-nav .nav-link {
    justify-content: flex-start !important;
  }

  .nav-link {
    font-size: 14px;
    justify-content: flex-start;
    gap: 16px;
    padding: 12px 16px;
    border-left: none !important;
  }

  .nav-link.active {
    border-left: none !important;
    border-right: 2px solid var(--gold-accent) !important;
    padding-left: 16px !important;
    padding-right: 14px !important;
    color: var(--gold-accent);
  }

  .nav-footer {
    display: block !important;
    order: 2;
    z-index: 10;
    margin: 0;
  }

  .nav-footer .btn-book-cta {
    font-size: 9px !important;
    font-weight: 800;
    padding: 8px 14px !important;
    width: auto !important;
    height: 34px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .mobile-toggle {
    display: block;
    order: 1;
    z-index: 10;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    margin: 0;
    padding: 0;
  }

  .mobile-toggle i {
    width: 24px;
    height: 24px;
  }

  /* Reset layout constraints for mobile */
  .social-sidebar {
    display: none; /* hidden on mobile to prevent clutter */
  }

  .sections-container {
    left: 0;
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  section {
    padding: 100px 16px 60px;
    left: 50% !important;
    width: 100% !important;
    transform: translateX(-50%) rotateY(90deg) translateZ(-100px) !important;
  }

  section.active {
    transform: translateX(-50%) rotateY(0deg) translateZ(0) !important;
  }

  section.flipped-next {
    transform: translateX(-50%) rotateY(-90deg) translateZ(-100px) !important;
  }

  section.flipped-prev {
    transform: translateX(-50%) rotateY(90deg) translateZ(-100px) !important;
  }

  /* Hero adjustments */
  .hero-glass-card {
    padding: 30px 20px;
    max-width: 90%;
  }

  .hero-title {
    font-size: 22px !important;
    white-space: nowrap !important;
    letter-spacing: 0.05em !important;
  }

  .hero-desc {
    font-size: 13px;
  }

  .hero-locations-badge {
    margin-top: 20px;
    padding: 6px 12px;
    font-size: 9.5px;
    letter-spacing: 0.04em;
    border-radius: 20px;
  }

  .hero-original-logo {
    height: 100px;
  }

  /* Grids */
  .philosophy-grid, .packages-container, .testimonials-grid, .films-grid {
    grid-template-columns: 1fr;
  }

  .film-metadata h3 {
    font-size: 18px !important;
  }

  .play-icon-bubble {
    width: 38px;
    height: 38px;
  }

  .play-icon-bubble i,
  .play-icon-bubble svg {
    width: 14px;
    height: 14px;
  }

  .package-card-v2 {
    height: auto !important;
    min-height: auto !important;
    gap: 20px;
  }

  .philosophy-wide-card {
    flex-direction: column;
    padding: 24px;
    gap: 20px;
  }

  .masonry-gallery-grid, .sub-images-grid {
    column-count: 2;
    column-gap: 15px;
  }

  .form-group-row {
    grid-template-columns: 1fr;
  }

  .calculator-banner {
    flex-direction: column;
    text-align: center;
  }

  .banner-body {
    flex-direction: column;
  }

  .banner-text {
    text-align: center;
  }

  .footer-layout {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .sub-gallery-overlay {
    padding: 16px;
  }

  .sub-gallery-banner {
    height: 180px;
  }

  #intro-mute-btn, #intro-skip-btn {
    bottom: 20px;
  }
}

@media (max-width: 480px) {
  .masonry-gallery-grid, .sub-images-grid {
    column-count: 1;
  }
}

/* Rating Stars Input Selector */
.rating-star {
  transition: transform 0.2s ease, color 0.2s ease, fill 0.2s ease;
}

.rating-star:hover {
  transform: scale(1.2);
}

.rating-star.active {
  color: var(--gold-accent);
  fill: var(--gold-accent);
}

/* Contact Page Social Ecosystem */
.social-channels-block {
  margin-top: 35px;
  border-top: 1px solid var(--glass-border);
  padding-top: 25px;
}

.social-channels-block h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.social-channels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.social-channel-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.social-channel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-channel-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.social-channel-item:hover::before {
  opacity: 1;
}

.social-channel-item .channel-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

/* Brand-colored circles always visible */
.social-channel-item.wa .channel-icon-wrapper  { background: rgba(37, 211, 102, 0.2);  border: 1.5px solid rgba(37, 211, 102, 0.4); }
.social-channel-item.ig .channel-icon-wrapper  { background: rgba(225, 48, 108, 0.2);  border: 1.5px solid rgba(225, 48, 108, 0.4); }
.social-channel-item.fb .channel-icon-wrapper  { background: rgba(24, 119, 242, 0.2);  border: 1.5px solid rgba(24, 119, 242, 0.4); }
.social-channel-item.threads .channel-icon-wrapper  { background: rgba(255, 255, 255, 0.1);  border: 1.5px solid rgba(255, 255, 255, 0.35); }

/* Brand icon colors — target both i (pre-render) and svg (post-render by Lucide) */
.social-channel-item .channel-icon-wrapper i,
.social-channel-item .channel-icon-wrapper svg {
  width: 18px;
  height: 18px;
  stroke-width: 2px;
  transition: color 0.3s ease, stroke 0.3s ease;
  display: block;
}
.social-channel-item.wa .channel-icon-wrapper i,
.social-channel-item.wa .channel-icon-wrapper svg { color: #25d366 !important; stroke: #25d366 !important; }
.social-channel-item.ig .channel-icon-wrapper i,
.social-channel-item.ig .channel-icon-wrapper svg { color: #e1306c !important; stroke: #e1306c !important; }
.social-channel-item.fb .channel-icon-wrapper i,
.social-channel-item.fb .channel-icon-wrapper svg { color: #1877f2 !important; stroke: #1877f2 !important; }
.social-channel-item.threads .channel-icon-wrapper i,
.social-channel-item.threads .channel-icon-wrapper svg { color: #ffffff !important; stroke: #ffffff !important; }

/* Hover: full brand fill */
.social-channel-item.wa:hover {
  border-color: rgba(37, 211, 102, 0.5);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.2);
}
.social-channel-item.wa:hover .channel-icon-wrapper { background: #25d366; border-color: #25d366; }
.social-channel-item.wa:hover .channel-icon-wrapper i { color: #fff !important; stroke: #fff; }

.social-channel-item.ig:hover {
  border-color: rgba(225, 48, 108, 0.5);
  box-shadow: 0 8px 24px rgba(225, 48, 108, 0.2);
}
.social-channel-item.ig:hover .channel-icon-wrapper {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
}
.social-channel-item.ig:hover .channel-icon-wrapper i { color: #fff !important; stroke: #fff; }

.social-channel-item.fb:hover {
  border-color: rgba(24, 119, 242, 0.5);
  box-shadow: 0 8px 24px rgba(24, 119, 242, 0.2);
}
.social-channel-item.fb:hover .channel-icon-wrapper { background: #1877f2; border-color: #1877f2; }
.social-channel-item.fb:hover .channel-icon-wrapper i { color: #fff !important; stroke: #fff; }

.social-channel-item.threads:hover {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}
.social-channel-item.threads:hover .channel-icon-wrapper { background: #ffffff; border-color: #ffffff; }
.social-channel-item.threads:hover .channel-icon-wrapper i,
.social-channel-item.threads:hover .channel-icon-wrapper svg { color: #050609 !important; stroke: #050609 !important; }

.channel-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.channel-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.channel-link {
  font-size: 11px;
  color: var(--text-muted);
}

/* Testimonials Inline Reaction Card & Form */
.reaction-form-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-color: rgba(255, 255, 255, 0.08);
  position: relative;
  background: rgba(15, 15, 15, 0.45);
}

.reaction-card-header h3 {
  font-size: 18px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  margin-bottom: 4px;
}

.reaction-card-header .card-subtitle {
  font-size: 12px;
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
}

.inline-reaction-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

.form-item-sm {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-item-sm label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.input-field-sm, .textarea-field-sm {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 10px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: #fff;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.input-field-sm:focus, .textarea-field-sm:focus {
  outline: none;
  border-color: rgba(207, 168, 83, 0.45);
  background: rgba(207, 168, 83, 0.02);
  box-shadow: 0 0 15px rgba(207, 168, 83, 0.08);
}

.rating-item-sm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed var(--glass-border);
  border-radius: 8px;
  padding: 8px 12px;
}

.rating-input-stars-sm .inline-rating-star {
  transition: transform 0.2s ease, color 0.2s ease, fill 0.2s ease;
}

.rating-input-stars-sm .inline-rating-star:hover {
  transform: scale(1.25);
}

.rating-input-stars-sm .inline-rating-star.active {
  color: var(--gold-accent);
  fill: var(--gold-accent);
}

.btn-submit-reaction-sm {
  padding: 10px 18px;
  font-size: 11px;
}

/* Animations and Glow Highlights */
.highlight-flash {
  animation: goldFlash 2s ease-out;
}

@keyframes goldFlash {
  0% {
    border-color: var(--gold-accent);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
    transform: scale(1.02);
  }
  100% {
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
    transform: scale(1);
  }
}

.new-testimonial-glow {
  animation: entryGlow 1.5s ease-out;
}

@keyframes entryGlow {
  0% {
    opacity: 0;
    transform: translateY(15px) scale(0.98);
    border-color: var(--gold-accent);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    border-color: var(--glass-border);
    box-shadow: none;
  }
}

/* Responsive Overrides */
@media (max-width: 768px) {
  .social-channels-grid {
    grid-template-columns: 1fr;
  }
}

/* --- 23. MOBILE CYCLING SOCIAL FLOATING BUTTON --- */
#mobile-social-floating {
  display: none;
}

@media (max-width: 767px) {
  #mobile-social-floating {
    display: block !important;
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
  }

  #mobile-social-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
  }

  #mobile-social-btn svg,
  #mobile-social-btn i {
    width: 24px;
    height: 24px;
    stroke-width: 2px;
    transition: all 0.3s ease;
    display: block;
  }

  #mobile-social-btn.wa-icon {
    background: #25d366;
    border-color: #25d366;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
  }
  #mobile-social-btn.wa-icon svg,
  #mobile-social-btn.wa-icon i {
    color: #fff !important;
    stroke: #fff !important;
  }

  #mobile-social-btn.ig-icon {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
    box-shadow: 0 0 20px rgba(225, 48, 108, 0.4);
  }
  #mobile-social-btn.ig-icon svg,
  #mobile-social-btn.ig-icon i {
    color: #fff !important;
    stroke: #fff !important;
  }

  #mobile-social-btn.fb-icon {
    background: #1877f2;
    border-color: #1877f2;
    box-shadow: 0 0 20px rgba(24, 119, 242, 0.4);
  }
  #mobile-social-btn.fb-icon svg,
  #mobile-social-btn.fb-icon i {
    color: #fff !important;
    stroke: #fff !important;
  }

  #mobile-social-btn.threads-icon {
    background: #111111;
    border-color: #333333;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
  }
  #mobile-social-btn.threads-icon svg,
  #mobile-social-btn.threads-icon i {
    color: #fff !important;
    stroke: #fff !important;
  }
}

/* Bespoke Package designer session card styles & bracket styles */
.pack-detail-bracket {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 3px;
  font-weight: normal;
  font-style: italic;
}

.customizer-session-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.customizer-session-card.active {
  border-color: rgba(207, 168, 83, 0.35);
  background: rgba(207, 168, 83, 0.02);
}

.session-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.session-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
}

.session-checkbox-label input[type="checkbox"] {
  accent-color: var(--gold-accent);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.btn-edit-crew {
  background: transparent;
  border: 1px solid var(--gold-accent);
  color: var(--gold-accent);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
}

.btn-edit-crew:hover {
  background: var(--gold-accent);
  color: #0b0d14;
}

.session-crew-summary {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
  padding-left: 26px;
}

.session-crew-edit-panel {
  padding: 12px 0 0 26px;
  border-top: 1px dashed var(--glass-border);
  margin-top: 10px;
}

.edit-crew-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 12.5px;
  color: #fff;
}

.edit-crew-row:last-child {
  margin-bottom: 0;
}

/* --- 24. COMPLIMENTARY GIFT POPUP FLOW --- */
.gift-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.gift-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.gift-modal-card {
  max-width: 500px;
  width: 90%;
  text-align: center;
  padding: 40px 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  transform: scale(0.9);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.gift-modal-overlay.open .gift-modal-card {
  transform: scale(1);
}

.gift-modal-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 25px;
  font-weight: 300;
}

.gift-box-container {
  width: 160px;
  height: 160px;
  margin: 0 auto;
  cursor: pointer;
  position: relative;
}

.gift-box-svg {
  width: 100%;
  height: 100%;
  animation: giftPulse 2s infinite ease-in-out;
}

.gift-lid, .gift-base {
  transform-origin: center;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.6s ease;
}

.gift-box-container.opened .gift-lid {
  transform: translate(15px, -35px) rotate(15deg);
  opacity: 0;
}

.gift-box-container.opened .gift-base {
  transform: scale(0.95);
  opacity: 0.3;
}

@keyframes giftPulse {
  0% { transform: scale(1) rotate(0deg); }
  12% { transform: scale(1.08) rotate(-3deg); }
  24% { transform: scale(1.08) rotate(3deg); }
  36% { transform: scale(1.08) rotate(-3deg); }
  48% { transform: scale(1.08) rotate(3deg); }
  60% { transform: scale(1) rotate(0deg); }
  100% { transform: scale(1) rotate(0deg); }
}

.gift-tap-instruction {
  font-size: 0.95rem;
  color: var(--color-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 15px;
  animation: blinkText 1.5s infinite;
}

@keyframes blinkText {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.gift-reveal-content {
  margin-top: 25px;
  animation: zoomInReveal 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes zoomInReveal {
  0% { opacity: 0; transform: scale(0.85); }
  100% { opacity: 1; transform: scale(1); }
}

.unlocked-msg {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.gift-reveal-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
}

.gift-reveal-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 8px;
  color: #f1e1a6;
  font-size: 1rem;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: itemFadeIn 0.5s ease forwards;
  opacity: 0;
  transform: translateY(10px);
}

.gift-reveal-item:nth-child(1) { animation-delay: 0.1s; }
.gift-reveal-item:nth-child(2) { animation-delay: 0.3s; }
.gift-reveal-item:nth-child(3) { animation-delay: 0.5s; }
.gift-reveal-item:nth-child(4) { animation-delay: 0.7s; }
.gift-reveal-item:nth-child(5) { animation-delay: 0.9s; }

@keyframes itemFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gift-reveal-item i {
  color: var(--color-gold);
  width: 18px;
  height: 18px;
}

.gift-timer-notice {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 15px;
}

#gift-countdown-sec {
  color: var(--color-gold);
  font-weight: bold;
}

.confetti-particle {
  position: fixed;
  z-index: 2600;
  pointer-events: none;
  border-radius: 2px;
  will-change: transform, opacity;
}

@keyframes logoPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.95;
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.1));
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
  }
}


