/* ===== Woodfest Supporting Pages — Shared Styles ===== */

/* --- Scroll Reveal Animations --- */
@keyframes wf-fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes wf-fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes wf-fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes wf-scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes wf-counterPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.wf-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.wf-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.wf-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.wf-reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}
.wf-reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.wf-reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}
.wf-reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.wf-reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.wf-delay-1 { transition-delay: 0.1s; }
.wf-delay-2 { transition-delay: 0.2s; }
.wf-delay-3 { transition-delay: 0.3s; }
.wf-delay-4 { transition-delay: 0.4s; }
.wf-delay-5 { transition-delay: 0.5s; }
.wf-delay-6 { transition-delay: 0.6s; }

/* --- Page Hero --- */
.wf-page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.wf-page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.wf-page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wf-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 25, 23, 0.85) 0%, rgba(28, 25, 23, 0.4) 50%, rgba(28, 25, 23, 0.2) 100%);
}
.wf-page-hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 4rem 0;
}

@media (max-width: 768px) {
  .wf-page-hero-content {
    text-align: center;
    padding: 3rem 1rem;
  }
  .wf-page-hero-content .flex.flex-col.items-start {
    align-items: center;
  }
  .wf-page-hero-content .wf-breadcrumb {
    justify-content: center;
  }
}

/* --- Masonry Gallery --- */
.wf-masonry {
  column-count: 3;
  column-gap: 1rem;
}
@media (max-width: 1024px) {
  .wf-masonry { column-count: 2; }
}
@media (max-width: 640px) {
  .wf-masonry { column-count: 1; }
}
.wf-masonry-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 2px;
}
.wf-masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.wf-masonry-item:hover img {
  transform: scale(1.06);
}
.wf-masonry-item .wf-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 25, 23, 0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.wf-masonry-item:hover .wf-img-overlay {
  opacity: 1;
}
.wf-masonry-item .wf-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: white;
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.wf-masonry-item:hover .wf-img-caption {
  transform: translateY(0);
  opacity: 1;
}

/* Gallery filter */
.wf-filter-btn {
  padding: 0.5rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid #d6d3d1;
  background: transparent;
  color: #57534e;
  cursor: pointer;
  transition: all 0.3s ease;
}
.wf-filter-btn:hover {
  border-color: #b45309;
  color: #92400e;
}
.wf-filter-btn.active {
  background: #1c1917;
  color: #fff;
  border-color: #1c1917;
}

/* Gallery item hide/show */
.wf-gallery-item {
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.wf-gallery-item.hidden-item {
  opacity: 0;
  transform: scale(0.9);
  position: absolute;
  pointer-events: none;
  height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

/* --- Lightbox --- */
.wf-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.wf-lightbox.active {
  opacity: 1;
  visibility: visible;
}
.wf-lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.wf-lightbox.active img {
  transform: scale(1);
}
.wf-lightbox-close,
.wf-lightbox-prev,
.wf-lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wf-lightbox-close:hover,
.wf-lightbox-prev:hover,
.wf-lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}
.wf-lightbox-close {
  top: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.25rem;
  z-index: 10;
}
.wf-lightbox-prev,
.wf-lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.25rem;
}
.wf-lightbox-prev { left: 2rem; }
.wf-lightbox-next { right: 2rem; }
.wf-lightbox-counter {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

/* --- Program Timeline --- */
.wf-timeline {
  position: relative;
  padding-left: 2rem;
}
.wf-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #b45309, #d6d3d1);
}
.wf-timeline-item {
  position: relative;
  padding-bottom: 2rem;
  padding-left: 2rem;
}
.wf-timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #b45309;
  border: 3px solid #fef3c7;
  transform: translateX(-5px);
  z-index: 1;
}
.wf-timeline-item:last-child { padding-bottom: 0; }

/* Program day tabs */
.wf-day-tab {
  padding: 0.75rem 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: 1px solid #d6d3d1;
  background: transparent;
  color: #57534e;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
.wf-day-tab:hover {
  border-color: #b45309;
  color: #92400e;
}
.wf-day-tab.active {
  background: #1c1917;
  color: #fff;
  border-color: #1c1917;
}
.wf-day-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: #b45309;
}
.wf-day-content {
  display: none;
  animation: wf-fadeInUp 0.5s ease forwards;
}
.wf-day-content.active {
  display: block;
}

