* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  color: #1a1a1a;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  color: #0a0a0a;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #0a0a0a;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h2 {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 2.25rem;
  font-weight: 600;
  color: #0a0a0a;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h3 {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.875rem;
  font-weight: 600;
  color: #0a0a0a;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

p {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  color: #2d2d2d;
  line-height: 1.6;
}

a {
  color: #D4AF37;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #B8860B;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

.page {
  padding-top: 96px;
  min-height: 100vh;
}

.section {
  margin-bottom: 4rem;
}
.section:last-child {
  margin-bottom: 0;
}

.font-open-sans {
  font-family: "Open Sans", sans-serif;
}

.hidden {
  display: none;
}

.block {
  display: block;
}

.min-w-32 {
  min-width: 32px;
}

.min-h-32 {
  min-height: 32px;
}

.aspect-square {
  aspect-ratio: 1/1;
}

.map-container {
  height: 400px;
}

.hidden-form {
  display: none;
}

.step-indicator {
  min-width: 32px;
  min-height: 32px;
  aspect-ratio: 1/1;
}

.preview-container {
  max-width: 200px;
}

.rating-bar {
  width: 80px;
  height: 8px;
}

.rating-fill {
  height: 8px;
}

.category-gradient {
  background: linear-gradient(135deg, var(--category-color), var(--category-color-cc));
}

.clear-filters-btn {
  display: none;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.min-w-120 {
  min-width: 120px;
}

.text-gold {
  color: #D4AF37 !important;
}

.bg-gold {
  background-color: #D4AF37 !important;
}

.border-gold {
  border-color: #D4AF37 !important;
}

.text-brand-black {
  color: #0a0a0a !important;
}

.text-brand-dark {
  color: #1a1a1a !important;
}

.text-brand-gray {
  color: #2d2d2d !important;
}

.text-brand-light-gray {
  color: #4a4a4a !important;
}

.text-brand-cream {
  color: #fafafa !important;
}

.bg-brand-black {
  background-color: #0a0a0a !important;
}

.bg-brand-dark {
  background-color: #1a1a1a !important;
}

.bg-brand-gray {
  background-color: #2d2d2d !important;
}

.bg-brand-light-gray {
  background-color: #4a4a4a !important;
}

.bg-brand-cream {
  background-color: #fafafa !important;
}

.gradient-text-gold {
  background: linear-gradient(135deg, #D4AF37, #B8860B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shadow-luxury {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12) !important;
}

.shadow-luxury-light {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
}

.transition-luxury {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.focus\:ring-gold:focus {
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1) !important;
}

/*
REPLACE THESE SCSS VARIABLES WITH TAILWIND CLASSES:

SPACING:
$spacing-xs (0.25rem) → p-1, m-1, gap-1
$spacing-sm (0.5rem) → p-2, m-2, gap-2
$spacing-md (1rem) → p-4, m-4, gap-4
$spacing-lg (1.5rem) → p-6, m-6, gap-6
$spacing-xl (2rem) → p-8, m-8, gap-8
$spacing-2xl (3rem) → p-12, m-12, gap-12
$spacing-3xl (4rem) → p-16, m-16, gap-16

FONT SIZES:
$font-size-sm → text-sm
$font-size-base → text-base
$font-size-lg → text-lg
$font-size-2xl → text-2xl
$font-size-3xl → text-3xl
$font-size-4xl → text-4xl
$font-size-5xl → text-5xl

FONT WEIGHTS:
$font-weight-semibold → font-semibold
$font-weight-bold → font-bold

BORDER RADIUS:
$border-radius-lg → rounded-lg
$border-radius-xl → rounded-xl

TRANSITIONS:
$transition-normal → transition-all duration-300 ease-out
$transition-cubic → transition-all duration-300 ease-[cubic-bezier(0.4,0,0.2,1)]

BREAKPOINTS:
$breakpoint-sm (640px) → sm:
$breakpoint-md (768px) → md:
$breakpoint-lg (1024px) → lg:

COLORS (use Tailwind's color palette):
$luxury-white → bg-white, text-white
$luxury-black → bg-black, text-black
$luxury-gray → bg-gray-600, text-gray-600
$luxury-light-gray → bg-gray-400, text-gray-400
$luxury-cream → bg-gray-50, text-gray-50

SHADOWS:
$luxury-shadow → shadow-lg
$luxury-shadow-light → shadow-sm

BORDERS:
$luxury-border → border-gray-100
*/
header a:focus,
header button:focus {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

header a:active,
header button:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

.page .main-navbar {
  top: -20px;
}

.navigation-row {
  background: white;
}

.scrollbar-hide {
  margin-top: 12px;
}

.navigation-row a:focus-visible,
.desktop-nav a:focus-visible,
.mobile-nav a:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

nav a:focus,
nav a:active,
nav a:focus-visible,
nav button:focus,
nav button:active,
nav button:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  -webkit-tap-highlight-color: transparent !important;
}

.hamburger-menu {
  position: relative;
  width: 28px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 60;
  padding: 0;
  background: transparent;
  border: none;
}
.hamburger-menu .hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger-menu:hover .hamburger-line {
  background-color: #e5e7eb;
}
.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

#mobile-menu {
  background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3), 0 8px 10px -6px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}
#mobile-menu.hidden {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease-out, opacity 0.2s ease-out;
}
#mobile-menu:not(.hidden) {
  max-height: 600px;
  opacity: 1;
  transition: max-height 0.4s ease-in, opacity 0.3s ease-in;
}

.mobile-menu-container {
  padding: 1rem;
  position: relative;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.mobile-menu-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 1rem;
  font-weight: 500;
  color: #d1d5db;
  padding: 1rem 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.mobile-menu-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transition: left 0.5s ease;
}
.mobile-menu-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  transform: translateX(6px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.mobile-menu-item:hover::before {
  left: 100%;
}
.mobile-menu-item:hover .mobile-menu-icon {
  color: #ffffff;
  transform: scale(1.1) rotate(-5deg);
}
.mobile-menu-item:hover .mobile-menu-arrow {
  transform: translateX(4px);
  opacity: 1;
}
.mobile-menu-item:active {
  transform: translateX(6px) scale(0.98);
  background: rgba(255, 255, 255, 0.12);
}
.mobile-menu-item span {
  flex: 1;
  letter-spacing: 0.01em;
}

.mobile-menu-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #9ca3af;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-arrow {
  width: 1rem;
  height: 1rem;
  color: #6b7280;
  flex-shrink: 0;
  opacity: 0.5;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-cta {
  padding-top: 1rem;
  position: relative;
}

.mobile-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
  color: #000000;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.15), 0 2px 4px -2px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.mobile-cta-button::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: left 0.6s ease;
}
.mobile-cta-button:hover {
  background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 12px -2px rgba(0, 0, 0, 0.2), 0 4px 6px -2px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.mobile-cta-button:hover::before {
  left: 100%;
}
.mobile-cta-button:hover svg {
  transform: scale(1.1);
}
.mobile-cta-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.15), inset 0 2px 4px rgba(0, 0, 0, 0.1);
}
.mobile-cta-button svg {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 1049px) {
  nav a[href*=about] {
    display: none !important;
  }
}
@media (max-width: 879px) {
  a[href*=conferences]:has-text("Browse Conferences"),
.bg-white.text-black.px-6 {
    display: none !important;
  }
}
@media (max-width: 768px) {
  header .flex.items-center.justify-between {
    position: relative;
  }
}
footer {
  position: relative;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
}

#back-to-top {
  transition: all 0.3s ease;
}
#back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

footer a {
  position: relative;
  transition: all 0.2s ease;
}
footer a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width 0.3s ease;
}
footer a:hover::after {
  width: 100%;
}

#footer-newsletter-form input:focus {
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

footer .text-gray-400 svg {
  transition: none;
}

footer .grid > div {
  display: flex;
  flex-direction: column;
}

footer h4 {
  margin-bottom: 1.5rem;
}

footer ul {
  margin-bottom: 0;
}

