@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Poppins:wght@300;400;500;600&display=swap');

:root {
  --primary: #e67e22;
  --dark: #000000;
  --light-bg: #f5f5f5;
  --text-dark: #333333;
  --header-height: 80px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fdfdfd;
  color: var(--text-dark);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

ul {
  list-style: none;
}

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

header {
  background-color: var(--dark);
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo img {
  width: 50px;
  height: auto;
}

.logo-text {
  font-size: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
  font-weight: 700;
  text-transform: uppercase;
}

nav ul {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  position: relative;
}

nav {
  position: relative;
}

nav a {
  font-weight: 300;
  display: inline-block;
  cursor: pointer;
  transition: color 0.3s ease;
}

.nav-indicator {
  position: absolute;
  bottom: -0.35rem;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.6), var(--primary));
  border-radius: 999px;
  transition: left 0.45s cubic-bezier(0.22, 1, 0.36, 1), width 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
  pointer-events: none;
  opacity: 0;
  transform-origin: left center;
}

nav a.active,
nav a:hover {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  padding: 0.35rem;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.menu-toggle:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 999px;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
  nav ul {
    position: fixed;
    top: calc(var(--header-height) + 10px);
    left: 0;
    right: 0;
    margin: 0 auto;
    width: min(420px, calc(100% - 32px));
    flex-direction: column;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 20px;
    padding: 1.7rem 1.3rem;
    gap: 0.9rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
    transform: translateY(-15px) scale(0.97);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    z-index: 1200;
  }

  nav ul.show {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-indicator {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  body.menu-open {
    overflow: hidden;
  }
}

main {
  padding-top: var(--header-height);
  flex: 1 0 auto;
  width: 100%;
}

.home-page main {
  padding-top: 0;
}

.home-page .hero {
  margin-top: calc(-1 * var(--header-height));
  padding-top: var(--header-height);
  min-height: calc(100vh + var(--header-height));
  background-position: center top;
}

.hero {
  width: 100%;
  min-height: 100vh;
  background: url('images/1.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
  z-index: 1;
  text-align: center;
  color: #ffffff;
  max-width: 700px;
  padding: 0 1rem;
}

.hero-content h1 {
  font-size: 3rem;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 2px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.hero-tagline {
  font-size: 1.2rem;
  letter-spacing: 0.2rem;
  margin-bottom: 0.4rem;
}

.hero-subtext {
  font-size: 0.95rem;
  margin-top: 0;
  margin-bottom: 1.8rem;
}

.hero-content a {
  display: inline-block;
  background-color: var(--primary);
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  transition: 0.3s;
}

.hero-content a:hover {
  background-color: #cf6812;
}

.section-padding {
  padding: 5rem 2rem;
}

.section-title {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
}

.section-lead {
  font-size: 1rem;
  color: #555555;
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

.class-cards,
.coaches-list,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.class-card,
.coach-card,
.event-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.class-card:hover,
.coach-card:hover,
.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.class-card img,
.event-card img,
.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.class-card-content,
.event-info {
  padding: 1.5rem;
  text-align: left;
}

.class-card-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  color: #333333;
  font-family: 'Montserrat', sans-serif;
}

.class-card-content p {
  font-size: 0.95rem;
  color: #666666;
  margin-bottom: 1rem;
}

.class-card-content a {
  background-color: var(--primary);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: 0.3s;
}

.class-card-content a:hover {
  background-color: #cf6812;
}

.club-section,
.schedule-section,
.gallery-section,
.contact-section,
.coaches-section {
  padding: 3rem 2rem 4.5rem;
}

.club-section,
.gallery-section {
  background-color: var(--light-bg);
}

.club-info-content,
.schedule-container {
  max-width: 1000px;
  margin: 0 auto;
  color: #444444;
  line-height: 1.7;
}

.club-info-content h3 {
  font-size: 1.4rem;
  margin: 1.5rem 0 0.5rem;
  color: #000000;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

.info-table,
.schedule-table,
.feature-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.info-table caption,
.schedule-table caption,
.feature-table caption {
  caption-side: top;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  color: var(--primary);
}

.info-table th,
.info-table td,
.schedule-table th,
.schedule-table td,
.feature-table th,
.feature-table td {
  border: 1px solid #dddddd;
  padding: 0.8rem;
  text-align: left;
  vertical-align: top;
}

.info-table thead,
.schedule-table thead,
.feature-table thead {
  background-color: #fefefe;
  font-family: 'Montserrat', sans-serif;
}

.info-table tbody tr:nth-child(odd),
.schedule-table tbody tr:nth-child(odd),
.feature-table tbody tr:nth-child(odd) {
  background-color: #fafafa;
}

.event-section {
  margin-top: 3rem;
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.events {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.highlight-box {
  background-color: #fff4e6;
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 8px;
  font-size: 0.95rem;
}

.info-pendaftaran-btn {
  display: inline-block;
  background-color: var(--primary);
  color: #ffffff;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  margin: 2rem 0;
  transition: 0.3s;
}

.info-pendaftaran-btn:hover {
  background-color: #cf6812;
}

.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.4s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.6) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  position: absolute;
  bottom: 10px;
  left: 15px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.contact-section {
  background: radial-gradient(circle at top, rgba(230, 126, 34, 0.15), transparent 45%),
    linear-gradient(135deg, #fff8f0 0%, #f0f7ff 55%, #ffffff 100%);
  min-height: calc(100vh - 150px);
  display: flex;
  align-items: center;
}


.contact-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  align-items: center;
  text-align: left;
}

.contact-info {
  flex: 1 1 420px;
  max-width: 640px;
}

.contact-info h2 {
  text-align: left;
}

.contact-cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.contact-card {
  position: relative;
  background: linear-gradient(135deg, rgba(230, 126, 34, 0.15), rgba(255, 255, 255, 0.95));
  padding: 1.9rem;
  border-radius: 20px;
  border: 1.5px solid rgba(230, 126, 34, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  animation: floatCard 7s ease-in-out infinite;
  isolation: isolate;
}

.contact-card:nth-child(2) {
  animation-delay: 0.8s;
}

.contact-card:nth-child(3) {
  animation-delay: 1.6s;
}

.contact-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.4), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
  pointer-events: none;
}

.contact-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 40px rgba(230, 126, 34, 0.25);
  animation-play-state: paused;
}

.contact-card:hover::after {
  opacity: 1;
}


.contact-card h3 {
  margin-bottom: 0.35rem;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.contact-card p {
  color: #3b3b3b;
  font-weight: 500;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.contact-icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), #f5a623);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 10px 25px rgba(230, 126, 34, 0.35);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}


.contact-form {
  flex: 1 1 360px;
  max-width: 520px;
  background: #ffffff;
  padding: 2.5rem 2.5rem 2rem;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  border: 1.5px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: visible;
  isolation: isolate;
}

.contact-form::before {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  background: rgba(230, 126, 34, 0.1);
  border-radius: 50%;
  top: -60px;
  right: -60px;
  z-index: 0;
  pointer-events: none;
}

.contact-form::after {
  content: '';
  position: absolute;
  width: 90px;
  height: 90px;
  background: rgba(230, 126, 34, 0.07);
  border-radius: 50%;
  bottom: -30px;
  left: -30px;
  z-index: 0;
  pointer-events: none;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
  z-index: 1;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: inherit;
  background-color: rgba(255, 255, 255, 0.9);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.15);
}

.contact-form button {
  background-color: var(--primary);
  color: #ffffff;
  border: none;
  padding: 0.95rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form button:hover {
  background-color: #cf6812;
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(230, 126, 34, 0.35);
}

@media (max-width: 1024px) {
  .contact-wrapper {
    gap: 2rem;
    padding: 0 1rem;
  }

  .contact-form,
  .contact-info {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .contact-section {
    min-height: auto;
    display: block;
  }

  .contact-form {
    width: 100%;
    padding: 2rem 1.75rem 1.75rem;
  }

  .contact-cards {
    grid-template-columns: minmax(100%, 1fr);
  }
}

@media (max-width: 520px) {
  .contact-section {
    padding: 2.5rem 1.25rem 3.5rem;
  }

  .contact-card {
    padding: 1.4rem;
    gap: 0.75rem;
  }

  .contact-icon {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }

  .contact-form {
    padding: 1.8rem 1.5rem 1.5rem;
  }
}

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

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

@keyframes pulseLight {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.35;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

.coaches-section {
  background-color: #ffffff;
  text-align: center;
}

.coach-featured {
  max-width: 850px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
  align-items: center;
}

.coach-featured img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  max-height: 420px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.coach-featured .coach-info {
  text-align: center;
}

.coach-featured .coach-info h3 {
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1d1d1d;
}

.coach-featured .coach-info p {
  font-size: 1rem;
  color: #666666;
  margin-top: 0.4rem;
}

.coach-portrait {
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) minmax(240px, 0.85fr);
  gap: 2rem;
  margin-top: 2.5rem;
  align-items: center;
}

.coach-portrait-image {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(13, 25, 38, 0.35);
  isolation: isolate;
}

.coach-portrait-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 1s ease;
}

.coach-portrait-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(9, 17, 26, 0.1), rgba(11, 26, 40, 0.35));
  mix-blend-mode: multiply;
}

.coach-portrait:hover .coach-portrait-image img {
  transform: scale(1.08);
}

.portrait-label {
  position: absolute;
  backdrop-filter: blur(10px);
  background: rgba(11, 26, 40, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 0.85rem 1.1rem;
  border-radius: 18px;
  font-size: 0.9rem;
  text-align: left;
  box-shadow: 0 15px 25px rgba(4, 11, 19, 0.35);
  animation: floatBadge 6s ease-in-out infinite;
  z-index: 1;
}

.portrait-label small {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
}

.portrait-label strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.portrait-label-left {
  left: 1.5rem;
  bottom: 1.5rem;
}

.portrait-label-center {
  top: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 1s;
}

.portrait-label-right {
  right: 1.2rem;
  bottom: 2.2rem;
  animation-delay: 2s;
}

.portrait-light {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 126, 34, 0.45), transparent 65%);
  mix-blend-mode: screen;
  filter: blur(2px);
  animation: pulseLight 8s ease-in-out infinite;
  z-index: 0;
}

.portrait-light-left {
  left: 3%;
  bottom: 15%;
}

.portrait-light-right {
  right: 2%;
  top: 18%;
  animation-delay: 2.5s;
}

.coach-portrait-info {
  text-align: left;
}

.coach-portrait-info .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.82rem;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.coach-portrait-info h3 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.coach-portrait-info p {
  color: #4d4d4d;
}

.coach-portrait-info ul {
  margin-top: 1rem;
  padding-left: 1.2rem;
  list-style: disc;
  color: #4d4d4d;
}

.coach-portrait-info li + li {
  margin-top: 0.4rem;
}

@media (max-width: 992px) {
  .coach-portrait {
    grid-template-columns: 1fr;
  }

  .coach-portrait-info {
    text-align: center;
  }

  .coach-portrait-info ul {
    text-align: left;
    margin-inline: auto;
    max-width: 420px;
  }
}

@media (max-width: 520px) {
  .portrait-label {
    font-size: 0.8rem;
    padding: 0.7rem 0.9rem;
  }

  .portrait-label-center {
    top: auto;
    bottom: 50%;
  }
}

.coach-note {
  max-width: 800px;
  margin: 2.5rem auto 0;
  font-size: 1rem;
}

.coach-trio {
  max-width: 1000px;
  margin: 3rem auto 0;
  padding: 2.5rem;
  border-radius: 28px;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1), transparent 60%),
    radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.15), transparent 40%),
    linear-gradient(135deg, #0f1d2b, #132c3b 55%, #143f4f);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(15, 30, 60, 0.45);
}

