:root {
  --club-green: #20a842;
  --club-green-dark: #137c34;
  --club-blue: #071431;
  --club-muted: #536179;
  --club-line: #dce5ef;
  --club-bg: #f4f8fb;
  --container-width: 1380px;
  --section-padding-x: 70px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--club-blue);
  background: var(--club-bg);
  font-family: Inter, Poppins, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

.icon {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.club-hero-section {
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 7%, rgba(32, 168, 66, 0.12), transparent 30%),
    radial-gradient(circle at 91% 4%, rgba(29, 78, 216, 0.10), transparent 34%),
    linear-gradient(180deg, #f9fbfd 0%, #eef5f8 100%);
}

.club-page {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 48%, #f7fbff 100%);
  position: relative;
}

.club-header {
  width: 100%;
  min-height: 88px;
  padding: 0;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(220, 229, 239, 0.9);
  backdrop-filter: blur(18px);
  position: relative;
  z-index: 30;
  min-width: 0;
}

.header-container,
.club-hero,
.services-shell,
.map-shell,
.testimonials-shell,
.review-submit-shell,
.final-cta-card,
.footer-shell,
.footer-bottom {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
}

.header-container {
  min-height: 88px;
  padding: 18px var(--section-padding-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: 0;
}

.club-logo {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-size: 24px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.club-logo-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #16a34a, #1d4ed8);
  box-shadow: 0 16px 34px rgba(22, 163, 74, 0.25);
}

.club-logo-icon svg {
  width: 25px;
  height: 25px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.club-logo-icon strong {
  font-size: 17px;
  line-height: 1;
  letter-spacing: 0;
}

.club-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 42px);
  flex: 1;
  min-width: 0;
  max-width: 100%;
}

.club-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.club-nav a:hover,
.club-nav a.active {
  color: var(--club-green-dark);
}

.club-nav a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: var(--club-green);
  transform: translateX(-50%);
}

.club-header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  margin-left: auto;
}

.club-login-link {
  min-height: 52px;
  padding: 0 18px;
  border-radius: 13px;
  border: 1px solid rgba(29, 78, 216, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--club-navy);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.club-login-link:hover {
  border-color: rgba(32, 168, 66, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
}

.club-login-link .icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.club-whatsapp {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #ffffff;
  background: linear-gradient(135deg, #1fa840, #2eb64d);
  box-shadow: 0 16px 36px rgba(32, 168, 66, 0.28);
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.club-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(32, 168, 66, 0.36);
}

.club-whatsapp .icon,
.btn-main .icon,
.btn-outline .icon {
  transition: transform 0.28s ease;
}

.club-whatsapp:hover .icon,
.btn-main:hover .icon,
.btn-outline:hover .icon {
  transform: translateX(3px);
}

.club-hero {
  min-height: calc(100vh - 88px);
  padding: 34px 0 64px;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: center;
  position: relative;
  min-width: 0;
}

.club-hero-content {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  position: relative;
  z-index: 5;
}

.club-badge {
  width: fit-content;
  margin-bottom: 28px;
  padding: 10px 16px;
  border: 1px solid rgba(19, 124, 52, 0.18);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--club-green-dark);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
  font-size: 14px;
  font-weight: 850;
  animation: fadeIn 0.7s ease both;
}

.club-badge .icon {
  width: 18px;
  height: 18px;
}

.club-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.55;
}

.club-hero h1 {
  max-width: 640px;
  margin: 0;
  font-size: 64px;
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: 0;
  animation: fadeUp 0.8s 0.12s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.club-hero h1 strong {
  color: #2b9f39;
  font-weight: 950;
}

.club-title-line {
  width: min(245px, 48vw);
  height: 7px;
  margin: 18px 0 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2b9f39, rgba(43, 159, 57, 0.08));
  animation: slideLeft 0.7s 0.26s ease both;
}

.club-hero-content p {
  max-width: 620px;
  margin: 0;
  color: var(--club-muted);
  font-size: 19px;
  line-height: 1.6;
  font-weight: 600;
  animation: fadeUp 0.75s 0.28s ease both;
}

.club-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  animation: fadeUp 0.75s 0.4s ease both;
}

.btn-main,
.btn-outline {
  min-width: 174px;
  min-height: 56px;
  padding: 0 23px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.btn-main {
  color: #ffffff;
  background: linear-gradient(135deg, #239f3d, #36b84f);
  box-shadow: 0 18px 34px rgba(35, 159, 61, 0.25);
}

.btn-outline {
  color: var(--club-blue);
  background: rgba(255, 255, 255, 0.92);
  border: 1.5px solid #1d4ed8;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

.btn-main:hover,
.btn-outline:hover {
  transform: translateY(-3px);
}

.btn-main:hover {
  box-shadow: 0 24px 44px rgba(35, 159, 61, 0.32);
}

.btn-outline:hover {
  border-color: var(--club-green);
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.11);
}

.club-benefits {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 720px;
}

.club-benefit {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 16px;
  animation: fadeUp 0.72s ease both;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.club-benefit:nth-child(1) {
  animation-delay: 0.5s;
}

.club-benefit:nth-child(2) {
  animation-delay: 0.58s;
}

.club-benefit:nth-child(3) {
  animation-delay: 0.66s;
}

.club-benefit:nth-child(4) {
  animation-delay: 0.74s;
}

.club-benefit:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.benefit-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--club-green-dark);
  background: #ffffff;
  border: 1px solid rgba(19, 124, 52, 0.14);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
  flex: 0 0 auto;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.club-benefit:hover .benefit-icon {
  transform: scale(1.06);
  border-color: rgba(32, 168, 66, 0.34);
  box-shadow: 0 16px 30px rgba(32, 168, 66, 0.13);
}

.benefit-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.club-benefit p {
  margin: 0;
  color: #4a566d;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 700;
}

.club-benefit b {
  color: var(--club-blue);
  font-weight: 950;
}

.club-hero-visual {
  min-height: clamp(560px, 64vh, 700px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.sport-panel {
  position: absolute;
  isolation: isolate;
  top: 9%;
  bottom: 9%;
  overflow: hidden;
  border-radius: 30px;
  background: #dce8f4;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
  animation: panelEnter 0.95s 0.28s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.sport-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 82px rgba(15, 23, 42, 0.19);
}

.sport-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  pointer-events: none;
  transform: scale(1.03);
  z-index: 1;
  animation: softZoom 7.5s ease-in-out infinite alternate;
}

.player {
  position: absolute;
  z-index: 3;
  width: auto;
  object-fit: contain;
  object-position: center bottom;
  pointer-events: none;
  filter: drop-shadow(0 24px 24px rgba(7, 20, 49, 0.24));
  --player-x: 0px;
  --float-rotate: 0.8deg;
  transform: translate3d(var(--player-x), 0, 0) rotate(0deg);
  animation: floatPlayer 5.2s ease-in-out infinite;
}

.football-panel {
  left: 0;
  width: 56%;
  clip-path: polygon(20% 0, 100% 0, 83% 100%, 0 100%);
}

.sport-panel::before {
  content: "";
  position: absolute;
  left: 16%;
  right: 12%;
  bottom: -5%;
  height: 25%;
  background: radial-gradient(ellipse at center, rgba(7, 20, 49, 0.28), rgba(7, 20, 49, 0) 68%);
  filter: blur(8px);
  opacity: 0.58;
  pointer-events: none;
  z-index: 2;
}

.football-panel::after,
.volley-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(0deg, rgba(7, 20, 49, 0.08) 0%, rgba(7, 20, 49, 0) 34%);
  pointer-events: none;
  z-index: 4;
}

.male-player {
  height: 74%;
  left: 47%;
  bottom: 0;
  --player-x: -50%;
  animation-delay: 0.25s;
}

.volley-panel {
  right: 0;
  width: 52%;
  clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%);
  animation-delay: 0.42s;
}

.volley-panel .sport-bg {
  object-position: center bottom;
}

.volley-panel::before {
  left: 20%;
  right: 4%;
  bottom: -6%;
  height: 27%;
  opacity: 0.42;
}

.female-player {
  height: 81%;
  right: 0;
  bottom: 0;
  --float-rotate: -0.7deg;
  animation-duration: 5.8s;
  animation-delay: 0.7s;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-ready .reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-ready .reveal-badge {
  transform: translateY(-14px);
}

.reveal-ready .reveal-title,
.reveal-ready .reveal-copy,
.reveal-ready .reveal-actions {
  transform: translateY(22px);
}

.club-benefit.reveal:nth-child(1) {
  transition-delay: 0.08s;
}

.club-benefit.reveal:nth-child(2) {
  transition-delay: 0.16s;
}

.club-benefit.reveal:nth-child(3) {
  transition-delay: 0.24s;
}

.club-benefit.reveal:nth-child(4) {
  transition-delay: 0.32s;
}

.reveal-ready .football-panel.reveal {
  transform: translateX(42px);
  transition-delay: 0.16s;
}

.reveal-ready .volley-panel.reveal {
  transform: translateX(52px);
  transition-delay: 0.28s;
}

.reveal-ready .football-panel.reveal.active,
.reveal-ready .volley-panel.reveal.active {
  transform: translateX(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-22px) scaleX(0.72);
    transform-origin: left;
  }
  to {
    opacity: 1;
    transform: translateX(0) scaleX(1);
    transform-origin: left;
  }
}

@keyframes panelEnter {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes softZoom {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.065) translate3d(-0.6%, -0.4%, 0);
  }
}

@keyframes floatPlayer {
  0%, 100% {
    transform: translate3d(var(--player-x), 0, 0) rotate(0deg);
    filter: drop-shadow(0 24px 24px rgba(7, 20, 49, 0.24));
  }
  50% {
    transform: translate3d(var(--player-x), -7px, 0) rotate(var(--float-rotate));
    filter: drop-shadow(0 30px 28px rgba(7, 20, 49, 0.21));
  }
}

@keyframes pulseSoft {
  0%, 100% {
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
  }
  50% {
    box-shadow: 0 16px 34px rgba(32, 168, 66, 0.12);
  }
}

.club-services-section {
  width: 100%;
  padding: 76px var(--section-padding-x) 82px;
  background:
    radial-gradient(circle at 88% 18%, rgba(32, 168, 66, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}

.services-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: start;
}

.services-intro {
  position: relative;
  padding-top: 0;
}

.section-badge {
  width: fit-content;
  margin-bottom: 16px;
  padding: 10px 15px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--club-green-dark);
  background: #ffffff;
  border: 1px solid rgba(19, 124, 52, 0.16);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
  font-size: 14px;
  font-weight: 850;
}

.services-intro h2 {
  max-width: 620px;
  margin: 0;
  color: var(--club-blue);
  font-size: clamp(38px, 4.2vw, 64px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: 0;
}

.services-intro p {
  max-width: 570px;
  margin: 18px 0 0;
  color: var(--club-muted);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.62;
  font-weight: 600;
}

.featured-service-card {
  min-height: 460px;
  border-radius: 34px;
  padding: clamp(24px, 3.2vw, 40px);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(260px, 1.1fr);
  align-items: center;
  gap: 20px;
  color: #ffffff;
  background:
    radial-gradient(circle at 78% 14%, rgba(90, 220, 132, 0.28), transparent 28%),
    linear-gradient(135deg, #071431 0%, #0d2a24 52%, #12813a 100%);
  box-shadow: 0 34px 90px rgba(7, 20, 49, 0.18);
  grid-column: 2;
}

.featured-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.16;
  mix-blend-mode: screen;
  pointer-events: none;
  transform: scale(1.04);
}

.featured-service-content {
  position: relative;
  z-index: 2;
}

.featured-kicker {
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  display: inline-flex;
  color: #dfffe9;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 13px;
  font-weight: 900;
}

.featured-service-card h3 {
  max-width: 460px;
  margin: 0;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.05;
  font-weight: 950;
}

.featured-service-card p {
  max-width: 500px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 600;
}

.service-chips {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-chips span {
  padding: 8px 12px;
  border-radius: 999px;
  color: #eafff0;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13px;
  font-weight: 850;
}

.featured-service-btn {
  width: fit-content;
  min-height: 54px;
  margin-top: 22px;
  padding: 0 20px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  background: linear-gradient(135deg, #22a33b, #36b84f);
  box-shadow: 0 18px 34px rgba(34, 163, 59, 0.26);
  text-decoration: none;
  font-size: 15px;
  font-weight: 950;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.featured-service-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 44px rgba(34, 163, 59, 0.34);
}

.featured-service-btn .icon {
  transition: transform 0.28s ease;
}

.featured-service-btn:hover .icon {
  transform: translateX(4px);
}

.featured-service-visual {
  min-height: 320px;
  position: relative;
  z-index: 2;
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.22);
}

.featured-service-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(7, 20, 49, 0.14));
  pointer-events: none;
}