/* Session type badges */
.wf-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.wf-badge-keynote { background: #fef3c7; color: #92400e; }
.wf-badge-matching { background: #dbeafe; color: #1e40af; }
.wf-badge-workshop { background: #d1fae5; color: #065f46; }
.wf-badge-networking { background: #f5f5f4; color: #57534e; }
.wf-badge-awards { background: linear-gradient(135deg, #fef3c7, #fde68a); color: #92400e; }

/* --- Contact Form --- */
.wf-input {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  color: #1c1917;
  background: #fafaf9;
  border: 1px solid #e7e5e4;
  transition: all 0.3s ease;
  outline: none;
  font-family: inherit;
}
.wf-input:focus {
  border-color: #b45309;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.08);
}
.wf-input::placeholder {
  color: #a8a29e;
}
.wf-input-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #78716c;
  margin-bottom: 0.5rem;
}
.wf-input-error {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08) !important;
}
.wf-error-msg {
  font-size: 0.75rem;
  color: #dc2626;
  margin-top: 0.25rem;
  display: none;
}
.wf-input-error + .wf-error-msg,
.wf-input-error ~ .wf-error-msg {
  display: block;
}

/* --- Stat Counter Animation --- */
.wf-counter {
  display: inline-block;
}
.wf-counter.counting {
  animation: wf-counterPulse 0.6s ease;
}

/* --- Venue Hotel Cards --- */
.wf-hotel-card {
  border: 1px solid #e7e5e4;
  background: white;
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.wf-hotel-card:hover {
  border-color: #b45309;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

/* --- WhatsApp Button --- */
.wf-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: #25D366;
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  text-decoration: none;
}
.wf-whatsapp-btn:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

/* --- Divider Line --- */
.wf-divider {
  width: 60px;
  height: 1px;
  background: #d6d3d1;
  margin: 3rem auto;
}

/* --- Pull Quote --- */
.wf-pullquote {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 1.75rem;
  line-height: 1.4;
  color: #1c1917;
  border-left: 3px solid #b45309;
  padding-left: 1.5rem;
  margin: 2rem 0;
}
@media (max-width: 768px) {
  .wf-pullquote {
    font-size: 1.25rem;
  }
}

/* --- Breadcrumb --- */
.wf-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
}
.wf-breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}
.wf-breadcrumb a:hover {
  color: white;
}

/* --- Smooth page load --- */
.wf-page-enter {
  animation: wf-fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ===== ADVANCED INTERACTIONS ===== */

/* Parallax */
.wf-parallax-bg {
  will-change: transform;
  transform: scale(1.1); /* Buffer for scroll translation */
  transform-origin: top;
}

/* Marquee */
.wf-marquee {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  background-color: #1c1917;
  color: #fff;
  padding: 1.5rem 0;
}
.wf-marquee-content {
  display: flex;
  animation: wf-marquee 30s linear infinite;
  min-width: 200%;
}
.wf-marquee-content span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  padding: 0 3rem;
  color: #a8a29e;
  display: flex;
  align-items: center;
}
.wf-marquee-content span::after {
  content: "✦";
  color: #b45309;
  margin-left: 3rem;
}
@keyframes wf-marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

/* Clip Reveal for Images */
.wf-clip-reveal {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.wf-clip-reveal.revealed {
  clip-path: inset(0 0 0 0);
}

/* Text Reveal (Line by line) */
.wf-text-reveal {
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 0.15em;
  margin-bottom: -0.15em;
}
.wf-text-reveal span {
  display: inline-block;
  transform: translateY(100%);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.wf-text-reveal.revealed span {
  transform: translateY(0);
}

/* Elegant line expansion */
.wf-line-expand {
  width: 0;
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.wf-line-expand.revealed {
  width: 5rem;
}

/* Magnetic Button Wrapper */
.wf-magnetic {
  display: inline-block;
}

/* Gallery Cursor Overlay */
.wf-gallery-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 90px;
  height: 90px;
  background: rgba(180, 83, 9, 0.95);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.5) translate(-50%, -50%);
  transform-origin: top left;
  transition: opacity 0.3s ease, transform 0.3s ease, width 0.3s ease, height 0.3s ease;
  z-index: 100;
  backdrop-filter: blur(4px);
}
.wf-gallery-cursor.active {
  opacity: 1;
  transform: scale(1) translate(-50%, -50%);
}

/* ===== PREMIUM MODERN STYLES ===== */

/* --- Scroll Progress Bar --- */
.wf-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #b45309, #f59e0b, #b45309);
  background-size: 200% 100%;
  animation: wf-gradientShift 3s linear infinite;
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}
@keyframes wf-gradientShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* --- Glassmorphism Card --- */
.wf-glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}
.wf-glass-dark {
  background: rgba(28, 25, 23, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* --- Animated Border Gradient --- */
.wf-border-glow {
  position: relative;
  overflow: hidden;
}
.wf-border-glow::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: conic-gradient(from 0deg, transparent 0%, #b45309 25%, transparent 50%, #f59e0b 75%, transparent 100%);
  animation: wf-borderRotate 4s linear infinite;
  z-index: -1;
  border-radius: inherit;
}
.wf-border-glow::after {
  content: '';
  position: absolute;
  inset: 1px;
  background: inherit;
  border-radius: inherit;
  z-index: -1;
}
@keyframes wf-borderRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* --- 3D Tilt Card --- */
.wf-tilt {
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.15s ease-out, box-shadow 0.3s ease;
}
.wf-tilt:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 40px rgba(180, 83, 9, 0.06);
}
.wf-tilt-inner {
  transform: translateZ(30px);
  transition: transform 0.3s ease;
}

/* --- Image Shimmer Effect --- */
.wf-shimmer {
  position: relative;
  overflow: hidden;
}
.wf-shimmer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.3) 45%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0.3) 55%,
    transparent 60%
  );
  transform: translateX(-100%);
  transition: none;
  z-index: 2;
  pointer-events: none;
}
.wf-shimmer:hover::after {
  transform: translateX(100%);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Floating Particles (CSS only) --- */
.wf-particles {
  position: relative;
  overflow: hidden;
}
.wf-particles::before,
.wf-particles::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
  animation: wf-float 8s ease-in-out infinite;
}
.wf-particles::before {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #f59e0b, transparent 70%);
  top: -100px;
  right: -100px;
  animation-delay: -2s;
}
.wf-particles::after {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #b45309, transparent 70%);
  bottom: -50px;
  left: -50px;
  animation-delay: -5s;
}
@keyframes wf-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(20px, -30px) scale(1.05); }
  50% { transform: translate(-10px, 15px) scale(0.95); }
  75% { transform: translate(15px, 20px) scale(1.02); }
}

