/* ZAAV Golden Landing – 1:1 from Base44 / src/components/golden */

:root {
  --navy: #060f27;
  --gold: #e4be77;
  --gold-dark: #d8ad60;
  --gold-muted: #947434;
  --cream: #FDFBF7;
  --wa: #25D366;
}

.zaav-golden-page .site-header,
.zaav-golden-page header.site-header,
.zaav-golden-page .site-footer,
.zaav-golden-page footer.site-footer,
.zaav-golden-page .page-header {
  display: none !important;
}

.zaav-landing {
  direction: rtl;
  font-family: 'Heebo', sans-serif;
  background: #000;
  color: var(--cream);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.zaav-landing *,
.zaav-landing *::before,
.zaav-landing *::after {
  box-sizing: border-box;
}

.zaav-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;
}
.zaav-sr-only:focus {
  position: fixed;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 100;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  padding: 0.5rem 1rem;
  background: var(--gold);
  color: var(--navy);
  border-radius: 0.5rem;
  font-weight: 700;
}

.golden-glow {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.golden-glow:hover {
  box-shadow: 0 0 30px rgba(228, 190, 119, 0.55);
  transform: translateY(-2px);
}

@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50% { opacity: 1; transform: scale(1); }
}
.animate-twinkle {
  animation: twinkle 3s ease-in-out infinite;
}

html.high-contrast {
  filter: contrast(1.3) grayscale(0.15);
}
html.high-contrast body {
  background: #000 !important;
  color: #fff !important;
}

/* Sparkles */
.zaav-sparkles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.zaav-sparkle {
  position: absolute;
  color: var(--gold);
  fill: currentColor;
}

/* Contact bar */
.zaav-contact-bar {
  position: absolute;
  top: 0;
  inset-inline: 0;
  z-index: 20;
  width: 100%;
  background: linear-gradient(to bottom, var(--navy), rgba(6, 15, 39, 0.6), transparent);
  color: #fff;
  padding: 1rem 1rem 2.5rem;
  text-align: center;
}
.zaav-contact-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
}
.zaav-contact-phones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
  justify-items: center;
}
.zaav-contact-mails {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}
.zaav-contact-bar a {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  white-space: nowrap;
  transition: color 0.2s;
  font-size: 0.875rem;
}
.zaav-contact-bar a:hover {
  color: var(--gold);
}
.zaav-fb-btn {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--gold);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000 !important;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  flex-shrink: 0;
}
.zaav-fb-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Hero */
.zaav-hero {
  position: relative;
  width: 100%;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}
.zaav-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.zaav-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6,15,39,0.4), rgba(6,15,39,0.25), rgba(6,15,39,0.6));
}
.zaav-hero-content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
  padding: 10rem 1.5rem 5rem;
  text-align: center;
}
.zaav-hero-logo {
  width: 14rem;
  max-width: 80%;
  margin: 0 auto 1.5rem;
  display: block;
}
.zaav-hero h1 {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--cream);
  line-height: 1.25;
  margin: 50px 0 1rem;
  text-shadow: 0 0 30px rgba(197,160,89,0.5);
}
.zaav-hero h1 .sub {
  display: block;
  font-size: 1.5rem;
  margin-top: 0.75rem;
  color: var(--gold);
  font-weight: 700;
}
.zaav-hero-tagline {
  font-size: 1.25rem;
  color: rgba(253,251,247,0.9);
  font-weight: 500;
  margin-bottom: 2.5rem;
}
.zaav-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 700;
  padding: 1.25rem 2.5rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 15px rgba(0,0,0,0.2);
  transition: background 0.2s, box-shadow 0.3s, transform 0.3s;
}
.zaav-btn-gold:hover {
  background: var(--gold-dark);
  color: var(--navy);
}

.zaav-gold-line {
  height: 0.375rem;
  background: var(--gold);
}