.featured-service-visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.55s ease;
}

.featured-service-card:hover .featured-service-visual img {
  transform: scale(1.06);
}

.services-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 226px;
  padding: 22px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(220, 229, 239, 0.9);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(32, 168, 66, 0.24);
  box-shadow: 0 28px 58px rgba(15, 23, 42, 0.11);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--club-green-dark);
  background: rgba(32, 168, 66, 0.08);
  border: 1px solid rgba(32, 168, 66, 0.16);
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.07);
}

.service-icon svg {
  width: 25px;
  height: 25px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.service-card h3 {
  margin: 18px 0 0;
  color: var(--club-blue);
  font-size: 21px;
  line-height: 1.15;
  font-weight: 950;
}

.service-card p {
  margin: 12px 0 0;
  color: var(--club-muted);
  font-size: 15px;
  line-height: 1.52;
  font-weight: 600;
}

.service-card a {
  margin-top: auto;
  padding-top: 16px;
  color: var(--club-green-dark);
  font-size: 14px;
  font-weight: 950;
  text-decoration: none;
}

.service-card a::after {
  content: "  ->";
  transition: padding-left 0.28s ease;
}

.service-card:hover a::after {
  padding-left: 5px;
}

.service-volley .service-icon {
  color: #db3f4d;
  background: rgba(219, 63, 77, 0.08);
  border-color: rgba(219, 63, 77, 0.16);
}

.service-events .service-icon {
  color: #1d4ed8;
  background: rgba(29, 78, 216, 0.08);
  border-color: rgba(29, 78, 216, 0.16);
}

.service-brand .service-icon {
  color: #7c3aed;
  background: rgba(124, 58, 237, 0.08);
  border-color: rgba(124, 58, 237, 0.16);
}

.club-map-section {
  width: 100%;
  padding: 84px var(--section-padding-x) 96px;
  background:
    radial-gradient(circle at 12% 16%, rgba(29, 78, 216, 0.07), transparent 28%),
    linear-gradient(180deg, #f7fbfd 0%, #ffffff 100%);
}

.map-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(22px, 2.6vw, 36px);
  align-items: start;
}

.map-intro h2 {
  max-width: 620px;
  margin: 0;
  color: var(--club-blue);
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: 0;
}

.map-intro p {
  max-width: 570px;
  margin: 18px 0 0;
  color: var(--club-muted);
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.62;
  font-weight: 600;
}

.map-legend {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.legend-item {
  min-height: 82px;
  padding: 14px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(220, 229, 239, 0.9);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.legend-icon {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.legend-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.legend-football {
  color: #137c34;
  background: rgba(32, 168, 66, 0.09);
}

.legend-volley {
  color: #db3f4d;
  background: rgba(219, 63, 77, 0.09);
}

.legend-item b {
  display: block;
  color: var(--club-blue);
  font-size: 18px;
  line-height: 1;
  font-weight: 950;
}

.legend-item small {
  display: block;
  margin-top: 5px;
  color: var(--club-muted);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 750;
}

.map-card {
  padding: 12px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(220, 229, 239, 0.9);
  box-shadow: 0 32px 82px rgba(15, 23, 42, 0.12);
}

.map-canvas {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  background: #dfe9ec;
  aspect-ratio: 1672 / 941;
  isolation: isolate;
}

.map-canvas > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.map-hotspots {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.map-hotspot {
  appearance: none;
  position: absolute;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(32, 168, 66, 0.10);
  cursor: pointer;
  outline: none;
  font: inherit;
  transform-origin: center;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.map-hotspot::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid var(--club-green);
  box-shadow: 0 0 0 7px rgba(32, 168, 66, 0.18);
  transform: translate(-50%, -50%);
}

.map-hotspot:hover,
.map-hotspot:focus-visible,
.map-hotspot.active {
  transform: scale(1.025);
  border-color: rgba(32, 168, 66, 0.92);
  background: rgba(32, 168, 66, 0.18);
  box-shadow: 0 0 0 5px rgba(32, 168, 66, 0.16), 0 18px 34px rgba(7, 20, 49, 0.20);
}

.map-hotspot[data-type*="V"] {
  background: rgba(219, 63, 77, 0.10);
}

.map-hotspot[data-type*="V"]::after {
  border-color: #db3f4d;
  box-shadow: 0 0 0 7px rgba(219, 63, 77, 0.18);
}

.map-hotspot[data-type*="V"] {
  background: rgba(219, 63, 77, 0.10);
}

.map-hotspot[data-type*="V"]::after {
  border-color: #db3f4d;
  box-shadow: 0 0 0 7px rgba(219, 63, 77, 0.18);
}

.map-info-status {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  display: inline-flex;
  color: var(--club-green-dark);
  background: rgba(32, 168, 66, 0.10);
  font-size: 12px;
  font-weight: 950;
}

.modal-open {
  overflow: hidden;
}

.map-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.map-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.map-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 20, 49, 0.42);
  backdrop-filter: blur(8px);
}

.map-modal-panel {
  width: min(430px, 100%);
  padding: 24px;
  border-radius: 26px;
  position: relative;
  z-index: 1;
  color: var(--club-blue);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(220, 229, 239, 0.92);
  box-shadow: 0 34px 90px rgba(7, 20, 49, 0.26);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.map-modal.open .map-modal-panel {
  transform: translateY(0) scale(1);
}

.map-modal-close {
  appearance: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(220, 229, 239, 0.95);
  border-radius: 13px;
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  color: var(--club-blue);
  background: #ffffff;
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.map-modal-close:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.10);
}

.map-modal-close svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.map-modal-panel h3 {
  margin: 14px 46px 0 0;
  font-size: 28px;
  line-height: 1.12;
  font-weight: 950;
}

.map-modal-panel p {
  margin: 10px 0 0;
  color: var(--club-muted);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 750;
}

.map-modal-panel strong {
  display: block;
  margin-top: 12px;
  color: var(--club-blue);
  font-size: 17px;
  font-weight: 950;
}

.map-modal-panel a {
  min-height: 48px;
  margin-top: 18px;
  padding: 0 18px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #22a33b, #36b84f);
  box-shadow: 0 16px 32px rgba(34, 163, 59, 0.25);
  text-decoration: none;
  font-size: 15px;
  font-weight: 950;
}

.booking-modal-panel {
  width: min(1180px, calc(100vw - 36px));
  max-height: min(86vh, 920px);
  padding: 0;
  overflow: hidden;
  background: #ffffff;
}

.booking-modal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  max-height: inherit;
  overflow: auto;
}

.booking-left {
  padding: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}

.booking-gallery {
  min-height: 330px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  background: #e7eef4;
}

.booking-gallery img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  display: block;
}

.gallery-nav {
  appearance: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 14px;
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: rgba(7, 20, 49, 0.42);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transform: translateY(-50%);
}

.gallery-prev {
  left: 14px;
}

.gallery-next {
  right: 14px;
}

.gallery-nav svg,
.booking-date-control svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.gallery-count {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(7, 20, 49, 0.48);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 900;
}

.booking-thumbs {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.booking-thumb {
  appearance: none;
  height: 72px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 15px;
  overflow: hidden;
  background: #e7eef4;
  cursor: pointer;
}

.booking-thumb.active {
  border-color: var(--club-green);
  box-shadow: 0 0 0 4px rgba(32, 168, 66, 0.14);
}

.booking-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-field-info {
  margin-top: 20px;
}

.booking-title-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.booking-type-icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: var(--club-green-dark);
  background: rgba(32, 168, 66, 0.10);
  flex: 0 0 auto;
}

.booking-type-icon.volley {
  color: #db3f4d;
  background: rgba(219, 63, 77, 0.10);
}

.booking-type-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.booking-field-info h3 {
  margin: 9px 46px 0 0;
  color: var(--club-blue);
  font-size: 28px;
  line-height: 1.12;
  font-weight: 950;
}

.booking-field-info p {
  margin: 10px 0 0;
  color: var(--club-muted);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 650;
}

.booking-features {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.booking-features div {
  padding: 13px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(220, 229, 239, 0.92);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.05);
}

.booking-features span {
  display: block;
  color: var(--club-muted);
  font-size: 12px;
  font-weight: 800;
}

.booking-features b {
  display: block;
  margin-top: 6px;
  color: var(--club-blue);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 950;
}

.booking-right {
  padding: 28px;
  border-left: 1px solid rgba(220, 229, 239, 0.95);
  background: #ffffff;
}

.booking-right h4 {
  margin: 0;
  color: var(--club-blue);
  font-size: 28px;
  line-height: 1.12;
  font-weight: 950;
}

.booking-date-control {
  margin-top: 18px;
  padding: 8px;
  border-radius: 16px;
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  gap: 10px;
  background: #f4f8fb;
  border: 1px solid rgba(220, 229, 239, 0.95);
}

.booking-date-control button {
  appearance: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: var(--club-blue);
  background: #ffffff;
  cursor: pointer;
}

.booking-date-control strong {
  text-align: center;
  color: var(--club-blue);
  font-size: 15px;
  font-weight: 950;
}

.schedule-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.schedule-btn {
  appearance: none;
  min-height: 54px;
  padding: 10px;
  border: 1px solid rgba(220, 229, 239, 0.98);
  border-radius: 15px;
  display: grid;
  gap: 3px;
  color: var(--club-blue);
  background: #ffffff;
  cursor: pointer;
  text-align: left;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.schedule-btn span {
  font-size: 14px;
  font-weight: 950;
}

.schedule-btn small {
  color: var(--club-muted);
  font-size: 12px;
  font-weight: 800;
}

.schedule-btn:hover,
.schedule-btn.active {
  transform: translateY(-2px);
  border-color: var(--club-green);
  box-shadow: 0 12px 26px rgba(32, 168, 66, 0.14);
}

.schedule-btn.active {
  background: rgba(32, 168, 66, 0.08);
}

.schedule-btn[disabled] {
  opacity: 0.48;
  cursor: not-allowed;
  transform: none;
}

.booking-summary {
  margin-top: 20px;
  padding: 18px;
  border-radius: 20px;
  background: #f7fbfd;
  border: 1px solid rgba(220, 229, 239, 0.95);
}

.booking-summary h5 {
  margin: 0 0 14px;
  color: var(--club-blue);
  font-size: 16px;
  font-weight: 950;
}

.booking-summary dl {
  margin: 0;
  display: grid;
  gap: 10px;
}

.booking-summary dl div,
.booking-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.booking-summary dt,
.booking-total span {
  color: var(--club-muted);
  font-size: 13px;
  font-weight: 800;
}

.booking-summary dd {
  margin: 0;
  color: var(--club-blue);
  text-align: right;
  font-size: 13px;
  font-weight: 950;
}

.booking-total {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(220, 229, 239, 0.95);
  align-items: center;
}

.booking-total strong {
  margin: 0;
  color: var(--club-green-dark);
  font-size: 22px;
  font-weight: 950;
}

.booking-whatsapp,
.booking-secondary {
  width: 100%;
  min-height: 52px;
  margin-top: 14px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 15px;
  font-weight: 950;
}

.booking-whatsapp {
  color: #ffffff;
  background: linear-gradient(135deg, #22a33b, #36b84f);
  box-shadow: 0 16px 32px rgba(34, 163, 59, 0.25);
}

.booking-secondary {
  border: 1.5px solid #1d4ed8;
  color: var(--club-blue);
  background: #ffffff;
  cursor: pointer;
}

.map-help {
  margin: 14px 4px 2px;
  color: var(--club-muted);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 750;
  text-align: center;
}

.club-testimonials-section,
.review-submit-section {
  width: 100%;
  padding: 48px var(--section-padding-x) 22px;
  background: #ffffff;
}

.testimonials-shell {
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr);
  gap: 30px;
  align-items: start;
}

.testimonials-intro {
  position: static;
}

.testimonials-intro h2,
.review-copy h2 {
  margin: 18px 0 0;
  color: var(--club-blue);
  font-size: clamp(30px, 3.25vw, 46px);
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 950;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.testimonial-card {
  min-height: 192px;
  padding: 22px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(220, 229, 239, 0.95);
  box-shadow: 0 20px 52px rgba(15, 23, 42, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(32, 168, 66, 0.28);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.12);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: #f5b301;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.testimonial-card p {
  margin: 14px 0 0;
  color: var(--club-blue);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 750;
}

.testimonial-author {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #137c34, #20a842);
  box-shadow: 0 12px 24px rgba(32, 168, 66, 0.22);
  font-size: 11px;
  font-weight: 950;
}

.testimonial-avatar-red {
  background: linear-gradient(135deg, #c73546, #f06b78);
  box-shadow: 0 12px 24px rgba(219, 63, 77, 0.20);
}

.testimonial-avatar-blue {
  background: linear-gradient(135deg, #1d4ed8, #38bdf8);
  box-shadow: 0 12px 24px rgba(29, 78, 216, 0.18);
}

.testimonial-author b,
.footer-col h3,
.footer-newsletter h3 {
  display: block;
  color: var(--club-blue);
  font-size: 15px;
  font-weight: 950;
}

.testimonial-author small {
  display: block;
  margin-top: 3px;
  color: var(--club-muted);
  font-size: 12px;
  font-weight: 800;
}

.review-submit-section {
  padding-top: 18px;
  padding-bottom: 34px;
}

.review-submit-shell {
  padding: 22px;
  border-radius: 20px;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 22px;
  background: linear-gradient(135deg, #f7fbfd, #ffffff);
  border: 1px solid rgba(220, 229, 239, 0.95);
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.08);
}

.review-copy p {
  max-width: 470px;
  margin: 16px 0 0;
  color: var(--club-muted);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 700;
}

.review-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-row,
.rating-field {
  min-width: 0;
}

.form-row-full,
.rating-field,
.review-submit-btn,
.form-message {
  grid-column: 1 / -1;
}

.form-row label,
.rating-field legend {
  display: block;
  margin-bottom: 8px;
  color: var(--club-blue);
  font-size: 13px;
  font-weight: 950;
}

.form-row input,
.form-row textarea,
.footer-newsletter input {
  width: 100%;
  border: 1px solid rgba(220, 229, 239, 0.98);
  border-radius: 15px;
  color: var(--club-blue);
  background: #ffffff;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  outline: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.form-row input,
.footer-newsletter input {
  height: 50px;
  padding: 0 15px;
}

.form-row textarea {
  min-height: 112px;
  padding: 14px 15px;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus,
.footer-newsletter input:focus {
  border-color: var(--club-green);
  box-shadow: 0 0 0 4px rgba(32, 168, 66, 0.12);
}

.form-row small {
  display: block;
  margin-top: 7px;
  color: var(--club-muted);
  font-size: 12px;
  font-weight: 800;
  text-align: right;
}

.rating-field {
  margin: 0;
  padding: 0;
  border: 0;
}

.rating-options {
  display: flex;
  gap: 8px;
}

.rating-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.rating-options label {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: #947000;
  background: #fff8df;
  border: 1px solid rgba(245, 179, 1, 0.25);
  cursor: pointer;
  font-size: 0;
  font-weight: 950;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.rating-options label::before {
  content: "\2605";
  font-size: 20px;
  line-height: 1;
}

.rating-options input:checked + label,
.rating-options label:hover {
  transform: translateY(-2px);
  color: #ffffff;
  background: #f5b301;
}

.review-submit-btn,
.footer-newsletter button,
.final-cta-btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.review-submit-btn {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 15px;
  color: #ffffff;
  background: linear-gradient(135deg, #22a33b, #36b84f);
  box-shadow: 0 16px 34px rgba(34, 163, 59, 0.22);
  font-size: 15px;
  font-weight: 950;
}

.review-submit-btn:hover,
.footer-newsletter button:hover,
.final-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.18);
}

.form-message {
  min-height: 20px;
  margin: 0;
  color: var(--club-green-dark);
  font-size: 14px;
  font-weight: 850;
}

.form-message.error,
.footer-newsletter small.error {
  color: #c73546;
}

.club-final-cta {
  padding: 18px var(--section-padding-x) 18px;
  background: #ffffff;
}

.final-cta-card {
  min-height: 124px;
  padding: 30px clamp(32px, 5.2vw, 96px);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.22), transparent 20%),
    linear-gradient(135deg, #137c34 0%, #20a842 54%, #36b84f 100%);
  box-shadow: 0 32px 80px rgba(19, 124, 52, 0.26);
}

.final-cta-card::before,
.final-cta-card::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.final-cta-card::before {
  width: 180px;
  height: 180px;
  right: -42px;
  top: -48px;
}

.final-cta-card::after {
  width: 140px;
  height: 140px;
  left: 42%;
  bottom: -80px;
}

.final-cta-card h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1;
  font-weight: 950;
}

.final-cta-card p {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 750;
}

.final-cta-btn {
  position: relative;
  z-index: 1;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--club-blue);
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(7, 20, 49, 0.16);
  text-decoration: none;
  font-size: 15px;
  font-weight: 950;
  white-space: nowrap;
}

.club-footer {
  padding: 0 var(--section-padding-x);
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 15% 0%, rgba(32, 168, 66, 0.16), transparent 28%),
    linear-gradient(180deg, #071431 0%, #040b1c 100%);
}

.footer-shell {
  padding: 42px 0 34px;
  display: grid;
  grid-template-columns: minmax(245px, 1.1fr) minmax(135px, 0.7fr) minmax(175px, 0.8fr) minmax(230px, 0.95fr) minmax(250px, 0.95fr);
  gap: 34px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 950;
}

.footer-brand p,
.footer-newsletter p,
.footer-info p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 650;
}

.footer-socials {
  margin-top: 22px;
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.10);
  transition: transform 0.22s ease, background 0.22s ease;
}

.footer-socials a:hover {
  transform: translateY(-3px);
  background: rgba(32, 168, 66, 0.28);
}

.footer-socials svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.footer-col h3,
.footer-newsletter h3 {
  margin: 0 0 16px;
  color: #ffffff;
}

.footer-col a,
.footer-bottom a {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 750;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-col a + a {
  margin-top: 11px;
}

.footer-col a:hover,
.footer-bottom a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-newsletter form {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.footer-newsletter input {
  border-color: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.footer-newsletter button {
  min-height: 48px;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #22a33b, #36b84f);
  font-size: 14px;
  font-weight: 950;
}

.footer-newsletter small {
  min-height: 18px;
  color: #7ee29a;
  font-size: 12px;
  font-weight: 800;
}

.footer-bottom {
  padding-left: 0;
  padding-right: 0;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 750;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.courts-page {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 34px 0 72px;
}

.courts-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}

.courts-badge {
  margin-bottom: 14px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.4px;
}

.courts-hero h1 {
  max-width: 660px;
  margin: 0;
  color: var(--club-blue);
  font-size: clamp(42px, 4.8vw, 72px);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: 0;
}

.courts-hero h1::first-line {
  color: var(--club-blue);
}

.courts-hero h1 strong,
.courts-hero h1 em {
  color: var(--club-green);
  font-style: normal;
}

.courts-hero p {
  max-width: 590px;
  margin: 18px 0 0;
  color: var(--club-muted);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 650;
}

.courts-hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.courts-primary-btn,
.courts-secondary-btn,
.quick-whatsapp,
.courts-cta a {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 950;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.courts-primary-btn,
.quick-whatsapp,
.courts-cta a {
  color: #ffffff;
  background: linear-gradient(135deg, #159d39, #26b848);
  box-shadow: 0 18px 36px rgba(32, 168, 66, 0.25);
}

.courts-secondary-btn {
  color: var(--club-green-dark);
  background: #ffffff;
  border: 1.5px solid rgba(32, 168, 66, 0.52);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.courts-primary-btn:hover,
.courts-secondary-btn:hover,
.quick-whatsapp:hover,
.courts-cta a:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.14);
}

.courts-hero-visual {
  min-height: 430px;
  position: relative;
  isolation: isolate;
}

.courts-visual-dots {
  position: absolute;
  left: 2%;
  top: 8%;
  width: 120px;
  height: 120px;
  opacity: 0.48;
  background-image: radial-gradient(circle, rgba(32, 168, 66, 0.8) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  z-index: 0;
}

.court-hero-img {
  position: absolute;
  display: block;
  object-fit: cover;
  border-radius: 18px;
  border: 4px solid #ffffff;
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.18);
}

.court-hero-main {
  left: 7%;
  top: 7%;
  width: 68%;
  height: 78%;
  transform: rotate(-3deg);
  z-index: 2;
}

.court-hero-top {
  right: 0;
  top: 4%;
  width: 33%;
  height: 34%;
  transform: rotate(5deg);
  z-index: 3;
}

.court-hero-bottom {
  right: 2%;
  bottom: 7%;
  width: 36%;
  height: 38%;
  transform: rotate(4deg);
  z-index: 4;
}

.courts-main-section {
  margin-top: 36px;
}

.courts-filters {
  padding: 14px;
  border-radius: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(180px, 0.32fr) minmax(240px, 0.52fr);
  gap: 12px;
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(220, 229, 239, 0.92);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.courts-filter-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}

.court-filter-btn {
  appearance: none;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(220, 229, 239, 0.98);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  color: var(--club-blue);
  background: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
}

.court-filter-btn.active {
  color: #ffffff;
  background: var(--club-green);
  border-color: var(--club-green);
  box-shadow: 0 14px 28px rgba(32, 168, 66, 0.22);
}

.courts-date-control,
.courts-search {
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid rgba(220, 229, 239, 0.98);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  background: #ffffff;
  color: var(--club-muted);
}

.courts-date-control input,
.courts-search input,
.quick-field input {
  width: 100%;
  border: 0;
  outline: none;
  color: var(--club-blue);
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
}

.courts-layout {
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: start;
}

.courts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.court-card {
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(220, 229, 239, 0.95);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.court-card:hover {
  transform: translateY(-5px);
  border-color: rgba(32, 168, 66, 0.26);
  box-shadow: 0 26px 62px rgba(15, 23, 42, 0.12);
}

.court-card.selected {
  border-color: rgba(32, 168, 66, 0.75);
  box-shadow: 0 0 0 4px rgba(32, 168, 66, 0.12), 0 26px 62px rgba(15, 23, 42, 0.12);
}

.court-card-image {
  height: 170px;
  position: relative;
  overflow: hidden;
}

.court-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.court-card:hover .court-card-image img {
  transform: scale(1.05);
}

.court-status,
.court-favorite {
  position: absolute;
  top: 10px;
  z-index: 2;
}

.court-status {
  left: 10px;
  padding: 6px 8px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--club-green);
  font-size: 11px;
  font-weight: 950;
}

.court-status.busy {
  background: #e94c5f;
}

.court-favorite {
  right: 10px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: rgba(7, 20, 49, 0.24);
  backdrop-filter: blur(8px);
}

.court-favorite svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.court-card-body {
  padding: 14px;
}

.court-card h3 {
  margin: 0;
  color: var(--club-blue);
  font-size: 17px;
  line-height: 1.2;
  font-weight: 950;
}

.court-type {
  margin: 5px 0 0;
  color: var(--club-muted);
  font-size: 13px;
  font-weight: 800;
}

.court-tags {
  margin-top: 10px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.court-tags span {
  padding: 5px 7px;
  border-radius: 999px;
  color: var(--club-green-dark);
  background: rgba(32, 168, 66, 0.1);
  font-size: 11px;
  font-weight: 850;
}

.court-price {
  margin-top: 12px;
  display: flex;
  align-items: baseline;
  gap: 5px;
  color: var(--club-green-dark);
  font-size: 20px;
  font-weight: 950;
}

.court-price small {
  color: var(--club-muted);
  font-size: 12px;
  font-weight: 750;
}

.court-reserve-btn {
  appearance: none;
  width: 100%;
  min-height: 42px;
  margin-top: 12px;
  border: 0;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, #159d39, #26b848);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 950;
}

.court-reserve-btn.consult {
  color: var(--club-green-dark);
  background: rgba(32, 168, 66, 0.1);
  border: 1px solid rgba(32, 168, 66, 0.25);
}

.court-reserve-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
}

.courts-empty {
  display: none;
  margin: 18px 0 0;
  color: var(--club-muted);
  font-weight: 800;
}

.quick-booking {
  position: sticky;
  top: 18px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(220, 229, 239, 0.95);
  box-shadow: 0 22px 58px rgba(15, 23, 42, 0.11);
}

.quick-booking-heading {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quick-icon {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: var(--club-green-dark);
  background: rgba(32, 168, 66, 0.1);
}

.quick-icon svg,
.quick-note svg,
.courts-benefit svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.quick-booking h2 {
  margin: 0;
  color: var(--club-blue);
  font-size: 23px;
  font-weight: 950;
}

.quick-label,
.quick-field span {
  display: block;
  margin-top: 18px;
  color: var(--club-muted);
  font-size: 12px;
  font-weight: 900;
}

.quick-selected {
  margin-top: 9px;
  padding: 10px;
  border: 1px solid rgba(220, 229, 239, 0.95);
  border-radius: 15px;
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 10px;
  align-items: center;
  background: #ffffff;
}

.quick-selected img {
  width: 74px;
  height: 56px;
  border-radius: 11px;
  object-fit: cover;
}

.quick-selected h3 {
  margin: 0;
  color: var(--club-blue);
  font-size: 14px;
  font-weight: 950;
}

.quick-selected p {
  margin: 4px 0 0;
  color: var(--club-muted);
  font-size: 12px;
  font-weight: 750;
}

.quick-selected strong {
  color: var(--club-blue);
  font-size: 15px;
  font-weight: 950;
}

.quick-field input {
  height: 46px;
  margin-top: 8px;
  padding: 0 12px;
  border: 1px solid rgba(220, 229, 239, 0.95);
  border-radius: 13px;
  background: #ffffff;
}

.quick-hours {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.quick-hour {
  appearance: none;
  min-height: 40px;
  border: 1px solid rgba(220, 229, 239, 0.95);
  border-radius: 10px;
  color: var(--club-blue);
  background: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
}

.quick-hour.active {
  color: #ffffff;
  background: var(--club-green);
  border-color: var(--club-green);
}

.quick-hour.busy {
  color: #ffffff;
  background: #e94c5f;
  border-color: #e94c5f;
}

.quick-hour.disabled {
  color: #97a3b6;
  background: #edf2f7;
  cursor: not-allowed;
}

.quick-legend {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--club-muted);
  font-size: 11px;
  font-weight: 800;
}

.quick-legend span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.legend-dot {
  width: 9px;
  height: 9px;
  border-radius: 3px;
  display: inline-block;
}

.legend-dot.available {
  background: var(--club-green);
}

.legend-dot.busy {
  background: #e94c5f;
}

.legend-dot.disabled {
  background: #d7dee8;
}

.quick-whatsapp {
  width: 100%;
  margin-top: 18px;
}

.quick-note {
  margin: 12px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--club-muted);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 800;
  text-align: center;
}

.quick-note svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

.courts-benefits {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.courts-benefit {
  padding: 18px;
  border-radius: 18px;
  display: flex;
  gap: 13px;
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid rgba(220, 229, 239, 0.95);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.07);
}

.courts-benefit span {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--club-green-dark);
  background: rgba(32, 168, 66, 0.1);
  flex: 0 0 auto;
}

.courts-benefit h3 {
  margin: 0;
  color: var(--club-blue);
  font-size: 15px;
  font-weight: 950;
}

.courts-benefit p {
  margin: 6px 0 0;
  color: var(--club-muted);
  font-size: 13px;
  line-height: 1.48;
  font-weight: 700;
}

.courts-cta {
  min-height: 132px;
  margin-top: 28px;
  padding: 28px clamp(24px, 5vw, 56px);
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: #ffffff;
  background:
    radial-gradient(circle at 6% 50%, rgba(255, 255, 255, 0.18), transparent 16%),
    radial-gradient(circle at 95% 30%, rgba(255, 255, 255, 0.18), transparent 20%),
    linear-gradient(135deg, #078238, #20a842 58%, #35bf55);
  box-shadow: 0 26px 64px rgba(19, 124, 52, 0.24);
}

.courts-cta h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
  font-weight: 950;
}

.courts-cta p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-weight: 750;
}

.courts-cta a {
  color: var(--club-green-dark);
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(7, 20, 49, 0.14);
  white-space: nowrap;
}

.volley-page {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 34px 0 72px;
}

.volley-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}

.volley-badge {
  margin-bottom: 14px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.4px;
}

.volley-hero h1 {
  max-width: 660px;
  margin: 0;
  color: var(--club-blue);
  font-size: clamp(42px, 4.8vw, 72px);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: 0;
}

.volley-hero h1 strong {
  color: #e94c5f;
  font-style: normal;
}

.volley-hero p {
  max-width: 590px;
  margin: 18px 0 0;
  color: var(--club-muted);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 650;
}

.volley-hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.volley-primary-btn,
.volley-secondary-btn,
.volley-whatsapp,
.volley-cta a {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 950;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.volley-primary-btn,
.volley-whatsapp {
  color: #ffffff;
  background: linear-gradient(135deg, #159d39, #26b848);
  box-shadow: 0 18px 36px rgba(32, 168, 66, 0.25);
}

.volley-secondary-btn {
  color: #d83c52;
  background: #ffffff;
  border: 1.5px solid rgba(233, 76, 95, 0.38);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.volley-primary-btn:hover,
.volley-secondary-btn:hover,
.volley-whatsapp:hover,
.volley-cta a:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.14);
}

.volley-hero-visual {
  min-height: 430px;
  position: relative;
  isolation: isolate;
}

.volley-visual-dots {
  position: absolute;
  left: 2%;
  top: 8%;
  width: 120px;
  height: 120px;
  opacity: 0.42;
  background-image: radial-gradient(circle, rgba(233, 76, 95, 0.85) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  z-index: 0;
}

.volley-hero-img {
  position: absolute;
  display: block;
  object-fit: cover;
  border-radius: 18px;
  border: 4px solid #ffffff;
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.18);
}

.volley-hero-main {
  left: 7%;
  top: 7%;
  width: 68%;
  height: 78%;
  transform: rotate(-3deg);
  z-index: 2;
}

.volley-hero-top {
  right: 0;
  top: 4%;
  width: 33%;
  height: 34%;
  transform: rotate(5deg);
  z-index: 3;
}

.volley-hero-bottom {
  right: 2%;
  bottom: 7%;
  width: 36%;
  height: 38%;
  transform: rotate(4deg);
  z-index: 4;
}

.volley-main-section {
  margin-top: 36px;
}

.volley-filters {
  padding: 14px;
  border-radius: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(180px, 0.32fr) minmax(240px, 0.52fr);
  gap: 12px;
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(220, 229, 239, 0.92);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.volley-filter-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}

.volley-filter-btn {
  appearance: none;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(220, 229, 239, 0.98);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  color: var(--club-blue);
  background: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
}

.volley-filter-btn.active {
  color: #ffffff;
  background: linear-gradient(135deg, #e94c5f, #20a842);
  border-color: transparent;
  box-shadow: 0 14px 28px rgba(233, 76, 95, 0.2);
}

.volley-date-control,
.volley-search {
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid rgba(220, 229, 239, 0.98);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  background: #ffffff;
  color: var(--club-muted);
}

.volley-date-control input,
.volley-search input,
.volley-field input {
  width: 100%;
  border: 0;
  outline: none;
  color: var(--club-blue);
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
}

.volley-layout {
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: start;
}

.volley-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.volley-card {
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(220, 229, 239, 0.95);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.volley-card:hover {
  transform: translateY(-5px);
  border-color: rgba(233, 76, 95, 0.28);
  box-shadow: 0 26px 62px rgba(15, 23, 42, 0.12);
}

.volley-card.selected {
  border-color: rgba(233, 76, 95, 0.75);
  box-shadow: 0 0 0 4px rgba(233, 76, 95, 0.12), 0 26px 62px rgba(15, 23, 42, 0.12);
}

.volley-card-image {
  height: 170px;
  position: relative;
  overflow: hidden;
}

.volley-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.volley-card:hover .volley-card-image img {
  transform: scale(1.05);
}

.volley-status,
.volley-favorite {
  position: absolute;
  top: 10px;
  z-index: 2;
}

.volley-status {
  left: 10px;
  padding: 6px 8px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--club-green);
  font-size: 11px;
  font-weight: 950;
}

.volley-status.busy {
  background: #e94c5f;
}

.volley-favorite {
  right: 10px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: rgba(7, 20, 49, 0.24);
  backdrop-filter: blur(8px);
}

.volley-favorite svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.volley-card-body {
  padding: 14px;
}

.volley-card h3 {
  margin: 0;
  color: var(--club-blue);
  font-size: 17px;
  line-height: 1.2;
  font-weight: 950;
}

.volley-type {
  margin: 5px 0 0;
  color: var(--club-muted);
  font-size: 13px;
  font-weight: 800;
}

.volley-tags {
  margin-top: 10px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.volley-tags span {
  padding: 5px 7px;
  border-radius: 999px;
  color: #bd3347;
  background: rgba(233, 76, 95, 0.1);
  font-size: 11px;
  font-weight: 850;
}

.volley-price {
  margin-top: 12px;
  display: flex;
  align-items: baseline;
  gap: 5px;
  color: var(--club-green-dark);
  font-size: 20px;
  font-weight: 950;
}

.volley-price small {
  color: var(--club-muted);
  font-size: 12px;
  font-weight: 750;
}

.volley-reserve-btn {
  appearance: none;
  width: 100%;
  min-height: 42px;
  margin-top: 12px;
  border: 0;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, #159d39, #26b848);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 950;
}

.volley-reserve-btn.consult {
  color: #bd3347;
  background: rgba(233, 76, 95, 0.1);
  border: 1px solid rgba(233, 76, 95, 0.24);
}

.volley-reserve-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
}

.volley-empty {
  display: none;
  margin: 18px 0 0;
  color: var(--club-muted);
  font-weight: 800;
}

.volley-quick-booking {
  position: sticky;
  top: 18px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(220, 229, 239, 0.95);
  box-shadow: 0 22px 58px rgba(15, 23, 42, 0.11);
}

.volley-quick-heading {
  display: flex;
  align-items: center;
  gap: 10px;
}

.volley-quick-icon {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: #bd3347;
  background: rgba(233, 76, 95, 0.1);
}

.volley-quick-icon svg,
.volley-benefit svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.volley-quick-booking h2 {
  margin: 0;
  color: var(--club-blue);
  font-size: 23px;
  font-weight: 950;
}

.volley-quick-label,
.volley-field span {
  display: block;
  margin-top: 18px;
  color: var(--club-muted);
  font-size: 12px;
  font-weight: 900;
}

.volley-selected {
  margin-top: 9px;
  padding: 10px;
  border: 1px solid rgba(220, 229, 239, 0.95);
  border-radius: 15px;
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 10px;
  align-items: center;
  background: #ffffff;
}

.volley-selected img {
  width: 74px;
  height: 56px;
  border-radius: 11px;
  object-fit: cover;
}

.volley-selected h3 {
  margin: 0;
  color: var(--club-blue);
  font-size: 14px;
  font-weight: 950;
}

.volley-selected p {
  margin: 4px 0 0;
  color: var(--club-muted);
  font-size: 12px;
  font-weight: 750;
}

.volley-selected strong {
  color: var(--club-blue);
  font-size: 15px;
  font-weight: 950;
}

.volley-field input {
  height: 46px;
  margin-top: 8px;
  padding: 0 12px;
  border: 1px solid rgba(220, 229, 239, 0.95);
  border-radius: 13px;
  background: #ffffff;
}

.volley-hours {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.volley-hour {
  appearance: none;
  min-height: 40px;
  border: 1px solid rgba(220, 229, 239, 0.95);
  border-radius: 10px;
  color: var(--club-blue);
  background: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
}

.volley-hour.active {
  color: #ffffff;
  background: var(--club-green);
  border-color: var(--club-green);
}

.volley-hour.low {
  color: #ffffff;
  background: #2f7df6;
  border-color: #2f7df6;
}

.volley-hour.busy {
  color: #ffffff;
  background: #e94c5f;
  border-color: #e94c5f;
}

.volley-legend {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--club-muted);
  font-size: 11px;
  font-weight: 800;
}

.volley-legend span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.volley-dot {
  width: 9px;
  height: 9px;
  border-radius: 3px;
  display: inline-block;
}

.volley-dot.available {
  background: var(--club-green);
}

.volley-dot.low {
  background: #2f7df6;
}

.volley-dot.busy {
  background: #e94c5f;
}

.volley-whatsapp {
  width: 100%;
  margin-top: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #159d39, #26b848);
  box-shadow: 0 18px 36px rgba(32, 168, 66, 0.25);
}

.volley-benefits {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.volley-benefit {
  padding: 18px;
  border-radius: 18px;
  display: flex;
  gap: 13px;
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid rgba(220, 229, 239, 0.95);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.07);
}

.volley-benefit span {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #bd3347;
  background: rgba(233, 76, 95, 0.1);
  flex: 0 0 auto;
}

.volley-benefit h3 {
  margin: 0;
  color: var(--club-blue);
  font-size: 15px;
  font-weight: 950;
}

.volley-benefit p {
  margin: 6px 0 0;
  color: var(--club-muted);
  font-size: 13px;
  line-height: 1.48;
  font-weight: 700;
}

.volley-cta {
  min-height: 132px;
  margin-top: 28px;
  padding: 28px clamp(24px, 5vw, 56px);
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: #ffffff;
  background:
    radial-gradient(circle at 7% 52%, rgba(255, 255, 255, 0.18), transparent 16%),
    radial-gradient(circle at 94% 32%, rgba(233, 76, 95, 0.34), transparent 20%),
    linear-gradient(135deg, #078238, #20a842 58%, #35bf55);
  box-shadow: 0 26px 64px rgba(19, 124, 52, 0.24);
}

.volley-cta h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
  font-weight: 950;
}

.volley-cta p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-weight: 750;
}

.volley-cta a {
  color: var(--club-green-dark);
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(7, 20, 49, 0.14);
  white-space: nowrap;
}

.events-page {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 34px 0 72px;
}

.events-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}

.events-badge {
  margin-bottom: 14px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.4px;
}

.events-hero h1 {
  max-width: 680px;
  margin: 0;
  color: var(--club-blue);
  font-size: clamp(42px, 4.8vw, 72px);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: 0;
}

.events-hero h1 strong {
  color: #b98526;
  font-style: normal;
}

.events-hero p {
  max-width: 600px;
  margin: 18px 0 0;
  color: var(--club-muted);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 650;
}

.events-hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.events-primary-btn,
.events-secondary-btn,
.event-whatsapp,
.events-cta a {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 950;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.events-primary-btn,
.event-whatsapp {
  color: #ffffff;
  background: linear-gradient(135deg, #159d39, #26b848);
  box-shadow: 0 18px 36px rgba(32, 168, 66, 0.25);
}

.events-secondary-btn {
  color: #9a6717;
  background: #ffffff;
  border: 1.5px solid rgba(185, 133, 38, 0.42);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.events-primary-btn:hover,
.events-secondary-btn:hover,
.event-whatsapp:hover,
.events-cta a:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.14);
}

.events-hero-visual {
  min-height: 430px;
  position: relative;
  isolation: isolate;
}

.events-visual-dots {
  position: absolute;
  left: 2%;
  top: 8%;
  width: 120px;
  height: 120px;
  opacity: 0.42;
  background-image: radial-gradient(circle, rgba(185, 133, 38, 0.85) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  z-index: 0;
}

.event-hero-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 4px solid #ffffff;
  background: #ffffff;
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.18);
}

.event-hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-hero-card figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 11px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(7, 20, 49, 0.62);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 950;
}

.event-hero-main {
  left: 7%;
  top: 7%;
  width: 58%;
  height: 82%;
  transform: rotate(-3deg);
  z-index: 2;
}

.event-hero-top {
  right: 3%;
  top: 4%;
  width: 38%;
  height: 42%;
  transform: rotate(4deg);
  z-index: 3;
}

.event-hero-bottom {
  right: 0;
  bottom: 6%;
  width: 42%;
  height: 42%;
  transform: rotate(3deg);
  z-index: 4;
}

.events-main-section {
  margin-top: 36px;
}

.events-filters {
  padding: 14px;
  border-radius: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(180px, 0.32fr) minmax(240px, 0.52fr);
  gap: 12px;
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(220, 229, 239, 0.92);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.events-filter-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}

.event-filter-btn {
  appearance: none;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(220, 229, 239, 0.98);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  color: var(--club-blue);
  background: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
}

.event-filter-btn.active {
  color: #ffffff;
  background: linear-gradient(135deg, #b98526, #20a842);
  border-color: transparent;
  box-shadow: 0 14px 28px rgba(185, 133, 38, 0.2);
}

.events-date-control,
.events-search {
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid rgba(220, 229, 239, 0.98);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  background: #ffffff;
  color: var(--club-muted);
}

.events-date-control input,
.events-search input,
.event-field input,
.event-field select {
  width: 100%;
  border: 0;
  outline: none;
  color: var(--club-blue);
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
}

.events-layout {
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 22px;
  align-items: start;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.event-card {
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(220, 229, 239, 0.95);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  border-color: rgba(185, 133, 38, 0.34);
  box-shadow: 0 26px 62px rgba(15, 23, 42, 0.12);
}

.event-card.selected {
  border-color: rgba(185, 133, 38, 0.78);
  box-shadow: 0 0 0 4px rgba(185, 133, 38, 0.13), 0 26px 62px rgba(15, 23, 42, 0.12);
}

.event-card-image {
  height: 178px;
  position: relative;
  overflow: hidden;
}

.event-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.event-card:hover .event-card-image img {
  transform: scale(1.05);
}

.event-status {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2;
  padding: 6px 8px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--club-green);
  font-size: 11px;
  font-weight: 950;
}

.event-status.limited {
  background: #b98526;
}

.event-card-body {
  padding: 14px;
}

.event-card h3 {
  margin: 0;
  color: var(--club-blue);
  font-size: 17px;
  line-height: 1.2;
  font-weight: 950;
}

.event-type,
.event-capacity {
  margin: 5px 0 0;
  color: var(--club-muted);
  font-size: 13px;
  font-weight: 800;
}

.event-tags {
  margin-top: 10px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.event-tags span {
  padding: 5px 7px;
  border-radius: 999px;
  color: #8b5c14;
  background: rgba(185, 133, 38, 0.1);
  font-size: 11px;
  font-weight: 850;
}

.event-price {
  margin-top: 12px;
  display: flex;
  align-items: baseline;
  gap: 5px;
  color: var(--club-green-dark);
  font-size: 20px;
  font-weight: 950;
}

.event-price small {
  color: var(--club-muted);
  font-size: 12px;
  font-weight: 750;
}

.event-reserve-btn {
  appearance: none;
  width: 100%;
  min-height: 42px;
  margin-top: 12px;
  border: 0;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, #159d39, #26b848);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 950;
}

.event-reserve-btn.consult {
  color: #8b5c14;
  background: rgba(185, 133, 38, 0.1);
  border: 1px solid rgba(185, 133, 38, 0.26);
}

.event-reserve-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
}

.events-empty {
  display: none;
  margin: 18px 0 0;
  color: var(--club-muted);
  font-weight: 800;
}

.events-quick-quote {
  position: sticky;
  top: 18px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(220, 229, 239, 0.95);
  box-shadow: 0 22px 58px rgba(15, 23, 42, 0.11);
}

.events-quote-heading {
  display: flex;
  align-items: center;
  gap: 10px;
}

.events-quote-icon {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: #8b5c14;
  background: rgba(185, 133, 38, 0.12);
}

.events-quote-icon svg,
.event-benefit svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.events-quick-quote h2 {
  margin: 0;
  color: var(--club-blue);
  font-size: 23px;
  font-weight: 950;
}

.events-quote-label,
.event-field span {
  display: block;
  margin-top: 18px;
  color: var(--club-muted);
  font-size: 12px;
  font-weight: 900;
}

.event-selected {
  margin-top: 9px;
  padding: 10px;
  border: 1px solid rgba(220, 229, 239, 0.95);
  border-radius: 15px;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 10px;
  align-items: center;
  background: #ffffff;
}

.event-selected img {
  width: 74px;
  height: 56px;
  border-radius: 11px;
  object-fit: cover;
}

.event-selected h3 {
  margin: 0;
  color: var(--club-blue);
  font-size: 14px;
  font-weight: 950;
}

.event-selected p {
  margin: 4px 0 0;
  color: var(--club-muted);
  font-size: 12px;
  font-weight: 750;
}

.event-field input,
.event-field select {
  height: 46px;
  margin-top: 8px;
  padding: 0 12px;
  border: 1px solid rgba(220, 229, 239, 0.95);
  border-radius: 13px;
  background: #ffffff;
}

.event-hours {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.event-hour {
  appearance: none;
  min-height: 40px;
  border: 1px solid rgba(220, 229, 239, 0.95);
  border-radius: 10px;
  color: var(--club-blue);
  background: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
}

.event-hour.active {
  color: #ffffff;
  background: var(--club-green);
  border-color: var(--club-green);
}

.event-summary {
  margin-top: 16px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(247, 249, 252, 0.95);
  border: 1px solid rgba(220, 229, 239, 0.95);
}

.event-summary h3 {
  margin: 0 0 10px;
  color: var(--club-blue);
  font-size: 15px;
  font-weight: 950;
}

.event-summary p {
  margin: 8px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--club-muted);
  font-size: 12px;
  font-weight: 800;
}

.event-summary p strong {
  color: var(--club-blue);
  text-align: right;
}

.event-summary div {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(220, 229, 239, 0.95);
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.event-summary small {
  color: var(--club-muted);
  font-weight: 850;
}

.event-summary div strong {
  color: var(--club-green-dark);
  font-size: 22px;
  font-weight: 950;
}

.event-quote-note {
  margin: 12px 0 0;
  color: var(--club-muted);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 800;
}

.event-whatsapp {
  width: 100%;
  margin-top: 18px;
}

.events-benefits {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.event-benefit {
  padding: 18px;
  border-radius: 18px;
  display: flex;
  gap: 13px;
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid rgba(220, 229, 239, 0.95);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.07);
}

.event-benefit span {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #8b5c14;
  background: rgba(185, 133, 38, 0.12);
  flex: 0 0 auto;
}

.event-benefit h3 {
  margin: 0;
  color: var(--club-blue);
  font-size: 15px;
  font-weight: 950;
}

.event-benefit p {
  margin: 6px 0 0;
  color: var(--club-muted);
  font-size: 13px;
  line-height: 1.48;
  font-weight: 700;
}

.events-cta {
  min-height: 132px;
  margin-top: 28px;
  padding: 28px clamp(24px, 5vw, 56px);
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: #ffffff;
  background:
    radial-gradient(circle at 7% 52%, rgba(255, 255, 255, 0.18), transparent 16%),
    radial-gradient(circle at 94% 32%, rgba(185, 133, 38, 0.38), transparent 20%),
    linear-gradient(135deg, #078238, #20a842 58%, #35bf55);
  box-shadow: 0 26px 64px rgba(19, 124, 52, 0.24);
}

.events-cta h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
  font-weight: 950;
}

.events-cta p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-weight: 750;
}

.events-cta a {
  color: var(--club-green-dark);
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(7, 20, 49, 0.14);
  white-space: nowrap;
}

.benefits-page {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 34px 0 72px;
}

.benefits-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}

.benefits-badge {
  margin-bottom: 14px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.4px;
}

.benefits-hero h1 {
  max-width: 650px;
  margin: 0;
  color: var(--club-blue);
  font-size: clamp(42px, 4.8vw, 72px);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: 0;
}

.benefits-hero h1 strong {
  color: var(--club-green);
  font-style: normal;
}

.benefits-hero p {
  max-width: 590px;
  margin: 18px 0 0;
  color: var(--club-muted);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 650;
}

.benefits-hero-visual {
  min-height: 430px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.14);
}

.benefits-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(32, 168, 66, 0.18), rgba(255, 255, 255, 0.06));
  pointer-events: none;
}