footer .space-y-3 > div {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

footer .w-4.h-4 {
  width: 1rem !important;
  height: 1rem !important;
  flex-shrink: 0 !important;
  margin-right: 0.75rem !important;
}

footer .w-5.h-5 {
  width: 1.25rem;
  height: 1.25rem;
}

footer .relative .w-8.h-8 {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative;
}
footer .relative .w-8.h-8 .absolute {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
footer .relative .w-8.h-8 svg {
  position: relative !important;
  z-index: 10 !important;
  transform: translate(0.5px, 0.5px) !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  margin: auto !important;
}

footer .w-4.h-4 {
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  margin: auto !important;
}

@media (max-width: 768px) {
  footer .grid {
    gap: 2rem;
  }

  footer h4 {
    margin-bottom: 1rem;
  }

  footer ul {
    margin-bottom: 1.5rem;
  }
}
footer a:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

footer button:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

footer > div > div > div:nth-child(1) {
  animation-delay: 0.1s;
}

footer > div > div > div:nth-child(2) {
  animation-delay: 0.2s;
}

footer > div > div > div:nth-child(3) {
  animation-delay: 0.3s;
}

footer > div > div > div:nth-child(4) {
  animation-delay: 0.4s;
}

@media (prefers-color-scheme: dark) {
  footer {
    background-color: #111827;
  }

  footer .border-gray-800 {
    border-color: #374151;
  }
}
@media print {
  footer {
    display: none !important;
  }

  #back-to-top {
    display: none !important;
  }
}
.luxury-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 0.5rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #059669, #047857);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.3);
}
.luxury-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
.luxury-btn:hover::before {
  left: 100%;
}
.luxury-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.4);
}
.luxury-btn.luxury-btn-primary {
  padding: 0.5rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 0.5rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #059669, #047857);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.3);
}
.luxury-btn.luxury-btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
.luxury-btn.luxury-btn-primary:hover::before {
  left: 100%;
}
.luxury-btn.luxury-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.4);
}
.luxury-btn.luxury-btn-secondary {
  padding: 0.5rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 0.5rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  color: #374151;
  border: 2px solid #059669;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.luxury-btn.luxury-btn-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
.luxury-btn.luxury-btn-secondary:hover::before {
  left: 100%;
}
.luxury-btn.luxury-btn-secondary:hover {
  background: #059669;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.3);
}

.btn {
  padding: 0.5rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.btn.btn-primary {
  background: linear-gradient(135deg, #059669, #047857);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.3);
}
.btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.4);
  color: #ffffff !important;
}
.btn.btn-secondary {
  background: #ffffff;
  color: #374151;
  border: 2px solid #059669;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.btn.btn-secondary:hover {
  background: #059669;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.3);
}

.bg-green-600:hover {
  background: linear-gradient(135deg, #10b981, #059669) !important;
  color: #ffffff !important;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.inline-flex.items-center.bg-green-600:hover {
  background: linear-gradient(135deg, #10b981, #059669) !important;
  color: #ffffff !important;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.luxury-card {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}
.luxury-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #D4AF37, #F4E4BC);
  opacity: 0;
  transition: opacity all 0.3s ease;
}
.luxury-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.luxury-card:hover::before {
  opacity: 1;
}

.card {
  background: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all all 0.3s ease;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.card .card-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.card .card-body {
  padding: 1.5rem;
}
.card .card-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background: rgba(0, 0, 0, 0.02);
}

.related-conferences {
  margin-bottom: 3rem;
}
.related-conferences__title {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 2.25rem;
  font-weight: 600;
  color: #0a0a0a;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #0a0a0a;
  margin-bottom: 2rem;
  text-align: center;
}
@media (max-width: 639px) {
  .related-conferences__title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.related-conferences__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 640px) and (max-width: 767px) {
  .related-conferences__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
  }
}
@media (max-width: 639px) {
  .related-conferences__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.related-conference-card {
  background: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.related-conference-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.1);
}
.related-conference-card:focus-within {
  outline: 2px solid #D4AF37;
  outline-offset: 2px;
}
.related-conference-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.related-conference-card__link:hover, .related-conference-card__link:focus {
  text-decoration: none;
  color: inherit;
}
.related-conference-card__content {
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 639px) {
  .related-conference-card__content {
    padding: 1.5rem;
  }
}
.related-conference-card__title {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0a0a0a;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #0a0a0a;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  font-weight: 600;
}
@media (max-width: 639px) {
  .related-conference-card__title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }
}
.related-conference-card__details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
}
.related-conference-card__detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #4a4a4a;
  font-size: 0.875rem;
  line-height: 1.4;
}
.related-conference-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.related-conference-card__icon svg {
  width: 100%;
  height: 100%;
}
.related-conference-card__icon--category {
  color: #3b82f6;
}
.related-conference-card__icon--date {
  color: #8b5cf6;
}
.related-conference-card__icon--location {
  color: #ec4899;
}
.related-conference-card__text {
  font-weight: 500;
  color: #4a4a4a;
}

.related-conferences--luxury .related-conference-card {
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
}
.related-conferences--luxury .related-conference-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.08);
  border-color: rgba(212, 175, 55, 0.3);
}
.related-conferences--luxury .related-conference-card__title {
  color: #0a0a0a;
  position: relative;
}
.related-conferences--luxury .related-conference-card__title::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #D4AF37 0%, #F4E4BC 100%);
  transition: width all 0.3s ease;
}
.related-conferences--luxury .related-conference-card:hover .related-conferences--luxury .related-conference-card__title::after {
  width: 100%;
}

.related-conferences--compact .related-conferences__grid {
  grid-template-columns: 1fr;
  gap: 1rem;
}
.related-conferences--compact .related-conference-card__content {
  padding: 1.5rem;
}
.related-conferences--compact .related-conference-card__title {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.related-conferences--compact .related-conference-card__details {
  gap: 0.25rem;
}
.related-conferences--compact .related-conference-card__detail {
  font-size: 0.75rem;
}

.related-conferences--dark .related-conferences__title {
  color: #ffffff;
}
.related-conferences--dark .related-conference-card {
  background: #1a1a1a;
  border-color: rgba(255, 255, 255, 0.1);
}
.related-conferences--dark .related-conference-card__title {
  color: #ffffff;
}
.related-conferences--dark .related-conference-card__text {
  color: rgba(255, 255, 255, 0.7);
}
.related-conferences--dark .related-conference-card__icon--category {
  color: #60a5fa;
}
.related-conferences--dark .related-conference-card__icon--date {
  color: #a78bfa;
}
.related-conferences--dark .related-conference-card__icon--location {
  color: #f472b6;
}

@media (max-width: 639px) {
  .related-conferences {
    margin-bottom: 2rem;
  }
  .related-conferences__grid {
    gap: 1rem;
  }

  .related-conference-card:hover {
    transform: translateY(-2px);
  }
}
@media print {
  .related-conferences {
    break-inside: avoid;
  }
  .related-conferences__grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .related-conference-card {
    box-shadow: none;
    border: 1px solid #ccc;
  }
  .related-conference-card:hover {
    transform: none;
  }
}
@media (prefers-contrast: high) {
  .related-conference-card {
    border: 2px solid #0a0a0a;
  }
  .related-conference-card__title {
    color: #0a0a0a;
  }
  .related-conference-card__text {
    color: #0a0a0a;
  }
}
@media (prefers-reduced-motion: reduce) {
  .related-conference-card {
    transition: none;
  }
  .related-conference-card:hover {
    transform: none;
  }

  .related-conferences--luxury .related-conference-card__title::after {
    transition: none;
  }
}
.related-tags {
  margin-bottom: 3rem;
}
.related-tags__title {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 2.25rem;
  font-weight: 600;
  color: #0a0a0a;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #0a0a0a;
  margin-bottom: 2rem;
  text-align: center;
}
@media (max-width: 639px) {
  .related-tags__title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.related-tags__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 640px) and (max-width: 767px) {
  .related-tags__grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
  }
}
@media (max-width: 639px) {
  .related-tags__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.related-tag-card {
  background: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.related-tag-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.1);
}
.related-tag-card:focus-within {
  outline: 2px solid #D4AF37;
  outline-offset: 2px;
}
.related-tag-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.related-tag-card__link:hover, .related-tag-card__link:focus {
  text-decoration: none;
  color: inherit;
}
.related-tag-card__content {
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (max-width: 639px) {
  .related-tag-card__content {
    padding: 1.5rem;
  }
}
.related-tag-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  color: #4a4a4a;
  transition: all all 0.3s ease;
}
.related-tag-card__icon svg {
  width: 24px;
  height: 24px;
}
.related-tag-card__icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.related-tag-card__title {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0a0a0a;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #0a0a0a;
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: 600;
}
@media (max-width: 639px) {
  .related-tag-card__title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
}
.related-tag-card__description {
  color: #4a4a4a;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
@media (max-width: 639px) {
  .related-tag-card__description {
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }
}
.related-tag-card__count {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}
.related-tag-card__count-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0a0a0a;
  line-height: 1;
}
@media (max-width: 639px) {
  .related-tag-card__count-number {
    font-size: 1.125rem;
  }
}
.related-tag-card__count-label {
  font-size: 0.875rem;
  color: #4a4a4a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.related-tag-card__shared {
  padding: 0.25rem 0.5rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 0.25rem;
  border: 1px solid rgba(59, 130, 246, 0.2);
}
.related-tag-card__shared-text {
  font-size: 0.875rem;
  color: #3b82f6;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.related-tag-card:hover .related-tag-card__icon {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  transform: scale(1.1);
}
.related-tag-card:hover .related-tag-card__title {
  color: #3b82f6;
}

