/* ==========================================================================
   SUGAR POLISH NAIL BAR - LUXURY & MINIMALIST DESIGN SYSTEM
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  /* --- Luxury Theme Color Tokens --- */
  --bg-velvet: #050505;
  --bg-primary: #0b0b0b;
  --bg-secondary: #121212;
  --bg-card: #161616;
  --bg-glass: rgba(18, 18, 18, 0.75);
  
  --gold-primary: #d4af37;     /* Classic Metallic Gold */
  --gold-light: #f3e5ab;       /* Soft Champaign Gold */
  --gold-dark: #aa842c;        /* Burnished Bronze Gold */
  --gold-glow: rgba(212, 175, 55, 0.35);
  --gold-border: rgba(212, 175, 55, 0.2);
  --gold-border-heavy: rgba(212, 175, 55, 0.6);
  
  --text-primary: #ffffff;
  --text-body: #d6d6d6;
  --text-muted: #8e8e8e;
  
  /* --- Transitions --- */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.2s ease;
  
  /* --- Fonts --- */
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Montserrat', sans-serif;
  
  /* --- Spacing & Layout --- */
  --header-height: 80px;
}

/* ==========================================================================
   RESET & SYSTEM STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-velvet);
  color: var(--text-body);
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-velvet);
  overflow-x: hidden;
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

/* Hide default cursor if custom cursor is active */
body.has-custom-cursor {
  cursor: none;
}
body.has-custom-cursor a,
body.has-custom-cursor button,
body.has-custom-cursor input,
body.has-custom-cursor select,
body.has-custom-cursor textarea,
body.has-custom-cursor .interactive {
  cursor: none;
}

/* --- Scrollbar Customization --- */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-velvet);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-border-heavy);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--text-primary);
  font-weight: 500;
  letter-spacing: 0.05em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

button {
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  outline: none;
}

/* ==========================================================================
   CUSTOM CURSOR
   ========================================================================== */
.cursor-dot {
  width: 6px;
  height: 6px;
  background-color: var(--gold-primary);
  position: fixed;
  border-radius: 50%;
  z-index: 100000000;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
}

.cursor-trail {
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold-primary);
  position: fixed;
  border-radius: 50%;
  z-index: 99999999;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease-out, width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

/* Cursor states on hover */
body.has-custom-cursor.cursor-hovering .cursor-dot {
  width: 8px;
  height: 8px;
  background-color: #fff;
}
body.has-custom-cursor.cursor-hovering .cursor-trail {
  width: 48px;
  height: 48px;
  border-color: #fff;
  background-color: rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   LAYOUT CONTAINERS & GENERAL UTILITIES
   ========================================================================== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 100px 0;
  position: relative;
}

.text-center { text-align: center; }
.text-gold { color: #eed170; }

.section-title {
  font-size: 3rem;
  font-style: italic;
  margin-bottom: 20px;
  text-transform: capitalize;
  text-align: center;
  position: relative;
  display: block;
  width: 100%;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background-color: var(--gold-primary);
  margin: 15px auto 0 auto;
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 50px;
  text-align: center;
}

/* ==========================================================================
   LUXURY BUTTONS
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 0;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  color: var(--bg-velvet);
  background: linear-gradient(135deg, #eed170 0%, #d4af37 50%, #b88a26 100%);
  border: 1px solid #d4af37;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.5s;
  z-index: -1;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: var(--bg-velvet) !important;
  color: #eed170 !important;
  border-color: #eed170;
  box-shadow: 0 0 15px var(--gold-glow);
}

.btn-outline {
  color: var(--gold-primary);
  background-color: transparent;
  border: 1px solid var(--gold-border);
}

.btn-outline:hover {
  border-color: var(--gold-primary);
  background-color: rgba(212, 175, 55, 0.05);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: var(--transition-smooth);
}

/* Promo Announcement Bar */
.promo-bar {
  background: linear-gradient(90deg, #eed170 0%, #d4af37 50%, #b88a26 100%);
  width: 100%;
  height: 34px;
  overflow: hidden;
  position: relative;
  z-index: 1001;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.promo-wrapper {
  width: 100%;
  display: block;
  overflow: hidden;
  text-decoration: none;
}

.promo-track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.promo-wrapper:hover .promo-track {
  animation-play-state: paused;
}

.promo-text {
  color: var(--bg-velvet);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  padding-right: 80px; /* Spacing between scrolling texts */
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.header-main {
  height: var(--header-height);
  width: 100%;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.header.scrolled {
  background-color: var(--bg-glass);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.header.scrolled .promo-bar {
  height: 0;
  padding: 0;
  border: none;
}

.header.scrolled .header-main {
  height: 70px;
}

.header-main .container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 60px;
  width: auto;
  border-radius: 0;
  border: none;
  object-fit: contain;
  transition: var(--transition-smooth);
  margin-top: 0;
  margin-bottom: 0;
}

.header.scrolled .logo-img {
  height: 50px;
  margin-top: 0;
  margin-bottom: 0;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--text-primary);
}

.logo-text span {
  font-size: 0.9rem;
  display: block;
  font-family: var(--font-sans);
  letter-spacing: 0.3em;
  color: var(--gold-primary);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-link {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  padding: 8px 0;
  color: var(--text-body);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: var(--gold-primary);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--gold-primary);
}

.nav-link:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-smooth);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
  background: radial-gradient(circle at center, #111 0%, #050505 100%);
}

#particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.hero-background-glow {
  position: absolute;
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  background: radial-gradient(circle, rgba(212,175,55,0.04) 0%, rgba(212,175,55,0) 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  z-index: 10;
  padding: 0 20px;
}

.hero-tagline {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.2s;
}

.hero-title {
  font-size: 5rem;
  line-height: 1.1;
  font-weight: 300;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.4s;
}

.hero-title span {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, #ffffff 30%, var(--gold-primary) 70%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 5s linear infinite;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-body);
  max-width: 600px;
  margin: 0 auto 40px auto;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.6s;
}

.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.8s;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.7;
}

.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-primary), transparent);
  animation: scrollLine 2s infinite ease-in-out;
}

