/* Coaching Team Section */
.coaching-team-section {
  position: relative;
  padding: 6rem 0 3rem 0;
  background: linear-gradient(135deg, #003366 0%, #007bbf 50%, #4a90e2 100%);
  color: white;
  overflow: hidden;
  min-height: 100vh;
}

/* Background Elements */
.team-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  animation: floatCircle 12s ease-in-out infinite;
}

.bg-circle.circle-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.bg-circle.circle-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: -5%;
  animation-delay: 4s;
}

.bg-circle.circle-3 {
  width: 150px;
  height: 150px;
  top: 80%;
  left: 70%;
  animation-delay: 8s;
}

@keyframes floatCircle {
  0%,
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-30px) scale(1.1);
    opacity: 0.6;
  }
}

/* Floating Achievement Icons */
.floating-achievements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.achievement-icon {
  position: absolute;
  font-size: 2.5rem;
  animation: floatAchievement 8s ease-in-out infinite;
}

.achievement-icon.medal {
  top: 15%;
  left: 5%;
  animation-delay: 0s;
}

@keyframes floatAchievement {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.4;
  }
  25% {
    transform: translateY(-15px) rotate(5deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-25px) rotate(-5deg);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-10px) rotate(3deg);
    opacity: 0.6;
  }
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInDown 1s ease-out;
  position: relative;
  z-index: 2;
}

.section-title2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  background: linear-gradient(135deg, #ffd700, #ffa500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle2 {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: white;
  opacity: 1;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  padding: 0 1rem;
}

/* Language Selector */
.language-selector {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.language-selector button {
  margin-right: 10px;
  padding: 8px 15px;
  background: #007bbf;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.language-selector button:last-child {
  margin-right: 0;
}

.language-selector button:hover {
  background: #ffd700;
  color: #003366;
  transform: translateY(-2px);
}

/* Coaches Carousel Container */
.coaches-carousel-container {
  position: relative;
  margin-bottom: 4rem;
  z-index: 2;
}

.coaches-carousel {
  position: relative;
  height: 670px;
  overflow: hidden;
  border-radius: 25px;
}

/* Coach Slide */
.coach-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.coach-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

/* Slide coming from the left (when going backwards) */
.coach-slide.prev {
  transform: translateX(-100%);
  opacity: 0;
}

/* Slide coming from the right (when going forwards) */
.coach-slide.next {
  transform: translateX(100%);
  opacity: 0;
}

/* Active slide with proper animation */
.coach-slide.active.prev {
  transform: translateX(0);
  opacity: 1;
}

.coach-slide.active.next {
  transform: translateX(0);
  opacity: 1;
}

/* Coach Card */
.coach-card {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 3rem;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: 3rem;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  align-items: start;
  min-height: 600px;
}

.coach-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #ffd700, #ffa500, #ffd700);
}

/* Coach Image Container */
.coach-image-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 2rem;
}
.stat-heading {
  font-size: 35px;
  font-weight: 800;
}

.coach-image {
  width: 280px;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
}

.coach-image:hover {
  transform: scale(1.02);
}

.coach-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1.5vw, 0.85rem);
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  animation: badgePulse 3s ease-in-out infinite;
  white-space: nowrap;
}

.coach-badge.chinese-sports {
  background: linear-gradient(135deg, #dc143c, #ff6b6b);
}

.coach-badge.malaysian-team {
  background: linear-gradient(135deg, #ffd700, #ffa500);
  color: #003366;
}

.coach-badge.ssi-certified {
  background: linear-gradient(135deg, #4a90e2, #007bbf);
}

.coach-badge.senior-expert {
  background: linear-gradient(135deg, #8a2be2, #9370db);
}

.coach-badge.competition-specialist {
  background: linear-gradient(135deg, #ff4500, #ff6347);
}

@keyframes badgePulse {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
  }
  50% {
    transform: translateX(-50%) scale(1.05);
  }
}

/* Coach Card Scrollbar Styling */
.coach-card::-webkit-scrollbar {
  width: 6px;
}

.coach-card::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.coach-card::-webkit-scrollbar-thumb {
  background: rgba(255, 215, 0, 0.6);
  border-radius: 3px;
}

.coach-card::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 215, 0, 0.8);
}

/* Coach Info */
.coach-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-left: 1rem;
  padding-top: 1rem;
  max-height: 100%;
  overflow-y: visible;
}

.coach-name {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffd700;
  line-height: 1.2;
}

.coach-title {
  font-size: 1.3rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  font-style: italic;
  line-height: 1.3;
}

/* Coach Credentials */
.coach-credentials {
  margin-bottom: 2rem;
}

.credential-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.8rem 1.2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.credential-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}