.related-tags--luxury .related-tag-card {
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
}
.related-tags--luxury .related-tag-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.08);
  border-color: rgba(212, 175, 55, 0.3);
}
.related-tags--luxury .related-tag-card__icon {
  background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 100%);
  color: white;
}
.related-tags--luxury .related-tag-card__title {
  color: #0a0a0a;
  position: relative;
}
.related-tags--luxury .related-tag-card__title::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #D4AF37 0%, #F4E4BC 100%);
  transition: width all 0.3s ease;
}
.related-tags--luxury .related-tag-card:hover .related-tags--luxury .related-tag-card__title::after {
  width: 100%;
}

.related-tags--compact .related-tags__grid {
  grid-template-columns: 1fr;
  gap: 1rem;
}
.related-tags--compact .related-tag-card__content {
  padding: 1.5rem;
}
.related-tags--compact .related-tag-card__title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.related-tags--compact .related-tag-card__icon {
  width: 36px;
  height: 36px;
  margin-bottom: 1rem;
}
.related-tags--compact .related-tag-card__icon svg, .related-tags--compact .related-tag-card__icon img {
  width: 18px;
  height: 18px;
}
.related-tags--compact .related-tag-card__description {
  font-size: 0.75rem;
  margin-bottom: 1rem;
}
.related-tags--compact .related-tag-card__count-number {
  font-size: 1.125rem;
}

.related-tags--dark .related-tags__title {
  color: #ffffff;
}
.related-tags--dark .related-tag-card {
  background: #1a1a1a;
  border-color: rgba(255, 255, 255, 0.1);
}
.related-tags--dark .related-tag-card__title {
  color: #ffffff;
}
.related-tags--dark .related-tag-card__description {
  color: rgba(255, 255, 255, 0.7);
}
.related-tags--dark .related-tag-card__count-number {
  color: #ffffff;
}
.related-tags--dark .related-tag-card__icon {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 639px) {
  .related-tags {
    margin-bottom: 2rem;
  }
  .related-tags__grid {
    gap: 1rem;
  }

  .related-tag-card:hover {
    transform: translateY(-2px);
  }
}
@media print {
  .related-tags {
    break-inside: avoid;
  }
  .related-tags__grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .related-tag-card {
    box-shadow: none;
    border: 1px solid #ccc;
  }
  .related-tag-card:hover {
    transform: none;
  }
}
@media (prefers-contrast: high) {
  .related-tag-card {
    border: 2px solid #0a0a0a;
  }
  .related-tag-card__title {
    color: #0a0a0a;
  }
  .related-tag-card__description {
    color: #0a0a0a;
  }
  .related-tag-card__count-number {
    color: #0a0a0a;
  }
}
@media (prefers-reduced-motion: reduce) {
  .related-tag-card {
    transition: none;
  }
  .related-tag-card:hover {
    transform: none;
  }
  .related-tag-card__icon {
    transition: none;
  }

  .related-tags--luxury .related-tag-card__title::after {
    transition: none;
  }
}
.category-gradient {
  background: linear-gradient(135deg, var(--category-color), var(--category-color-cc));
}

.hero-section {
  position: relative;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(31, 41, 55, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(55, 65, 81, 0.02) 0%, transparent 50%), radial-gradient(circle at 40% 40%, rgba(107, 114, 128, 0.01) 0%, transparent 50%);
  animation: backgroundShift 20s ease-in-out infinite;
  z-index: 1;
}
.hero-section .animate-float {
  animation: float 6s ease-in-out infinite;
}
.hero-section .animate-float-delayed {
  animation: float 6s ease-in-out infinite 2s;
}
.hero-section .animate-float-slow {
  animation: float 8s ease-in-out infinite 4s;
}
.hero-section .animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}
.hero-section .animate-fade-in-up-delayed {
  animation: fadeInUp 0.8s ease-out 0.3s both;
}
.hero-section .animate-fade-in-up-slow {
  animation: fadeInUp 0.8s ease-out 0.6s both;
}
.hero-section .animate-fade-in-up-slower {
  animation: fadeInUp 0.8s ease-out 0.9s both;
}
.hero-section .animate-fade-in-up-slowest {
  animation: fadeInUp 0.8s ease-out 1.2s both;
}
.hero-section .group {
  position: relative;
  overflow: hidden;
}
.hero-section .group::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}
.hero-section .group:hover::before {
  left: 100%;
}
.hero-section .trust-indicators {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-section {
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  position: relative;
}
@media (max-width: 768px) {
  .stats-section {
    padding: 2rem 0;
  }
}
.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}
.stats-section .stat-item {
  transition: all all 0.3s ease;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}
@media (max-width: 768px) {
  .stats-section .stat-item {
    padding: 1rem;
  }
}
.stats-section .stat-item.animate-fade-in-up {
  animation: fadeInUpStats 0.8s ease-out forwards;
}
.stats-section .stat-item:hover {
  transform: translateY(-4px);
}
.stats-section .stat-item:hover .stat-number {
  color: #2d2d2d;
  transform: scale(1.1);
}
.stats-section .stat-item .stat-number {
  transition: all all 0.3s ease;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 768px) {
  .stats-section .stat-item .stat-number {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 768px) {
  .stats-section .grid {
    gap: 1rem;
  }
}

.featured-section {
  background: linear-gradient(135deg, #fafafa 0%, #f1f5f9 100%);
  position: relative;
}
.featured-section .section-title {
  position: relative;
}
.featured-section .section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 2px;
}

.homepage-conference-card {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all all 0.3s ease;
  overflow: hidden;
  position: relative;
}
.homepage-conference-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 1rem 1rem 0 0;
}
.homepage-conference-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.homepage-conference-card:hover .conference-image {
  transform: scale(1.05);
}
.homepage-conference-card .conference-image {
  height: 80px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.homepage-conference-card .conference-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.homepage-conference-card .conference-image:hover::before {
  transform: translateX(100%);
}
.homepage-conference-card .conference-content {
  padding: 1.5rem;
}
.homepage-conference-card .conference-content .conference-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.homepage-conference-card .conference-content .conference-description {
  color: #2d2d2d;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.homepage-conference-card .conference-content .conference-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1rem;
}
.homepage-conference-card .conference-content .conference-meta span {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #2d2d2d;
}
.homepage-conference-card .conference-content .conference-meta span svg {
  margin-right: 0.25rem;
}
.homepage-conference-card .conference-content .conference-price {
  color: #1a1a1a;
  font-weight: 700;
}

.conference-card {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all all 0.3s ease;
  overflow: hidden;
  position: relative;
}
.conference-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 1rem 1rem 0 0;
}
.conference-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.conference-card:hover .conference-image {
  transform: scale(1.05);
}
.conference-card .conference-image {
  transition: transform all 0.3s ease;
  height: 200px;
  object-fit: cover;
}
.conference-card .conference-content {
  padding: 1.5rem;
}
.conference-card .conference-title {
  color: #0a0a0a;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.conference-card .conference-description {
  color: #4a4a4a;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.conference-card .conference-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #4a4a4a;
}
.conference-card .conference-price {
  font-weight: 600;
  color: #2d2d2d;
}

.category-section {
  background: #ffffff;
}
.category-section .category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.category-section .category-card {
  background: linear-gradient(135deg, #fafafa 0%, #f1f5f9 100%);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  transition: all all 0.3s ease;
  border: 2px solid transparent;
}
.category-section .category-card:hover {
  transform: translateY(-4px);
  border-color: #4a4a4a;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}
.category-section .category-card .category-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}
.category-section .category-card .category-title {
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 0.5rem;
}
.category-section .category-card .category-count {
  color: #4a4a4a;
  font-size: 0.875rem;
}

.cta-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.5;
}
.cta-section .cta-content {
  position: relative;
  z-index: 2;
}
.cta-section h2 {
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.cta-section p {
  color: #f3f4f6;
}
.cta-section .cta-button {
  background: #ffffff;
  color: #1a1a1a;
  transition: all all 0.3s ease;
}
.cta-section .cta-button:hover {
  background: #fafafa;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}
@keyframes backgroundShift {
  0%, 100% {
    transform: translateX(0) translateY(0);
  }
  25% {
    transform: translateX(-10px) translateY(-10px);
  }
  50% {
    transform: translateX(10px) translateY(-5px);
  }
  75% {
    transform: translateX(-5px) translateY(10px);
  }
}
@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.6);
  }
}
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.25rem;
    line-height: 1.2;
    font-weight: 700;
  }
  .hero-section p {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #64748b;
  }
  .hero-section .animate-float,
.hero-section .animate-float-delayed,
.hero-section .animate-float-slow {
    display: none;
  }
  .hero-section .flex-col {
    gap: 1rem;
  }
  .hero-section .trust-indicators {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .stats-section .stat-item {
    margin-bottom: 1rem;
  }

  .conference-card {
    margin-bottom: 1.5rem;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1024px) and (min-width: 769px) {
  .hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
  }
  .hero-section p {
    font-size: 1.125rem;
    color: #64748b;
  }
}
@keyframes fadeInUpStats {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 1440px) {
  .hero-section h1 {
    font-size: 3.75rem;
    font-weight: 700;
  }
  .hero-section p {
    font-size: 1.25rem;
    color: #64748b;
  }
}
.clear-filters-btn {
  display: none;
}