/* ==========================================================================
   ABOUT / BRAND STORY
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text {
  padding-right: 40px;
}

.about-lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--gold-primary);
  margin-bottom: 25px;
  line-height: 1.4;
}

.about-p {
  margin-bottom: 20px;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.8;
}

.about-signature {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-top: 30px;
}

.about-signature span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 5px;
}

.about-image-wrapper {
  position: relative;
}

.about-image-border {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold-primary);
  z-index: 1;
}

.about-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.05);
  filter: grayscale(20%);
  transition: var(--transition-smooth);
}

.about-image-wrapper:hover .about-img {
  filter: grayscale(0%);
  transform: translate(-10px, -10px);
}

.about-image-wrapper:hover .about-image-border {
  transform: translate(10px, 10px);
}

/* ==========================================================================
   SERVICES SECTION & ESTIMATOR
   ========================================================================== */
.services-section {
  background-color: var(--bg-primary);
  border-top: 1px solid rgba(212, 175, 55, 0.05);
  border-bottom: 1px solid rgba(212, 175, 55, 0.05);
}

/* --- Service Tabs --- */
.services-tabs-container {
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  margin-bottom: 50px;
}
.services-tabs-container::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.services-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 15px;
  min-width: max-content;
  margin: 0 auto;
}

.tab-btn {
  padding: 10px 24px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  border: 1px solid transparent;
  transition: var(--transition-smooth);
  position: relative;
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold-primary);
  transition: var(--transition-smooth);
}

.tab-btn:hover {
  color: var(--text-primary);
}

.tab-btn.active {
  color: var(--gold-primary);
}

.tab-btn.active::after {
  width: 100%;
}

/* --- Services Grid --- */
.services-panel {
  display: none;
  animation: fadeIn 0.6s ease forwards;
}

.services-panel.active {
  display: block;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* --- Service Item Card --- */
.service-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background-color: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.02);
  transition: var(--transition-smooth);
  position: relative;
}

.service-item:hover {
  border-color: var(--gold-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
}

/* Checkbox Selection */
.service-select-container {
  display: flex;
  align-items: flex-start;
  padding-top: 4px;
}

.checkbox-custom {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
}

.checkbox-custom input {
  opacity: 0;
  width: 0;
  height: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid var(--text-muted);
  background-color: transparent;
  transition: var(--transition-fast);
}

.checkbox-custom:hover .checkmark {
  border-color: var(--gold-primary);
}

.checkbox-custom input:checked ~ .checkmark {
  background-color: var(--gold-primary);
  border-color: var(--gold-primary);
}

.checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid var(--bg-velvet);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-custom input:checked ~ .checkmark::after {
  display: block;
}

/* Item Details */
.service-details {
  flex-grow: 1;
}

.service-title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
  gap: 15px;
}

.service-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-primary);
  font-weight: 500;
}

.service-leader {
  flex-grow: 1;
  border-bottom: 1px dotted rgba(212, 175, 55, 0.2);
  height: 1px;
  margin: 0 10px;
}

.service-price {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--gold-primary);
  font-weight: 600;
}

.service-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Estimator Floating Bar --- */
.estimator-bar {
  position: fixed;
  bottom: -250px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 800px;
  background-color: rgba(18, 18, 18, 0.9);
  border: 1px solid var(--gold-border);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 16px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 900;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
  transition: bottom 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.estimator-bar.visible {
  bottom: 30px;
}

.estimator-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.estimator-count {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.estimator-total {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--text-primary);
  font-weight: 600;
}

.estimator-total span {
  color: var(--gold-primary);
}

.estimator-btns {
  display: flex;
  gap: 15px;
  align-items: center;
}

.btn-clear {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  padding: 10px;
  border-bottom: 1px solid transparent;
  transition: var(--transition-fast);
}

.btn-clear:hover {
  color: #fff;
  border-color: #fff;
}

/* ==========================================================================
   BLOG SECTION STYLES
   ========================================================================== */
.blog-section {
  background-color: var(--bg-primary);
  padding: 100px 0;
  overflow: hidden;
  width: 100%;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.blog-card {
  background: rgba(18, 18, 18, 0.4);
  border: 1px solid var(--gold-border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.12);
  background: rgba(22, 22, 22, 0.65);
}

.blog-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.blog-card:hover .blog-card-img {
  transform: scale(1.06);
}

.blog-date {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background-color: rgba(5, 5, 5, 0.75);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: var(--gold-primary);
  padding: 6px 12px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--gold-border);
  border-radius: 4px;
}

.blog-card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.blog-card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  line-height: 1.4;
  font-weight: 500;
}