.benefits-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  display: block;
}

.benefits-grid-section,
.benefits-stats {
  margin-top: 54px;
}

.benefits-section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.benefits-section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.benefits-section-heading span {
  color: var(--club-green-dark);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.benefits-section-heading h2 {
  margin: 10px 0 0;
  color: var(--club-blue);
  font-size: clamp(32px, 3.4vw, 52px);
  line-height: 1.04;
  font-weight: 950;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.benefit-card {
  min-height: 245px;
  padding: 22px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(220, 229, 239, 0.95);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(32, 168, 66, 0.26);
  box-shadow: 0 26px 62px rgba(15, 23, 42, 0.12);
}

.benefit-card span,
.benefit-stat-card span {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: var(--club-green-dark);
  background: rgba(32, 168, 66, 0.1);
}

.benefit-card svg,
.benefit-stat-card svg,
.digital-chips svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.benefit-card h3 {
  margin: 18px 0 0;
  color: var(--club-blue);
  font-size: 20px;
  line-height: 1.15;
  font-weight: 950;
}

.benefit-card p {
  margin: 10px 0 0;
  color: var(--club-muted);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
}

.digital-benefit {
  margin-top: 54px;
  padding: clamp(24px, 4vw, 48px);
  border-radius: 30px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(26px, 4vw, 58px);
  align-items: center;
  background:
    radial-gradient(circle at 8% 20%, rgba(32, 168, 66, 0.16), transparent 24%),
    linear-gradient(135deg, #f4fbf6, #ffffff);
  border: 1px solid rgba(204, 229, 211, 0.9);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.08);
}

.digital-badge {
  width: fit-content;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--club-green-dark);
  background: rgba(32, 168, 66, 0.12);
  font-size: 12px;
  font-weight: 950;
}

.digital-benefit h2 {
  margin: 18px 0 0;
  color: var(--club-blue);
  font-size: clamp(34px, 3.6vw, 56px);
  line-height: 1;
  font-weight: 950;
}

.digital-benefit h3 {
  margin: 12px 0 0;
  color: var(--club-green-dark);
  font-size: 21px;
  line-height: 1.25;
  font-weight: 900;
}

.digital-benefit p {
  margin: 14px 0 0;
  color: var(--club-muted);
  font-size: 16px;
  line-height: 1.62;
  font-weight: 700;
}

.digital-chips {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.digital-chips span {
  min-height: 46px;
  padding: 10px 12px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--club-blue);
  background: #ffffff;
  border: 1px solid rgba(220, 229, 239, 0.95);
  font-size: 13px;
  font-weight: 900;
}

.digital-panel-btn {
  min-height: 52px;
  margin-top: 24px;
  padding: 0 22px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  background: linear-gradient(135deg, #159d39, #26b848);
  box-shadow: 0 18px 36px rgba(32, 168, 66, 0.22);
  font-size: 15px;
  font-weight: 950;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.digital-panel-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.14);
}

.digital-benefit-visual {
  padding: 12px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(220, 229, 239, 0.95);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  animation: benefitsFloat 6s ease-in-out infinite;
}

.digital-benefit-visual img {
  width: 100%;
  min-height: 320px;
  border-radius: 18px;
  display: block;
  object-fit: cover;
}

.benefits-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.benefit-stat-card {
  padding: 24px;
  border-radius: 20px;
  text-align: center;
  background: #ffffff;
  border: 1px solid rgba(220, 229, 239, 0.95);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.benefit-stat-card span {
  margin: 0 auto 14px;
}

.benefit-stat-card strong {
  display: block;
  color: var(--club-green);
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1;
  font-weight: 950;
}

.benefit-stat-card p {
  margin: 8px 0 0;
  color: var(--club-muted);
  font-size: 14px;
  font-weight: 800;
}

.benefits-cta {
  min-height: 132px;
  margin-top: 54px;
  padding: 28px clamp(24px, 5vw, 56px);
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: #ffffff;
  background:
    radial-gradient(circle at 7% 52%, rgba(255, 255, 255, 0.18), transparent 16%),
    radial-gradient(circle at 94% 32%, rgba(255, 255, 255, 0.18), transparent 20%),
    linear-gradient(135deg, #078238, #20a842 58%, #35bf55);
  box-shadow: 0 26px 64px rgba(19, 124, 52, 0.24);
}

.benefits-cta h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
  font-weight: 950;
}

.benefits-cta p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-weight: 750;
}

.benefits-cta a {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--club-green-dark);
  text-decoration: none;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(7, 20, 49, 0.14);
  white-space: nowrap;
  font-size: 15px;
  font-weight: 950;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.benefits-cta a:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.14);
}