.page-header {
  color: #1e293b;
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #e2e8f0;
}
.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,0,0,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}
.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  color: #0f172a;
}
.page-header p {
  font-size: 1.25rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  color: #475569;
}

.luxury-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.luxury-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.luxury-btn {
  padding: 0.75rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.luxury-btn.luxury-btn-primary {
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  color: white;
}
.luxury-btn.luxury-btn-primary:hover {
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(31, 41, 55, 0.3);
}
.luxury-btn.luxury-btn-secondary {
  background: #f8fafc;
  color: #64748b;
  border: 2px solid #e2e8f0;
}
.luxury-btn.luxury-btn-secondary:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  transform: translateY(-2px);
}
.luxury-btn.luxury-btn-black {
  background: #000000;
  color: white;
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
}
.luxury-btn.luxury-btn-black:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.conference-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  overflow: visible;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-top: 1rem;
}
.conference-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}
.conference-card:hover .conference-title a {
  color: #374151;
}

.conference-content {
  padding: 2rem;
  padding-top: 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
}

.featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #f8fafc;
  color: #64748b;
  padding: 0.375rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid #e2e8f0;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.conference-title {
  margin-bottom: 1rem;
}
.conference-title a {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1.3;
}

.conference-category {
  display: inline-block;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  color: #475569;
  padding: 0.25rem 0.625rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: capitalize;
  letter-spacing: 0.05em;
  border: 1px solid #e2e8f0;
  width: auto;
  max-width: fit-content;
}

.conference-details {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.conference-detail-item {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  color: #64748b;
  font-size: 0.95rem;
}
.conference-detail-item .conference-detail-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.75rem;
  color: #6b7280;
  flex-shrink: 0;
}

.conference-description {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.conference-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid #f1f5f9;
  margin-top: auto;
}

.conference-price {
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.conference-price .flex {
  align-items: center;
  justify-content: center;
}
.conference-price svg {
  flex-shrink: 0;
}
.conference-price span {
  font-size: 1.25rem;
  font-weight: 600;
  color: #374151;
}
.conference-price span.free {
  color: #059669;
}
.conference-price span.tba {
  color: #6b7280;
  font-size: 1rem;
}

.conference-content .flex.justify-start {
  margin-top: 1.5rem;
}

.conference-card {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.conference-card.hidden {
  display: none !important;
}
.conference-card.filtering {
  opacity: 0;
  transform: translateY(20px);
}
.conference-card.filtered-in {
  opacity: 1;
  transform: translateY(0);
}

#filtered-empty-state {
  background: #f8fafc;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  margin: 2rem 0;
}
#filtered-empty-state .text-8xl {
  opacity: 0.6;
}
#filtered-empty-state h3 {
  color: #374151;
  font-weight: 700;
}
#filtered-empty-state p {
  color: #6b7280;
  max-width: 500px;
  margin: 0 auto 2rem auto;
}
#filtered-empty-state .luxury-btn {
  margin-top: 1rem;
}

.conference-actions {
  display: flex;
  gap: 0.75rem;
}

.btn-view {
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}
.btn-view:hover {
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(31, 41, 55, 0.3);
}

.btn-favorite {
  background: #f8fafc;
  color: #64748b;
  padding: 0.75rem;
  border-radius: 10px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-favorite:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #374151;
}
.btn-favorite.favorited {
  background: #fef2f2;
  border-color: #fecaca;
  color: #dc2626;
}

.load-more-btn {
  position: relative;
  overflow: hidden;
}
.load-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}
.load-more-btn:hover::before {
  left: 100%;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.conference-card.animate-in {
  animation: slideInUp 0.6s ease forwards;
}

.past-conference {
  opacity: 0.8;
  border: 1px solid #e5e7eb;
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}
.past-conference:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.past-conference .conference-title a {
  color: #6b7280;
}
.past-conference .conference-title a:hover {
  color: #4b5563;
}
.past-conference .conference-category {
  color: #9ca3af;
}
.past-conference .conference-detail-icon {
  color: #9ca3af;
}
.past-conference .conference-detail-item {
  color: #6b7280;
}
.past-conference .conference-description {
  color: #6b7280;
}
.past-conference .conference-price span {
  color: #9ca3af;
}

.past-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #6b7280;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 10;
}

@media (max-width: 768px) {
  .page-header {
    padding: 2rem 0;
  }
  .page-header h1 {
    font-size: 2rem;
  }
  .page-header p {
    font-size: 1rem;
  }

  .conference-content {
    padding: 1.5rem;
  }

  .conference-title a {
    font-size: 1.25rem;
  }

  .conference-details {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .conference-detail-item {
    margin-bottom: 0;
    flex-shrink: 0;
    white-space: nowrap;
  }

  .conference-description {
    max-width: none;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }

  .conference-footer {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
    justify-content: flex-start;
  }

  .conference-actions {
    justify-content: center;
  }

  #filters-section {
    position: relative;
    z-index: 10;
  }

  #filter-toggle-btn {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  #filter-toggle-btn::before {
    content: "Show Filters";
  }
  #filter-toggle-btn #filter-toggle-text {
    opacity: 0;
    transition: opacity 0.1s ease;
  }
  #filter-toggle-btn.js-initialized #filter-toggle-text {
    opacity: 1;
  }
}
.long-title {
  font-size: 2.5rem !important;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .long-title {
    font-size: 1.75rem !important;
  }
}
@media (max-width: 480px) {
  .long-title {
    font-size: 1.5rem !important;
  }
}

.related-conferences .related-card, .sponsor-card, .event-card, .conference-info-cards .info-card, .conference-detail li, .pricing-link {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.related-conferences .related-card:hover, .sponsor-card:hover, .event-card:hover, .conference-info-cards .info-card:hover, .conference-detail li:hover, .pricing-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-color: #4a4a4a;
}

.pricing-summary {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.price-range {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
}

.price-from {
  color: #059669;
}

.price-to {
  color: #6b7280;
  font-weight: 400;
}

.pricing-overview,
.pricing-cta {
  margin-top: 0.75rem;
}

.pricing-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 16px;
  background: #f8fafc;
  color: #2563eb;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
}
.pricing-link:hover {
  background: #e2e8f0;
  color: #1d4ed8;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.more-tiers {
  margin-top: 0.25rem;
  padding-top: 0.25rem;
  border-top: 1px solid #e5e7eb;
}
.more-tiers a {
  text-decoration: none;
  transition: color 0.2s ease;
}
.more-tiers a:hover {
  text-decoration: underline;
}

.conference-detail ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: "Open Sans", sans-serif;
}
.conference-detail li {
  padding: 16px 20px;
  margin-bottom: 1rem;
  line-height: 1.7;
}
.conference-detail li:last-child {
  margin-bottom: 0;
}
.conference-detail li:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.conference-detail li span {
  font-weight: 500;
  color: #1e293b;
  transition: color 0.3s ease;
  font-family: "Open Sans", sans-serif;
}
.conference-detail li span:hover {
  color: #000000;
}
.conference-detail [class*=bullet-] {
  display: inline-block;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.2;
  width: 20px;
  text-align: center;
  animation: subtle-pulse 4s ease-in-out infinite;
  margin-top: 2px;
}
.conference-detail [class*=bullet-]:hover {
  animation: none;
  transform: scale(1.1);
}
.conference-detail .bullet-blue {
  color: #000000;
}
.conference-detail .conference-detail ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.conference-detail .conference-detail ul li {
  margin-bottom: 12px;
  line-height: 1.6;
}
.conference-detail .conference-detail ul li:last-child {
  margin-bottom: 0;
}
.conference-detail .bullet-green {
  color: #10b981;
  font-weight: bold;
}
.conference-detail .bullet-red {
  color: #ef4444;
  font-weight: bold;
}
.conference-detail .pros-section {
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.conference-detail .pros-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #10b981, #0c8a60);
}
.conference-detail .pros-section h4 {
  color: #047857;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  font-size: 18px;
}
.conference-detail .pros-section ul li {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 8px;
  border-left: 3px solid #10b981;
  transition: all 0.3s ease;
}
.conference-detail .pros-section ul li:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(2px);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
}
.conference-detail .pros-section ul li:last-child {
  margin-bottom: 0;
}
.conference-detail .cons-section {
  background: linear-gradient(135deg, #fef2f2 0%, #fef7f7 100%);
  border: 1px solid #fecaca;
  border-radius: 12px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.conference-detail .cons-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ef4444, #eb1515);
}
.conference-detail .cons-section h4 {
  color: #b91c1c;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  font-size: 18px;
}
.conference-detail .cons-section ul li {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 8px;
  border-left: 3px solid #ef4444;
  transition: all 0.3s ease;
}
.conference-detail .cons-section ul li:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(2px);
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.1);
}
.conference-detail .cons-section ul li:last-child {
  margin-bottom: 0;
}
.conference-detail .bullet-icon {
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  color: #ffffff;
}
.conference-detail .bullet-icon:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}
.conference-detail .pros-cons-container {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  position: relative;
}
.conference-detail .pros-cons-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #10b981, #ef4444);
  border-radius: 16px 16px 0 0;
}
.conference-detail .pros-cons-container h3 {
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  font-size: 20px;
}
.conference-detail .pros-cons-container .grid {
  gap: 20px;
}