/* --- Enhanced Filter Pills --- */
.wf-filter-pill {
  padding: 0.625rem 1.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid rgba(214, 211, 209, 0.5);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  color: #57534e;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.wf-filter-pill::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1c1917, #292524);
  border-radius: 50px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}
.wf-filter-pill:hover {
  border-color: #b45309;
  color: #92400e;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(180, 83, 9, 0.1);
}
.wf-filter-pill.active {
  color: #fff;
  border-color: #1c1917;
  box-shadow: 0 4px 20px rgba(28, 25, 23, 0.2);
}
.wf-filter-pill.active::before {
  transform: scaleX(1);
}
.wf-filter-pill .wf-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(180, 83, 9, 0.15);
  color: #b45309;
  font-size: 0.6rem;
  margin-left: 0.5rem;
  transition: all 0.3s ease;
}
.wf-filter-pill.active .wf-count {
  background: rgba(245, 158, 11, 0.3);
  color: #fef3c7;
}

/* --- Premium Gallery Items --- */
.wf-gallery-premium {
  border-radius: 8px;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 800px;
}
.wf-gallery-premium .wf-img-overlay {
  background: linear-gradient(
    to top,
    rgba(28, 25, 23, 0.85) 0%,
    rgba(28, 25, 23, 0.3) 40%,
    transparent 60%
  );
}
.wf-gallery-premium .wf-img-caption {
  padding: 1.5rem;
}
.wf-gallery-premium:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(180, 83, 9, 0.2);
}

/* Gallery photo count */
.wf-photo-count {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(214, 211, 209, 0.3);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #57534e;
  margin-bottom: 1.5rem;
}
.wf-photo-count .wf-count-num {
  font-weight: 800;
  color: #b45309;
  font-size: 0.875rem;
}