@keyframes benefitsFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.contact-page {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 34px 0 72px;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}

.contact-badge {
  margin-bottom: 14px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.4px;
}

.contact-hero h1 {
  max-width: 680px;
  margin: 0;
  color: var(--club-blue);
  font-size: clamp(42px, 4.8vw, 72px);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: 0;
}

.contact-hero h1 strong {
  color: var(--club-green);
  font-style: normal;
}

.contact-hero p {
  max-width: 610px;
  margin: 18px 0 0;
  color: var(--club-muted);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 650;
}

.contact-hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-primary-btn,
.contact-secondary-btn,
.contact-submit-btn,
.contact-cta a {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 950;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.contact-primary-btn,
.contact-submit-btn {
  color: #ffffff;
  background: linear-gradient(135deg, #159d39, #26b848);
  box-shadow: 0 18px 36px rgba(32, 168, 66, 0.25);
  border: 0;
  cursor: pointer;
}

.contact-secondary-btn {
  color: var(--club-green-dark);
  background: #ffffff;
  border: 1.5px solid rgba(32, 168, 66, 0.52);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.contact-primary-btn:hover,
.contact-secondary-btn:hover,
.contact-submit-btn:hover,
.contact-cta a:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.14);
}

.contact-hero-visual {
  min-height: 430px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.14);
}