.credential-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
  width: 30px;
  text-align: center;
  flex-shrink: 0;
}

.credential-icon::before {
  content: "✓";
  color: #ffd700;
}

.credential-item span {
  font-size: 1rem;
  line-height: 1.4;
}

.coach-description {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.9;
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 15px;
  border-left: 4px solid #ffd700;
}

/* Carousel Navigation */
.carousel-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  margin-top: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
}

.nav-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: clamp(40px, 8vw, 50px);
  height: clamp(40px, 8vw, 50px);
  border-radius: 50%;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: #ffd700;
  transform: scale(1.1);
}

.nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  gap: clamp(0.5rem, 1.5vw, 1rem);
  justify-content: center;
  flex-wrap: wrap;
}

.dot {
  width: clamp(8px, 2vw, 12px);
  height: clamp(8px, 2vw, 12px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.dot.active {
  background: #ffd700;
  transform: scale(1.3);
}

.dot:hover {
  background: rgba(255, 215, 0, 0.7);
}

/* Team Stats */
.team-stats {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(clamp(180px, 25vw, 200px), 1fr)
  );
  gap: clamp(1rem, 3vw, 2rem);
  margin: 3rem 0 2rem 0;
  animation: fadeInUp 1s ease-out 0.5s both;
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.283);
  padding: clamp(1.5rem, 3vw, 2rem) clamp(0.5rem, 2vw, 1rem);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.stat-number2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 0.5rem;
  display: block;
  line-height: 1;
}

.stat-label2 {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  opacity: 0.9;
  line-height: 1.3;
}

/* Team CTA */
.team-cta {
  text-align: center;
  margin-top: 1.5rem;
  animation: fadeInUp 1s ease-out 0.7s both;
  padding: 0 1rem;
  position: relative;
  z-index: 2;
}

.team-cta h3 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.3;
}