.blog-card-excerpt {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-body);
  margin-bottom: 20px;
}

.blog-read-more {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gold-primary);
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition-fast);
  margin-top: auto;
}

.blog-read-more span {
  transition: var(--transition-fast);
}

.blog-read-more:hover span {
  transform: translateX(4px);
}

.blog-btn-container {
  margin-top: 50px;
  text-align: center;
}

@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ==========================================================================
   PORTFOLIO / GALLERY
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  height: 320px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 5, 5, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-smooth);
  padding: 20px;
  border: 1px solid var(--gold-border);
}

.gallery-category {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 8px;
  transform: translateY(15px);
  transition: var(--transition-smooth);
}

.gallery-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  color: #fff;
  transform: translateY(15px);
  transition: var(--transition-smooth);
  transition-delay: 0.05s;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-category,
.gallery-item:hover .gallery-title {
  transform: translateY(0);
}

/* ==========================================================================
   CONTACT & LOCATION
   ========================================================================== */
.contact-section {
  background-color: var(--bg-secondary);
  border-top: 1px solid rgba(212, 175, 55, 0.05);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-item-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item-group h3 {
  font-size: 1.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding-bottom: 10px;
  margin-bottom: 5px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.95rem;
  color: var(--text-body);
}

.contact-link svg {
  width: 20px;
  height: 20px;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.contact-link:hover {
  color: var(--gold-primary);
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  font-size: 0.95rem;
}

.hours-day {
  color: var(--text-muted);
}

.hours-time {
  color: var(--text-body);
  text-align: right;
}

/* --- Map Mock --- */
.map-container {
  height: 380px;
  width: 100%;
  border: 1px solid var(--gold-border);
  position: relative;
  overflow: hidden;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background-color: var(--bg-primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
}

.map-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--gold-primary);
  margin-bottom: 20px;
}

.map-placeholder h4 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.map-placeholder p {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 320px;
  margin-bottom: 25px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: var(--bg-velvet);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 0;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  letter-spacing: 0.15em;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.footer-logo span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  color: var(--gold-primary);
  margin-top: 5px;
  text-transform: uppercase;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 35px 0;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.2px solid rgba(255, 255, 255, 0.15);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.03);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
}

.social-link svg,
.social-link i {
  width: 18px;
  height: 18px;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition-smooth);
}

.social-link:hover {
  border-color: var(--gold-primary);
  background-color: rgba(212, 175, 55, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.15);
}

.social-link:hover svg,
.social-link:hover i {
  color: var(--gold-primary);
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ==========================================================================
   INTERACTIVE LUXURY BOOKING WIZARD MODAL
   ========================================================================== */
.booking-modal {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 580px;
  height: 100vh;
  background-color: var(--bg-primary);
  border-left: 1px solid var(--gold-border);
  z-index: 2000;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.8);
  transition: right 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
}

.booking-modal.open {
  right: 0;
}

.booking-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.booking-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* Modal Header */
.booking-header {
  padding: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.booking-header-title {
  font-size: 1.8rem;
  color: var(--text-primary);
}

.booking-header-title span {
  font-size: 0.75rem;
  display: block;
  font-family: var(--font-sans);
  letter-spacing: 0.20em;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-top: 4px;
}

.btn-close-booking {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-fast);
}

.btn-close-booking:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.btn-close-booking svg {
  width: 20px;
  height: 20px;
}

/* Booking Timeline / Progress Steps */
.booking-steps-nav {
  display: flex;
  justify-content: space-between;
  padding: 20px 30px;
  background-color: var(--bg-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  position: relative;
  text-align: center;
}

.step-indicator:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 15px;
  left: 50%;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.05);
  z-index: 1;
}

.step-indicator.active:not(:last-child)::after {
  background: linear-gradient(to right, var(--gold-primary), rgba(255, 255, 255, 0.05));
}

.step-indicator.completed:not(:last-child)::after {
  background-color: var(--gold-primary);
}

.step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--text-muted);
  background-color: var(--bg-secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  z-index: 2;
  transition: var(--transition-smooth);
}

.step-indicator.active .step-number {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.step-indicator.completed .step-number {
  background-color: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--bg-velvet);
}

.step-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.step-indicator.active .step-label {
  color: #fff;
}

/* Booking Content Scrollable Area */
.booking-content {
  flex-grow: 1;
  overflow-y: auto;
  padding: 30px;
}