.conference-info-cards {
  margin-bottom: 2rem;
}
.conference-info-cards .info-card {
  padding: 1rem;
  backdrop-filter: blur(10px);
}
.conference-info-cards .info-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-color: #000000;
}
.conference-info-cards .info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #000000;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px 8px 0 0;
}
.conference-info-cards .info-card:hover::before {
  opacity: 1;
}
.conference-info-cards .icon-container {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: white;
}
.conference-info-cards .icon-container.date-icon, .conference-info-cards .icon-container.attendees-icon, .conference-info-cards .icon-container.price-icon {
  background: #000000;
}
.conference-info-cards .icon-container.location-icon {
  background: #1f2937;
}
.conference-info-cards .icon-container svg {
  transition: transform 0.3s ease;
}
.conference-info-cards .info-card:hover .icon-container {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.conference-info-cards .card-content {
  flex: 1;
  position: relative;
  z-index: 1;
  text-align: left;
}
.conference-info-cards .card-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b7280;
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}
.conference-info-cards .card-value {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  line-height: 1.4;
  transition: color 0.3s ease;
}
.conference-info-cards .secondary-info {
  font-size: 0.875rem;
  font-weight: 400;
  color: #6b7280;
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  transition: color 0.3s ease;
}
.conference-info-cards .info-card:hover .card-label,
.conference-info-cards .info-card:hover .secondary-info {
  color: #374151;
}
.conference-info-cards .info-card:hover .card-value {
  color: #000000;
}

.conference-tabs .tab-nav {
  @apply flex space-x-1 bg-gray-100 p-1 rounded-lg mb-6;
}
.conference-tabs .tab-button {
  @apply flex-1 py-2 px-4 text-sm font-medium text-center rounded-md transition-colors duration-200;
  @apply text-gray-600 hover:text-gray-900 hover:bg-white;
}
.conference-tabs .tab-button.active {
  @apply bg-white text-gray-900 shadow-sm;
}
.conference-tabs .tab-content {
  @apply hidden;
}
.conference-tabs .tab-content.active {
  @apply block;
}

.event-card {
  @apply p-4 mb-4;
}
.event-card .event-header {
  @apply flex flex-col md:flex-row md:items-center md:justify-between gap-4;
}
.event-card .event-info {
  @apply flex-1;
}
.event-card .event-info .event-title {
  @apply text-lg font-semibold text-gray-900 mb-2;
}
.event-card .event-info .event-meta {
  @apply flex flex-wrap items-center gap-4 text-sm text-gray-600;
}
.event-card .event-info .event-meta .meta-item {
  @apply flex items-center;
}
.event-card .event-info .event-meta .meta-item svg {
  @apply w-4 h-4 mr-1;
}
.event-card .speaker-info {
  @apply md:text-right;
}
.event-card .speaker-info .speaker-name {
  @apply font-semibold text-gray-900;
}
.event-card .speaker-info .speaker-company {
  @apply text-sm text-gray-600;
}

.sponsor-card {
  @apply p-6 text-center;
}
.sponsor-card .sponsor-logo {
  @apply h-16 mx-auto mb-4 object-contain;
}
.sponsor-card .sponsor-name {
  @apply font-semibold text-gray-900 mb-2;
}
.sponsor-card .sponsor-level {
  @apply text-sm text-blue-600 font-medium mb-2;
}
.sponsor-card .sponsor-description {
  @apply text-sm text-gray-700;
}
.sponsor-card .sponsor-website {
  @apply inline-block mt-3 text-black hover:text-gray-600 text-sm font-medium transition-colors duration-200;
}

.related-conferences .related-card {
  @apply p-4;
}
.related-conferences .related-card .related-title {
  @apply font-semibold text-gray-900 mb-2;
}
.related-conferences .related-card .related-title a {
  @apply hover:text-black transition-colors duration-200;
}
.related-conferences .related-card .related-meta {
  @apply text-sm text-gray-600 mb-2;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@keyframes subtle-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@media (max-width: 768px) {
  .conference-detail ul li {
    padding: 12px 16px;
  }
  .conference-detail ul li:hover {
    transform: translateX(6px) translateY(-2px) scale(1.01);
  }

  .conference-info-cards .info-card {
    padding: 1.5rem;
  }
  .conference-info-cards .icon-container {
    width: 44px;
    height: 44px;
  }
  .conference-info-cards .card-value {
    font-size: 1.125rem;
  }

  .event-card .event-header {
    @apply flex-col;
  }
  .event-card .event-header .speaker-info {
    @apply text-left;
  }

  .pricing-tiers-preview {
    gap: 0.5rem;
  }

  .tier-preview {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
}
@media (max-width: 1024px) and (min-width: 769px) {
  .conference-info-cards .info-card {
    padding: 1.25rem;
  }
}
@media (max-width: 768px) {
  .conference-info-cards {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .info-card {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .bg-white.rounded-lg.shadow-md.p-6.mb-8.border.border-gray-200 {
    display: none;
  }

  .flex.flex-col.lg\\:flex-row {
    flex-direction: column;
  }

  .flex.flex-col.md\\:flex-row {
    flex-direction: column;
  }

  .conference-info-cards {
    grid-template-columns: 1fr;
  }
}
#conference-nav {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  scroll-behavior: smooth;
  scroll-padding-left: 2rem;
  scroll-padding-right: 2rem;
  transition: scroll-left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
#conference-nav::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}
#conference-nav::-webkit-scrollbar-track {
  display: none !important;
}
#conference-nav::-webkit-scrollbar-thumb {
  display: none !important;
}
#conference-nav::-webkit-scrollbar-corner {
  display: none !important;
}

#conference-nav.scrolling {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}
#conference-nav.scrolling::-webkit-scrollbar {
  display: none !important;
}

.conference-navbar #conference-nav {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}
.conference-navbar #conference-nav::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.conference-tag-rankings-section {
  position: relative;
}
.conference-tag-rankings-section .tag-ranking-card {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease;
}
.conference-tag-rankings-section .tag-ranking-card:hover {
  text-decoration: none;
  transform: translateY(-2px);
}
.conference-tag-rankings-section .tag-ranking-card .rank-badge {
  position: relative;
  text-align: center;
  transition: transform 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.conference-tag-rankings-section .tag-ranking-card .rank-badge:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .conference-tag-rankings-section .grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .conference-tag-rankings-section .tag-ranking-card {
    padding: 1rem;
  }
  .conference-tag-rankings-section .tag-ranking-card .rank-badge {
    min-width: 70px;
    padding: 0.375rem 0.75rem;
  }
  .conference-tag-rankings-section .tag-ranking-card .rank-badge .text-2xl {
    font-size: 1.5rem;
  }
}

.map-container {
  min-height: 400px;
}

#map {
  border-radius: 0.5rem;
  z-index: 1;
  display: none;
}

.custom-venue-icon {
  background: transparent !important;
  border: none !important;
}

#map-placeholder {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.social-template-page #page-title {
  margin-top: 16px;
}

.step-indicator {
  min-width: 32px;
  min-height: 32px;
  aspect-ratio: 1/1;
}

.template-section {
  display: block;
}
.template-section h3 {
  text-align: center;
}