.contact-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  display: block;
}

.contact-info-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.contact-info-card {
  padding: 18px;
  border-radius: 20px;
  display: flex;
  gap: 13px;
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid rgba(220, 229, 239, 0.95);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 62px rgba(15, 23, 42, 0.11);
}

.contact-info-card > span,
.contact-benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--club-green-dark);
  background: rgba(32, 168, 66, 0.1);
  flex: 0 0 auto;
}

.contact-info-card svg,
.contact-socials svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.contact-info-card h3 {
  margin: 0;
  color: var(--club-blue);
  font-size: 16px;
  font-weight: 950;
}

.contact-info-card p {
  margin: 6px 0 0;
  color: var(--club-muted);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.contact-info-card strong,
.contact-info-card a {
  display: inline-block;
  margin-top: 8px;
  color: var(--club-green-dark);
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
}

.contact-info-card small {
  display: inline-block;
  margin-top: 8px;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--club-green-dark);
  background: rgba(32, 168, 66, 0.1);
  font-size: 11px;
  font-weight: 900;
}

.contact-main-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 22px;
  align-items: start;
}

.contact-form-card,
.contact-location-card,
.contact-help-card,
.contact-faq-intro,
.contact-accordion {
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(220, 229, 239, 0.95);
  box-shadow: 0 22px 58px rgba(15, 23, 42, 0.09);
}

