/* Golden Club — מועדון הזהב (Base44 → Elementor) */
:root {
  --gc-navy: #060f27;
  --gc-gold: #e4be77;
  --gc-gold-dark: #947434;
  --gc-cream: #fdfbf7;
  --gc-white: #fdfbf7;
}

.elementor-page .gc-page,
.gc-page {
  font-family: 'Heebo', sans-serif;
  background: #000;
  color: var(--gc-cream);
  overflow-x: hidden;
}

.gc-skip-link {
  position: absolute;
  right: -9999px;
  z-index: 200;
}
.gc-skip-link:focus {
  right: 1rem;
  top: 1rem;
  background: var(--gc-gold);
  color: var(--gc-navy);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 700;
}

.gc-gold-bar { height: 6px; background: var(--gc-gold); }

.gc-heading {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--gc-navy);
  margin: 0 0 1.5rem;
  line-height: 1.2;
}
.gc-heading--light { color: var(--gc-cream); }
.gc-heading--gold { color: var(--gc-gold); }
.gc-heading--center { text-align: center; }
.gc-heading__sub { display: block; font-size: 0.55em; font-weight: 500; margin-top: 0.25rem; }
.gc-gold-text { color: var(--gc-gold); }

.gc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.gc-btn--gold {
  background: var(--gc-gold);
  color: var(--gc-navy);
  padding: 1rem 2.5rem;
  font-size: 1.25rem;
}
.gc-btn--gold:hover {
  background: #d8ad60;
  box-shadow: 0 0 30px rgba(228, 190, 119, 0.55);
  transform: translateY(-2px);
}
.gc-btn--lg { font-size: clamp(1.1rem, 2.5vw, 1.5rem); padding: 1.1rem 2.5rem; }
.gc-btn--block { width: 100%; }

.gc-heading--club { text-align: center; }
@media (min-width: 768px) {
  .gc-heading--club { text-align: right; }
}

.golden-glow {
  box-shadow: 0 0 24px rgba(228, 190, 119, 0.35);
}
.golden-glow:hover {
  box-shadow: 0 0 32px rgba(228, 190, 119, 0.55);
}

.gc-hero-wrap {
  position: relative;
  background: var(--gc-navy);
}

.gc-contact-bar {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
  padding: 1rem 1rem 2.5rem;
  background: linear-gradient(to bottom, var(--gc-navy), rgba(6, 15, 39, 0.6), transparent);
  text-align: center;
  color: #fff;
}
.gc-contact-bar__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .gc-contact-bar__inner {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0.5rem 1.5rem;
  }
}
.gc-contact-bar a {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  transition: color 0.2s;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .gc-contact-bar a { font-size: 10px; }
}
.gc-contact-bar a:hover { color: var(--gc-gold); }
.gc-contact-bar a svg { flex-shrink: 0; }
.gc-contact-bar__phones {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 0.5rem 1rem;
  justify-items: center;
}
@media (min-width: 768px) {
  .gc-contact-bar__phones {
    display: contents;
  }
}
.gc-contact-bar__emails {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .gc-contact-bar__emails {
    display: contents;
  }
}
.gc-contact-bar__fb {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--gc-gold);
  color: #000 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .gc-contact-bar__fb { width: 2.75rem; height: 2.75rem; }
}
.gc-contact-bar__fb svg { color: #000; }

.gc-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.gc-sparkles__dot {
  position: absolute;
  color: var(--gc-gold);
  opacity: 0.85;
}
.gc-sparkles__dot--xs svg { width: 12px; height: 12px; }
.gc-sparkles__dot--sm svg { width: 16px; height: 16px; }
.gc-sparkles__dot--md svg { width: 22px; height: 22px; }
@keyframes gc-twinkle {
  0%, 100% { opacity: 0.25; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.1); }
}
.animate-twinkle {
  animation: gc-twinkle 3s ease-in-out infinite;
}

.gc-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gc-navy);
  overflow: hidden;
}
.gc-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.gc-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));
}
.gc-hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 8rem 1.5rem 5rem;
  max-width: 56rem;
}
.gc-hero__logo { width: min(320px, 70vw); margin: 0 auto 1.5rem; display: block; }
.gc-hero__title {
  font-size: clamp(1.75rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--gc-cream);
  text-shadow: 0 0 30px rgba(197, 160, 89, 0.5);
  margin: 2rem 0 1rem;
}
.gc-hero__subtitle {
  display: block;
  font-size: 0.55em;
  color: var(--gc-gold);
  font-weight: 700;
  margin-top: 0.5rem;
}
.gc-hero__tagline { font-size: clamp(1.1rem, 2.5vw, 1.75rem); margin-bottom: 2.5rem; opacity: 0.9; }