/* About club */
.zaav-about-club {
  background: var(--cream);
}
.zaav-about-club-grid {
  display: grid;
}
.zaav-about-club-text {
  order: 1;
  padding: 5rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.zaav-about-club-text h2 {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--navy);
  margin: 0 0 1.5rem;
  text-align: center;
}
.zaav-about-club-text h2 span {
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  margin-top: 0.25rem;
}
.zaav-about-club-text > p {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(6,15,39,0.9);
  margin: 0 0 2rem;
}
.zaav-value-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.zaav-value-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--navy);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(228,190,119,0.2);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.zaav-value-icon {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}
.zaav-value-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}
.zaav-value-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  margin: 0 0 0.25rem;
}
.zaav-value-card p {
  font-size: 1.25rem;
  color: rgba(253,251,247,0.8);
  line-height: 1.6;
  margin: 0;
}
.zaav-about-club-image {
  order: 2;
  height: 18rem;
}
.zaav-about-club-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* About festival */
.zaav-about-festival {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  padding: 5rem 1.5rem;
  text-align: center;
}
.zaav-about-festival-inner {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
}
.zaav-star-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background: rgba(228,190,119,0.2);
  margin-bottom: 1.5rem;
  color: var(--gold);
}
.zaav-star-badge svg {
  width: 2.25rem;
  height: 2.25rem;
}
.zaav-about-festival h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--cream);
  margin: 0 0 1.5rem;
  line-height: 1.3;
}
.zaav-about-festival h2 .gold {
  color: var(--gold);
}
.zaav-about-festival .lead {
  font-size: 22px;
  line-height: 1.7;
  color: var(--gold);
  margin: 0 0 1.5rem;
}
.zaav-about-festival p {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(253,251,247,0.9);
  margin: 0 0 1.5rem;
}
.zaav-about-festival .highlight {
  color: var(--gold);
  font-weight: 700;
}
.zaav-about-festival .zaav-btn-gold {
  margin-top: 1rem;
}

/* Stats */
.zaav-stats {
  background: var(--cream);
  padding: 4rem 1.5rem;
}
.zaav-stats-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.zaav-stat {
  text-align: center;
  padding: 1.5rem;
}
.zaav-stat-num {
  font-size: 3.75rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1;
}
.zaav-stat-label {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold-muted);
}

/* History slider */
.zaav-history {
  background: var(--navy);
  padding: 5rem 1.5rem;
}
.zaav-history-inner {
  max-width: 72rem;
  margin: 0 auto;
}
.zaav-history h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  margin: 0 0 1rem;
}
.zaav-history > .zaav-history-inner > p,
.zaav-history-sub {
  font-size: 1.125rem;
  color: rgba(253,251,247,0.8);
  text-align: center;
  margin: 0 0 3rem;
}
.zaav-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.zaav-slider-btn {
  display: none;
  flex-shrink: 0;
  z-index: 10;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: var(--gold);
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  box-shadow: 0 10px 15px rgba(0,0,0,0.2);
}
.zaav-slider-btn:hover {
  background: var(--gold-dark);
}
.zaav-slider-btn svg {
  width: 1.75rem;
  height: 1.75rem;
}
.zaav-slider-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
}
.zaav-slider-track::-webkit-scrollbar {
  display: none;
}
.zaav-slide {
  position: relative;
  flex-shrink: 0;
  width: 80%;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 1;
  scroll-snap-align: center;
  border: none;
  padding: 0;
  cursor: pointer;
  background: transparent;
}
.zaav-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.2s;
  display: block;
}
.zaav-slide:hover img {
  opacity: 1;
}
.zaav-slide-play {
  position: absolute;
  inset: 0;
  background: rgba(6,15,39,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.zaav-slide-play svg {
  width: 4rem;
  height: 4rem;
}
.zaav-slide-caption {
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  background: linear-gradient(to top, var(--navy), transparent);
  padding: 1rem;
  text-align: right;
  color: var(--cream);
  font-size: 1.125rem;
  font-weight: 700;
}

/* Lightbox */
.zaav-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.zaav-lightbox.is-open {
  display: flex;
}
.zaav-lightbox-close,
.zaav-lightbox-nav {
  position: absolute;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.zaav-lightbox-close:hover,
.zaav-lightbox-nav:hover {
  background: rgba(255,255,255,0.2);
}
.zaav-lightbox-close {
  top: 1.5rem;
  left: 1.5rem;
}
.zaav-lightbox-prev {
  right: 1rem;
}
.zaav-lightbox-next {
  left: 1rem;
}
.zaav-lightbox-body {
  position: relative;
  max-width: 56rem;
  width: 100%;
  max-height: 80vh;
}
.zaav-lightbox-body img,
.zaav-lightbox-video {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 1rem;
  display: block;
  background: #000;
}
.zaav-lightbox-video {
  margin: 0 auto;
}
.zaav-lightbox-title {
  text-align: center;
  color: var(--cream);
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 1rem;
}

/* Benefits */
.zaav-benefits {
  background: var(--navy);
  padding: 5rem 1.5rem;
}
.zaav-benefits-inner {
  max-width: 72rem;
  margin: 0 auto;
}
.zaav-benefits h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--cream);
  text-align: center;
  margin: 0 0 3rem;
}
.zaav-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.zaav-benefit-card {
  background: rgba(253,251,247,0.05);
  border: 1px solid rgba(228,190,119,0.3);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}
.zaav-benefit-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.25rem;
  border-radius: 9999px;
  background: rgba(228,190,119,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.zaav-benefit-icon svg {
  width: 2rem;
  height: 2rem;
}
.zaav-benefit-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  margin: 0 0 0.5rem;
}
.zaav-benefit-card p {
  font-size: 1.25rem;
  color: rgba(253,251,247,0.8);
  line-height: 1.6;
  margin: 0;
}

/* Experience / testimonials */
.zaav-experience {
  background: var(--navy);
  padding: 5rem 1.5rem;
  border-top: 1px solid rgba(228,190,119,0.2);
}
.zaav-experience-inner {
  max-width: 72rem;
  margin: 0 auto;
}
.zaav-experience h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--cream);
  text-align: center;
  margin: 0 0 0.5rem;
}
.zaav-experience-sub {
  font-size: 1.125rem;
  color: var(--gold);
  text-align: center;
  margin: 0 0 3rem;
}
.zaav-videos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
.zaav-video-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid rgba(228,190,119,0.3);
  padding: 0;
  cursor: pointer;
  background: transparent;
  width: 100%;
  display: block;
  font: inherit;
  color: inherit;
}
.zaav-video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.zaav-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6,15,39,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.zaav-video-overlay svg {
  width: 4rem;
  height: 4rem;
}
.zaav-video-name {
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  background: linear-gradient(to top, var(--navy), transparent);
  padding: 1rem;
  text-align: right;
  color: var(--cream);
  font-size: 1.125rem;
  font-weight: 700;
}
.zaav-quotes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.zaav-quote {
  background: rgba(253,251,247,0.05);
  border: 1px solid rgba(228,190,119,0.3);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: right;
}
.zaav-quote p {
  font-size: 1.25rem;
  color: rgba(253,251,247,0.9);
  line-height: 1.6;
  margin: 0 0 0.75rem;
}
.zaav-quote cite {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gold);
  font-style: normal;
}