@media (min-width: 768px) {
  .template-selection-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .template-selection-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 1280px) {
  .template-selection-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 768px) {
  .template-option {
    padding: 1.25rem;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
@media (min-width: 1024px) {
  .template-option {
    padding: 1.5rem;
    min-height: 280px;
  }
}
@media (min-width: 1280px) {
  .template-option {
    padding: 2rem;
    min-height: 320px;
  }
}

.advanced-options-section {
  display: none;
}

.generate-section {
  display: none;
}

.preview-container {
  max-width: 200px;
}
@media (min-width: 1024px) {
  .preview-container {
    max-width: 250px;
  }
}
@media (min-width: 1280px) {
  .preview-container {
    max-width: 300px;
  }
}

.preview-image {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 0.5rem;
}
@media (min-width: 1024px) {
  .preview-image {
    width: 150px;
    height: 150px;
  }
}
@media (min-width: 1280px) {
  .preview-image {
    width: 180px;
    height: 180px;
  }
}

.generated-image {
  max-width: 100%;
  max-height: 300px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0.5rem;
}

#generated-image,
.generated-image,
[class*=generated-image] {
  max-width: 100% !important;
  max-height: 300px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  border-radius: 0.5rem;
}

.social-media-kit .generated-image {
  max-height: 250px;
}
@media (min-width: 768px) {
  .social-media-kit .generated-image {
    max-height: 300px;
  }
}
@media (min-width: 1024px) {
  .social-media-kit .generated-image {
    max-height: 350px;
  }
}

.format-square .generated-image {
  max-height: 300px;
  aspect-ratio: 1/1;
}

.format-banner .generated-image {
  max-height: 200px;
  aspect-ratio: 4/1;
}

.format-story .generated-image {
  max-height: 400px;
  aspect-ratio: 9/16;
}

.image-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  border-radius: 0.5rem;
}
.image-hover-overlay:hover {
  background: rgba(0, 0, 0, 0.5);
  opacity: 1;
}

.hover-icon {
  background: rgba(255, 255, 255, 0.9);
  color: #374151;
  padding: 0.75rem;
  border-radius: 50%;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  cursor: pointer;
}
.hover-icon:hover {
  background: white;
  transform: scale(1.1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.hover-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.share-modal .share-button {
  transition: all 0.2s ease;
}
.share-modal .share-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

#image-modal {
  backdrop-filter: blur(4px);
  animation: modalFadeIn 0.3s ease-out;
}
#image-modal .modal-content {
  animation: modalSlideIn 0.3s ease-out;
  max-width: 90vw;
  max-height: 90vh;
}
@media (min-width: 768px) {
  #image-modal .modal-content {
    max-width: 80vw;
  }
}
@media (min-width: 1024px) {
  #image-modal .modal-content {
    max-width: 70vw;
  }
}
#image-modal .modal-image {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.rating-bar {
  width: 80px;
  height: 8px;
}

.rating-fill {
  height: 8px;
}

.tier-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tier-card:hover {
  transform: translateY(-2px);
}

.discount-badge {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
.tier-button {
  width: 100%;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
  margin-top: 20px;
}
.tier-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.tier-button:active {
  transform: translateY(0);
}

.promotions-link-section {
  margin-bottom: 2rem;
}

.promotions-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease;
}
.promotions-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #1f2937;
}

.promotions-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
}

.promotions-icon {
  width: 4rem;
  height: 4rem;
  background: #1f2937;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.promotions-text {
  flex: 1;
}

.promotions-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
  font-family: "Open Sans", sans-serif;
}

.promotions-description {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.5;
  font-family: "Open Sans", sans-serif;
}

.promotions-button {
  background: #000000;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
  font-family: "Open Sans", sans-serif;
  white-space: nowrap;
}
.promotions-button:hover {
  background: #1f2937;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: white;
}

.empty-state-desktop {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2rem 0;
}

.empty-content-left {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.empty-icon {
  width: 4rem;
  height: 4rem;
  color: #6b7280;
  background: #f1f5f9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.empty-text {
  flex: 1;
}

.empty-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
  font-family: "Open Sans", sans-serif;
}

.empty-description {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
  font-family: "Open Sans", sans-serif;
}

.deal-alerts-sidebar {
  background: #f8fafc;
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  position: sticky;
  top: 2rem;
}

.sidebar-header {
  margin-bottom: 1.5rem;
}

.form-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  font-family: "Open Sans", sans-serif;
}

.form-description {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.5;
  font-family: "Open Sans", sans-serif;
}

.sidebar-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  margin-bottom: 0;
}
.form-group input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.875rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: white;
  font-family: "Open Sans", sans-serif;
}
.form-group input:focus {
  outline: none;
  border-color: #1f2937;
  box-shadow: 0 0 0 3px rgba(31, 41, 55, 0.1);
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  background: white;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  transition: all 0.2s ease;
  cursor: pointer;
}
.checkbox-item:hover {
  border-color: #1f2937;
  background: #f8fafc;
}
.checkbox-item input[type=checkbox] {
  width: 1rem;
  height: 1rem;
  accent-color: #1f2937;
  cursor: pointer;
}
.checkbox-item label {
  font-size: 0.875rem;
  color: #374151;
  cursor: pointer;
  font-weight: 500;
  flex: 1;
  font-family: "Open Sans", sans-serif;
}

.form-button {
  width: 100%;
  background: #000000;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: "Open Sans", sans-serif;
}
.form-button:hover {
  background: #1f2937;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.form-message {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.75rem;
  border-radius: 6px;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  margin-top: 1rem;
}

.notification-form {
  background: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  max-width: 28rem;
  margin: 0 auto;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.notification-form .form-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Open Sans", sans-serif;
}
.notification-form .form-title svg {
  color: #6b7280;
}
.notification-form .form-group {
  margin-bottom: 1rem;
}
.notification-form .form-group input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.875rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: white;
  font-family: "Open Sans", sans-serif;
}
.notification-form .form-group input:focus {
  outline: none;
  border-color: #1f2937;
  box-shadow: 0 0 0 3px rgba(31, 41, 55, 0.1);
}
.notification-form .form-group input::placeholder {
  color: #9ca3af;
  font-weight: 400;
}
.notification-form .checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.notification-form .form-button:active {
  transform: translateY(0);
}
.notification-form .form-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.deal-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.2s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.deal-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #1f2937;
}

.deal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.deal-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  flex: 1;
  margin-right: 1rem;
  line-height: 1.3;
  font-family: "Open Sans", sans-serif;
}

.deal-discount {
  font-size: 1.25rem;
  font-weight: 700;
  white-space: nowrap;
  color: #1f2937;
}

.deal-description {
  color: #64748b;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.5;
  font-family: "Open Sans", sans-serif;
}

.deal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: #9ca3af;
  padding-top: 0.75rem;
  border-top: 1px solid #e5e7eb;
}

.deal-code {
  font-weight: 600;
  color: #1f2937;
  background: #f1f5f9;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-family: "Courier New", monospace;
}

.deal-expiry {
  color: #9ca3af;
}

#deal-updates-message,
#additional-deal-updates-message {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.75rem;
  border-radius: 6px;
  text-align: center;
  font-family: "Open Sans", sans-serif;
}
#deal-updates-message.bg-green-100,
#additional-deal-updates-message.bg-green-100 {
  background: #f0fdf4 !important;
  border: 1px solid #bbf7d0 !important;
  color: #166534 !important;
}
#deal-updates-message.bg-red-100,
#additional-deal-updates-message.bg-red-100 {
  background: #fef2f2 !important;
  border: 1px solid #fecaca !important;
  color: #991b1b !important;
}

@media (max-width: 768px) {
  .promotions-card {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .promotions-content {
    flex-direction: column;
    text-align: center;
  }

  .promotions-button {
    width: 100%;
    justify-content: center;
  }

  .bg-white.rounded-lg.shadow-md.p-6.border.border-gray-100.mb-8 .flex.items-center.justify-between {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }
  .bg-white.rounded-lg.shadow-md.p-6.border.border-gray-100.mb-8 .flex.items-center.space-x-4 {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
}
.pricing-tiers {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.pricing-tiers .pricing-tier {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 100%;
}
.pricing-tiers .pricing-tier::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  z-index: 1;
}
.pricing-tiers .pricing-tier:hover {
  border-color: #9ca3af;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.pricing-tiers .pricing-tier.featured {
  border-color: #374151;
  box-shadow: 0 8px 25px rgba(55, 65, 81, 0.15);
}
.pricing-tiers .pricing-tier.featured::before {
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  height: 6px;
}
.pricing-tiers .pricing-tier.early-bird-ended {
  opacity: 0.7;
  border-color: #d1d5db;
  background: #f9fafb;
  position: relative;
}
.pricing-tiers .pricing-tier.early-bird-ended::after {
  content: "ENDED";
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #ef4444;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  z-index: 10;
}
.pricing-tiers .pricing-tier.early-bird-ended::before {
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  height: 4px;
}
.pricing-tiers .pricing-tier.early-bird-ended:hover {
  transform: none;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border-color: #d1d5db;
}
.pricing-tiers .pricing-tier.early-bird-ended .tier-name {
  color: #6b7280;
}
.pricing-tiers .pricing-tier.early-bird-ended .tier-price {
  color: #6b7280;
}
.pricing-tiers .pricing-tier .tier-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.pricing-tiers .pricing-tier .tier-header .tier-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.pricing-tiers .pricing-tier .tier-header .tier-badge.early-bird {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  color: #065f46;
}
.pricing-tiers .pricing-tier .tier-header .tier-badge.student {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #1e40af;
}
.pricing-tiers .pricing-tier .tier-header .tier-badge.group {
  background: linear-gradient(135deg, #e9d5ff 0%, #ddd6fe 100%);
  color: #6b21a8;
}
.pricing-tiers .pricing-tier .tier-header .tier-badge.vip {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  color: #92400e;
}
.pricing-tiers .pricing-tier .tier-header .tier-badge.standard {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  color: #065f46;
}
.pricing-tiers .pricing-tier .tier-header .tier-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}
.pricing-tiers .pricing-tier .tier-pricing-section {
  margin-top: auto;
  text-align: center;
  margin-bottom: 1.5rem;
}
.pricing-tiers .pricing-tier .tier-pricing-section .tier-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.pricing-tiers .pricing-tier .tier-pricing-section .tier-price .currency {
  font-size: 1.5rem;
  vertical-align: top;
}
.pricing-tiers .pricing-tier .tier-pricing-section .tier-price .original-price {
  font-size: 1.5rem;
  color: #9ca3af;
  text-decoration: line-through;
  margin-left: 0.5rem;
}
.pricing-tiers .pricing-tier .tier-pricing-section .tier-savings {
  color: #059669;
  font-weight: 600;
  font-size: 0.875rem;
}
.pricing-tiers .pricing-tier .tier-pricing-section .tier-countdown {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  color: #92400e;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
}
.pricing-tiers .pricing-tier .tier-features {
  margin-bottom: 2rem;
  flex-grow: 1;
}
.pricing-tiers .pricing-tier .tier-features .features-title {
  font-weight: 600;
  color: #374151;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.pricing-tiers .pricing-tier .tier-features .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pricing-tiers .pricing-tier .tier-features .feature-list .feature-item {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  color: #6b7280;
  font-size: 0.875rem;
}
.pricing-tiers .pricing-tier .tier-features .feature-list .feature-item .feature-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #10b981;
  margin-right: 0.75rem;
  flex-shrink: 0;
}
.pricing-tiers .pricing-tier .tier-button {
  width: 100%;
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  color: white;
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: auto;
}
.pricing-tiers .pricing-tier .tier-button:hover {
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(31, 41, 55, 0.3);
  color: white;
}
.pricing-tiers .pricing-tier .tier-button.secondary {
  background: #ffffff;
  color: #374151;
  border: 2px solid #e5e7eb;
}
.pricing-tiers .pricing-tier .tier-button.secondary:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #1f2937;
}