.team-cta-btn {
  background: linear-gradient(135deg, #ffd700, #ffa500);
  color: #003366;
  border: none;
  padding: clamp(1rem, 2.5vw, 1.2rem) clamp(2rem, 5vw, 3rem);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.team-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
  background: linear-gradient(135deg, #ffa500, #ffd700);
}

/* Entrance Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Extra Large Screens (1440px and up) */
@media (min-width: 1440px) {
  .container {
    max-width: 1400px;
  }

  .coach-card {
    padding: 4rem;
    gap: 4rem;
  }

  .coach-image {
    width: 320px;
    height: 400px;
  }
}

/* Large Screens (1200px to 1439px) */
@media (max-width: 1439px) and (min-width: 1200px) {
  .coach-image {
    width: 260px;
    height: 320px;
  }
}

/* Medium-Large Screens (968px to 1199px) */
@media (max-width: 1199px) and (min-width: 969px) {
  .coach-card {
    gap: 2rem;
    padding: 2.5rem;
  }

  .coach-image {
    width: 240px;
    height: 300px;
  }
}

/* Medium Screens (768px to 968px) */
@media (max-width: 968px) {
  .coaching-team-section {
    padding: 4rem 0;
  }

  .coach-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    padding: 2rem;
    height: auto;
    min-height: 500px;
  }

  .coaches-carousel {
    height: auto;
    min-height: 550px;
  }

  .coach-image {
    width: 220px;
    height: 280px;
    margin: 0 auto;
  }

  .coach-info {
    padding-left: 0;
  }

  .language-selector {
    top: 15px;
    right: 15px;
    padding: 8px;
  }

  .language-selector button {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}

/* Small-Medium Screens (640px to 767px) */
@media (max-width: 767px) {
  .coaching-team-section {
    padding: 3rem 0;
    min-height: auto;
  }

  .container {
    padding: 0 1rem;
  }

  .coaches-carousel {
    min-height: 750px;
    border-radius: 20px;
    position: relative;
  }

  .coach-card {
    padding: 1.5rem;
    gap: 1.5rem;
    min-height: 700px;
    overflow-y: auto;
    max-height: 750px;
  }

  .coach-image-container {
    padding-top: 0.5rem;
    width: 100%;
  }

  .coach-image {
    width: 100%;
    max-width: 300px;
    height: 340px;
    border-radius: 20px;
    margin: 0 auto;
  }

  .coach-badge {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    top: -8px;
  }

  .coach-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .coach-title {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
  }

  .credential-item {
    padding: 0.6rem 0.9rem;
    margin-bottom: 0.7rem;
    font-size: 0.85rem;
  }

  .credential-icon {
    font-size: 1.1rem;
    width: 22px;
    margin-right: 0.7rem;
  }

  .coach-description {
    padding: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .team-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 3rem 0;
  }

  .stat-item {
    padding: 1.2rem 0.8rem;
  }

  .carousel-navigation {
    position: absolute;
    top: 45%;
    left: -15px;
    right: -15px;
    transform: translateY(-50%);
    justify-content: space-between;
    padding: 0;
    margin-top: 0;
    z-index: 10;
    pointer-events: none;
  }

  .nav-btn {
    pointer-events: all;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    width: 45px;
    height: 45px;
  }

  .nav-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.08);
  }

  .carousel-dots {
    display: none;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .bg-circle.circle-1 {
    width: 200px;
    height: 200px;
  }

  .bg-circle.circle-2 {
    width: 150px;
    height: 150px;
  }

  .bg-circle.circle-3 {
    width: 100px;
    height: 100px;
  }
}

/* Small Screens (480px to 639px) */
@media (max-width: 639px) {
  .coaching-team-section {
    padding: 2.5rem 0;
    min-height: auto;
  }

  .container {
    padding: 0 0.8rem;
  }

  .coaches-carousel {
    min-height: 720px;
    border-radius: 18px;
    position: relative;
  }

  .coach-card {
    padding: 1.2rem;
    gap: 1.2rem;
    min-height: 680px;
    border-radius: 18px;
    overflow-y: auto;
    max-height: 720px;
  }

  .coach-image-container {
    padding-top: 0.5rem;
    width: 100%;
  }

  .coach-image {
    width: 100%;
    max-width: 280px;
    height: 320px;
    border-radius: 18px;
    margin: 0 auto;
  }

  .coach-badge {
    padding: 0.35rem 0.8rem;
    font-size: 0.75rem;
    top: -6px;
    border-radius: 15px;
  }

  .coach-name {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
    line-height: 1.2;
  }

  .coach-title {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .coach-credentials {
    margin-bottom: 1.2rem;
  }

  .credential-item {
    padding: 0.55rem 0.8rem;
    margin-bottom: 0.6rem;
    font-size: 0.8rem;
    border-radius: 12px;
  }

  .credential-icon {
    font-size: 1rem;
    width: 20px;
    margin-right: 0.6rem;
  }

  .coach-description {
    padding: 0.9rem;
    font-size: 0.85rem;
    line-height: 1.5;
    border-radius: 12px;
    border-left-width: 3px;
  }

  .team-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 2.5rem 0;
  }

  .stat-item {
    padding: 1rem 0.6rem;
    border-radius: 15px;
  }

  .carousel-navigation {
    position: absolute;
    top: 45%;
    left: -12px;
    right: -12px;
    transform: translateY(-50%);
    justify-content: space-between;
    padding: 0;
    margin-top: 0;
    z-index: 10;
    pointer-events: none;
  }

  .nav-btn {
    pointer-events: all;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.4);
    width: 42px;
    height: 42px;
  }

  .nav-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.08);
  }

  .carousel-dots {
    display: none;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .team-cta {
    margin-top: 2.5rem;
    padding: 0 0.5rem;
  }

  .language-selector {
    top: 10px;
    right: 10px;
    padding: 6px;
  }

  .language-selector button {
    padding: 5px 10px;
    font-size: 0.75rem;
    margin-right: 5px;
  }
}