/* FAQ */
.zaav-faq {
  background: var(--cream);
  padding: 5rem 1.5rem;
}
.zaav-faq-inner {
  max-width: 48rem;
  margin: 0 auto;
}
.zaav-faq h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin: 0 0 3rem;
}
.zaav-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.zaav-acc-item {
  background: #fff;
  border-radius: 1rem;
  border: 2px solid rgba(228,190,119,0.3);
  padding: 0 1.5rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.zaav-acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  text-align: right;
  font-family: inherit;
}
.zaav-acc-trigger svg {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.2s;
}
.zaav-acc-item.is-open .zaav-acc-trigger svg {
  transform: rotate(180deg);
}
.zaav-acc-content {
  display: none;
  font-size: 1.25rem;
  color: rgba(6,15,39,0.8);
  line-height: 1.6;
  padding-bottom: 1.5rem;
}
.zaav-acc-item.is-open .zaav-acc-content {
  display: block;
}

/* Lead form */
.zaav-lead {
  position: relative;
  background: var(--navy);
  padding: 0 1.5rem;
  overflow-x: hidden;
}
.zaav-lead-inner {
  position: relative;
  max-width: 64rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: stretch;
}
.zaav-lead-image {
  order: 2;
  margin-inline: -1.5rem;
}
.zaav-lead-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.zaav-lead-form-wrap {
  order: 1;
  padding: 5rem 0;
}
.zaav-lead-form-wrap h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 1rem;
  text-align: center;
}
.zaav-lead-form-wrap > p {
  font-size: 1.25rem;
  color: rgba(253,251,247,0.8);
  margin: 0 0 2rem;
  text-align: center;
}
.zaav-form {
  background: var(--cream);
  border-radius: 1rem;
  padding: 2rem;
}
.zaav-form-group {
  margin-bottom: 1.5rem;
}
.zaav-form-group label {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.zaav-form-group input,
.zaav-form-group textarea,
.zaav-form-group select {
  width: 100%;
  height: 4rem;
  font-size: 1.25rem;
  font-family: inherit;
  border: 2px solid rgba(6,15,39,0.2);
  border-radius: 0.375rem;
  padding: 0 0.75rem;
  background: #fff;
  color: var(--navy);
}
.zaav-form-group textarea {
  height: auto;
  min-height: 100px;
  padding: 0.75rem;
  resize: vertical;
}
.zaav-form-group input:focus,
.zaav-form-group textarea:focus,
.zaav-form-group select:focus {
  outline: none;
  border-width: 4px;
  border-color: rgba(6,15,39,0.2);
}
.zaav-form .zaav-btn-gold {
  width: 100%;
  justify-content: center;
}
.zaav-form-success {
  background: var(--cream);
  border-radius: 1rem;
  padding: 2.5rem;
  text-align: center;
}
.zaav-form-success h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin: 1rem 0 0.5rem;
}
.zaav-form-success p {
  font-size: 1.125rem;
  color: rgba(6,15,39,0.7);
  margin: 0;
}
.zaav-form-success svg {
  width: 3.5rem;
  height: 3.5rem;
  color: var(--gold-muted);
}