.booking-panel {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.booking-panel.active {
  display: block;
}

.booking-subtitle {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

/* Step 1: Selected Services Review list */
.booking-review-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.booking-review-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background-color: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.review-item-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
}

.review-item-price {
  color: var(--gold-primary);
  font-weight: 500;
}

.review-summary-totals {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.review-total-row.grand-total {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 15px;
  margin-top: 5px;
}

.review-total-row.grand-total span {
  color: var(--gold-primary);
}

/* Step 2: Date & Time selector styles */
.calendar-mock {
  background-color: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px;
  margin-bottom: 30px;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.calendar-title {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-weight: 500;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.calendar-day {
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-body);
  transition: var(--transition-fast);
}

.calendar-day.other-month {
  color: rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.calendar-day.past {
  color: rgba(255, 255, 255, 0.15);
  text-decoration: line-through;
  pointer-events: none;
}

.calendar-day.available {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.calendar-day.available:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.calendar-day.selected {
  background: linear-gradient(135deg, #eed170 0%, #d4af37 100%) !important;
  color: var(--bg-velvet) !important;
  border-color: #d4af37 !important;
  font-weight: 600;
}

.time-slots-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.time-slot {
  padding: 12px 10px;
  text-align: center;
  font-size: 0.8rem;
  background-color: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-fast);
}

.time-slot:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.time-slot.selected {
  background: linear-gradient(135deg, #eed170 0%, #d4af37 100%);
  color: var(--bg-velvet);
  border-color: #d4af37;
  font-weight: 500;
}

/* Step 3: Customer Info Fields */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.form-control {
  background-color: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 18px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  border-radius: 0;
  transition: var(--transition-smooth);
}

.form-control:focus {
  border-color: var(--gold-primary);
  outline: none;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.08);
}

textarea.form-control {
  height: 120px;
  resize: none;
}

/* Step 4: Success confirmation screen */
.booking-success-panel {
  text-align: center;
  padding: 40px 0;
}

.success-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid var(--gold-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 30px auto;
  color: var(--gold-primary);
}

.success-icon-wrapper svg {
  width: 40px;
  height: 40px;
}

.success-title {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.success-msg {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 320px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.receipt-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--gold-border);
  padding: 25px;
  text-align: left;
  margin-bottom: 40px;
}

.receipt-header {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 15px;
  margin-bottom: 20px;
  text-align: center;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.receipt-row .label {
  color: var(--text-muted);
}

.receipt-row .val {
  color: #fff;
  font-weight: 500;
  text-align: right;
}

.receipt-services {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  margin-top: 15px;
  padding-top: 15px;
}

.receipt-service-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  margin-bottom: 8px;
  color: var(--text-body);
}

/* Modal Footer Buttons */
.booking-footer {
  padding: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  background-color: var(--bg-secondary);
}

/* ==========================================================================
   SCROLL REVEAL / SCROLL ANIMATION CLASES
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ==========================================================================
   KEYFRAME ANIMATIONS
   ========================================================================== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 0.99; /* Avoid subpixel rendering bugs */
    transform: translateY(0);
  }
}

@keyframes shine {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .section-title { font-size: 2.6rem; }
  .about-grid { gap: 40px; }
  .about-img { height: 400px; }
  .services-grid { gap: 25px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { gap: 40px; }
}

@media (max-width: 768px) {
  body {
    cursor: default !important; /* Force default cursor on mobile */
  }
  
  body.has-custom-cursor {
    cursor: default;
  }
  
  body.has-custom-cursor a,
  body.has-custom-cursor button,
  body.has-custom-cursor input,
  body.has-custom-cursor select,
  body.has-custom-cursor textarea,
  body.has-custom-cursor .interactive {
    cursor: default;
  }

  .cursor-dot, .cursor-trail {
    display: none !important;
  }

  .promo-bar {
    height: 30px;
    padding: 0;
  }

  .promo-text {
    font-size: 0.65rem;
    padding-right: 60px;
  }

  .nav-links {
    position: fixed;
    top: 110px; /* var(--header-height) + promo-bar height */
    left: -100%;
    width: 100%;
    height: calc(100vh - 110px);
    background-color: var(--bg-velvet);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    z-index: 999;
    transition: var(--transition-smooth);
  }

  .header.scrolled .nav-links {
    top: 70px;
    height: calc(100vh - 70px);
  }

  .nav-links.open {
    left: 0;
  }

  .menu-toggle {
    display: flex;
  }
  
  /* Menu toggle animate states */
  .menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-title { font-size: 2.8rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-text { padding-right: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  
  .exclusive-banner {
    height: auto;
    padding: 60px 0;
  }
  
  .banner-title { font-size: 2.4rem; }
  
  .estimator-bar {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    text-align: center;
  }

  .logo-img {
    height: 55px;
    max-width: 150px;
    margin-top: 0;
    margin-bottom: 0;
  }
  
  .header.scrolled .logo-img {
    height: 45px;
    max-width: 130px;
    margin-top: 0;
    margin-bottom: 0;
  }

  .header .btn {
    padding: 8px 16px;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.1rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .booking-modal { width: 100%; max-width: 100%; }
  
  .logo-img {
    height: 50px;
    max-width: 130px;
    margin-top: 0;
    margin-bottom: 0;
  }
  
  .header.scrolled .logo-img {
    height: 42px;
    max-width: 110px;
    margin-top: 0;
    margin-bottom: 0;
  }

  .header .btn {
    padding: 6px 12px;
    font-size: 0.6rem;
    letter-spacing: 0.05em;
  }
  
  .header-cta {
    gap: 10px;
  }
}

@media (max-width: 360px) {
  .hero-title { font-size: 1.8rem; }
  .logo-img {
    height: 45px;
    max-width: 110px;
  }
  .header.scrolled .logo-img {
    height: 38px;
    max-width: 95px;
  }
  .header .btn {
    padding: 5px 10px;
    font-size: 0.55rem;
  }
}

/* ==========================================================================
   GALLERY LIGHTBOX STYLING
   ========================================================================== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 80%;
  max-height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 25px var(--gold-glow);
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.lightbox.active #lightbox-img {
  transform: scale(1);
}

.lightbox-caption {
  margin-top: 15px;
  text-align: center;
  font-family: var(--font-sans);
}

.lightbox-category {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-primary);
  margin-bottom: 5px;
}

.lightbox-title {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text-primary);
}

/* Lightbox Controls */
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(18, 18, 18, 0.6);
  border: 1px solid var(--gold-border);
  color: var(--text-primary);
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 10001;
}

.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: var(--gold-primary);
  color: var(--bg-velvet);
  box-shadow: 0 0 15px var(--gold-glow);
  border-color: var(--gold-primary);
}

.lightbox-close {
  top: 30px;
  right: 30px;
  font-size: 1.5rem;
}

.lightbox-prev {
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .lightbox-content {
    max-width: 90%;
  }
  
  .lightbox-prev, .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  
  .lightbox-prev {
    left: 10px;
  }
  
  .lightbox-next {
    right: 10px;
  }
  
  .lightbox-close {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

/* ==========================================================================
   PRICING FEE NOTICE & CARD TOGGLE STYLES
   ========================================================================== */
.pricing-notice-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px auto 35px;
  gap: 15px;
  text-align: center;
  max-width: 750px;
  padding: 0 15px;
}

.pricing-notice {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
  font-weight: 300;
}

.btn-toggle-pricing {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  padding: 10px 24px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  background-color: transparent;
  transition: var(--transition-smooth);
  border-radius: 4px;
  font-weight: 500;
}

.btn-toggle-pricing:hover {
  background-color: var(--gold-primary);
  color: var(--bg-velvet);
  box-shadow: 0 0 15px var(--gold-glow);
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid var(--gold-border);
  padding-bottom: 8px;
  margin-bottom: 25px;
}

.panel-category-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.price-type-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
  font-weight: 600;
  border-bottom: 2px solid var(--gold-primary);
  padding-bottom: 2px;
}

@media (max-width: 768px) {
  .panel-header {
    margin-bottom: 20px;
  }
  .panel-category-title {
    font-size: 1.3rem;
  }
  .price-type-label {
    font-size: 0.75rem;
  }
}

/* ==========================================================================
   TRUSTED BRANDS SECTION STYLES
   ========================================================================== */
.brands-section {
  background-color: var(--bg-secondary);
  padding: 80px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.05);
  border-bottom: 1px solid rgba(212, 175, 55, 0.05);
  overflow: hidden;
  width: 100%;
}

.brands-carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 35px;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
  overflow: hidden;
  position: relative;
}

.brands-track {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  width: 100%;
}

.mobile-only-duplicate {
  display: none !important;
}

.brand-logo-item {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--gold-border);
  padding: 4px 8px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 170px;
  height: 90px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
}

.brand-logo-item:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.brand-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0.9) contrast(1.1);
  transition: var(--transition-smooth);
}