.contact-form-card {
  padding: clamp(22px, 3vw, 34px);
}

.contact-form-card h2,
.contact-location-card h2,
.contact-help-card h2,
.contact-faq-intro h2 {
  margin: 0;
  color: var(--club-blue);
  font-size: clamp(28px, 2.5vw, 40px);
  line-height: 1.05;
  font-weight: 950;
}

.contact-form-card > p,
.contact-location-card p,
.contact-faq-intro p {
  margin: 10px 0 0;
  color: var(--club-muted);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 700;
}

.contact-form-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form-grid label {
  color: var(--club-blue);
  font-size: 13px;
  font-weight: 900;
}

.contact-form-grid input,
.contact-form-grid select,
.contact-form-grid textarea {
  width: 100%;
  margin-top: 8px;
  padding: 0 13px;
  border: 1px solid rgba(220, 229, 239, 0.95);
  border-radius: 13px;
  outline: none;
  color: var(--club-blue);
  background: #ffffff;
  font: inherit;
  font-size: 14px;
  font-weight: 750;
}

.contact-form-grid input,
.contact-form-grid select {
  height: 48px;
}

.contact-form-grid textarea {
  min-height: 132px;
  padding-top: 12px;
  resize: vertical;
}

.contact-message-field {
  grid-column: 1 / -1;
}

.contact-submit-btn {
  margin-top: 18px;
}

#contactFormMessage {
  display: block;
  min-height: 20px;
  margin-top: 12px;
  color: var(--club-green-dark);
  font-size: 13px;
  font-weight: 850;
}

#contactFormMessage.error {
  color: #d33b4e;
}

.contact-side-column {
  display: grid;
  gap: 18px;
}

.contact-location-card,
.contact-help-card {
  padding: 18px;
}

.contact-map-visual {
  height: 220px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.contact-map-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-map-pin {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 22px;
  height: 22px;
  border: 5px solid #ffffff;
  border-radius: 50%;
  background: var(--club-green);
  box-shadow: 0 0 0 12px rgba(32, 168, 66, 0.18), 0 14px 30px rgba(15, 23, 42, 0.16);
}

.contact-location-card h2 {
  margin-top: 16px;
  font-size: 25px;
}

.contact-location-card > a {
  min-height: 44px;
  margin-top: 14px;
  padding: 0 16px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  background: var(--club-green);
  font-size: 13px;
  font-weight: 950;
}

.contact-location-card h3 {
  margin: 18px 0 10px;
  color: var(--club-blue);
  font-size: 15px;
  font-weight: 950;
}

.contact-socials {
  display: flex;
  gap: 9px;
}

.contact-socials a {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--club-blue);
  background: #f3f7fb;
}

.contact-help-card h2 {
  font-size: 24px;
  margin-bottom: 14px;
}

.contact-help-card button {
  width: 100%;
  min-height: 68px;
  margin-top: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(220, 229, 239, 0.95);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  text-align: left;
  color: var(--club-blue);
  background: #ffffff;
  cursor: pointer;
  font: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.contact-help-card button:hover {
  transform: translateY(-2px);
  border-color: rgba(32, 168, 66, 0.28);
  background: rgba(32, 168, 66, 0.04);
}

.contact-help-card span {
  font-size: 15px;
  font-weight: 950;
}

.contact-help-card small {
  margin-top: 3px;
  color: var(--club-muted);
  font-size: 12px;
  font-weight: 750;
}

.contact-help-card i {
  grid-row: span 2;
  align-self: center;
  color: var(--club-green-dark);
  font-style: normal;
  font-weight: 950;
}

.contact-faq {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 22px;
}

.contact-faq-intro,
.contact-accordion {
  padding: 22px;
}

.contact-accordion-item {
  border-bottom: 1px solid rgba(220, 229, 239, 0.95);
}

.contact-accordion-item:last-child {
  border-bottom: 0;
}

.contact-accordion-item button {
  width: 100%;
  padding: 18px 0;
  border: 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--club-blue);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
  font-size: 17px;
  font-weight: 950;
}