/* Extra Small Screens (320px to 479px) */
@media (max-width: 479px) {
  .coaching-team-section {
    padding: 2rem 0;
    min-height: auto;
  }

  .container {
    padding: 0 0.6rem;
  }

  .section-header {
    margin-bottom: 1.5rem;
  }

  .section-title2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }

  .section-subtitle2 {
    font-size: 0.9rem;
    padding: 0 0.5rem;
  }

  .coaches-carousel {
    min-height: 700px;
    border-radius: 15px;
    position: relative;
  }

  .coach-card {
    padding: 1rem;
    gap: 1rem;
    min-height: 650px;
    border-radius: 15px;
    overflow-y: auto;
    max-height: 700px;
  }

  .coach-image-container {
    padding-top: 0.3rem;
    width: 100%;
  }

  .coach-image {
    width: 100%;
    max-width: 240px;
    height: 280px;
    border-radius: 15px;
    margin: 0 auto;
  }

  .coach-badge {
    padding: 0.3rem 0.7rem;
    font-size: 0.65rem;
    border-radius: 12px;
    top: -5px;
  }

  .coach-name {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    line-height: 1.2;
  }

  .coach-title {
    font-size: 0.85rem;
    margin-bottom: 0.9rem;
    line-height: 1.3;
  }

  .coach-credentials {
    margin-bottom: 1rem;
  }

  .credential-item {
    padding: 0.5rem 0.7rem;
    margin-bottom: 0.5rem;
    border-radius: 10px;
    font-size: 0.75rem;
  }

  .credential-icon {
    width: 18px;
    font-size: 0.9rem;
    margin-right: 0.5rem;
  }

  .coach-description {
    padding: 0.8rem;
    border-radius: 10px;
    border-left-width: 3px;
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .team-stats {
    margin: 2rem 0;
    gap: 0.8rem;
    grid-template-columns: 1fr;
  }

  .stat-item {
    padding: 0.8rem 0.5rem;
    border-radius: 12px;
  }

  .stat-number2 {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
  }

  .stat-label2 {
    font-size: 0.85rem;
  }

  .team-cta {
    margin-top: 2rem;
    padding: 0 0.5rem;
  }

  .team-cta h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }

  .team-cta-btn {
    padding: 0.9rem 2rem;
    font-size: 0.9rem;
    border-radius: 25px;
  }

  .carousel-navigation {
    position: absolute;
    top: 45%;
    left: -10px;
    right: -10px;
    transform: translateY(-50%);
    justify-content: space-between;
    padding: 0;
    margin-top: 0;
    z-index: 10;
    pointer-events: none;
  }

  .nav-btn {
    width: 38px;
    height: 38px;
    font-size: 1rem;
    pointer-events: all;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  }

  .nav-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.08);
  }

  .carousel-dots {
    display: none;
  }

  .dot {
    width: 8px;
    height: 8px;
  }

  .floating-achievements {
    display: none;
  }

  .bg-circle {
    display: none;
  }

  .language-selector {
    position: relative;
    top: auto;
    right: auto;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    padding: 8px;
    border-radius: 12px;
    text-align: center;
  }

  .language-selector button {
    padding: 6px 12px;
    font-size: 0.75rem;
    margin: 0 3px;
    border-radius: 8px;
  }
}

/* Focus states for accessibility */
.nav-btn:focus,
.dot:focus,
.team-cta-btn:focus,
.language-selector button:focus {
  outline: 2px solid #ffd700;
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .coach-card {
    border: 2px solid white;
  }

  .credential-item {
    border: 1px solid rgba(255, 255, 255, 0.5);
  }

  .coach-badge {
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .bg-circle,
  .achievement-icon,
  .coach-badge {
    animation: none;
  }

  .coach-slide {
    transition: opacity 0.3s ease;
  }

  .nav-btn:hover,
  .stat-item:hover,
  .team-cta-btn:hover {
    transform: none;
  }
}
