/* ==================== CSS VARIABLES / DESIGN TOKENS ==================== */
:root {
  /* Colors - Dark Theme */
  --background: hsl(220, 20%, 6%);
  --foreground: hsl(210, 20%, 95%);
  
  --card: hsl(220, 18%, 10%);
  --card-foreground: hsl(210, 20%, 95%);
  
  --primary: hsl(45, 82%, 53%);
  --primary-foreground: hsl(220, 20%, 6%);
  
  --secondary: hsl(220, 15%, 15%);
  --secondary-foreground: hsl(210, 20%, 95%);
  
  --muted: hsl(220, 15%, 18%);
  --muted-foreground: hsl(215, 15%, 55%);
  
  --accent: hsl(45, 82%, 53%);
  --accent-foreground: hsl(220, 20%, 6%);
  
  --border: hsl(220, 15%, 18%);
  
  /* Custom tokens */
  --glow: hsl(45, 82%, 53%);
  --gradient-start: hsl(45, 82%, 53%);
  --gradient-end: hsl(35, 90%, 45%);
  --surface-glass: hsl(220, 20%, 8%);
  
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Spacing */
  --radius: 0.75rem;
  --container-width: 1200px;
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ==================== UTILITIES ==================== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.text-gradient {
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-card {
  background: rgba(17, 20, 26, 0.5);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.glow-effect {
  box-shadow: 0 0 60px -15px rgba(212, 175, 55, 0.3);
}

/* ==================== BUTTONS ==================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.reservine-btn-wrapper {
  display: flex;
  justify-content: center;
}

.btn-icon {
  width: 1rem;
  height: 1rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background-color: rgba(212, 175, 55, 0.9);
  box-shadow: 0 0 30px -5px rgba(212, 175, 55, 0.5);
}

.btn-hero {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 0.875rem 2.5rem;
  font-size: 1.125rem;
  border-radius: 0.75rem;
  font-weight: 700;
  box-shadow: 0 0 40px -10px rgba(212, 175, 55, 0.4);
}

.btn-hero:hover {
  background-color: rgba(212, 175, 55, 0.9);
  box-shadow: 0 0 50px -10px rgba(212, 175, 55, 0.6);
  transform: scale(1.05);
}

.btn-hero-outline {
  border: 2px solid rgba(212, 175, 55, 0.5);
  background: transparent;
  color: var(--foreground);
  padding: 0.875rem 2.5rem;
  font-size: 1.125rem;
  border-radius: 0.75rem;
}

.btn-hero-outline:hover {
  background-color: rgba(212, 175, 55, 0.1);
  border-color: var(--primary);
}

.btn-full {
  width: 100%;
}

/* ==================== NAVBAR ==================== */
.navbar {
  max-width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(11, 13, 17, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-inner {
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.navbar-inner > * {
  min-width: 0;
}

@media (min-width: 768px) {
  .navbar-inner {
    height: 5rem;
  }
}

.logo {
  flex-shrink: 1;
}

.logo-img {
  width: 3rem;
  height: auto;
}

@media (min-width: 768px) {
  .logo-img {
   width: 4rem;
  }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--foreground);
}

.nav-cta {
  display: none;
}

@media (min-width: 768px) {
  .nav-cta {
    display: block;
  }
}

.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.hamburger {
  width: 1.5rem;
  height: 2px;
  background: var(--foreground);
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 1.5rem;
  height: 2px;
  background: var(--foreground);
  left: 0;
}

.hamburger::before {
  top: -6px;
}

.hamburger::after {
  top: 6px;
}

.mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

.mobile-menu a:hover {
  color: var(--foreground);
}

.mobile-menu .btn {
  margin-top: 0.5rem;
  width: 100%;
  color: black;
  font-weight: 500;
}

/* ==================== HERO SECTION ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
     rgba(11, 13, 17, 0.85),
    rgba(11, 13, 17, 0.7) 50%,
    rgba(11, 13, 17, 1)
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
}

.hero-label {
  color: var(--primary);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  animation: fadeUp 0.6s ease-out 0.1s forwards;
  opacity: 0;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease-out 0.2s forwards;
  opacity: 0;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  animation: fadeUp 0.6s ease-out 0.3s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  animation: fadeUp 0.6s ease-out 0.4s forwards;
  opacity: 0;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-mouse {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(212, 175, 55, 0.5);
  border-radius: 9999px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0.5rem;
}

.scroll-dot {
  width: 0.25rem;
  height: 0.5rem;
  background: var(--primary);
  border-radius: 9999px;
}

/* ==================== SECTIONS ==================== */
.section {
  min-height: fit-content;
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 8rem 0;
  }
}

.section-alt {
  background: rgba(255, 255, 255, 0.02);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  color: var(--primary);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
}

.section-title-left {
  text-align: left;
}

/* ==================== HOW IT WORKS ==================== */
.steps-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.step-card {
  position: relative;
  background: rgba(17, 20, 26, 0.5);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.step-card:hover {
  box-shadow: 0 0 30px -5px rgba(212, 175, 55, 0.5);
}

.step-card:hover .step-image img {
  transform: scale(1.1);
}

.step-image {
  position: relative;
  height: 12rem;
  overflow: hidden;
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.step-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--card), transparent);
}

.step-number {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 3.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: rgba(212, 175, 55, 0.3);
}

.step-content {
  padding: 1.5rem;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.step-icon {
  padding: 0.5rem;
  border-radius: 0.5rem;
  background: rgba(212, 175, 55, 0.1);
  color: var(--primary);
  height: 36px;
}

.step-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.step-content p {
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ==================== ABOUT SECTION ==================== */
.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-text {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.8;
  margin: 1rem 0 1.5rem;
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.stat-card {
  background: rgba(17, 20, 26, 0.5);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.stat-number {
  font-size: 1.875rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;   /* default mobile */
  gap: 1rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-card {
  background: rgba(17, 20, 26, 0.5);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 0 30px -5px rgba(212, 175, 55, 0.5);
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  color: var(--primary-foreground);
}

.feature-icon {
  height: 36px;
  padding: 0.5rem;
  border-radius: 0.5rem;
  background: rgba(212, 175, 55, 0.1);
  color: var(--primary);
  width: fit-content;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ==================== PRICING SECTION ==================== */
.pricing-wrapper {
  max-width: 32rem;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
}

.pricing-glow {
  position: absolute;
  width: 16rem;
  height: 16rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(212, 175, 55, 0.15);
  filter: blur(60px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.pricing-inner {
  z-index: 1;
  position: relative;
  background: rgb(17, 20, 26);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 0 60px -15px rgba(212, 175, 55, 0.3);
  animation: glowPulse 3s ease-in-out infinite;
}

@media (min-width: 768px) {
  .pricing-inner {
    padding: 2.5rem;
  }
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-label {
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.pricing-amount {
  font-size: clamp(3.5rem, 8vw, 4.5rem);
  font-family: var(--font-display);
  font-weight: 700;
}

.pricing-description {
  color: var(--muted-foreground);
  margin-top: 0.5rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.check-icon {
  display: flex;
  padding: 0.25rem;
  border-radius: 9999px;
  background: rgba(212, 175, 55, 0.2);
  color: var(--primary);
}

/* ==================== GALLERY SECTION ==================== */

.gallery{
  min-height: fit-content;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  max-width: 64rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .gallery-grid {
    max-height: 790px;
    grid-template-columns: 3fr 2fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 1rem;
  }
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  padding: 0;
  background: none;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  transition: background 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
  background: rgba(11, 13, 17, 0.3);
}

@media (min-width: 768px) {
  .gallery-item-large {
    grid-row: 1 / 4;
    aspect-ratio: auto;
  }
}
.gallery-item-right {
  aspect-ratio: auto;
}
.gallery-more-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 13, 17, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.gallery-item:hover .gallery-more-overlay {
  background: rgba(11, 13, 17, 0.5);
}
.gallery-more-count {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--foreground);
}
.gallery-hint {
  text-align: center;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-top: 1rem;
}
/* Gallery Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(11, 13, 17, 0.95);
  backdrop-filter: blur(8px);
}
.gallery-lightbox.active {
  display: flex;
}
.gallery-lightbox-close {
  position: absolute;
  height: 2.5rem;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.5rem;
  border-radius: 9999px;
  background: var(--secondary);
  color: var(--foreground);
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}
.gallery-lightbox-close:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}
.gallery-lightbox-prev,
.gallery-lightbox-next {
  position: absolute;
  height: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.5rem;
  border-radius: 9999px;
  background: var(--secondary);
  color: var(--foreground);
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}
.gallery-lightbox-prev { left: 1rem; }
.gallery-lightbox-next { right: 1rem; }
@media (min-width: 768px) {
  .gallery-lightbox-prev { left: 2rem; }
  .gallery-lightbox-next { right: 2rem; }
}
.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}
.gallery-lightbox-img {
  max-height: 85vh;
  max-width: 90vw;
  object-fit: contain;
  border-radius: var(--radius);
}
.gallery-lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

#galleryLightboxImg {
  transition: opacity 0.50s ease;
}

#galleryLightboxImg.fade-out {
  opacity: 0;
}

/* ==================== FAQ SECTION ==================== */
.faq-wrapper {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(17, 20, 26, 0.5);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  text-align: left;
  color: var(--foreground);
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-chevron {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ==================== CONTACT SECTION ==================== */
.contact-grid {
  display: grid;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  height: 44px;
  padding: 0.75rem;
  border-radius: 0.5rem;
  background: rgba(212, 175, 55, 0.1);
  color: var(--primary);
}

.contact-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-item p {
  color: var(--muted-foreground);
}

.contact-item a {
  color: var(--primary);
  transition: text-decoration 0.2s ease;
}

.contact-item a:hover {
  text-decoration: underline;
}

.text-sm {
  font-size: 0.875rem;
}

.reservation-wrapper {
  display: flex;
  align-items: center;
}

.reservation-card {
  width: 100%;
  background: rgba(17, 20, 26, 0.5);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 0 60px -15px rgba(212, 175, 55, 0.3);
}

@media (min-width: 768px) {
  .reservation-card {
    padding: 2.5rem;
  }
}

.reservation-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.reservation-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .reservation-card h3 {
    font-size: 1.875rem;
  }
}

.reservation-card > p {
  color: var(--muted-foreground);
  max-width: 24rem;
  margin: 0 auto 2rem;
}

.reservation-note {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem !important;
}

/* ==================== FOOTER ==================== */
.footer {
  padding: 3rem 0;
  background: var(--card);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: center;
  }
}

.social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-links a {
  display: flex;
  padding: 0.5rem;
  border-radius: 0.5rem;
  background: var(--secondary);
  color: var(--muted-foreground);
  transition: all 0.2s ease;
}

.social-links a:hover {
  color: var(--primary);
  background: rgba(212, 175, 55, 0.1);
}

.copyright {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 40px -10px rgba(212, 175, 55, 0.4);
  }
  50% {
    box-shadow: 0 0 60px -10px rgba(212, 175, 55, 0.6);
  }
}