.brand-logo-item:hover .brand-logo-img {
  filter: brightness(1.05) contrast(1.2);
}
.gift-section {
  background-color: var(--bg-velvet);
  padding: 90px 0;
  overflow: hidden;
  width: 100%;
  position: relative;
}

/* Silk Lines Background Animation */
.silk-lines-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.silk-line {
  position: absolute;
  width: 200%;
  height: 100%;
  top: 0;
  left: -50%;
}

.silk-line.line-1 {
  animation: floatSilk1 22s ease-in-out infinite;
  transform-origin: center center;
}

.silk-line.line-2 {
  animation: floatSilk2 28s ease-in-out infinite;
  transform-origin: center center;
}

.silk-line.line-3 {
  animation: floatSilk3 33s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes floatSilk1 {
  0% {
    transform: translateY(-8%) rotate(0deg) scaleX(1);
  }
  50% {
    transform: translateY(8%) rotate(2.5deg) scaleX(1.08);
  }
  100% {
    transform: translateY(-8%) rotate(0deg) scaleX(1);
  }
}

@keyframes floatSilk2 {
  0% {
    transform: translateY(12%) rotate(1.5deg) scale(0.92);
  }
  50% {
    transform: translateY(-12%) rotate(-1.5deg) scale(1.03);
  }
  100% {
    transform: translateY(12%) rotate(1.5deg) scale(0.92);
  }
}

@keyframes floatSilk3 {
  0% {
    transform: translateY(-4%) rotate(-0.8deg) scale(1.03);
  }
  50% {
    transform: translateY(4%) rotate(0.8deg) scale(0.97);
  }
  100% {
    transform: translateY(-4%) rotate(-0.8deg) scale(1.03);
  }
}

.gift-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 45px;
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.gift-card-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--gold-border);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  transition: var(--transition-smooth);
  aspect-ratio: 1.58;
  container-type: inline-size;
  display: flex;
  flex-direction: column;
}