/* --- Segmented Tab Control --- */
.wf-segmented-control {
  display: inline-flex;
  background: rgba(245, 245, 244, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid #e7e5e4;
  border-radius: 12px;
  padding: 4px;
  position: relative;
  gap: 0;
}
.wf-segment-tab {
  padding: 0.875rem 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: transparent;
  color: #78716c;
  cursor: pointer;
  border: none;
  border-radius: 10px;
  transition: color 0.3s ease;
  position: relative;
  z-index: 2;
  text-align: center;
  min-width: 130px;
}
.wf-segment-tab:hover {
  color: #44403c;
}
.wf-segment-tab.active {
  color: #fff;
}
.wf-segment-slider {
  position: absolute;
  top: 4px;
  left: 4px;
  height: calc(100% - 8px);
  background: linear-gradient(135deg, #1c1917, #292524);
  border-radius: 10px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
  box-shadow: 0 4px 15px rgba(28, 25, 23, 0.2);
}

/* --- Premium Timeline --- */
.wf-timeline-premium {
  position: relative;
  padding-left: 3rem;
}
.wf-timeline-premium::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #b45309 0%, #f59e0b 50%, #d6d3d1 100%);
}
.wf-timeline-node {
  position: absolute;
  left: -3rem;
  top: 0.25rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #b45309;
  border: 3px solid #fef3c7;
  transform: translateX(-7px);
  z-index: 1;
  transition: all 0.3s ease;
}
.wf-timeline-node::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(180, 83, 9, 0.3);
  animation: wf-nodePulse 2s ease-in-out infinite;
  opacity: 0;
}
.wf-timeline-item:hover .wf-timeline-node::after {
  opacity: 1;
}
@keyframes wf-nodePulse {
  0%, 100% { transform: scale(1); opacity: 0; }
  50% { transform: scale(1.5); opacity: 1; }
}