.pricing-stats {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
}
.pricing-stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.pricing-stats .stats-grid .stat-item {
  text-align: center;
}
.pricing-stats .stats-grid .stat-item .stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.25rem;
}
.pricing-stats .stats-grid .stat-item .stat-label {
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 500;
}

.coupons-section {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin-bottom: 2rem;
}
.coupons-section .section-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.coupons-section .section-header .section-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 1rem;
}
.coupons-section .section-header h3 {
  color: #1e293b;
  font-weight: 700;
  margin: 0;
}
.coupons-section .empty-state {
  text-align: center;
  padding: 2rem;
  color: #6b7280;
}
.coupons-section .empty-state .empty-icon {
  width: 3rem;
  height: 3rem;
  color: #d1d5db;
  margin: 0 auto 1rem;
}
.coupons-section .empty-state .empty-title {
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}
.coupons-section .empty-state .empty-description {
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}
.coupons-section .notification-form {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}
.coupons-section .notification-form .form-title {
  font-weight: 600;
  color: #374151;
  margin-bottom: 1rem;
}
.coupons-section .notification-form .form-group {
  margin-bottom: 1rem;
}
.coupons-section .notification-form .form-group label {
  display: block;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}
.coupons-section .notification-form .form-group input[type=email] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.coupons-section .notification-form .form-group input[type=email]:focus {
  outline: none;
  border-color: #6b7280;
  box-shadow: 0 0 0 3px rgba(107, 114, 128, 0.1);
}
.coupons-section .notification-form .form-group input[type=email]::placeholder {
  color: #9ca3af;
}
.coupons-section .notification-form .checkbox-group {
  margin-bottom: 1.5rem;
}
.coupons-section .notification-form .checkbox-group .checkbox-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.coupons-section .notification-form .checkbox-group .checkbox-item input[type=checkbox] {
  margin-right: 0.5rem;
  accent-color: #374151;
}
.coupons-section .notification-form .checkbox-group .checkbox-item label {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}
.coupons-section .notification-form .form-button {
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.coupons-section .notification-form .form-button:hover {
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  transform: translateY(-1px);
}

.code-forms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.code-forms .code-form {
  background: #f8fafc;
  border-radius: 12px;
  padding: 1.5rem;
}
.code-forms .code-form .form-title {
  font-weight: 600;
  color: #374151;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}
.code-forms .code-form .form-title .form-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
  color: #6b7280;
}
.code-forms .code-form .form-group {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.code-forms .code-form .form-group input[type=text] {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.code-forms .code-form .form-group input[type=text]:focus {
  outline: none;
  border-color: #6b7280;
  box-shadow: 0 0 0 3px rgba(107, 114, 128, 0.1);
}
.code-forms .code-form .form-group input[type=text]::placeholder {
  color: #9ca3af;
}
.code-forms .code-form .form-group .form-button {
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.code-forms .code-form .form-group .form-button:hover {
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  transform: translateY(-1px);
}
.code-forms .code-form .form-message {
  font-size: 0.875rem;
  padding: 0.5rem 0;
}
.code-forms .code-form .form-message.error {
  color: #dc2626;
}
.code-forms .code-form .form-message.success {
  color: #059669;
}

.price-calculator {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin-bottom: 2rem;
}
.price-calculator .calculator-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.price-calculator .calculator-header .calculator-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 1rem;
}
.price-calculator .calculator-header h3 {
  color: #1e293b;
  font-weight: 700;
  margin: 0;
}
.price-calculator .calculator-content {
  background: #f8fafc;
  border-radius: 12px;
  padding: 1.5rem;
}
.price-calculator .calculator-content .price-breakdown .price-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}
.price-calculator .calculator-content .price-breakdown .price-line:last-child {
  border-bottom: none;
  font-weight: 600;
  font-size: 1.125rem;
  color: #1f2937;
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 2px solid #e5e7eb;
}
.price-calculator .calculator-content .price-breakdown .price-line.discount {
  color: #059669;
}
.price-calculator .calculator-content .price-breakdown .price-line .price-label {
  color: #6b7280;
}
.price-calculator .calculator-content .price-breakdown .price-line .price-value {
  font-weight: 500;
  color: #374151;
}

.cta-section {
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  color: white;
}
.cta-section h3 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.cta-section p {
  font-size: 1.125rem;
  color: #f3f4f6;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-section .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-section .cta-buttons .cta-button {
  background: #ffffff;
  color: #1f2937;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cta-section .cta-buttons .cta-button:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  color: #1f2937;
}
.cta-section .cta-buttons .cta-button.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}
.cta-section .cta-buttons .cta-button.secondary:hover {
  background: white;
  color: #1f2937;
}

@media (max-width: 768px) {
  .pricing-tiers .pricing-tier {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .pricing-stats .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .code-forms {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 2rem 1rem;
  }
  .cta-section .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-section .cta-buttons .cta-button {
    width: 100%;
    max-width: 300px;
  }
}
.conference-travel-page {
  font-family: "Open Sans", sans-serif;
}

.travel-hero-title {
  font-family: "Open Sans", sans-serif;
}

.section-title {
  font-family: "Open Sans", sans-serif;
}

.subsection-title {
  font-family: "Open Sans", sans-serif;
}

.hotel-name {
  font-family: "Open Sans", sans-serif;
}

.empty-state-text {
  font-family: "Open Sans", sans-serif;
}

.faq-title {
  font-family: "Open Sans", sans-serif;
}

.faq-category-title {
  font-family: "Open Sans", sans-serif;
}

.faq-question-title {
  font-family: "Open Sans", sans-serif;
}

.faq-answer-text {
  font-family: "Open Sans", sans-serif;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}
.faq-item:last-child {
  border-bottom: none;
}

.faq-question:hover {
  background-color: #f9fafb;
}

.faq-answer {
  background-color: #fafafa;
  border-top: 1px solid #e5e7eb;
  display: none;
}
.faq-answer.faq-open {
  display: block;
}

.faq-icon.rotate-180 {
  transform: rotate(180deg);
}

.travel-hero {
  background: linear-gradient(135deg, #1f2937 0%, #374151 50%, #4b5563 100%);
  position: relative;
  overflow: hidden;
}
.travel-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}
.travel-hero .hero-content {
  position: relative;
  z-index: 2;
}
.travel-hero h1 {
  background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.travel-hero p {
  color: #f3f4f6;
}
.travel-hero .travel-info {
  color: #e5e7eb;
}

.travel-section {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.travel-section:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}
.travel-section .section-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.travel-section .section-header .section-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 1rem;
  flex-shrink: 0;
}
.travel-section .section-header h2 {
  color: #1e293b;
  font-weight: 700;
  margin: 0;
}

.info-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.info-card:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  transform: translateY(-1px);
}
.info-card.highlight {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-left: 4px solid #374151;
}
.info-card.warning {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-left: 4px solid #f59e0b;
  color: #92400e;
}
.info-card.success {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  border-left: 4px solid #10b981;
  color: #065f46;
}

.hotel-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.hotel-card:hover {
  border-color: #6b7280;
  box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.hotel-card .hotel-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.hotel-card .hotel-header .hotel-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 1rem;
}
.hotel-card .hotel-header h3 {
  color: #1e293b;
  font-weight: 600;
  margin: 0;
}
.hotel-card .hotel-price {
  color: #374151;
  font-weight: 600;
  font-size: 1.125rem;
}
.hotel-card .hotel-rating {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
}
.hotel-card .hotel-rating .stars {
  color: #fbbf24;
  margin-right: 0.5rem;
}
.hotel-card .hotel-rating .rating-text {
  color: #6b7280;
  font-size: 0.875rem;
}

.transport-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.transport-card:hover {
  border-color: #6b7280;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.transport-card .transport-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.transport-card .transport-header .transport-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 1rem;
}
.transport-card .transport-header h3 {
  color: #1e293b;
  font-weight: 600;
  margin: 0;
}
.transport-card .transport-details {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.transport-card .transport-price {
  color: #374151;
  font-weight: 600;
}

.accessibility-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #10b981;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}
.accessibility-item:hover {
  background: #f0fdf4;
  border-left-color: #059669;
  transform: translateX(4px);
}
.accessibility-item .accessibility-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #10b981;
  margin-right: 0.75rem;
}
.accessibility-item h4 {
  color: #1e293b;
  font-weight: 600;
  margin: 0;
}
.accessibility-item p {
  color: #6b7280;
  font-size: 0.875rem;
  margin: 0.25rem 0 0 0;
}

.travel-action-btn {
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.travel-action-btn:hover {
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(31, 41, 55, 0.3);
  color: white;
}
.travel-action-btn .btn-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
}
.travel-action-btn.secondary {
  background: #ffffff;
  color: #374151;
  border: 2px solid #e2e8f0;
}
.travel-action-btn.secondary:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #1f2937;
}