.contact-accordion-item button span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(32, 168, 66, 0.1);
  position: relative;
  flex: 0 0 auto;
}

.contact-accordion-item button span::before,
.contact-accordion-item button span::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  top: 10px;
  height: 2px;
  background: var(--club-green-dark);
}

.contact-accordion-item button span::after {
  transform: rotate(90deg);
}

.contact-accordion-item.active button span::after {
  transform: rotate(0);
}

.contact-accordion-item div {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.26s ease;
}

.contact-accordion-item.active div {
  max-height: 180px;
}

.contact-accordion-item p {
  margin: 0 0 18px;
  color: var(--club-muted);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 700;
}

.contact-cta {
  min-height: 132px;
  margin-top: 42px;
  padding: 28px clamp(24px, 5vw, 56px);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: #ffffff;
  background:
    radial-gradient(circle at 7% 52%, rgba(255, 255, 255, 0.18), transparent 16%),
    radial-gradient(circle at 94% 32%, rgba(255, 255, 255, 0.18), transparent 20%),
    linear-gradient(135deg, #078238, #20a842 58%, #35bf55);
  box-shadow: 0 26px 64px rgba(19, 124, 52, 0.24);
}

.contact-cta h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
  font-weight: 950;
}

.contact-cta p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-weight: 750;
}

.contact-cta a {
  color: var(--club-green-dark);
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(7, 20, 49, 0.14);
  white-space: nowrap;
}

.about-page {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 34px 0 72px;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}

.about-badge {
  margin-bottom: 14px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.4px;
}

.about-hero h1 {
  max-width: 700px;
  margin: 0;
  color: var(--club-blue);
  font-size: clamp(42px, 4.8vw, 72px);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: 0;
}

.about-hero h1 strong {
  color: var(--club-green);
  font-style: normal;
}

.about-hero p {
  max-width: 610px;
  margin: 18px 0 0;
  color: var(--club-muted);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 650;
}

.about-mini-benefits {
  margin-top: 26px;
  display: grid;
  gap: 13px;
}

.about-mini-benefits article {
  padding: 14px;
  border-radius: 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid rgba(220, 229, 239, 0.95);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.about-mini-benefits span,
.about-timeline-item i,
.about-inspiration-stats svg {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--club-green-dark);
  background: rgba(32, 168, 66, 0.1);
  flex: 0 0 auto;
}

.about-mini-benefits svg,
.about-timeline-item svg,
.about-team-card svg,
.about-inspiration-stats svg,
.about-cta svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.about-mini-benefits h3 {
  margin: 0;
  color: var(--club-blue);
  font-size: 16px;
  font-weight: 950;
}

.about-mini-benefits p {
  margin: 5px 0 0;
  font-size: 13px;
}

.about-hero-visual {
  min-height: 430px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.14);
}

.about-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  display: block;
}

.about-history,
.about-team {
  margin-top: 60px;
}

.about-section-heading {
  max-width: 850px;
  margin-bottom: 28px;
}

.about-section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.about-section-heading span {
  color: var(--club-green-dark);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-section-heading h2 {
  margin: 10px 0 0;
  color: var(--club-blue);
  font-size: clamp(34px, 3.6vw, 56px);
  line-height: 1.04;
  font-weight: 950;
}

.about-section-heading p {
  margin: 14px auto 0;
  color: var(--club-muted);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 700;
}

.about-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.about-timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 74px;
  border-top: 2px dashed rgba(32, 168, 66, 0.32);
}

.about-timeline-item {
  padding: 22px;
  border-radius: 20px;
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(220, 229, 239, 0.95);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.about-timeline-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 62px rgba(15, 23, 42, 0.12);
}

.about-timeline-item > span {
  color: var(--club-green);
  font-size: 28px;
  font-weight: 950;
}

.about-timeline-item i {
  margin-top: 16px;
  font-style: normal;
}

.about-timeline-item h3 {
  margin: 18px 0 0;
  color: var(--club-blue);
  font-size: 19px;
  font-weight: 950;
}

.about-timeline-item p {
  margin: 9px 0 0;
  color: var(--club-muted);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.about-team-card {
  padding: 22px;
  border-radius: 22px;
  text-align: center;
  background: #ffffff;
  border: 1px solid rgba(220, 229, 239, 0.95);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.about-team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 62px rgba(15, 23, 42, 0.12);
}

.about-team-card img {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 16px;
  border: 5px solid rgba(32, 168, 66, 0.12);
}

.about-team-card h3 {
  margin: 0;
  color: var(--club-blue);
  font-size: 18px;
  font-weight: 950;
}

.about-team-card strong {
  display: block;
  margin-top: 5px;
  color: var(--club-green-dark);
  font-size: 12px;
  font-weight: 950;
}

.about-team-card p {
  margin: 10px 0 0;
  color: var(--club-muted);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
}

.about-team-card a {
  width: 38px;
  height: 38px;
  margin: 14px auto 0;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--club-blue);
  background: #f3f7fb;
}

.about-inspiration {
  margin-top: 60px;
  padding: clamp(24px, 4vw, 48px);
  border-radius: 30px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) 250px minmax(0, 1fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: center;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 18%, rgba(32, 168, 66, 0.24), transparent 26%),
    linear-gradient(135deg, #071431, #0c1d3f);
  box-shadow: 0 30px 76px rgba(7, 20, 49, 0.22);
}

.about-inspiration-copy span {
  color: #83e39b;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.about-inspiration-copy h2 {
  margin: 12px 0 0;
  font-size: clamp(32px, 3.3vw, 52px);
  line-height: 1.03;
  font-weight: 950;
}

.about-inspiration-copy p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.62;
  font-weight: 700;
}

.about-inspiration-stats {
  display: grid;
  gap: 14px;
}

.about-inspiration-stats article {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-inspiration-stats svg {
  margin-bottom: 10px;
  color: #83e39b;
  background: rgba(32, 168, 66, 0.18);
}

.about-inspiration-stats strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  font-weight: 950;
}

.about-inspiration-stats p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.about-inspiration-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, 170px);
  gap: 12px;
}

.about-inspiration-gallery img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  transition: transform 0.24s ease;
}

.about-inspiration-gallery img:hover {
  transform: translateY(-4px);
}

.about-gallery-main {
  grid-row: span 2;
}

.about-cta {
  min-height: 132px;
  margin-top: 42px;
  padding: 28px clamp(24px, 5vw, 56px);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: #ffffff;
  background:
    radial-gradient(circle at 7% 52%, rgba(255, 255, 255, 0.18), transparent 16%),
    radial-gradient(circle at 94% 32%, rgba(255, 255, 255, 0.18), transparent 20%),
    linear-gradient(135deg, #078238, #20a842 58%, #35bf55);
  box-shadow: 0 26px 64px rgba(19, 124, 52, 0.24);
}

.about-cta h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
  font-weight: 950;
}

.about-cta p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-weight: 750;
}

.about-cta a {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--club-green-dark);
  text-decoration: none;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(7, 20, 49, 0.14);
  white-space: nowrap;
  font-size: 15px;
  font-weight: 950;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.about-cta a:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.14);
}

