:root {
  --bg: #02141d;
  --brand: #038bbf;
  --accent: #14b2a3;
  --text: #f2f8fb;
  --muted: #c8dce6;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  min-height: 100vh;
  font-family: Arial, sans-serif;
  color: var(--text);
  background:
    linear-gradient(rgba(2, 20, 29, 0.72), rgba(2, 20, 29, 0.72)),
    url('./assets/img/background.jpg') center/cover no-repeat fixed;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(3, 139, 191, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.logo {
  height: 46px;
  width: auto;
}

nav {
  display: flex;
  gap: 12px;
  align-items: center;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

main {
  max-width: 1020px;
  margin: 0 auto;
  padding: 24px 20px 40px;
}

.hero {
  min-height: 52vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: center;
}

.hero-content {
  max-width: 650px;
}

.hero-shot-wrap {
  display: flex;
  justify-content: center;
}

.hero-shot {
  width: 100%;
  max-width: 300px;
  border-radius: 20px;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.32);
}

.eyebrow {
  margin: 0 0 8px;
  color: #9ee6ff;
  font-weight: 700;
  letter-spacing: 0.4px;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05;
}

.lead {
  margin: 0 0 20px;
  font-size: 18px;
  color: var(--muted);
  line-height: 1.45;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-block;
  border: 0;
  border-radius: 10px;
  padding: 12px 16px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-small {
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(20, 178, 163, 0.95);
}

.clubs {
  margin-top: 6px;
}

.section-head h2 {
  margin: 0 0 4px;
  font-size: 24px;
}

.section-head p {
  margin: 0 0 12px;
  color: var(--muted);
}

.club-carousel {
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  align-items: center;
  gap: 8px;
}

.carousel-btn {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  font-size: 24px;
  line-height: 1;
  color: #ffffff;
  background: rgba(20, 178, 163, 0.88);
  cursor: pointer;
}

.carousel-btn:hover {
  background: rgba(20, 178, 163, 1);
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 10px;
  transition: transform 0.35s ease;
}

.club-slide {
  position: relative;
  min-width: 100%;
  height: 185px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}

.club-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.club-slide-overlay {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.08));
  color: #ffffff;
  font-size: 14px;
}

.faq-home {
  margin-top: 28px;
}

.faq-home .section-head {
  margin-bottom: 14px;
}

.faq-page {
  max-width: 820px;
}

.faq-page h1 {
  margin-bottom: 14px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(3, 139, 191, 0.78), rgba(20, 178, 163, 0.64));
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 14px 14px;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
}

.faq-icon {
  font-size: 22px;
  font-weight: 400;
  transition: transform 0.25s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease, padding 0.28s ease;
  padding: 0 14px;
}

.faq-item.is-open .faq-answer {
  max-height: 180px;
  padding: 0 14px 14px;
}

.faq-answer p {
  margin: 0;
  color: #eefcff;
  line-height: 1.45;
}

.faq-answer a {
  color: #ffffff;
}

.faq-page details {
  margin: 0 0 10px;
  border-radius: 12px;
  padding: 12px 14px;
  background: linear-gradient(145deg, rgba(3, 139, 191, 0.78), rgba(20, 178, 163, 0.64));
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.faq-page summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-page details p {
  color: #eefcff;
}

.footer {
  padding: 18px 20px 26px;
  text-align: center;
  color: #cde5ef;
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.wa-float img {
  width: 34px;
  height: 34px;
  display: block;
}

@media (max-width: 880px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .hero-shot {
    max-width: 260px;
  }
  .club-carousel {
    grid-template-columns: 32px 1fr 32px;
    gap: 6px;
  }
  .carousel-btn {
    width: 32px;
    height: 32px;
    font-size: 20px;
  }
}