.gc-about-club { background: var(--gc-cream); color: var(--gc-navy); }
.gc-about-club__grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .gc-about-club__grid { grid-template-columns: 1fr 1fr; }
  .gc-about-club__content { order: 2; padding: 5rem 2rem 5rem 4rem; }
  .gc-about-club__media { order: 1; min-height: 100%; }
}
.gc-about-club__content { padding: 3rem 1.5rem; }
.gc-about-club__media img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; display: block; }
.gc-intro-text { font-size: 1.25rem; line-height: 1.75; margin-bottom: 2rem; color: rgba(6, 15, 39, 0.9); }
.gc-value-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--gc-navy);
  border: 1px solid rgba(228, 190, 119, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}
.gc-value-card__icon {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--gc-gold);
  color: var(--gc-navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gc-value-card__icon svg { width: 1.75rem; height: 1.75rem; }
.gc-value-card h3 { color: var(--gc-cream); font-size: 1.35rem; margin: 0 0 0.35rem; }
.gc-value-card p { color: rgba(253, 251, 247, 0.85); margin: 0; font-size: 1.1rem; }

.gc-about-festival {
  background: var(--gc-navy);
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.gc-about-festival--sparkles .gc-sparkles { z-index: 0; }
.gc-about-festival__inner { max-width: 72rem; margin: 0 auto; position: relative; z-index: 2; }
.gc-about-festival__inner > p,
.gc-about-festival__inner > h2,
.gc-about-festival__inner > .gc-about-festival__star {
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}
.gc-about-festival__star {
  color: var(--gc-gold);
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}
.gc-about-festival p { font-size: 1.1rem; line-height: 1.75; color: rgba(253, 251, 247, 0.9); margin-bottom: 1.25rem; }
.gc-festival-lead { color: var(--gc-gold) !important; font-size: 1.35rem !important; }

/* Flyer left + video right (visual LTR placement inside RTL page) */
.gc-about-festival__promo {
  direction: ltr;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: stretch;
  margin: 2.5rem auto 2rem;
  max-width: 64rem;
}
@media (min-width: 768px) {
  .gc-about-festival__promo {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}
.gc-about-festival__flyer {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  background: #000;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
.gc-about-festival__flyer img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}
.gc-about-festival__video-wrap {
  border-radius: 1rem;
  overflow: hidden;
  background: #000;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  min-height: 100%;
}
.gc-about-festival__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  background: #000;
}

.gc-stats { background: var(--gc-cream); padding: 4rem 1.5rem; }
.gc-stats__grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .gc-stats__grid { grid-template-columns: repeat(3, 1fr); } }
.gc-stat { text-align: center; }
.gc-stat__num { font-size: clamp(3rem, 8vw, 4.5rem); font-weight: 900; color: var(--gc-navy); }
.gc-stat__label { font-size: 1.35rem; color: var(--gc-gold-dark); }

.gc-history { background: var(--gc-navy); padding: 5rem 1.5rem; }
.gc-history__sub { text-align: center; color: rgba(253, 251, 247, 0.8); margin: -0.5rem 0 2.5rem; }
.gc-history__controls { display: flex; align-items: center; gap: 0.75rem; max-width: 72rem; margin: 0 auto; }
.gc-history__track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  flex: 1;
  padding: 0.5rem 0;
}
.gc-history__track::-webkit-scrollbar { display: none; }
.gc-history__item {
  flex: 0 0 80%;
  scroll-snap-align: center;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 1;
  border: none;
  padding: 0;
  background: transparent;
  cursor: default;
  text-align: inherit;
  font: inherit;
  color: inherit;
}
.gc-history__item--video {
  cursor: pointer;
}
.gc-history__item--video:focus-visible {
  outline: 3px solid var(--gc-gold);
  outline-offset: 3px;
}
@media (min-width: 640px) { .gc-history__item { flex-basis: 55%; } }
@media (min-width: 900px) { .gc-history__item { flex-basis: 42%; } }
.gc-history__item img,
.gc-history__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  display: block;
  pointer-events: none;
}
.gc-history__item figcaption,
.gc-history__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, var(--gc-navy));
  font-weight: 700;
  display: block;
}
.gc-history__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--gc-gold);
  background: rgba(6, 15, 39, 0.3);
}
.gc-history__nav {
  display: none;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: none;
  background: var(--gc-gold);
  color: var(--gc-navy);
  font-size: 1.75rem;
  cursor: pointer;
}
@media (min-width: 640px) { .gc-history__nav { display: flex; align-items: center; justify-content: center; } }