@media (max-width: 1220px) {
  :root {
    --section-padding-x: 34px;
  }

  .header-container {
    gap: 18px;
    flex-wrap: wrap;
  }

  .club-nav {
    order: 3;
    width: 100%;
    flex-basis: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 6px 0 2px;
  }

  .club-nav a.active::after {
    bottom: -8px;
  }

  .club-header-actions {
    margin-left: auto;
  }

  .club-hero {
    grid-template-columns: 1fr;
    padding-left: var(--section-padding-x);
    padding-right: var(--section-padding-x);
    padding-top: 34px;
    padding-bottom: 58px;
  }

  .club-hero h1 {
    max-width: 760px;
    font-size: 58px;
  }

  .club-hero-content {
    padding-bottom: 34px;
  }

  .club-hero-visual {
    min-height: 620px;
  }

  .services-shell {
    grid-template-columns: 1fr;
  }

  .services-intro {
    position: static;
  }

  .featured-service-card {
    grid-column: auto;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .map-shell {
    grid-template-columns: 1fr;
  }

  .map-legend {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .testimonials-shell {
    grid-template-columns: minmax(250px, 0.58fr) minmax(0, 1.42fr);
    gap: 22px;
  }

  .testimonials-grid {
    gap: 14px;
  }

  .testimonial-card {
    padding: 18px;
  }

  .testimonial-card p {
    font-size: 13px;
  }

  .footer-shell {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-newsletter {
    grid-column: span 1;
  }

  .courts-layout,
  .volley-layout {
    grid-template-columns: minmax(0, 1fr) 330px;
  }

  .events-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
  }

  .courts-grid,
  .volley-grid,
  .events-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .courts-filters,
  .volley-filters,
  .events-filters {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  :root {
    --section-padding-x: 20px;
  }

  .header-container {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .club-logo-icon {
    width: 48px;
    height: 48px;
  }

  .club-whatsapp {
    min-height: 48px;
    padding: 0 18px;
    font-size: 14px;
  }

  .club-hero {
    min-height: auto;
  }

  .club-hero-content {
    padding: 0;
  }

  .club-hero h1 {
    max-width: 760px;
    font-size: 48px;
  }

  .club-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 620px;
  }

  .club-hero-visual {
    min-height: 700px;
    overflow: hidden;
  }

  .sport-panel {
    top: 4%;
    bottom: auto;
    height: 48%;
    border-radius: 24px;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.14);
  }

  .football-panel {
    left: 0;
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 93%, 0 100%);
  }

  .volley-panel {
    top: 43%;
    right: 0;
    width: 100%;
    clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
  }

  .male-player {
    height: 84%;
    left: 50%;
    bottom: 0;
  }

  .female-player {
    height: 82%;
    right: 8%;
    bottom: 0;
  }

  .club-services-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .featured-service-card {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .featured-service-visual {
    min-height: 300px;
  }

  .featured-service-visual img {
    min-height: 300px;
  }

  .club-map-section {
    padding-top: 68px;
    padding-bottom: 82px;
  }

  .map-legend {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .map-card {
    padding: 12px;
    border-radius: 26px;
  }

  .map-canvas {
    border-radius: 20px;
  }

  .map-hotspot {
    border-radius: 9px;
  }

  .map-hotspot::after {
    width: 10px;
    height: 10px;
    border-width: 3px;
    box-shadow: 0 0 0 5px rgba(32, 168, 66, 0.18);
  }

  .testimonials-shell,
  .review-submit-shell {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, minmax(210px, 1fr));
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
  }

  .testimonial-card {
    scroll-snap-align: start;
  }

  .testimonials-intro {
    position: static;
  }

  .review-form {
    grid-template-columns: 1fr;
  }

  .final-cta-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand,
  .footer-newsletter {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .courts-page {
    padding-left: var(--section-padding-x);
    padding-right: var(--section-padding-x);
  }

  .volley-page {
    padding-left: var(--section-padding-x);
    padding-right: var(--section-padding-x);
  }

  .events-page {
    padding-left: var(--section-padding-x);
    padding-right: var(--section-padding-x);
  }

  .benefits-page {
    padding-left: var(--section-padding-x);
    padding-right: var(--section-padding-x);
  }

  .contact-page {
    padding-left: var(--section-padding-x);
    padding-right: var(--section-padding-x);
  }

  .about-page {
    padding-left: var(--section-padding-x);
    padding-right: var(--section-padding-x);
  }

  .courts-hero,
  .courts-layout,
  .volley-hero,
  .volley-layout,
  .events-hero,
  .events-layout,
  .benefits-hero,
  .digital-benefit,
  .contact-hero,
  .contact-main-grid,
  .contact-faq,
  .about-hero,
  .about-inspiration {
    grid-template-columns: 1fr;
  }

  .courts-hero-visual,
  .volley-hero-visual,
  .events-hero-visual,
  .benefits-hero-visual,
  .contact-hero-visual,
  .about-hero-visual {
    min-height: 360px;
  }

  .quick-booking,
  .volley-quick-booking,
  .events-quick-quote {
    position: static;
  }

  .courts-benefits,
  .volley-benefits,
  .events-benefits,
  .benefits-grid,
  .benefits-stats-grid,
  .contact-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-timeline,
  .about-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-timeline::before {
    display: none;
  }

  .courts-cta,
  .volley-cta,
  .events-cta,
  .benefits-cta,
  .contact-cta,
  .about-cta {
    align-items: flex-start;
    flex-direction: column;
  }

}

@media (max-width: 560px) {
  .header-container {
    align-items: stretch;
  }

  .club-logo {
    font-size: 20px;
  }

  .club-whatsapp {
    width: 100%;
    max-width: 100%;
  }

  .club-header-actions {
    flex: 0 0 100%;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .club-login-link {
    width: 100%;
  }

  .club-nav {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .club-badge {
    max-width: 100%;
    flex-wrap: wrap;
  }

  .club-hero-content {
    padding: 0;
    width: 100%;
    overflow: hidden;
  }

  .club-hero h1 {
    font-size: 34px;
    line-height: 1.08;
    max-width: 100%;
  }

  .club-hero-content p {
    font-size: 16px;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .club-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
  }

  .btn-main,
  .btn-outline {
    width: 100%;
    min-width: 0;
  }

  .club-benefits {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 100%;
  }

  .club-hero-visual {
    min-height: 600px;
  }

  .sport-panel {
    height: 49%;
    border-radius: 20px;
  }

  .volley-panel {
    top: 42%;
  }

  .male-player {
    height: 85%;
    left: 51%;
    bottom: 0;
  }

  .female-player {
    height: 82%;
    right: 2%;
    bottom: 0;
  }

  .club-services-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .services-shell {
    gap: 24px;
  }

  .section-badge {
    max-width: 100%;
  }

  .services-intro h2 {
    font-size: 36px;
  }

  .services-intro p {
    font-size: 16px;
  }

  .featured-service-card {
    border-radius: 26px;
    padding: 22px;
  }

  .featured-service-card h3 {
    font-size: 31px;
  }

  .featured-service-card p {
    font-size: 15px;
  }

  .service-chips {
    gap: 8px;
  }

  .featured-service-btn {
    width: 100%;
    justify-content: center;
  }

  .featured-service-visual,
  .featured-service-visual img {
    min-height: 240px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 224px;
    padding: 22px;
  }

  .club-map-section {
    padding-top: 62px;
    padding-bottom: 74px;
  }

  .map-intro h2 {
    font-size: 35px;
  }

  .map-intro p {
    font-size: 16px;
  }

  .map-legend {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .legend-item {
    min-height: 72px;
  }

  .map-card {
    padding: 10px;
    border-radius: 22px;
  }

  .map-canvas {
    overflow-x: auto;
    aspect-ratio: auto;
  }

  .map-canvas > img,
  .map-hotspots {
    width: 720px;
    max-width: none;
  }

  .map-canvas > img {
    height: auto;
  }

  .map-hotspots {
    height: 405px;
  }

  .map-modal {
    align-items: end;
    padding: 14px;
  }

  .map-modal-panel {
    width: 100%;
    border-radius: 24px 24px 18px 18px;
    transform: translateY(24px);
  }

  .map-modal-panel a {
    width: 100%;
  }

  .booking-modal-panel {
    width: min(760px, calc(100vw - 28px));
    max-height: 90vh;
  }

  .booking-modal-grid {
    grid-template-columns: 1fr;
  }

  .booking-right {
    border-left: 0;
    border-top: 1px solid rgba(220, 229, 239, 0.95);
  }

  .booking-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-left,
  .booking-right {
    padding: 18px;
  }

  .booking-gallery,
  .booking-gallery img {
    min-height: 230px;
  }

  .booking-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .booking-thumb {
    height: 62px;
  }

  .booking-field-info h3,
  .booking-right h4 {
    font-size: 24px;
  }

  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .booking-date-control {
    grid-template-columns: 38px 1fr 38px;
  }

  .booking-date-control button {
    width: 38px;
    height: 38px;
  }

  .club-testimonials-section,
  .review-submit-section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .review-submit-section {
    padding-top: 0;
  }

  .testimonials-intro h2,
  .review-copy h2,
  .final-cta-card h2 {
    font-size: 34px;
  }

  .testimonial-card,
  .review-submit-shell {
    border-radius: 22px;
    padding: 20px;
  }

  .testimonial-card p {
    font-size: 16px;
  }

  .rating-options {
    justify-content: space-between;
  }

  .rating-options label {
    width: 100%;
  }

  .club-final-cta {
    padding-top: 12px;
    padding-bottom: 66px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    overflow: visible;
    padding-bottom: 0;
  }

  .final-cta-card {
    min-height: auto;
    border-radius: 26px;
    padding: 26px;
  }

  .final-cta-btn,
  .review-submit-btn {
    width: 100%;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 48px 0 34px;
  }

  .footer-brand,
  .footer-newsletter {
    grid-column: auto;
  }

  .footer-bottom {
    width: 100%;
  }

  .courts-page {
    padding-top: 28px;
    padding-bottom: 56px;
  }

  .volley-page {
    padding-top: 28px;
    padding-bottom: 56px;
  }

  .events-page {
    padding-top: 28px;
    padding-bottom: 56px;
  }

  .benefits-page {
    padding-top: 28px;
    padding-bottom: 56px;
  }

  .contact-page {
    padding-top: 28px;
    padding-bottom: 56px;
  }

  .about-page {
    padding-top: 28px;
    padding-bottom: 56px;
  }

  .courts-hero h1,
  .volley-hero h1,
  .events-hero h1,
  .benefits-hero h1,
  .contact-hero h1,
  .about-hero h1 {
    font-size: 36px;
  }

  .courts-hero-actions,
  .courts-primary-btn,
  .courts-secondary-btn,
  .courts-cta a,
  .volley-hero-actions,
  .volley-primary-btn,
  .volley-secondary-btn,
  .volley-cta a,
  .events-hero-actions,
  .events-primary-btn,
  .events-secondary-btn,
  .events-cta a,
  .digital-panel-btn,
  .benefits-cta a,
  .contact-hero-actions,
  .contact-primary-btn,
  .contact-secondary-btn,
  .contact-submit-btn,
  .contact-cta a,
  .about-cta a {
    width: 100%;
  }

  .courts-hero-visual,
  .volley-hero-visual,
  .events-hero-visual,
  .benefits-hero-visual,
  .contact-hero-visual,
  .about-hero-visual {
    min-height: 300px;
  }

  .benefits-hero-visual img,
  .contact-hero-visual img,
  .about-hero-visual img {
    min-height: 300px;
  }

  .court-hero-main,
  .volley-hero-main {
    left: 0;
    width: 76%;
  }

  .court-hero-top,
  .court-hero-bottom,
  .volley-hero-top,
  .volley-hero-bottom {
    width: 42%;
  }

  .courts-filters,
  .volley-filters,
  .events-filters {
    padding: 10px;
  }

  .courts-filter-tabs,
  .volley-filter-tabs,
  .events-filter-tabs {
    padding-bottom: 4px;
  }

  .courts-grid,
  .courts-benefits,
  .volley-grid,
  .volley-benefits,
  .events-grid,
  .events-benefits,
  .benefits-grid,
  .benefits-stats-grid,
  .digital-chips,
  .contact-info-grid,
  .contact-form-grid,
  .about-timeline,
  .about-team-grid,
  .about-inspiration-gallery {
    grid-template-columns: 1fr;
  }

  .about-inspiration-gallery {
    grid-template-rows: repeat(3, 190px);
  }

  .about-gallery-main {
    grid-row: auto;
  }

  .quick-selected,
  .volley-selected {
    grid-template-columns: 64px 1fr;
  }

  .quick-selected strong,
  .volley-selected strong {
    grid-column: 2;
  }

  .quick-hours,
  .volley-hours {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .courts-cta,
  .volley-cta,
  .events-cta,
  .benefits-cta,
  .contact-cta,
  .about-cta {
    border-radius: 18px;
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

.public-booking-page {
  background: #f6f9fc;
}

.public-booking-section {
  width: 100%;
  padding: 70px 20px 90px;
}

.public-booking-container {
  width: 100%;
  max-width: var(--container-width, 1380px);
  margin: 0 auto;
  padding: 0 70px;
}

.public-booking-head {
  max-width: 720px;
  margin-bottom: 26px;
}

.public-booking-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: #e9f8ee;
  color: #087a2f;
  font-weight: 800;
  font-size: 13px;
}

.public-booking-head h1 {
  margin: 18px 0 12px;
  color: #071638;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: 0;
}

.public-booking-head p,
.public-booking-note {
  color: #52627a;
  font-weight: 600;
  line-height: 1.7;
}

.public-booking-grid {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.public-booking-summary,
.public-booking-form,
.public-booking-success,
.public-booking-alert {
  background: #fff;
  border: 1px solid #dbe6f1;
  border-radius: 24px;
  box-shadow: 0 22px 60px rgba(7, 22, 56, 0.08);
}

.public-booking-summary,
.public-booking-form,
.public-booking-success {
  padding: 26px;
}

.public-booking-summary {
  position: sticky;
  top: 96px;
}

.public-booking-summary h2,
.public-booking-form h2,
.public-booking-success h2 {
  margin: 0 0 18px;
  color: #071638;
  font-size: 24px;
}

.public-booking-summary dl {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
}

.public-booking-summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #edf2f7;
}

.public-booking-summary dt {
  color: #60708a;
  font-weight: 700;
}

.public-booking-summary dd {
  margin: 0;
  color: #071638;
  font-weight: 900;
  text-align: right;
}

.public-booking-yape {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ecfff1, #f8fbff);
  border: 1px solid #cdebd7;
}

.public-booking-yape h3 {
  margin: 0 0 12px;
  color: #087a2f;
}

.public-booking-yape p {
  margin: 6px 0;
  color: #17233c;
}

.public-booking-yape img {
  display: block;
  width: 100%;
  max-width: 260px;
  margin-top: 14px;
  border-radius: 16px;
  border: 1px solid #dbe6f1;
}

.public-booking-qr-empty {
  margin-top: 14px;
  padding: 18px;
  border: 1px dashed #9fb1c6;
  border-radius: 16px;
  color: #52627a;
  font-weight: 700;
}

.public-booking-form {
  display: grid;
  gap: 16px;
}

.public-booking-form label {
  display: grid;
  gap: 8px;
  color: #071638;
  font-weight: 800;
}

.public-booking-form label span {
  color: #718096;
  font-weight: 700;
}

.public-booking-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid #d5e1ee;
  border-radius: 14px;
  padding: 0 15px;
  font: inherit;
  font-weight: 700;
  color: #071638;
  background: #fff;
}

.public-booking-form input[type="file"] {
  padding: 14px;
  min-height: auto;
}

.public-booking-submit {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #0b8f35, #28b84d);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(17, 160, 65, 0.24);
}

.public-booking-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(17, 160, 65, 0.3);
}

.public-booking-alert {
  padding: 18px 22px;
  margin-bottom: 22px;
}

.public-booking-alert p {
  margin: 0;
  font-weight: 800;
}

.public-booking-alert--error {
  background: #fff2f4;
  border-color: #ffc6d0;
  color: #a20f2b;
}

.public-booking-success {
  max-width: 720px;
}

.public-booking-success p {
  color: #52627a;
  font-weight: 700;
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .public-booking-container {
    padding: 0 34px;
  }

  .public-booking-grid {
    grid-template-columns: 1fr;
  }

  .public-booking-summary {
    position: static;
  }
}

@media (max-width: 768px) {
  .public-booking-section {
    padding: 46px 0 70px;
  }

  .public-booking-container {
    padding: 0 20px;
  }

  .public-booking-summary,
  .public-booking-form,
  .public-booking-success {
    padding: 20px;
    border-radius: 18px;
  }

  .public-booking-summary dl div {
    display: grid;
    gap: 4px;
  }

  .public-booking-summary dd {
    text-align: left;
  }

  .public-booking-submit {
    width: 100%;
  }
}