.gift-card-item:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: 0 20px 45px rgba(212, 175, 55, 0.25);
}

/* Shine overlay effect on hover */
.gift-card-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 30%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.08) 70%,
    transparent 100%
  );
  transform: skewX(-25deg);
  transition: none;
  pointer-events: none;
  z-index: 4;
}

.gift-card-item:hover::after {
  left: 150%;
  transition: all 1.1s cubic-bezier(0.25, 1, 0.5, 1);
}

.gift-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* --- Luxury Card Gold (Thẻ 1 - Dark/Gold) --- */
.luxury-card-gold {
  background: linear-gradient(135deg, #090909 0%, #1c150c 50%, #060606 100%);
  position: relative;
}

.luxury-card-gold::before {
  content: '';
  position: absolute;
  top: 12px;
  right: 12px;
  bottom: 12px;
  left: 12px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  pointer-events: none;
  z-index: 2;
}

.luxury-card-gold .gift-card-inner {
  padding: 8%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 3;
}

.luxury-card-gold .card-brand {
  font-family: var(--font-sans);
  font-size: 3.5cqw;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--gold-primary);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  line-height: 1.2;
}

.luxury-card-gold .card-title-main {
  font-family: var(--font-serif);
  font-size: 9.5cqw;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #ffffff;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
  margin-top: 5%;
  line-height: 1.1;
}

.luxury-card-gold .card-subtitle {
  font-family: var(--font-sans);
  font-size: 3.2cqw;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin-top: 2%;
  line-height: 1.3;
}

.luxury-card-gold .card-footer-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
}

.luxury-card-gold .card-note {
  font-family: var(--font-sans);
  font-size: 2.8cqw;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.luxury-card-gold .card-value {
  font-family: var(--font-sans);
  font-size: 2.8cqw;
  font-weight: 500;
  color: var(--gold-primary);
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--gold-primary);
  padding-bottom: 2px;
}

/* --- Luxury Voucher Birthday (Thẻ 2 - Champagne Gold/Beige) --- */
.luxury-voucher-birthday {
  background: linear-gradient(135deg, #090909 0%, #1c150c 50%, #060606 100%);
  position: relative;
}

.luxury-voucher-birthday::before {
  content: '';
  position: absolute;
  top: 12px;
  right: 12px;
  bottom: 12px;
  left: 12px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  pointer-events: none;
  z-index: 2;
}

.luxury-voucher-birthday::after {
  content: '';
  position: absolute;
  top: 15px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  border: 1px dashed rgba(212, 175, 55, 0.15);
  border-radius: 10px;
  pointer-events: none;
  z-index: 2;
}

.luxury-voucher-birthday .gift-card-inner {
  padding: 6% 8%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 3;
}

.luxury-voucher-birthday .voucher-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.luxury-voucher-birthday .voucher-brand {
  font-family: var(--font-sans);
  font-size: 3.2cqw;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.luxury-voucher-birthday .voucher-badge {
  font-family: var(--font-sans);
  font-size: 2.6cqw;
  font-weight: 600;
  background: linear-gradient(135deg, #eed170 0%, #d4af37 100%);
  color: var(--bg-velvet);
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.luxury-voucher-birthday .voucher-body {
  text-align: center;
  margin: auto 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.luxury-voucher-birthday .voucher-title-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 5.5cqw;
  color: var(--gold-light);
  line-height: 1.2;
}

.luxury-voucher-birthday .voucher-title-main {
  font-family: var(--font-serif);
  font-size: 7.5cqw;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #ffffff;
  line-height: 1.1;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
}

.luxury-voucher-birthday .voucher-discount {
  font-family: var(--font-serif);
  font-size: 11cqw;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1.0;
  margin: 1% 0;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.8);
}

.luxury-voucher-birthday .voucher-requirement {
  font-family: var(--font-sans);
  font-size: 2.6cqw;
  color: var(--text-muted);
  font-style: italic;
}

.luxury-voucher-birthday .voucher-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(138, 109, 36, 0.15);
  padding-top: 3%;
  margin-top: auto;
}

.luxury-voucher-birthday .voucher-info-item {
  font-family: var(--font-sans);
  font-size: 2.6cqw;
  color: #333333;
  font-weight: 400;
}

/* ==========================================================================
   TESTIMONIALS SECTION STYLES
   ========================================================================== */
.testimonials-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-top: 1px solid rgba(212, 175, 55, 0.05);
  border-bottom: 1px solid rgba(212, 175, 55, 0.05);
}

.testimonials-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 5, 5, 0.88);
  z-index: 1;
}