/* Premium session card */
.wf-session-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(231, 229, 228, 0.6);
  padding: 1.75rem;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.wf-session-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 0 4px 4px 0;
  transition: width 0.3s ease;
}
.wf-session-card:hover {
  transform: translateY(-3px) translateX(3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}
.wf-session-card:hover::before {
  width: 6px;
}
.wf-session-card.type-keynote::before { background: linear-gradient(to bottom, #f59e0b, #b45309); }
.wf-session-card.type-workshop::before { background: linear-gradient(to bottom, #34d399, #059669); }
.wf-session-card.type-matching::before { background: linear-gradient(to bottom, #60a5fa, #2563eb); }
.wf-session-card.type-networking::before { background: linear-gradient(to bottom, #a78bfa, #7c3aed); }
.wf-session-card.type-awards::before { background: linear-gradient(to bottom, #fbbf24, #d97706); }
.wf-session-card.type-closing { 
  background: linear-gradient(135deg, #1c1917, #292524); 
  border-color: rgba(255, 255, 255, 0.1);
  color: white;
}

/* Session expandable details */
.wf-session-expand {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0;
}
.wf-session-card.expanded .wf-session-expand {
  max-height: 200px;
  opacity: 1;
}
.wf-session-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b45309;
  cursor: pointer;
  transition: color 0.3s ease;
  background: none;
  border: none;
  padding: 0;
  margin-top: 0.75rem;
}
.wf-session-toggle i,
.wf-session-toggle svg {
  transition: transform 0.3s ease;
}
.wf-session-card.expanded .wf-session-toggle i,
.wf-session-card.expanded .wf-session-toggle svg {
  transform: rotate(180deg);
}

/* --- Flip Card --- */
.wf-flip-card {
  perspective: 1000px;
  height: 220px;
  cursor: pointer;
}
.wf-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
}
.wf-flip-card:hover .wf-flip-inner {
  transform: rotateY(180deg);
}
.wf-flip-front,
.wf-flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}
.wf-flip-front {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(231, 229, 228, 0.6);
}
.wf-flip-back {
  background: linear-gradient(135deg, #1c1917, #292524);
  color: white;
  transform: rotateY(180deg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .wf-flip-card {
    height: auto;
  }
  .wf-flip-inner {
    transform-style: flat;
  }
  .wf-flip-card:hover .wf-flip-inner {
    transform: none;
  }
  .wf-flip-front,
  .wf-flip-back {
    position: relative;
    backface-visibility: visible;
  }
  .wf-flip-back {
    transform: none;
    margin-top: -1px;
    border-radius: 0 0 12px 12px;
  }
  .wf-flip-front {
    border-radius: 12px 12px 0 0;
  }
}

/* Transport icon animations */
.wf-transport-icon {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.wf-flip-card:hover .wf-transport-icon.icon-plane {
  transform: translateX(10px) translateY(-10px) rotate(-15deg);
}
.wf-flip-card:hover .wf-transport-icon.icon-train {
  transform: translateX(10px);
}
.wf-flip-card:hover .wf-transport-icon.icon-car {
  transform: translateX(8px) scale(1.05);
}

/* --- Premium Hotel Card --- */
.wf-hotel-premium {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(231, 229, 228, 0.6);
  border-radius: 12px;
  padding: 1.75rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.wf-hotel-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #b45309, #f59e0b);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.wf-hotel-premium:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border-color: rgba(180, 83, 9, 0.2);
}
.wf-hotel-premium:hover::before {
  transform: scaleX(1);
}

/* --- Floating Label Input --- */
.wf-float-group {
  position: relative;
}
.wf-float-input {
  width: 100%;
  padding: 1.25rem 1rem 0.625rem;
  font-size: 0.875rem;
  color: #1c1917;
  background: rgba(250, 250, 249, 0.8);
  backdrop-filter: blur(4px);
  border: 1px solid #e7e5e4;
  border-radius: 8px;
  transition: all 0.3s ease;
  outline: none;
  font-family: inherit;
}
.wf-float-input:focus {
  border-color: #b45309;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.08), 0 4px 15px rgba(0, 0, 0, 0.04);
}
.wf-float-label {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  font-size: 0.875rem;
  color: #a8a29e;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
  padding: 0 0.25rem;
}
.wf-float-input:focus ~ .wf-float-label,
.wf-float-input:not(:placeholder-shown) ~ .wf-float-label {
  top: 0.5rem;
  transform: translateY(0);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b45309;
}
textarea.wf-float-input ~ .wf-float-label {
  top: 1.25rem;
}
textarea.wf-float-input:focus ~ .wf-float-label,
textarea.wf-float-input:not(:placeholder-shown) ~ .wf-float-label {
  top: 0.5rem;
}

/* --- Pulse Ring Animation --- */
.wf-pulse-ring {
  position: relative;
}
.wf-pulse-ring::before,
.wf-pulse-ring::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid currentColor;
  opacity: 0;
  animation: wf-pulseRing 2s ease-out infinite;
}
.wf-pulse-ring::after {
  animation-delay: 1s;
}
@keyframes wf-pulseRing {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* --- Click-to-Copy Tooltip --- */
.wf-copy-btn {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}
.wf-copy-btn:hover {
  color: #f59e0b;
}
.wf-copy-tooltip {
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  background: #1c1917;
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.wf-copy-tooltip.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* --- Enhanced Form Success --- */
.wf-success-anim {
  animation: wf-successSlide 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes wf-successSlide {
  from { 
    opacity: 0; 
    transform: translateY(10px) scale(0.98);
  }
  to { 
    opacity: 1; 
    transform: translateY(0) scale(1);
  }
}

/* --- Form Progress Steps --- */
.wf-form-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.wf-progress-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d6d3d1;
  transition: all 0.3s ease;
}
.wf-progress-dot.active {
  background: #b45309;
  box-shadow: 0 0 8px rgba(180, 83, 9, 0.4);
  transform: scale(1.3);
}
.wf-progress-dot.done {
  background: #059669;
}

/* --- Character Counter --- */
.wf-char-counter {
  text-align: right;
  font-size: 0.7rem;
  color: #a8a29e;
  margin-top: 0.25rem;
  transition: color 0.3s ease;
}
.wf-char-counter.warn {
  color: #f59e0b;
}
.wf-char-counter.limit {
  color: #dc2626;
}

/* --- Contact Card Grid --- */
.wf-contact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.wf-contact-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(180, 83, 9, 0.08) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.wf-contact-card:hover {
  border-color: rgba(180, 83, 9, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.wf-contact-card:hover::before {
  opacity: 1;
}
.wf-contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(180, 83, 9, 0.2), rgba(245, 158, 11, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}
.wf-contact-card:hover .wf-contact-icon {
  background: linear-gradient(135deg, rgba(180, 83, 9, 0.3), rgba(245, 158, 11, 0.2));
  transform: scale(1.1);
}

/* --- Enhanced WhatsApp Button --- */
.wf-whatsapp-premium {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #25D366, #20bd5a);
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  text-decoration: none;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.wf-whatsapp-premium::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid #25D366;
  opacity: 0;
  animation: wf-pulseRing 2s ease-out infinite;
}
.wf-whatsapp-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

/* --- Map Glass Overlay --- */
.wf-map-overlay {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.wf-map-overlay:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

/* --- Venue Image Morph --- */
.wf-venue-morph {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.wf-venue-morph iframe {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.wf-venue-morph.map-active iframe {
  opacity: 1;
}
.wf-venue-morph.map-active img {
  opacity: 0;
}
.wf-venue-morph .wf-morph-btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  padding: 0.5rem 1.25rem;
  background: rgba(28, 25, 23, 0.8);
  backdrop-filter: blur(10px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.wf-venue-morph .wf-morph-btn:hover {
  background: rgba(180, 83, 9, 0.9);
}

/* --- Copy Address Button --- */
.wf-copy-address {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(250, 250, 249, 0.8);
  border: 1px solid #e7e5e4;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #57534e;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.75rem;
}
.wf-copy-address:hover {
  background: #fef3c7;
  border-color: #f59e0b;
  color: #92400e;
}
.wf-copy-address.copied {
  background: #d1fae5;
  border-color: #34d399;
  color: #065f46;
}

/* --- Animated Section Background --- */
.wf-section-glow {
  position: relative;
  overflow: hidden;
}
.wf-section-glow::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.06), transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}
.wf-section-glow::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180, 83, 9, 0.04), transparent 70%);
  bottom: -100px;
  left: -100px;
  pointer-events: none;
}

/* --- Stagger Animation Container --- */
.wf-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.wf-stagger.revealed > *:nth-child(1) { transition-delay: 0.05s; }
.wf-stagger.revealed > *:nth-child(2) { transition-delay: 0.1s; }
.wf-stagger.revealed > *:nth-child(3) { transition-delay: 0.15s; }
.wf-stagger.revealed > *:nth-child(4) { transition-delay: 0.2s; }
.wf-stagger.revealed > *:nth-child(5) { transition-delay: 0.25s; }
.wf-stagger.revealed > *:nth-child(6) { transition-delay: 0.3s; }
.wf-stagger.revealed > *:nth-child(7) { transition-delay: 0.35s; }
.wf-stagger.revealed > *:nth-child(8) { transition-delay: 0.4s; }
.wf-stagger.revealed > *:nth-child(9) { transition-delay: 0.45s; }
.wf-stagger.revealed > *:nth-child(10) { transition-delay: 0.5s; }
.wf-stagger.revealed > *:nth-child(11) { transition-delay: 0.55s; }
.wf-stagger.revealed > *:nth-child(12) { transition-delay: 0.6s; }
.wf-stagger.revealed > *:nth-child(13) { transition-delay: 0.65s; }
.wf-stagger.revealed > *:nth-child(14) { transition-delay: 0.7s; }
.wf-stagger.revealed > *:nth-child(15) { transition-delay: 0.75s; }
.wf-stagger.revealed > *:nth-child(16) { transition-delay: 0.8s; }
.wf-stagger.revealed > *:nth-child(17) { transition-delay: 0.85s; }
.wf-stagger.revealed > *:nth-child(18) { transition-delay: 0.9s; }
.wf-stagger.revealed > *:nth-child(19) { transition-delay: 0.95s; }
.wf-stagger.revealed > *:nth-child(20) { transition-delay: 1.0s; }
.wf-stagger.revealed > *:nth-child(21) { transition-delay: 1.05s; }
.wf-stagger.revealed > *:nth-child(22) { transition-delay: 1.1s; }
.wf-stagger.revealed > *:nth-child(23) { transition-delay: 1.15s; }
.wf-stagger.revealed > *:nth-child(24) { transition-delay: 1.2s; }
.wf-stagger.revealed > *:nth-child(25) { transition-delay: 1.25s; }
.wf-stagger.revealed > *:nth-child(26) { transition-delay: 1.3s; }
.wf-stagger.revealed > *:nth-child(27) { transition-delay: 1.35s; }
.wf-stagger.revealed > *:nth-child(28) { transition-delay: 1.4s; }
.wf-stagger.revealed > *:nth-child(29) { transition-delay: 1.45s; }
.wf-stagger.revealed > *:nth-child(30) { transition-delay: 1.5s; }
.wf-stagger.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* --- Enhanced Day Content Transition --- */
.wf-day-content-modern {
  display: none;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.wf-day-content-modern.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
  animation: wf-slideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes wf-slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* --- Animated CTA background --- */
.wf-cta-glow {
  position: relative;
  overflow: hidden;
}
.wf-cta-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(250, 250, 249, 0) 0%, 
    rgba(254, 243, 199, 0.3) 25%, 
    rgba(250, 250, 249, 0) 50%, 
    rgba(254, 243, 199, 0.2) 75%, 
    rgba(250, 250, 249, 0) 100%
  );
  background-size: 400% 400%;
  animation: wf-ctaGlow 6s ease infinite;
  pointer-events: none;
}
@keyframes wf-ctaGlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