/* Footer */
.zaav-footer {
  background: var(--navy);
  border-top: 1px solid rgba(228,190,119,0.3);
  padding: 3rem 1.5rem;
}
.zaav-footer-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.5rem;
  text-align: center;
}
.zaav-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.zaav-footer-brand img {
  width: 10rem;
  margin-bottom: 1rem;
}
.zaav-footer-brand .name {
  color: var(--cream);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.zaav-footer-brand .addr,
.zaav-footer a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(253,251,247,0.8);
  font-size: 1.25rem;
  text-decoration: none;
  transition: color 0.2s;
}
.zaav-footer a:hover {
  color: var(--gold);
}
.zaav-footer svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
}
.zaav-footer-links,
.zaav-footer-mails {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding-top: 2rem;
}
.zaav-footer-fb {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: rgba(228,190,119,0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
}
.zaav-footer-fb svg {
  width: 1.75rem;
  height: 1.75rem;
}
.zaav-copyright {
  text-align: center;
  color: rgba(253,251,247,0.5);
  font-size: 1rem;
  margin-top: 2rem;
}

/* WhatsApp + Accessibility */
.zaav-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--wa);
  color: #fff !important;
  font-weight: 700;
  padding: 1rem 1.25rem;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
  transition: background 0.2s;
}
.zaav-whatsapp:hover {
  background: #20bd5a;
  color: #fff !important;
}
.zaav-whatsapp svg {
  width: 1.75rem;
  height: 1.75rem;
}
.zaav-whatsapp span {
  display: none;
  font-size: 1.125rem;
}