.testimonials-container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card {
  flex: 0 1 calc(33.333% - 20px);
  min-width: 300px;
  background: rgba(18, 18, 18, 0.65);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--gold-border);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
  background: rgba(22, 22, 22, 0.85);
}

.stars {
  color: var(--gold-primary);
  font-size: 1.2rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-body);
  font-style: italic;
  margin-bottom: 25px;
  flex-grow: 1;
}

.testimonial-author {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold-primary);
  font-weight: 500;
}

@media (max-width: 992px) {
  .testimonials-grid {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .testimonial-card {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
  }
  .gift-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .brands-carousel-container {
    justify-content: flex-start;
    padding: 10px 0;
    mask-image: linear-gradient(to right, transparent, white 20%, white 80%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, white 20%, white 80%, transparent);
  }
  
  .brands-track {
    flex-wrap: nowrap;
    width: max-content;
    gap: 20px;
    animation: scrollBrands 18s linear infinite;
  }
  
  .mobile-only-duplicate {
    display: flex;
  }
}

@keyframes scrollBrands {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 10px));
  }
}

/* ==========================================================================
   HIRING SECTION STYLES
   ========================================================================== */
.hiring-section {
  background-color: var(--bg-secondary);
  padding: 100px 0;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  width: 100%;
}

.hiring-form {
  max-width: 900px;
  margin: 45px auto 0 auto;
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--gold-border);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.hiring-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .hiring-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hiring-form {
    padding: 20px;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group.mt-4 {
  margin-top: 1.5rem;
}

.form-group label {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  color: var(--gold-light);
}

.form-group label .required {
  color: #ff4a4a;
  margin-left: 3px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--gold-border);
  padding: 12px 16px;
  border-radius: 8px;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  outline: none;
  width: 100%;
}

.form-group select option {
  background-color: var(--bg-card);
  color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-primary);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 8px var(--gold-glow);
}

/* Upload dropzone custom styling */
.upload-dropzone {
  border: 1.5px dashed var(--gold-border);
  background: rgba(255, 255, 255, 0.01);
  padding: 25px 20px;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.upload-dropzone:hover {
  border-color: var(--gold-primary);
  background: rgba(255, 255, 255, 0.03);
}

.upload-icon {
  width: 32px;
  height: 32px;
  color: var(--gold-primary);
}

.upload-dropzone span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.file-preview-list {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}

/* Checkboxes grid style */
.services-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .services-checkbox-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .services-checkbox-grid {
    grid-template-columns: 1fr;
  }
}

/* Checkbox container */
.checkbox-container {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-body);
  user-select: none;
  transition: var(--transition-fast);
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 18px;
  width: 18px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  transition: var(--transition-fast);
}

.checkbox-container:hover input ~ .checkmark {
  border-color: var(--gold-primary);
  background-color: rgba(255, 255, 255, 0.06);
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--gold-primary);
  border-color: var(--gold-primary);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #000000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.hiring-thank-you {
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   TESTIMONIALS GOLDEN DECORATION & ANIMATION
   ========================================================================== */
.testimonials-glitter-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

/* Base style for elements with golden drop-shadow glow */
.gold-decor-glow {
  filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.75)) 
          drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

/* Swaying Gold Branches at the corners */
.gold-branch {
  position: absolute;
  filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.75)) 
          drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

.gold-branch.branch-top-left {
  top: -30px;
  left: -30px;
  width: 380px;
  height: auto;
  transform-origin: top left;
  animation: windSwayLeft 7s ease-in-out infinite alternate;
}

.gold-branch.branch-bottom-right {
  bottom: -30px;
  right: -30px;
  width: 400px;
  height: auto;
  transform-origin: bottom right;
  animation: windSwayRight 8s ease-in-out infinite alternate;
}

@keyframes windSwayLeft {
  0% {
    transform: rotate(2deg) scale(1);
  }
  100% {
    transform: rotate(8deg) scale(1.03);
  }
}

@keyframes windSwayRight {
  0% {
    transform: scaleX(-1) rotate(10deg) scale(1);
  }
  100% {
    transform: scaleX(-1) rotate(16deg) scale(1.03);
  }
}

/* Flying Butterflies and Flapping Wings */
.flying-butterfly-wrapper {
  position: absolute;
  pointer-events: none;
  z-index: 3;
}

.gold-butterfly {
  width: 50px;
  height: 50px;
  filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.8)) 
          drop-shadow(0 0 6px rgba(212, 175, 55, 0.6));
}

/* Wing flapping animations */
.gold-butterfly .wing-left,
.gold-butterfly .wing-left-bottom {
  transform-origin: 25px 24px;
  animation: flapLeftWing 0.12s ease-in-out infinite alternate;
}

.gold-butterfly .wing-right,
.gold-butterfly .wing-right-bottom {
  transform-origin: 25px 24px;
  animation: flapRightWing 0.12s ease-in-out infinite alternate;
}

@keyframes flapLeftWing {
  0% { transform: scaleX(1); }
  100% { transform: scaleX(0.15); }
}