.search-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #ffffff;
}
.search-input:focus {
  outline: none;
  border-color: #6b7280;
  box-shadow: 0 0 0 3px rgba(107, 114, 128, 0.1);
}
.search-input::placeholder {
  color: #9ca3af;
}

.filter-button {
  background: #ffffff;
  color: #374151;
  border: 2px solid #e2e8f0;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}
.filter-button:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #1f2937;
}
.filter-button.active {
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  color: white;
  border-color: #1f2937;
}

@media (max-width: 768px) {
  .travel-hero {
    padding: 2rem 0;
  }
  .travel-hero h1 {
    font-size: 2rem;
  }
  .travel-hero p {
    font-size: 1rem;
  }

  .travel-section {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .section-header {
    flex-direction: column;
    text-align: center;
  }
  .section-header .section-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .hotel-card,
.transport-card {
    padding: 1rem;
  }

  .travel-action-btn {
    width: 100%;
    justify-content: center;
  }
}
.conference-promotions-page {
  font-family: "Open Sans", sans-serif;
}

.faq-title {
  font-family: "Open Sans", sans-serif;
}

.faq-category-title {
  font-family: "Open Sans", sans-serif;
}

.faq-question-title {
  font-family: "Open Sans", sans-serif;
}

.faq-answer-text {
  font-family: "Open Sans", sans-serif;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}
.faq-item:last-child {
  border-bottom: none;
}

.faq-question:hover {
  background-color: #f9fafb;
}

.faq-answer {
  background-color: #fafafa;
  border-top: 1px solid #e5e7eb;
  display: none;
}
.faq-answer.faq-open {
  display: block;
}

.faq-icon.rotate-180 {
  transform: rotate(180deg);
}

.deals-section {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  padding: 2rem;
  margin-bottom: 2rem;
}

.section-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.section-header-content {
  flex: 1;
  margin-left: 1rem;
}

.section-icon {
  width: 3rem;
  height: 3rem;
  background: #1f2937;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: white;
}

.section-header h3 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 0.5rem 0;
  font-family: "Open Sans", sans-serif;
}

.section-header p {
  margin: 0;
  font-size: 1rem;
  color: #64748b;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
}

@keyframes pulse-button {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
  }
}
.empty-state-form input[type=email] {
  border: 3px solid #3b82f6 !important;
  background: linear-gradient(135deg, #dbeafe 0%, #f0f9ff 100%) !important;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2) !important;
  font-weight: 600 !important;
  color: #1e40af !important;
}
.empty-state-form input[type=email]:focus {
  border-color: #1d4ed8 !important;
  background: white !important;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.3), 0 4px 20px rgba(59, 130, 246, 0.3) !important;
  transform: translateY(-2px) !important;
}
.empty-state-form input[type=email]::placeholder {
  color: #64748b !important;
  font-weight: 500 !important;
}

.empty-state-enhanced {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 2rem 0;
  text-align: center;
}

.empty-state-icon {
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: center;
}

.empty-state-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  font-family: "Open Sans", sans-serif;
}

.empty-state-description {
  color: #64748b;
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 2rem auto;
  font-family: "Open Sans", sans-serif;
}

.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.info-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #1f2937;
}

.info-card-icon {
  width: 3rem;
  height: 3rem;
  background: #f8fafc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  color: #1f2937;
}

.info-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.75rem;
  font-family: "Open Sans", sans-serif;
}

.info-card-text {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.5;
  font-family: "Open Sans", sans-serif;
}

.deal-alerts-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.alerts-header {
  margin-bottom: 2rem;
}

.alerts-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Open Sans", sans-serif;
}

.alerts-description {
  color: #64748b;
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
}

.alerts-form {
  max-width: 400px;
  margin: 0 auto;
}

.alerts-form .form-group {
  margin-bottom: 1.5rem;
}

.alerts-form input[type=email] {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
  transition: all 0.2s ease;
}
.alerts-form input[type=email]:focus {
  outline: none;
  border-color: #1f2937;
  box-shadow: 0 0 0 3px rgba(31, 41, 55, 0.1);
}

.alerts-form .checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.alerts-form .checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-align: left;
}

.alerts-form .checkbox-item input[type=checkbox] {
  width: 1.125rem;
  height: 1.125rem;
  accent-color: #1f2937;
}

.alerts-form .checkbox-item label {
  font-size: 0.875rem;
  color: #374151;
  font-family: "Open Sans", sans-serif;
  cursor: pointer;
}

.alerts-button {
  width: 100%;
  background: #000000;
  color: white;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Open Sans", sans-serif;
  animation: pulse-button 2s infinite;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.alerts-button:hover {
  background: #1f2937;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  animation: none;
}
.alerts-button:active {
  transform: translateY(-1px) scale(0.95);
}
.alerts-button:disabled {
  background: #9ca3af;
  animation: none;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.deal-alerts-sidebar {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1.5rem;
  height: fit-content;
}

.sidebar-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.form-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
  font-family: "Open Sans", sans-serif;
}

.form-description {
  color: #64748b;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  font-family: "Open Sans", sans-serif;
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
  font-family: "Open Sans", sans-serif;
}

.form-input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.875rem;
  font-family: "Open Sans", sans-serif;
}
.form-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-input {
  width: 1rem;
  height: 1rem;
  accent-color: #3b82f6;
}

.checkbox-label {
  font-size: 0.875rem;
  color: #374151;
  font-family: "Open Sans", sans-serif;
}

.form-button {
  width: 100%;
  background: #000000;
  color: white;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: "Open Sans", sans-serif;
}
.form-button:hover {
  background: #1f2937;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.form-button:disabled {
  background: #9ca3af;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.form-message {
  padding: 0.75rem;
  border-radius: 6px;
  font-size: 0.875rem;
  margin-top: 1rem;
  font-family: "Open Sans", sans-serif;
}
.form-message.hidden {
  display: none;
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.deal-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.2s ease;
}
.deal-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #1f2937;
}

.deal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.deal-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
  font-family: "Open Sans", sans-serif;
}

.deal-discount {
  background: #10b981;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
}

.deal-description {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  font-family: "Open Sans", sans-serif;
}

.deal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.deal-code {
  font-family: "Courier New", monospace;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1f2937;
  background: #f3f4f6;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.deal-uses {
  font-size: 0.75rem;
  color: #6b7280;
  font-family: "Open Sans", sans-serif;
}

.additional-alerts-simplified {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .empty-state-enhanced {
    gap: 2rem;
    padding: 1rem 0;
  }

  .empty-state-main {
    padding: 1rem 0;
  }

  .empty-state-title {
    font-size: 1.5rem;
  }

  .empty-state-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .info-cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .info-card {
    padding: 1.25rem;
  }

  .deal-alerts-section {
    padding: 1.5rem;
  }

  .alerts-form .checkbox-group {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .deals-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .section-header {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }

  .section-header-content {
    margin-left: 0;
  }
}
.category-gradient {
  background: linear-gradient(135deg, var(--category-color), var(--category-color-cc));
}

.ranking-section {
  min-width: 120px;
}

/*# sourceMappingURL=index.css.map */

 
 / *   M o b i l e   o v e r r i d e   f o r   h o m e p a g e   c a t e g o r i e s   -   f o r c e   2   c o l u m n s   * / 
 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
 
     . p y - 2 0   . g r i d   { 
 
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 2 ,   1 f r )   ! i m p o r t a n t ; 
 
     } 
 
 } 
 
 