.coach-trio::before,
.coach-trio::after {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(0.5px);
  animation: auroraShift 9s infinite alternate;
}

.coach-trio::before {
  top: -80px;
  left: -60px;
}

.coach-trio::after {
  bottom: -90px;
  right: -50px;
  animation-delay: 1.8s;
}

.coach-trio-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.coach-trio-header h3 {
  font-size: 1.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.coach-trio-header p {
  color: rgba(255, 255, 255, 0.85);
}

.coach-trio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.trio-card {
  padding: 1.5rem;
  border-radius: 20px;
  background: rgba(13, 25, 38, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(4, 11, 19, 0.35);
  position: relative;
  overflow: hidden;
  animation: trioFloat 5.5s ease-in-out infinite;
}

.trio-card:nth-child(2) {
  animation-delay: 0.8s;
}

.trio-card:nth-child(3) {
  animation-delay: 1.4s;
}

.trio-card::before {
  content: attr(data-position);
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.trio-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(230, 126, 34, 0.25), transparent 70%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.trio-card:hover::after {
  opacity: 1;
}

.trio-card-body h4 {
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.trio-card-body p {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
}

.footer-certifications {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.footer-certifications p {
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.footer-certifications ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.footer-certifications li {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.footer-copy {
  letter-spacing: 0.8px;
}

footer {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--dark);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 300;
}

.coach-trio,
.trio-card {
  backdrop-filter: blur(6px);
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes auroraShift {
  0% {
    transform: scale(1) translate(0, 0);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2) translate(20px, -10px);
    opacity: 0.8;
  }
  100% {
    transform: scale(0.9) translate(-10px, 15px);
    opacity: 0.4;
  }
}

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

@media (max-width: 768px) {
  .coach-trio {
    padding: 2rem 1.5rem;
  }

  .coach-trio-header h3 {
    font-size: 1.4rem;
  }

  .footer-certifications ul {
    flex-direction: column;
  }
}