@keyframes flapRightWing {
  0% { transform: scaleX(1); }
  100% { transform: scaleX(0.15); }
}

/* Butterfly paths */
.fbf-1 {
  top: 60%;
  left: -60px;
  animation: flyPath1 28s linear infinite;
}

.fbf-2 {
  top: 20%;
  right: -60px;
  animation: flyPath2 34s linear infinite;
  animation-delay: 8s;
}

.fbf-3 {
  top: 15%;
  left: 200px;
  animation: flyHover3 12s ease-in-out infinite;
}

@keyframes flyPath1 {
  0% {
    transform: translate(0, 0) rotate(45deg) scale(0.4);
    opacity: 0;
  }
  5% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    transform: translate(1250px, -280px) rotate(35deg) scale(0.75);
    opacity: 0;
  }
}

@keyframes flyPath2 {
  0% {
    transform: translate(0, 0) rotate(-70deg) scale(0.7);
    opacity: 0;
  }
  5% {
    opacity: 0.85;
  }
  90% {
    opacity: 0.85;
  }
  100% {
    transform: translate(-1200px, 200px) rotate(-60deg) scale(0.45);
    opacity: 0;
  }
}

@keyframes flyHover3 {
  0%, 100% {
    transform: translate(0, 0) rotate(-15deg) scale(0.4);
    opacity: 0.3;
  }
  50% {
    transform: translate(50px, -40px) rotate(-30deg) scale(0.45);
    opacity: 0.7;
  }
}

/* Bokeh Lights and Soft Sparkles */
.bokeh-light {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, rgba(212, 175, 55, 0.04) 50%, rgba(0, 0, 0, 0) 70%);
  filter: blur(12px);
  pointer-events: none;
  animation: floatBokehLight 18s ease-in-out infinite alternate;
}

.bokeh-light.b-1 {
  width: 140px;
  height: 140px;
  top: 10%;
  left: 15%;
  animation-duration: 20s;
}

.bokeh-light.b-2 {
  width: 180px;
  height: 180px;
  bottom: 8%;
  right: 15%;
  animation-duration: 24s;
  animation-delay: -5s;
}

.bokeh-light.b-3 {
  width: 100px;
  height: 100px;
  top: 40%;
  left: 50%;
  animation-duration: 16s;
  animation-delay: -2s;
}

.bokeh-light.b-4 {
  width: 120px;
  height: 120px;
  bottom: 25%;
  left: 8%;
  animation-duration: 22s;
  animation-delay: -9s;
}

.bokeh-light.b-5 {
  width: 150px;
  height: 150px;
  top: 25%;
  right: 25%;
  animation-duration: 18s;
  animation-delay: -4s;
}

@keyframes floatBokehLight {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  100% {
    transform: translate(40px, -40px) scale(1.15);
    opacity: 0.75;
  }
}

/* Sparkles around branches */
.sparkles-top {
  position: absolute;
  top: 100px;
  left: 130px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 
      25px 25px 3px #ffd700, -35px 45px 2px #d4af37, 
      65px -5px 4px rgba(255,215,0,0.7), -15px -25px 2px #ffd700,
      120px 15px 3px #d4af37, 35px 65px 4px rgba(255,215,0,0.6);
  opacity: 0.7;
  animation: sparkleGlow 4s ease-in-out infinite alternate;
}

.sparkles-bottom {
  position: absolute;
  bottom: 110px;
  right: 150px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 
      -25px -25px 3px #ffd700, 45px -45px 2px #d4af37, 
      -65px 15px 4px rgba(255,215,0,0.7), 15px 35px 2px #ffd700,
      -120px -15px 3px #d4af37, -35px -65px 4px rgba(255,215,0,0.6);
  opacity: 0.7;
  animation: sparkleGlow 4.5s ease-in-out infinite alternate;
}

@keyframes sparkleGlow {
  0% { opacity: 0.4; }
  100% { opacity: 0.85; }
}

/* ==========================================================================
   VIDEO REELS CAROUSEL STYLE
   ========================================================================== */
.reels-carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 40px;
}

.reels-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  scroll-snap-type: x mandatory;
  padding: 20px 0;
  width: 100%;
}

.reels-track::-webkit-scrollbar {
  display: none; /* Safari/Chrome */
}

.reel-card {
  flex: 0 0 280px;
  height: 480px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--gold-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  scroll-snap-align: start;
  transition: transform 0.3s ease, border-color 0.3s ease;
  background: #111;
}

.reel-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.reel-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px 20px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
}

.reel-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--gold-primary);
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.reel-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-light);
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.5px;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(18, 18, 18, 0.9);
  border: 1px solid var(--gold-border);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.carousel-control:hover {
  background: var(--gold-primary);
  color: var(--text-dark);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.carousel-control.prev {
  left: -10px;
}

.carousel-control.next {
  right: -10px;
}

@media (max-width: 992px) {
  .reels-carousel-container {
    padding: 0;
  }
  .carousel-control {
    display: none; /* Swipe on mobile */
  }
  .reel-card {
    flex: 0 0 240px;
    height: 400px;
  }
}