.zaav-a11y {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
}
.zaav-a11y-panel {
  display: none;
  margin-bottom: 0.75rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
  border: 1px solid rgba(228,190,119,0.3);
  padding: 1rem;
  width: 16rem;
}
.zaav-a11y-panel.is-open {
  display: block;
}
.zaav-a11y-panel h2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.75rem;
}
.zaav-a11y-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  color: var(--navy);
  font-size: 1rem;
}
.zaav-a11y-row .btns {
  display: flex;
  gap: 0.5rem;
}
.zaav-a11y-row button {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background: var(--navy);
  color: var(--gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zaav-a11y-action {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--navy);
  color: var(--gold);
  border-radius: 0.5rem;
  padding: 0.5rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.zaav-a11y-reset {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  border-radius: 0.5rem;
  padding: 0.5rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}
.zaav-a11y-toggle {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background: var(--navy);
  color: var(--gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}
.zaav-a11y-toggle svg {
  width: 2rem;
  height: 2rem;
}

/* Modal */
.zaav-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  align-items: center;
  justify-content: center;
  background: rgba(6,15,39,0.8);
  backdrop-filter: blur(4px);
  padding: 1rem;
}
.zaav-modal.is-open {
  display: flex;
}
.zaav-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 42rem;
  max-height: 90vh;
  background: var(--cream);
  border-radius: 1rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.4);
  border: 2px solid var(--gold);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.zaav-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--navy);
  padding: 1rem 1.5rem;
  flex-shrink: 0;
}
.zaav-modal-header h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
  margin: 0;
}
.zaav-modal-close {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: rgba(228,190,119,0.2);
  color: var(--gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zaav-modal-body {
  overflow-y: auto;
  padding: 1rem;
}
.zaav-reg-form {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
}
.zaav-reg-form h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.75rem;
}
.zaav-room-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.zaav-room-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border: 2px solid rgba(6,15,39,0.15);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.zaav-room-option.is-selected {
  border-color: var(--gold);
  background: rgba(228,190,119,0.1);
}
.zaav-room-option label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 1rem;
  color: var(--navy);
  font-weight: 500;
}
.zaav-room-option input {
  accent-color: var(--gold);
  width: 1.25rem;
  height: 1.25rem;
}
.zaav-room-price {
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.zaav-reg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.zaav-reg-total {
  text-align: left;
  background: rgba(6,15,39,0.05);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
}
.zaav-radio-row {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.375rem;
}
.zaav-radio-row label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  color: var(--navy);
  font-weight: 400;
}
.zaav-terms {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.zaav-terms input {
  accent-color: var(--gold);
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.25rem;
}
.zaav-terms a {
  color: var(--gold-muted);
  font-weight: 700;
}

/* Responsive */
@media (min-width: 640px) {
  .zaav-slider-btn { display: flex; }
  .zaav-slide { width: 55%; }
  .zaav-benefits-grid { grid-template-columns: 1fr 1fr; }
  .zaav-videos { grid-template-columns: repeat(3, 1fr); }
  .zaav-quotes { grid-template-columns: 1fr 1fr; }
  .zaav-whatsapp span { display: inline; }
}

@media (min-width: 768px) {
  .zaav-contact-inner {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0.5rem;
  }
  .zaav-contact-phones { display: contents; }
  .zaav-contact-mails { display: contents; }
  .zaav-contact-bar a { font-size: 10px; }
  .zaav-fb-btn { width: 2.75rem; height: 2.75rem; }
  .zaav-hero-content { padding: 5rem 1.5rem; }
  .zaav-hero-logo { width: 20rem; }
  .zaav-hero h1 { font-size: 3.75rem; margin-bottom: 0.75rem; }
  .zaav-hero h1 .sub { font-size: 2.25rem; margin-top: 0.25rem; }
  .zaav-hero-tagline { font-size: 1.875rem; margin-bottom: 1.5rem; }
  .zaav-btn-gold { font-size: 1.5rem; }

  .zaav-about-club-grid { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .zaav-about-club-text { order: 2; padding: 5rem 2rem; }
  .zaav-about-club-text h2 { text-align: right; font-size: 3rem; }
  .zaav-about-club-text h2 span { font-size: 1.25rem; }
  .zaav-about-club-image { order: 1; height: auto; min-height: 100%; }

  .zaav-about-festival h2 { font-size: 3rem; }
  .zaav-stats-grid { grid-template-columns: repeat(3, 1fr); }
  .zaav-stat-num { font-size: 4.5rem; }
  .zaav-history h2,
  .zaav-benefits h2,
  .zaav-experience h2,
  .zaav-faq h2 { font-size: 3rem; }
  .zaav-slide { width: 42%; }
  .zaav-benefits-grid { grid-template-columns: repeat(4, 1fr); }
  .zaav-quotes { grid-template-columns: repeat(3, 1fr); }

  .zaav-lead-inner { grid-template-columns: 1fr 1fr; }
  .zaav-lead-image {
    order: 1;
    margin: 0;
    height: 100%;
  }
  .zaav-lead-image img {
    height: 100%;
    border-radius: 1.5rem;
  }
  .zaav-lead-form-wrap { order: 2; }
  .zaav-lead-form-wrap h2,
  .zaav-lead-form-wrap > p { text-align: right; }
  .zaav-lead-form-wrap h2 { font-size: 3rem; }

  .zaav-footer-inner {
    flex-direction: row;
    text-align: right;
  }
  .zaav-footer-brand,
  .zaav-footer-links,
  .zaav-footer-mails {
    align-items: flex-start;
    width: auto;
    padding-top: 2.5rem;
  }
  .zaav-footer-brand { padding-top: 0; }
  .zaav-footer-brand .addr,
  .zaav-footer a { justify-content: flex-start; }
  .zaav-modal-body { padding: 1.5rem; }
  .zaav-modal-header h2 { font-size: 1.5rem; }
}

@media (min-width: 1024px) {
  .zaav-contact-bar a { font-size: 1.125rem; }
  .zaav-contact-inner { gap: 1.5rem; }
  .zaav-about-club-text { padding: 5rem 4rem; }
  .zaav-hero h1 { font-size: 4.5rem; }
  .zaav-lightbox-prev { right: 2rem; }
  .zaav-lightbox-next { left: 2rem; }
  .zaav-lightbox-nav {
    width: 3.5rem;
    height: 3.5rem;
  }
}

/* Elementor resets for canvas */
.elementor-widget-shortcode .zaav-landing {
  margin: 0;
}
.elementor-section.elementor-section-boxed > .elementor-container {
  max-width: none;
}
.zaav-golden-page .elementor-widget:not(:last-child) {
  margin-bottom: 0 !important;
}
.zaav-golden-page .elementor-element {
  --widgets-spacing: 0px 0px;
}