.gc-history-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.gc-history-modal[hidden] { display: none !important; }
.gc-history-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
}
.gc-history-modal__dialog {
  position: relative;
  z-index: 2;
  width: min(56rem, 100%);
  max-height: 90vh;
}
.gc-history-modal__close {
  position: absolute;
  top: -2.75rem;
  left: 0;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}
.gc-history-modal__title {
  color: var(--gc-cream);
  text-align: center;
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
}
.gc-history-modal__player {
  width: 100%;
  max-height: 80vh;
  border-radius: 1rem;
  background: #000;
  display: block;
}

.gc-benefits { background: var(--gc-navy); padding: 5rem 1.5rem; }
.gc-benefits__grid {
  max-width: 72rem;
  margin: 2rem auto 0;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .gc-benefits__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .gc-benefits__grid { grid-template-columns: repeat(4, 1fr); } }
.gc-benefit-card {
  border: 1px solid rgba(228, 190, 119, 0.3);
  background: rgba(253, 251, 247, 0.05);
  border-radius: 1rem;
  padding: 2rem 1.25rem;
  text-align: center;
}
.gc-benefit-card__icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(228, 190, 119, 0.15);
  color: var(--gc-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gc-benefit-card__icon svg { width: 2rem; height: 2rem; }
.gc-benefit-card h3 { color: var(--gc-cream); font-size: 1.35rem; margin: 0 0 0.5rem; }
.gc-benefit-card p { color: rgba(253, 251, 247, 0.8); margin: 0; font-size: 1.05rem; }

.gc-testimonials {
  background: var(--gc-navy);
  padding: 0 1.5rem 5rem;
  border-top: 1px solid rgba(228, 190, 119, 0.2);
  color: var(--gc-cream);
}
.gc-testimonials__sub { text-align: center; color: var(--gc-gold); margin: -0.5rem 0 2rem; }
.gc-testimonials__scroll-wrap {
  max-width: 72rem;
  margin: 0 auto 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.gc-testimonials__videos {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  flex: 1;
  padding: 0.5rem 0 1rem;
}
.gc-testimonials__nav {
  display: none;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: none;
  background: var(--gc-gold);
  color: var(--gc-navy);
  font-size: 1.75rem;
  cursor: pointer;
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .gc-testimonials__nav {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.gc-video-card {
  flex: 0 0 min(85vw, 280px);
  scroll-snap-align: center;
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(228, 190, 119, 0.35);
  background: #000;
  display: flex;
  flex-direction: column;
}
@media (min-width: 900px) {
  .gc-video-card { flex-basis: 300px; }
}
.gc-video-card__player {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 480px;
  object-fit: cover;
  display: block;
  background: #000;
}
.gc-video-card__caption {
  padding: 0.75rem 1rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  background: rgba(6, 15, 39, 0.95);
  color: var(--gc-gold);
}
.gc-quotes {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .gc-quotes { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .gc-quotes { grid-template-columns: repeat(3, 1fr); } }
.gc-quote {
  margin: 0;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(228, 190, 119, 0.3);
  background: rgba(253, 251, 247, 0.05);
  text-align: right;
  color: var(--gc-cream);
}
.gc-quote p {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  line-height: 1.65;
  color: rgba(253, 251, 247, 0.92);
}
.gc-quote cite { font-style: normal; color: var(--gc-gold); font-weight: 700; font-size: 1.1rem; }

.gc-faq { background: var(--gc-cream); padding: 5rem 1.5rem; color: var(--gc-navy); }
.gc-faq__list { max-width: 48rem; margin: 2rem auto 0; }
.gc-faq__item {
  background: #fff;
  border: 2px solid rgba(228, 190, 119, 0.3);
  border-radius: 1rem;
  padding: 0 1.25rem;
  margin-bottom: 1rem;
}
.gc-faq__item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 1.25rem 2rem 1.25rem 0;
  list-style: none;
  position: relative;
}
.gc-faq__item summary::after {
  content: '+';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--gc-gold-dark);
  font-weight: 400;
}
.gc-faq__item[open] summary::after { content: '−'; }
.gc-faq__item summary::-webkit-details-marker { display: none; }
.gc-faq__item p { margin: 0 0 1.25rem; font-size: 1.05rem; line-height: 1.6; opacity: 0.85; }

.gc-lead {
  background: var(--gc-navy);
  padding: 0 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}
.gc-lead--sparkles .gc-sparkles { z-index: 0; }
.gc-lead__grid,
.gc-lead__title,
.gc-lead__form-wrap { position: relative; z-index: 2; }
@media (max-width: 767px) {
  .gc-lead__image--mobile-first { order: -1; }
}
.gc-lead__title { text-align: right; }
.gc-lead__sub--right { text-align: right; }
.gc-lead__grid {
  max-width: 64rem;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  align-items: stretch;
}
@media (min-width: 768px) { .gc-lead__grid { grid-template-columns: 1fr 1fr; } }
.gc-lead__image img { width: 100%; border-radius: 1.5rem; display: block; }
.gc-lead__form-wrap { padding: 3rem 0; }
.gc-lead__sub { color: rgba(253, 251, 247, 0.8); margin-bottom: 1.5rem; }
.gc-form {
  background: var(--gc-cream);
  color: var(--gc-navy);
  border-radius: 1rem;
  padding: 2rem;
  display: grid;
  gap: 1rem;
}
.gc-form label { display: block; font-weight: 700; }
.gc-form input,
.gc-form textarea {
  width: 100%;
  margin-top: 0.35rem;
  padding: 1rem 1.15rem;
  font-size: 1.2rem;
  border: 2px solid rgba(6, 15, 39, 0.2);
  border-radius: 10px;
  font-family: inherit;
}
.gc-form__status { margin: 0; font-weight: 700; }
.gc-form__status.is-ok { color: #0a6; }
.gc-form__status.is-err { color: #c00; }

.gc-footer {
  background: var(--gc-navy);
  border-top: 1px solid rgba(228, 190, 119, 0.3);
  padding: 3rem 1.5rem;
  color: var(--gc-cream);
}
.gc-footer__grid {
  max-width: 72rem;
  margin: 0 auto 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .gc-footer__grid {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    text-align: right;
  }
}
.gc-footer__col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .gc-footer__col { align-items: flex-start; }
}
.gc-footer__phones,
.gc-footer__emails {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 0;
}
@media (min-width: 768px) {
  .gc-footer__phones,
  .gc-footer__emails {
    align-items: flex-start;
    padding-top: 2.5rem;
  }
}
.gc-footer a:not(.gc-footer__fb) {
  color: rgba(253, 251, 247, 0.85);
  text-decoration: none;
  font-size: 1.15rem;
  transition: color 0.2s;
}
.gc-footer a:not(.gc-footer__fb):hover { color: var(--gc-gold); }
.gc-footer__logo { margin-bottom: 1rem; width: 10rem; height: auto; }
.gc-footer__copy { text-align: center; color: rgba(253, 251, 247, 0.5); margin: 0; }

.gc-footer__brand {
  margin: 0 0 0.75rem;
  line-height: 1.5;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gc-cream);
}
.gc-footer__address {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  margin: 0;
  font-size: 1.1rem;
  color: rgba(253, 251, 247, 0.85);
}
@media (min-width: 768px) {
  .gc-footer__address { justify-content: flex-start; }
}
.gc-footer__icon {
  flex-shrink: 0;
  color: var(--gc-gold);
  width: 1.25rem !important;
  height: 1.25rem !important;
}
.gc-footer__phones a,
.gc-footer__emails a:not(.gc-footer__fb) {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .gc-footer__phones a,
  .gc-footer__emails a:not(.gc-footer__fb) { justify-content: flex-start; }
}
.gc-footer__fb {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(228, 190, 119, 0.2);
  color: var(--gc-gold) !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin: 0.5rem auto 0;
  flex-shrink: 0;
  transition: background 0.2s;
}
.gc-footer__fb:hover {
  background: rgba(228, 190, 119, 0.4);
  color: var(--gc-gold) !important;
}
@media (min-width: 768px) {
  .gc-footer__fb { margin: 0.5rem 0 0; }
}
.gc-footer__fb svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--gc-gold);
  fill: currentColor;
}

.gc-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(6, 15, 39, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
}
.gc-modal[hidden] { display: none !important; }
.gc-modal--festival {
  z-index: 150;
}
.gc-modal__dialog {
  background: var(--gc-cream);
  color: var(--gc-navy);
  border-radius: 1rem;
  border: 2px solid var(--gc-gold);
  max-width: 32rem;
  width: 100%;
  padding: 1.5rem;
}
.gc-modal__dialog--festival {
  max-width: 42rem;
  max-height: 90vh;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
}
.gc-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.gc-modal__header--festival {
  background: var(--gc-navy);
  color: var(--gc-cream);
  margin: 0;
  padding: 1rem 1.5rem;
  flex-shrink: 0;
}
.gc-modal__header--festival h2 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gc-cream);
}
.gc-modal__close {
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  background: rgba(228, 190, 119, 0.2);
  color: var(--gc-gold);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gc-modal__close:hover {
  background: rgba(228, 190, 119, 0.4);
}
.gc-modal__body-scroll {
  overflow-y: auto;
  padding: 1rem 1.25rem 1.5rem;
  flex: 1;
}

.gc-reg-form {
  background: #fff;
  border-radius: 1rem;
  padding: 1.25rem 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.gc-reg-form__section { display: flex; flex-direction: column; gap: 0.75rem; }
.gc-reg-form__heading {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  color: var(--gc-navy);
}
.gc-reg-rooms { display: flex; flex-direction: column; gap: 0.5rem; }
.gc-reg-room {
  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;
}
.gc-reg-room.is-selected {
  border-color: var(--gc-gold);
  background: rgba(228, 190, 119, 0.1);
}
.gc-reg-room__main {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  text-align: right;
}
.gc-reg-room__main input {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.2rem;
  accent-color: var(--gc-gold);
  flex-shrink: 0;
}
.gc-reg-room__label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gc-navy);
  line-height: 1.4;
}
.gc-reg-room__price {
  font-weight: 700;
  white-space: nowrap;
  color: var(--gc-navy);
}
.gc-reg-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.gc-reg-form__stack { display: flex; flex-direction: column; gap: 1rem; }
.gc-reg-form__label {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.35rem;
  color: var(--gc-navy);
}
.gc-reg-form__input,
.gc-reg-form__select {
  width: 100%;
  padding: 0.9rem 1rem;
  font-size: 1.1rem;
  border: 2px solid rgba(6, 15, 39, 0.2);
  border-radius: 8px;
  font-family: inherit;
  background: #fff;
  color: var(--gc-navy);
}
.gc-reg-form__total {
  text-align: left;
  background: rgba(6, 15, 39, 0.05);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gc-navy);
}
.gc-reg-form__radios {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.35rem;
  font-size: 1.1rem;
}
.gc-reg-form__radios label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}
.gc-reg-form__radios input { accent-color: var(--gc-gold); width: 1.25rem; height: 1.25rem; }
.gc-reg-form__terms {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 1rem;
  color: var(--gc-navy);
  cursor: pointer;
}
.gc-reg-form__terms input {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.15rem;
  accent-color: var(--gc-gold);
  flex-shrink: 0;
}
.gc-reg-form__terms a {
  color: var(--gc-gold-dark);
  font-weight: 700;
}
.gc-reg-form__submit {
  font-size: 1.2rem;
  padding: 1.1rem 1.5rem;
}
.gc-reg-success {
  background: #fff;
  border-radius: 1rem;
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.gc-reg-success__title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gc-navy);
  margin: 0 0 0.75rem;
}
.gc-reg-success__sub {
  font-size: 1.1rem;
  color: rgba(6, 15, 39, 0.7);
  margin: 0;
}

body.elementor-page .elementor-location-header,
body.elementor-page .elementor-location-footer { display: none; }

/* Mobile: accessibility left, WhatsApp right — avoid overlap */
@media (max-width: 1024px) {
  .onetap-container-toggle .onetap-toggle {
    left: 0 !important;
    margin-left: 15px !important;
    right: unset !important;
    margin-right: unset !important;
    bottom: 0 !important;
    margin-bottom: 15px !important;
    top: unset !important;
    margin-top: unset !important;
  }

  #ht-ctc-chat.ht-ctc-chat,
  .ht-ctc.ht-ctc-chat {
    left: auto !important;
    right: 15px !important;
    bottom: 15px !important;
  }
}
