/* font-family */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* import files */
@import url("../css/auth.css");
@import url("../css/header_footer.css");

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #424242;
  overflow-x: hidden;
  background: #F6F6F6;
}

main {
  padding: 96px 0 0;
}

a,
a:hover {
  text-decoration: none;
  -webkit-transition: ease-in-out 0.5s;
  -moz-transition: ease-in-out 0.5s;
  -o-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-section {
  height: calc(100dvh - 0px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: 0;
  pointer-events: none;
}

/* .hero-section::after {
  content: '';
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  width: 100%;
  height: 780px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;

} */

/* ---- Hero sound toggle button ---- */
.hero-sound-btn {
  position: absolute;
  bottom: 28px;
  right: 28px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 10px 18px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.hero-sound-btn:hover {
  background: rgba(0, 0, 0, 0.65);
  transform: scale(1.05);
}

/* ---- Hero sound overlay (click-to-play-with-sound) ---- */
.hero-sound-overlay {
  position: absolute;
  inset: 0;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: rgba(0, 0, 0, 0.35); */
  cursor: pointer;
  transition: opacity 0.5s ease;
}

.hero-sound-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

.hero-sound-prompt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: soundPulse 2s ease-in-out infinite;
}

.hero-sound-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-sound-prompt span {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

@keyframes soundPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.06);
    opacity: 0.85;
  }
}

.hero-content {
  padding: 0 0 50px;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-weight: 700;
  font-size: 60px;
  color: #fff;
  line-height: normal;
  margin-bottom: 5px;
}

.accent {
  color: #C8FF00;
}

.hero-content p {
  font-weight: 600;
  font-size: 28px;
  color: #fff;
  margin-bottom: 30px;
  margin-top: 0;
}

/* ---------- Search card ---------- */
.search-card {
  position: relative;
  z-index: 20;
  background: #f5f6f4;
  border-radius: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  align-items: center;
  padding: 20px 20px 20px 0px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .45);
}

.search-card .field:first-child {
  padding-left: 20px;
}

.field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0px 40px;
  position: relative;
}

.field+.field {
  border-left: 1px solid rgba(0, 0, 0, .3);
}

.field .text {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.field label {
  font-size: 14px;
  font-weight: 500;
  color: #000;
}

.field .placeholder {
  background: transparent;
  opacity: 1;
  color: rgba(0, 0, 0, .6);
  font-size: 14px;
  font-weight: 400;
}

.field .form-control {
  border: none;
  background: transparent;
  font-size: 14px;
  outline: none;
  width: 100%;
  -moz-appearance: window;
  -webkit-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  padding: 0;

}

.field .form-control:focus {
  box-shadow: none;
}

.field select {
  -moz-appearance: window;
  -webkit-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  background: url(../images/down-arrow.png) no-repeat 100% center !important;

}

.field select,
.field select::placeholder,
.field .form-control::placeholder {
  color: rgba(0, 0, 0, .6);
  font-size: 14px;
  font-weight: 400;
}

/* ---------- Search Card Custom Select Dropdown ---------- */
.custom-select-wrapper {
  position: relative;
  width: 100%;
  cursor: pointer;
  user-select: none;
}

.custom-select-wrapper.is-open {
  z-index: 1060;
}

.custom-select-trigger {
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-right: 22px;
  background: url(../images/down-arrow.png) no-repeat 100% center;
  background-size: 12px auto;
  line-height: 1.4;
  outline: none;
  transition: color 0.2s ease;
}

.custom-select-trigger .current-value.has-value {
  color: #000000;
  font-weight: 500;
}

.custom-select-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: -15px;
  min-width: 230px;
  width: calc(100% + 30px);
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  border: 1px solid #eaeaea;
  overflow-y: auto;
  max-height: 280px;
  z-index: 1050;
  display: none;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-overflow-scrolling: touch;
}

/* Custom Scrollbar for Dropdown Menu */
.custom-select-menu::-webkit-scrollbar {
  width: 5px;
}

.custom-select-menu::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.custom-select-menu::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.custom-select-menu::-webkit-scrollbar-thumb:hover {
  background: #999;
}

/* Open UPWARDS in search-card so it never gets cut off by hero-section bottom overflow */
.search-card .custom-select-wrapper .custom-select-menu,
.custom-select-wrapper.dropup .custom-select-menu {
  top: auto;
  bottom: calc(100% + 14px);
  transform: translateY(8px);
}

.custom-select-wrapper.is-open .custom-select-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.search-card .custom-select-wrapper.is-open .custom-select-menu,
.custom-select-wrapper.is-open.dropup .custom-select-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.custom-select-option {
  padding: 13px 20px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #111111;
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
  line-height: 1.3;
}

.custom-select-option:last-child {
  border-bottom: none;
}

.custom-select-option:hover,
.custom-select-option.selected {
  background: #f7f8f9;
  color: #000000;
  font-weight: 500;
}



.black-btn {
  flex-shrink: 0;
  background: #0A0A0A;
  border: 1px solid #0A0A0A;
  color: #fff;
  border-radius: 10px;
  padding: 13px 32px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 8px;
  transition: all 0.5s ease-in-out;
  width: fit-content;
}

.black-btn:hover {
  background: transparent;
  color: #0A0A0A;
}

.coaches-section {
  padding: 30px 0;
  background: #fff;
  box-shadow: 0px 7px 24px 0px #0000001A;
  position: relative;
  margin-bottom: 30px;

}

.coaches-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 750px;
  margin: 0 auto;
  position: relative;

}

.coaches-bar-line-left {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translate(12%, -50%);
}

.coaches-bar-line-rgt {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-70%, -50%);
}

.coaches-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.coaches-item span {
  border: 0.5px solid #C4CAAC;
  width: 58px;
  height: 58px;
  min-width: 58px;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.coaches-item h2 {
  font-weight: 600;
  font-size: 20px;
  vertical-align: middle;
  color: #0A0A0A;
  margin: 0;
}

/* ============================================================
   SHARED: Section header (title + "See all" link)
   ============================================================ */
.pg-section {
  padding: 36px 0;
}

.pg-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.pg-title {
  font-weight: 700;
  font-size: 30px;
  color: #000;
  margin: 0;
}

.pg-see-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 16px;
  color: #525252;
  transition: color .2s;
}

.pg-see-all:hover {
  color: #95BE00;
}

.pg-see-all svg {
  transition: transform .2s;
}

.pg-see-all:hover svg {
  transform: translateX(3px);
}

/* ============================================================
   POPULAR GOALS & POPULAR SPORTS — 4-column card grid
   ============================================================ */
.pg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

/* Base card */
.pg-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
}

.pg-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: transform .35s ease;
}

.pg-card:hover .pg-card__img {
  transform: scale(1.05);
}

.pg-card--sport {
  position: relative;
}

.pg-card--sport::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 133px;
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0.918269) 40.87%, rgba(0, 0, 0, 0) 100%);
  width: 100%;
  border-radius: 12px;

}

/* Goals overlay — full dark gradient from bottom */
.pg-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.65) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 15px;
  gap: 8px;
}




/* Icon badge */
.pg-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  background: #00000066;
  backdrop-filter: blur(14px);
  border: 1px solid #FFFFFF33;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Card text */
.pg-card__label {
  font-weight: 600;
  font-size: 16px;
  color: #fff;

  margin: 0;
}

.pg-card__sub {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  margin: 2px 0 0;
}

/* ============================================================
   MEET THE COACH SERIES
   ============================================================ */
.cs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}

/* Base coach card */
.cs-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
}

.cs-card__img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.cs-card:hover .cs-card__img {
  transform: scale(1.04);
}

/* Featured large card */
.cs-card--featured .cs-card__img {
  height: auto;
  aspect-ratio: 3 / 2;
}

/* Small cards 2×2 grid */
.cs-small-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  aspect-ratio: 3 / 2;
}

.cs-card--small .cs-card__img {
  height: 100%;
}

/* Shared gradient overlay */
.cs-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.72) 100%);
  pointer-events: none;
}

/* Play button */
.cs-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 52px;
  height: 52px;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: background .2s;
}

.cs-card:hover .cs-card__play {
  background: rgba(255, 255, 255, 0.35);
}

.cs-card__play--sm {
  width: 37px;
  height: 37px;
}

/* Info block (bottom-left) */
.cs-card__info {
  position: absolute;
  bottom: 8px;
  left: 12px;
  z-index: 2;
}

.cs-card__name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 1px;
}

.cs-card__role {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

/* Duration badge (bottom-right) */
.cs-card__duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 2;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: #0A0A0AB2;
  border: 1px solid #FFFFFF30;
  padding: 3px 10px;
  border-radius: 4px;
}

/* ============================================================
   FEATURED COACHES SECTION
   ============================================================ */
.fc-section {
  padding: 60px 0 40px;
}

.fc-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: flex-start;
}

/* Left intro */
.fc-eyebrow {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  color: #95BE00;
  display: block;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.fc-heading {
  color: #0A0A0A;
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 12px;
}

.fc-accent {
  color: #95BE00;
}

.fc-desc {
  font-weight: 400;
  font-size: 15px;
  color: #525252;
  margin-bottom: 20px;
}


/* Slider wrap */
.fc-slider-wrap {
  overflow: hidden;
  position: relative;
  padding-right: 8px;
}

/* Individual coach card */
.fc-card {
  border-radius: 12px;
  background: #FFFFFF;
  box-shadow: 0px 7px 14px 0px #0000001A;
  margin: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: box-shadow .25s;
}

.fc-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
}

.fc-card__dist {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #C8FF00;
  color: #0A0A0A;

  font-weight: 600;
  font-size: 12px;
  padding: 3px 9px;
  border-radius: 4px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
}

.fc-card__fav {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  padding: 0;
  transition: transform .2s;
}

.fc-card__fav:hover {
  transform: scale(1.15);
}

.fc-card__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 12px;
  transition: transform .35s ease;
}

.fc-card__img:hover {
  transform: scale(1.04);
}

.fc-card__body {
  padding: 8px 12px 12px;
}

.fc-card__name {
  color: #0A0A0A;
  font-weight: 600;
  font-size: 16px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.fc-card__verified {
  display: inline-flex;
  align-items: center;
}

.fc-card__role {
  font-size: 14px;
  color: rgba(0, 0, 0, .4);
  margin: 0 0 6px;
  font-weight: 500;
}

.fc-card__rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 6px;
}

.fc-stars {
  font-size: 11px;
  color: #F5A623;
  letter-spacing: 1px;
}

.fc-rcount {
  font-weight: 500;
  font-size: 14px;
  color: #0A0A0A;
}

.fc-rcount b {
  font-weight: 500;
  color: rgb(82 82 82 / 60%);

}

.fc-card__loc {
  font-size: 14px;
  color: #0A0A0A;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
}

/* Owl nav buttons for fc-carousel */
.fc-carousel.owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
}

.fc-carousel.owl-carousel .owl-nav button {
  width: 34px;
  height: 34px;
  background: #fff !important;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .12);
  border: 1px solid #eee !important;
  transition: box-shadow .2s;
}

.fc-carousel.owl-carousel .owl-nav button:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, .18);
}

.fc-carousel.owl-carousel .owl-prev {
  display: none !important;
  /* only right arrow shown like screenshot */
}

.fc-carousel.owl-carousel .owl-dots {
  margin-top: 18px;
  text-align: center;
}

.fc-carousel.owl-carousel .owl-dot span,
.tm-carousel.owl-carousel .owl-dot span {
  width: 7px;
  height: 7px;
  background: #D4D4D4;
  border-radius: 50%;
  display: block;
  margin: 0 5px;
  transition: background .2s, transform .2s;
}

.fc-carousel.owl-carousel .owl-dot.active span,
.tm-carousel.owl-carousel .owl-dot.active span {
  background: #95BE00;
  transform: scale(1.3);
}

/* ============================================================
   WHY SPONZA SECTION
   ============================================================ */
.ws-section {
  padding: 50px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ws-eyebrow {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 2px;
  display: block;
  color: #95BE00;
  text-transform: uppercase;
  margin-bottom: 16px;
  z-index: 1;
  position: relative;
}

.ws-heading {
  font-size: 40px;
  color: #0A0A0A;
  margin: 0 auto 20px;
  font-weight: 700;
  text-align: center;
  z-index: 1;
  position: relative;

}

.ws-desc {
  font-size: 14px;
  color: #525252;
  font-weight: 600;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Large faded "SP" background text */
.ws-bg-text {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  left: 50%;
  transform: translateX(-50%);
  font-size: 260px;
  font-weight: 900;
  color: #efefef8a;
  letter-spacing: -10px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.tm-section {
  padding: 60px 0;
}

.tm-section .owl-carousel .owl-stage-outer {
  padding: 7px;
}

.tm-heading {
  font-size: 32px;
  font-weight: 700;
  color: #0A0A0A;
  margin: 0 0 32px;
}

/* Testimonial card */
.tm-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0px 6px 14px 0px #0000001A;

  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
  box-sizing: border-box;
}

/* Quote icon row */
.tm-card__quote-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.tm-txt {}

.tm-card__stars {
  color: #F5A623;
  margin: 0 0 5px;
  line-height: normal;
}

.tm-card__quote {
  font-weight: 500;
  font-size: 15px;
  color: #000;
  margin: 0;
  flex: 1;
}

.tm-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid #F0F0F0;
  margin-top: auto;
}

.tm-card__avatar {
  width: 40px !important;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #F0F0F0;
}

.tm-card__name {
  font-size: 13px;
  font-weight: 700;
  color: #0A0A0A;
  margin: 0 0 2px;
}

.tm-card__role {
  font-size: 11px;
  color: #999;
  margin: 0;
}

.tm-carousel.owl-carousel .owl-stage {
  display: flex;
}

.tm-carousel.owl-carousel .owl-item {
  display: flex;
}

.tm-carousel.owl-carousel .owl-item>.tm-card {
  flex: 1;
}

.tm-carousel.owl-carousel .owl-dots {
  margin-top: 28px;
  text-align: center;
}

/* ---- Favourite heart button ---- */
.fc-card__fav.is-faved svg path {
  stroke: #E53935;
  fill: #E53935;
}

.fc-card__fav.is-faved {
  box-shadow: 0 2px 10px rgba(229, 57, 53, 0.25);
}

.fc-card__fav {
  transition: transform .2s, box-shadow .2s;
}



/* ============================================================
   BECOME A COACH SECTION
   ============================================================ */


.bc-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 30px;
  background: url(../images/home/coach-bg.png)no-repeat;
  width: 100%;
  background-position: top center;
  background-size: cover;
  border-radius: 30px;
  backdrop-filter: blur(94px);
  box-shadow: 0px 12px 34px 0px #00000026;
  padding: 50px 66px;

}


.bc-heading {
  font-weight: 700;
  font-size: 35px;
  color: #fff;
  margin-bottom: 6px;

}

.bc-accent {
  color: #C8FF00;
}

.bc-desc {
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 20px;
  color: #fff;
}

.grenish-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #C8FF00;
  border: 1px solid #C8FF00;
  font-size: 14px;
  padding: 12px 30px;
  border-radius: 10px;
  transition: background 0.3s ease, transform 0.2s ease;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  color: #0A0A0A;
}

.grenish-btn:hover {
  background: transparent;
  color: #C8FF00;
  transform: translateY(-1px);
}

.grenish-btn:hover svg path {
  stroke: #C8FF00;
}


/* ============================================================
   TAKE SPONZA EVERYWHERE SECTION
   ============================================================ */
.te-section {
  padding: 113px 0 60px;
}

.te-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: #fff;
  backdrop-filter: blur(94px);
  box-shadow: 0px 12px 34px 0px #00000026;
  border-radius: 20px;
  padding: 0 50px 0 60px;
  height: auto;
}

.te-phone-wrap {
  flex-shrink: 0;
  margin: -53px 0 0;
  transition: transform .35s ease;

}

.scan-me {
  transition: transform .35s ease;
}

.te-phone-wrap:hover,
.scan-me:hover {
  transform: scale(1.04);
}

.te-phone-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.18));
}

.te-content {
  flex: 1;
  padding: 0 20px;
  position: relative;
}

.te-content::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  border-left: 1px solid #0000004D;
  height: 252px;
  margin: -60px 0px 0 0;
}

.te-heading {
  font-weight: 700;
  font-size: 38px;
  color: #0A0A0A;
  margin-bottom: 14px;
  position: relative;
}

.te-accent {
  color: #95BE00;
}

.te-desc {
  font-weight: 500;
  font-size: 17px;
  color: #0A0A0A;
  margin-bottom: 0;
}

.te-download {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.te-qr-wrap {
  text-align: center;
  flex-shrink: 0;
}



.te-badges {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.te-badge {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  transition: opacity 0.2s, transform 0.2s;
}

.te-badge:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* ============================================================
   Coach Profile Setup [ START ]
   ============================================================ */
.coach-flow {
  overflow: hidden;
  height: 100vh;
  padding: 0;
}

.coachprofile-setup-section {
  padding-top: 96px;
}

.coachprofile-setup-section .img_wrapper {
  height: calc(100vh - 73px);
}

.coachprofile-setup-section .bg-img {
  object-fit: cover;
  object-position: top;
}

.coach-img-data {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 30px;
  padding: 20px;
}

.procoach-txt {
  padding: 20px;
}

.procoach-txt h3 {
  font-weight: 700;
  font-size: 40px;
  color: #fff;
  text-align: left;
  margin-bottom: 10px;
}

.procoach-txt h3 span {
  color: #C8FF00;
}

.procoach-txt p {
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  margin-bottom: 15px;

}

.procoach-txt ul {
  display: flex;
  align-items: center;
  justify-content: space-between;

}

.procoach-txt ul li {
  display: flex;
  align-items: center;
  grid-gap: 10px;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  position: relative;

}

.procoach-txt ul li::before {
  content: '';
  position: absolute;
  top: 3px;
  right: -70px;
  border-right: 1px solid #FFFFFF33;
  height: 18px;
}

.procoach-txt ul li:last-child::before {
  border: 0;
}

/* ============================================================
   Coach Profile Setup [ END ]
   ============================================================ */


/* ============================================================
   Coach Profile Setup — RIGHT PANEL (CPS)
   All classes prefixed with "cps-" to avoid collision.
   ============================================================ */

/* ---------- Outer form wrapper ---------- */
.cps-form-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: calc(100dvh - 96px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 30px 30px 110px 30px;
  position: relative;
  box-sizing: border-box;
  animation: cardEntrance .9s cubic-bezier(.16, 1, .3, 1);
  transform-origin: center;
  will-change: transform, opacity;
}

/* ---------- White card panel ---------- */
.cps-card {
  width: 100%;
  max-width: 900px;
  background: #ffffff;
  border-radius: 15px;
  padding: 35px;
  box-shadow: 0px 4px 14px 0px #0000001A;
  margin-top: auto;
  margin-bottom: auto;
  flex-shrink: 0;
}

/* ---------- Step row: title + badge ---------- */
.cps-step-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.cps-title {
  font-weight: 700;
  font-size: 30px;
  color: #0A0A0A;
  margin-bottom: 8px;
}

.cps-subtitle {
  font-weight: 400;
  font-size: 15px;
  color: #525252;
  margin-bottom: 0;


}

.cps-step-badge {
  font-weight: 400;
  font-size: 14px;
  color: #525252;
  width: 93px;
  text-align: end;
  margin-right: 0;
}

.cps-step-badge span {
  font-size: 24px;
  color: #95BE00;
  vertical-align: middle;

}

/* ---------- Two-column row ---------- */
.cps-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

/* Full-width field (bio row) */
.cps-row:has(.cps-field--full) {
  grid-template-columns: 1fr;
}

/* ---------- Single field block ---------- */
.cps-card .form-group {
  position: relative;
  margin-bottom: 16px;
}

.coach-icon {
  position: absolute;
  top: 38px;
  right: 15px;
}

.error {
  font-size: 12px;
  color: red;
  display: none;
}

.phone-txt {
  font-weight: 500;
  font-size: 12px;
  color: #525252;
  margin: 7px 0 0;
}

/* ---------- Labels ---------- */
.cps-label {
  font-weight: 500;
  font-size: 14px;
  color: #525252;
  margin-bottom: 7px;
  display: block;
}

/* ---------- Text / tel inputs ---------- */
.cps-input {
  width: 100%;
  padding: 11px 14px;
  font-size: 14px;
  font-weight: 400;
  color: #0A0A0A;
  border: 1px solid #ECECEC;
  border-radius: 10px;
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.cps-input::placeholder {
  color: #b0b0b0;
  font-size: 13px;
}

.cps-input:focus {
  border-color: #95BE00;
  box-shadow: 0 0 0 3px rgba(149, 190, 0, 0.08);
}

/* ---------- Gender toggle pill buttons ---------- */
.cps-gender-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cps-gender-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 15px;
  color: #0A0A0A;
  border: 1px solid #CCCCCC;
  border-radius: 12px;
  cursor: pointer;
  background: #F8F8F8;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
  user-select: none;
  -webkit-user-select: none;
  font-weight: 600;
  font-size: 14px;
  max-width: 130px;
  min-width: 130px;

}

.cps-gender-btn svg {
  color: #a0a0a0;
  transition: color 0.2s ease;
}

.cps-gender-btn:hover {
  border-color: #95BE00;
  color: #0A0A0A;
}

.cps-gender-btn:hover svg {
  color: #0A0A0A;
}

/* Active / selected gender */
.cps-gender-btn--active {
  border-color: #95BE00;
  background: #95BE0014;
}

.cps-gender-btn--active svg {
  color: #95BE00;

}

/* -----Intel */
.iti__arrow {
  margin-left: 8px;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  border: 1px solid #0A0A0A;
  transform: rotate(45deg);
  border-left: transparent;
  border-top: transparent;
}

/* ---------- Custom select (year) ---------- */
.cps-select-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.cps-select {
  width: 100%;
  padding: 11px 36px 11px 14px;
  font-size: 13px;
  font-weight: 400;
  color: #525252;
  border: 1px solid #ECECEC;
  border-radius: 10px;
  background: #ffffff;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.cps-select:focus {
  border-color: #95BE00;
  box-shadow: 0 0 0 3px rgba(149, 190, 0, 0.08);
}

.cps-select-arrow {
  position: absolute;
  right: 12px;
  pointer-events: none;
}

/* ---------- Bio textarea ---------- */
.cps-textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 400;
  font-family: inherit;
  color: #0A0A0A;
  border: 1px solid #ECECEC;
  border-radius: 10px;
  background: #ffffff;
  outline: none;
  resize: vertical;
  min-height: 100px;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.cps-textarea::placeholder {
  color: #b0b0b0;
  font-size: 13px;
}

.cps-textarea:focus {
  border-color: #95BE00;
  box-shadow: 0 0 0 3px rgba(149, 190, 0, 0.08);
}

/* Bio character counter */
.cps-bio-count {
  text-align: right;
  font-size: 11px;
  color: rgb(82 82 82 / 50%);
  position: absolute;
  bottom: 15px;
  right: 15px;
}

/* ---------- Fixed Continue Bar ---------- */
.cps-continue-bar {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 58.33333333%;
  background: #ffffff;
  border-top: 1px solid #F0F0F0;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
  box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.06);
}

.cps-continue-bar .black-btn {
  margin: 0 0 0 auto;
}

/* Progress bar */
.coachprofile-setup-section .progress {
  --bs-progress-bar-bg: #95BE00;
  --bs-progress-height: 6px;
  --bs-progress-bg: #DADADA;
  position: fixed;
  right: 0;
  bottom: 81px;
  width: 58.33333333%;
  z-index: 10;
}

.couch-search-bar {}

.couch-search-bar .form-group {
  position: relative;
}

.couch-search-bar .form-control {
  background: #F6F6F6;
  border: 1px solid #ECECEC;
  padding: 10px 15px 10px 50px;
  border-radius: 10px;
}

.couch-icon {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.5;
  margin: 10px 0 0 15px;
}

.back-icon {
  display: flex;
  align-items: center;
  grid-gap: 10px;
  font-weight: 600;
  font-size: 16px;
  color: #000;

}

.coachprofile-setup-section .sports-bx {
  grid-template-columns: repeat(3, 1fr);
  /* max-height: 250px; */
  margin-bottom: 0;

}

.couch-type p {
  font-weight: 500;
  font-size: 14px;
  color: #525252;
  margin-bottom: 0;
}

.couch-type {
  max-width: 600px;
}

.couch-type .sports-bx {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
}

.couch-type .sport-item {
  width: 100%;
}

/* Coach Location Form */
.cps-location-group .location-target-icon {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cps-service-area-group .service-value {
  color: #95BE00;
  font-weight: 600;
  font-size: 14px;
}

.cps-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  height: 24px;
  /* enough to hold the thumb */
  margin: 15px 0 10px;
}

.cps-slider-track {
  position: absolute;
  width: 100%;
  height: 8px;
  background: #E5E5E5;
  border-radius: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.cps-slider-progress {
  position: absolute;
  height: 8px;
  background: #0A0A0A;
  border-radius: 10px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20%;
  z-index: 2;
}

.cps-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  background: transparent;
  outline: none;
  position: relative;
  z-index: 3;
  margin: 0;
}

.cps-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #0A0A0A;
  cursor: pointer;
  border: 4px solid #FFFFFF;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  margin-top: -8px;
  /* centering horizontally against track */
}

.cps-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 8px;
  background: transparent;
  border-radius: 10px;
}

.cps-range::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #0A0A0A;
  cursor: pointer;
  border: 4px solid #FFFFFF;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.cps-range::-moz-range-track {
  width: 100%;
  height: 8px;
  background: transparent;
  border-radius: 10px;
}

.range-labels {
  font-size: 11px;
  color: #8A8A8A;
  font-weight: 500;
  padding: 0 6px;
}

/* Availability Grid */
.availability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 15px;
}

.availability-card {
  background: #FFFFFF;
  border: 1px solid #CCCCCC;
  border-radius: 10px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.availability-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.day-name {
  color: #0A0A0A;
  font-weight: 600;
  font-size: 14px;
}

.availability-time-slots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.time-input-wrap {
  position: relative;
  flex: 1;
}

.time-input {
  width: 100%;
  height: auto;
  border: 1px solid #EAEAEA;
  border-radius: 8px;
  padding: 10px 35px 10px 15px;
  font-size: 13px;
  color: #0A0A0A;
  outline: none;
  font-weight: 500;
}

.time-input::placeholder {
  color: #525252;
}

.clock-icon {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  opacity: 0.5;
}

.time-separator {
  color: #0A0A0A;
  font-weight: 700;
}

/* Custom Switch */
.cps-switch {
  position: relative;
  display: inline-block;
  width: 37px;
  height: 21px;
  margin: 0;
}

.cps-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cps-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #D9D9D9;
  transition: .4s;
}

.cps-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 0;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  box-shadow: 0px 3.36px 3.36px 0px #00000040;
}

input:checked+.cps-slider {
  background-color: #95BE00;
}

input:checked+.cps-slider:before {
  transform: translateX(19px);
}

.cps-slider.round {
  border-radius: 24px;
}

.cps-slider.round:before {
  border-radius: 50%;
}

/* Photo Upload Area */
.upload-area,
.certificate-item {
  background: #F6F6F6;
  border: 1.56px solid #95BE00;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
  font-size: 16px;
  color: #525252;
}

.photo-preview-container {
  margin: 15px 0 0;
}

.upload-area:hover {
  background: #F1F5E6;
}

.upload-label {
  cursor: pointer;
}

.plus-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.upload-txt {
  font-weight: 500;
  font-size: 16px;
  color: #525252;
}

/* Tip Box */
.tip-box {
  background: #F3FCE9;
  border: 1px solid #E4EFD8;
  border-radius: 10px;
  padding: 13px 15px;
}

.tip-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: #EBFADB;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tip-content h5 {
  font-weight: 700;
  font-size: 14px;
  color: #0A0A0A;
}

.tip-content p {
  font-weight: 500;
  font-size: 13px;
  color: #0A0A0A;
  line-height: 1.5;
  margin-bottom: 10px;
}

/* Preview Area */
.photo-preview-item {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
}

.photo-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-remove-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  border: 1px solid #fff;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  font-weight: 600;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
}

.square-upload:not(.wide) {
  width: 120px;
  height: 120px;
  padding: 10px;
}

.square-upload.wide {
  width: 100%;
}

.photo-placeholder {
  width: 120px;
  height: 120px;
  background: #F8F9F9;
  border: 1px dashed #D1D1D1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.certification-bx ul li {
  display: flex;
  align-items: center;
  grid-gap: 10px;
  margin-bottom: 10px;
}

.certification-bx ul li h6 {
  border: 1px solid #CCCCCC;
  padding: 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  color: #0A0A0A;
  margin-bottom: 0;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.certification-bx ul li a {
  background: #FF5E5033;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.add-certi {
  margin: 20px auto 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 9px;
  font-weight: 600;
  font-size: 16px;
  color: #95BE00;
}

.add-certi:hover {
  color: #95BE00;
}

/* Certificate Modal */
.modal-bx {
  background: #ffffff4a;
  backdrop-filter: blur(14px);
}

.modal-bx .modal-content {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
}

.modal-bx .modal-header {
  padding: 0;
  border: 0;
}

.modal-bx .modal-header h5 {
  margin: 0 auto;
  color: #0A0A0A;
  font-weight: 700;
  font-size: 30px;
  text-align: center;
  margin-bottom: 25px;
}

.modal-bx .modal-body {
  padding: 0;
}

.certi-body label {
  font-weight: 500;
  font-size: 14px;
  display: block;
  margin-bottom: 6px;
  color: #525252;
}

.certi-body .form-control {
  border: 1px solid #ECECEC;
  border-radius: 10px;
  padding: 16px;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  color: #525252;
}

.certi-body .form-control::placeholder {
  color: rgb(82 82 82 / 70%);
}

.modal-bx .modal-footer {
  justify-content: center;
  margin: 0;
  border: 0;
  flex-wrap: nowrap;
  margin: 15px 0 0;
  grid-gap: 15px;
}

.modal-bx .modal-footer button,
.modal-bx .modal-footer a {
  min-width: 200px;
  margin: 0;
}

.cancel-btn {
  background: #E5E5E5;
  border: 1px solid #E5E5E5;
  padding: 13px 32px;
  display: block;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  color: #0A0A0A !important;
  text-align: center;
}

/*  */
.review-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-item {
  background: #F6F6F6;
  border-radius: 10px;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.review-item-content {
  flex: 1;
}

.review-item-title {
  font-weight: 600;
  font-size: 15px;
  color: #0A0A0A;
  margin-bottom: 6px;
}

.review-item-desc {
  font-weight: 400;
  font-size: 13px;
  color: #525252;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.review-gn {
  border: 1px solid #95BE00;
  color: #0A0A0A;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 9px;
  border-radius: 9px;
  background: #fff;
}

.review-tag {
  border: 1px solid #95BE00;
  background: #C8FF0033;
  font-weight: 600;
  font-size: 12px;
  padding: 6px 9px;
  border-radius: 9px;
  color: #0A0A0A;

}

.review-day {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1A1A1A;
  color: #C8FF00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}

.review-day.inactive {
  background: #ffffff;
  color: #A3A3A3;
  border: 1px solid #E5E5E5;
}

.review-desc-icon {
  display: flex;
  align-items: center;
  margin-right: 4px;
}

.review-edit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

/* ----------------------------------Featured Coaches [ START ] --------------------*/
.inrhero-section {
  background: url(../images/featured-coach/feature-bg.png)no-repeat;
  width: 100%;
  height: auto;
  padding: 200px 0 150px;
  background-position: 100% 0%;
}

.sup-title {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #C8FF00;
}

.inrhero-txt {
  z-index: 1;
  position: relative;
}

.inrhero-txt h1 {
  font-weight: 700;
  font-size: 60px;
  color: #fff;
  margin-bottom: 5px;
}

.inrhero-txt p {
  font-weight: 500;
  font-size: 20px;
  color: #fff;
}

/* ----------------------------------Featured Coaches [ END ]----------------------- */
/* ---------------------- */
/* ============================================================
   FEATURED COACHES PAGE (SCREENSHOT IMPLEMENTATION)
   ============================================================ */
.fcp-container {
  padding: 40px 0;
}

.fcp-header {
  margin-bottom: 30px;
}

.fcp-header h2 {
  font-size: 30px;
  font-weight: 700;
  color: #0A0A0A;
  margin: 0 0 5px 0;
}

.fcp-header p {
  font-size: 14px;
  color: #525252;
  margin: 0;
}

.fcp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.fcp-card {
  background: #FFFFFF;
  border-radius: 11px;
  display: flex;
  align-items: center;
  box-shadow: 0px 4px 14px 0px #0000001A;

}

.fcp-card-img {
  position: relative;
  border-radius: 11px;
  overflow: hidden;
  /* flex-shrink: 0; */
  height: 100%;
  max-width: 200px;
}

.fcp-card-img img {
  width: 100%;
  height: 100%;
  border-radius: 11px;
  object-fit: cover;
  object-position: top;
}

.fcp-fav {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
}

.fcp-card-info {
  flex-grow: 1;
  padding: 15px;
}

.fcp-name {
  font-size: 20px;
  font-weight: 700;
  color: #0A0A0A;
  margin: 0 0 2px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.fcp-name svg {
  width: 16px;
  height: 16px;
}

.fcp-role {
  font-size: 16px;
  color: #888;
  margin: 0 0 8px 0;
  font-weight: 500;
}

.fcp-rating {
  font-size: 15px;
  font-weight: 600;
  color: #0A0A0A;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

.fcp-rating span {
  color: #888;
  font-weight: 400;
}

.fcp-rating svg {
  color: #FFC107;
  width: 14px;
  height: 14px;
}

.fcp-meta {
  display: flex;
  gap: 15px;
  font-size: 15px;
  color: #525252;
  margin-bottom: 12px;
}

.fcp-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #0A0A0A;
  font-weight: 500;
  font-size: 15px;

}

.fcp-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fcp-price {
  font-size: 15px;
  color: #525252;
  font-weight: 500;
}

.fcp-price strong {
  color: #0A0A0A;
  font-size: 18px;
  font-weight: 700;
}

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

.btn-view,
.btn-msg {
  font-weight: 700;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}

.btn-view {
  background: #95BE00;
  color: #fff;
  border: 1px solid #95BE00;
}

.btn-view:hover {
  background: transparent;
  color: #95BE00;
}

.btn-msg {
  background: #fff;
  color: #0A0A0A;
  border: 1px solid #525252;
}

.btn-msg:hover {
  background: #0A0A0A;
  color: #fff;
}

.fcp-banner {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
  height: auto;
  background: url(../images/featured-coach/feature-banner.png)no-repeat;
  width: 100%;
  background-position: top center;
  background-size: cover;
  padding: 50px;
}

.fcp-banner-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nike-logo {
  width: fit-content;
  height: 58px;
  margin-bottom: 15px;
}

.fcp-banner h2 {
  font-weight: 700;
  font-size: 50px;
  vertical-align: middle;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 0;
}

.fcp-banner p {
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  vertical-align: middle;
  margin-bottom: 20px;
}

.btn-shop {
  background: #FFFFFF;
  color: #0A0A0A;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 30px;
  border-radius: 6px;
  width: fit-content;
  text-decoration: none;
  display: inline-block;
}

.btn-shop:hover {
  background: #eee;
  color: #0A0A0A;
}

.fcp-fav-checkbox {
  display: none;
}

.fcp-fav-checkbox:checked+svg {
  fill: #ff0000;
  stroke: #ff0000;
}

/* ----------------------Meet The Coaches [ START ] --------------*/
.meethero-section {
  background: url(../images/featured-coach/meet-bg.png)no-repeat;
  width: 100%;
  height: auto;
  padding: 200px 0 150px;
  position: relative;
  background-position: 100% 0%;
}

.meethero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(117.55deg, #000000 17.35%, rgba(0, 0, 0, 0) 71.76%);

}

.cs-small-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  aspect-ratio: 5 / 2;
}

/* ----------------------Meet the Coaches [ END ]-------------------*/
/* ---------------------Notification [ START ]------------- */
.noti-section {
  padding: 60px 0;
}

.notification-bx h3 {
  font-weight: 700;
  font-size: 28px;
  color: #0A0A0A;
  margin-bottom: 0;
}

.noti-flx {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.noti-flx a {
  font-weight: 600;
  font-size: 14px;
  color: #95BE00;
  display: block;
}

.no-item {
  margin-bottom: 15px;
}

.no-item span {
  min-width: 140px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(149, 190, 0, 0.2) 0%, rgba(149, 190, 0, 0) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.no-item h4 {
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  color: #0A0A0A;
  margin-bottom: 4px;
}

.no-item p {
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #525252;
  margin-bottom: 0;
}

.notification-bx ul li {
  border: 1px solid #CCCCCC;
  background: #F6F6F6;
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 15px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  cursor: pointer;
}

.notification-bx ul li.unread {
  background: #fff;
}

.noti-lft {
  display: flex;
  align-items: center;
  grid-gap: 8px;
}

.noti-lft span {
  background: linear-gradient(180deg, rgba(200, 255, 0, 0.2) -3%, rgba(200, 255, 0, 0) 101%);
  min-width: 38px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.noti-txt h5 {
  font-weight: 600;
  font-size: 15px;
  color: #0A0A0A;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.noti-txt p {
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: #525252;
  margin-bottom: 0;
}

.notification-bx ul li h6 {
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.5px;
  color: rgb(82 82 82 / 40%);
  margin-bottom: 0;

}

/* ---------------------Notification [ END ] ----------------- */
/* =============acconut profile [start]===================== */
.Ac_profile_sec .cps-card {
  max-width: none;
}

.profile_wrapper {
  display: grid;
  grid-template-columns: 262px 1fr;
  gap: 40px;
}

.ProfilE_SidebAr {
  border-right: 1px solid #00000033;
  height: 100%;
}

.ProfilE_SidebAr ul li a {
  font-weight: 400;
  font-size: 16px;
  color: #525252;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  margin-bottom: 8px;
}

.ProfilE_SidebAr ul li a.active {
  border-right: 2px solid #95BE00;
  color: #0A0A0A;
}

.ProfilE_SidebAr ul li a.active svg path {
  stroke: #0A0A0A;
}

.ProfilE_SidebAr ul li a:hover {
  background: rgba(200, 255, 0, 0.10);
  color: #0A0A0A;
}

.ProfilE_SidebAr ul li a:hover svg path {
  stroke: #95BE00;
}

.ProfilE_SidebAr ul li a.delete-account {
  color: #FF5E50;
}


.profile-info label {
  display: flex;
  align-items: center;
  gap: 25px;
}

.profile-info .upload-profile {
  width: 100px;
  height: 100px;
  margin: 0;
}

.upload-title {
  font-weight: 600;
  font-size: 18px;
  color: #525252;
  margin-bottom: 3px;
}

.upload-subtitle {
  font-weight: 500;
  font-size: 16px;
  color: #95BE00;
  margin-bottom: 0;
  cursor: pointer;
}

.Ac_profile_sec .lG_BTN .auth-btn {
  max-width: 238px;
}

.PaddingPx {
  padding: 150px 0 60px;
}

.Ac_profile_sec .cps-subtitle {
  margin-bottom: 25px;
}

.modal_md {
  max-width: 590px;
}

/* =============acconut profile [end]===================== */

/* ===========menu coach profile [start] ========== */
.review-item.disabled {
  opacity: 0.5;
}

.danger_item {
  border: 1.5px solid #FF5E50;
}

.review-tagNO {
  background: #C8FF0033;

}

.manageCoachProfile_sec .Premium-Activated {
  backdrop-filter: none;
  z-index: 2;
  background: #f6f6f6;
  height: calc(100vh - 96px);
  overflow-y: auto;
  padding: 20px 0;
}

.manageCoachProfile_sec .Premium-Activated .modal-dialog-centered {
  min-height: calc(100% - 0.75rem * 2);
  padding: 12px;
}

.manageCoachProfile .procoach-txt .HR_LINe {
  display: inline-block;
  width: 70px;
  height: 2px;
  background-color: #C8FF00;
  border-radius: 90px;
  margin: 0 0 12px;
}

.manageCoachProfile .RIGhT_content .cps-form-section {
  padding-bottom: 20px;
}

.manageCoachProfile .procoach-txt {
  width: 100%;
  margin-top: auto;
  margin-bottom: 0;
}

.manageCoachProfile .procoach-txt .deC {
  font-weight: 500;
  font-size: 18px;
}

.manageCoachProfile .coach-img-data {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  z-index: 2;
}

.manageCoachProfile .procoach-txt .procoach-list1 {
  display: flex;
  align-items: start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
}

.manageCoachProfile .procoach-txt .procoach-list1 li::before {
  display: none;
}

.manageCoachProfile .procoach-txt .procoach-list1 li {
  font-weight: 600;
  font-size: 18px;
}

.manageCoachProfile .procoach-txt .procoach-list2 {
  margin-top: 20px;
  gap: 8px;
  align-items: flex-start;
}

.manageCoachProfile .procoach-txt .procoach-list2 li {
  flex-direction: column;
  text-align: center;
  padding: 0 8px;
}

.manageCoachProfile .procoach-txt .procoach-list2 li h6 {
  font-weight: 600;
  font-size: 14px;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.manageCoachProfile .procoach-txt .procoach-list2 li p {
  font-weight: 400;
  font-size: 11px;
  color: #FFFFFF;
  opacity: 0.7;
}

.manageCoachProfile .procoach-txt .procoach-list2 li::before {
  height: 100%;
  right: 0;
  top: 0;
}

.fieldBox {
  position: relative;
}

.fieldBox .input_iCOn {
  position: absolute;
  left: 12px;
  bottom: 10px;
  border-right: 1px solid #00000033;
  padding-right: 4px;
}

.fieldBox input {
  padding-left: 46px;
}

.GR_TXT {
  color: #C8FF00;
}

/* Premium Active Sidebar Layout Styles */
.manageCoachProfile .premium-sidebar-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}

.manageCoachProfile .premium-sidebar-container .coach-img-data {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  transform: none;
  padding: 40px 30px;
}

.manageCoachProfile .premium-sidebar-container .procoach-txt {
  margin-top: auto;
  margin-bottom: auto;
}

.premium-card-main {
  background: rgba(22, 22, 22, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 35px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}


/* .premium-card-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  position: relative;
  padding: 35px 30px;
  border-radius: 24px;

  background: linear-gradient(154.18deg,
      rgba(49, 49, 49, 0.6) -14.5%,
      rgba(6, 5, 6, 0.6) 82.25%);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.premium-card-main::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;

  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.3) 11.12%,
      rgba(166, 165, 165, 0.06) 41.14%,
      rgba(40, 40, 40, 0.3) 85.98%);


  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
} */

.premium-tag-small {
  color: #C8FF00;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 10%;
  margin-bottom: 20px;
  display: block;
}

.premium-title-large {
  color: #ffffff;
  font-size: 49px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 20%;
  margin: 0 0 12px 0;
}

.premium-underline {
  width: 70px;
  height: 3px;
  background-color: #C8FF00;
  border-radius: 2px;
  margin-bottom: 20px;
}

.premium-desc-text {
  color: #ffffff;
  font-size: 14px;
  margin: 0;
  font-weight: 400;
}

.premium-vertical-divider {
  width: 1px;
  height: 280px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 25px;
  flex-shrink: 0;
}

.premium-card-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 160px;
  flex-shrink: 0;
}

.premium-check-circle {
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 30, 30, 0.8) 0%, rgba(15, 15, 15, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 4px 12px rgba(0, 0, 0, 0.4), 0 8px 16px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.premium-check-circle::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.premium-active-status {
  color: #C8FF00;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 16%;
  margin-top: 20px;
  text-align: center;
}

.premium-help-card {
  background: rgba(22, 22, 22, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.premium-help-card:hover {
  background: rgba(30, 30, 30, 0.75);
  border-color: rgba(200, 255, 0, 0.3);
  transform: translateY(-2px);
}

.help-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  background: rgba(255, 255, 255, 0.02);
  flex-shrink: 0;
}

.help-card-content {
  flex: 1;
}

.help-card-title {
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 3px 0;
}

.procoach-txt .help-card-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  margin: 0;
  display: flex;
  align-items: center;
  font-weight: 400;
  margin-bottom: 0;
}

.help-card-subtitle .arrow-icon {
  color: #C8FF00;
  margin-left: 6px;
  font-size: 15px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.premium-help-card:hover .help-card-subtitle .arrow-icon {
  transform: translateX(4px);
}

.manageCoachProfile .left_content .img_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===========menu coach profile [End] ========== */

/* ==================Explore Goals [start] ============================ */
.top-banner-sec {
  background: url("../images/explor/goal-banner.png") no-repeat;
  width: 100%;
  height: auto;
  padding: 200px 0 78px;
  background-position: 100% 0%;
}

.Sports-banner {
  background: url("../images/explor/sports-banner.png") no-repeat;
}

/* ==================Explore Goals [End] ============================ */
/* ==================Training Preference [start] ============================ */
.training-preference-sec {
  padding: 60px 0;
}

/* ==================Training Preference [End] ============================ */
.tr-sports-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 30px;
}



.training-preference-sec .sport-item {
  border: 2px solid transparent;
  box-shadow: 0px 4px 14px 0px #0000001A;
  gap: 15px;
  flex-direction: column;

}

.training-preference-sec .sport-check {
  position: absolute;
  right: 10px;
}

.training-preference-sec .sport-name {
  text-align: center;
}

.training-preference-sec .sport-item:hover .sport-name,
.training-preference-sec .sport-item.selected .sport-name {
  color: #525252;

}

/* ============================================================
   CHAT / CONVERSATIONS PAGE
   ============================================================ */
body.message-page {
  overflow: hidden !important;
  height: 100vh !important;
}

body.message-page .site-footer {
  display: none !important;
}

body.message-page main {
  height: 100vh !important;
  padding-top: 95px !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
}

.chat-container {
  display: flex;
  height: 100%;
  width: 100%;
  background: #ffffff;
  overflow: hidden;
}

/* Sidebar Styling */
.chat-sidebar {
  width: 350px;
  flex-shrink: 0;
  border-right: 1px solid #EDEDED;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
}

.chat-role-tabs {
  display: flex;
  background: #ffffff;
  border: 1px solid #EDEDED;
  border-radius: 12px;
  margin: 20px 20px 0 20px;
  padding: 6px;
}

.chat-role-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: none;
  border-radius: 8px;
  padding: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #9C9C9C;
  cursor: pointer;
  transition: all 0.3s ease;
}

.chat-role-tab.active {
  background: #0A0A0A;
  color: #ffffff;
}

.chat-role-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F3F3F3;
  color: #9C9C9C;
  font-size: 11px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.chat-role-badge.active-badge {
  background: #C8FF00;
  color: #0A0A0A;
}

.chat-search-wrapper {
  padding: 20px;
  background: #FFFFFF;
  border-bottom: 1px solid #DDDDDD;
}

.chat-search-box {
  display: flex;
  align-items: center;
  background: #F6F6F6;
  border: 1px solid #ECECEC;
  border-radius: 10px;
  padding: 10px 18px;
  gap: 10px;
}

.chat-search-box .search-icon {
  flex-shrink: 0;
}

.chat-search-box input {
  border: none;
  background: transparent;
  outline: none;
  flex: 1;
  font-size: 14px;
  color: #424242;
}

.chat-contacts-list {
  flex: 1;
  overflow-y: auto;
}

/* Scrollbar customizations for chat elements */
.chat-contacts-list::-webkit-scrollbar,
.chat-messages-area::-webkit-scrollbar {
  width: 6px;
}

.chat-contacts-list::-webkit-scrollbar-track,
.chat-messages-area::-webkit-scrollbar-track {
  background: transparent;
}

.chat-contacts-list::-webkit-scrollbar-thumb,
.chat-messages-area::-webkit-scrollbar-thumb {
  background: #E5E5E5;
  border-radius: 10px;
}

.chat-contacts-list::-webkit-scrollbar-thumb:hover,
.chat-messages-area::-webkit-scrollbar-thumb:hover {
  background: #D4D4D4;
}

/* Contact List Item */
.contact-item {
  display: flex;
  align-items: center;
  padding: 16px;
  /* border-radius: 16px; */
  /* margin-bottom: 6px; */
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
  border-bottom: 1px solid #0000001A;
}

.contact-item:hover {
  background: #F9F9F9;
}

.contact-item.active {
  background: #F3F3F3;
}

.contact-avatar-wrap {
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  margin-right: 14px;
}

.contact-avatar-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.contact-info {
  flex: 1;
  min-width: 0;
}

.contact-name-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.contact-name {
  font-weight: 600;
  font-size: 15px;
  color: #0A0A0A;
  display: flex;
  align-items: center;
  gap: 6px;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-time {
  font-size: 12px;
  color: #A3A3A3;
  font-weight: 500;
}

.contact-message-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-last-msg {
  font-size: 13px;
  color: #737373;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  padding-right: 10px;
}

.unread-count {
  background: #95BE00;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  box-sizing: border-box;
}

/* Chat Panel Area */
.chat-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #F9F9F9;
  position: relative;
  overflow: hidden;
}

.chat-header {
  border-bottom: 1px solid #DDDDDD;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  flex-shrink: 0;
}

.chat-header-left {
  display: flex;
  align-items: center;
}

.chat-back-btn {
  display: none;
  border: none;
  background: transparent;
  padding: 0;
  margin-right: 15px;
  cursor: pointer;
}

.chat-back-btn svg {
  display: block;
}

.chat-header-avatar {
  width: 44px;
  height: 44px;
  margin-right: 14px;
  flex-shrink: 0;
}

.chat-header-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 6px;
}

.chat-header-info h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #0A0A0A;
}

.chat-header-right {
  position: relative;
}

.chat-options-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.chat-options-btn:hover {
  background: #F3F3F3;
}

.chat-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  display: none;
  flex-direction: column;
  z-index: 100;
  min-width: 140px;
  margin-top: 8px;
  overflow: hidden;
  padding: 6px 0;
}

.chat-dropdown.show {
  display: flex;
}

.chat-dropdown-item {
  border: none;
  background: transparent;
  text-align: left;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  color: #424242;
  transition: background-color 0.2s;
}

.chat-dropdown-item:hover {
  background: #F9F9F9;
}

.chat-dropdown-item.delete-chat {
  color: #FF3B30;
}

/* Chat Messages Feed */
.chat-messages-area {
  flex: 1;
  overflow-y: auto;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.chat-date-separator {
  text-align: center;
  font-size: 12px;
  color: #737373;
  margin: 15px 0 5px;
  font-weight: 500;
}

.chat-message-row {
  display: flex;
  width: 100%;
}

.chat-message-row.msg-them {
  align-items: flex-start;
}

.chat-message-row.msg-me {
  justify-content: flex-end;
}

.msg-avatar {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  margin-right: 12px;
}

.msg-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.msg-content-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 60%;
}

.msg-me .msg-content-wrapper {
  align-items: flex-end;
}

.msg-bubble {
  padding: 14px 20px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}

.msg-them .msg-bubble {
  background: #0A0A0A;
  color: #FFFFFF;
  border-top-left-radius: 4px;
}

.msg-me .msg-bubble {
  background: #FFFFFF;
  color: #0A0A0A;
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid #EDEDED;
}

.msg-timestamp {
  font-size: 11px;
  color: #A3A3A3;
  margin-top: 6px;
  font-weight: 500;
}

/* Chat Input Bar */
.chat-input-area {
  padding: 20px 30px 30px;
  background: #F9F9F9;
  flex-shrink: 0;
}

.chat-input-wrapper {
  display: flex;
  align-items: center;
  grid-gap: 15px;
  background: #FFFFFF;
  border-radius: 10px;
  padding: 14px 20px;
  backdrop-filter: blur(44px);
  box-shadow: 0px -6px 24px 0px #00000026;
}

.chat-input-wrapper input {
  border: none;
  background: #F6F6F6;
  border: 1px solid #ECECEC;
  outline: none;
  flex: 1;
  font-size: 14px;
  color: #0A0A0A;
  padding: 12px 30px;
  border-radius: 10px;
}

.chat-input-wrapper input::placeholder {
  color: #A3A3A3;
}

.chat-send-btn {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: #0A0A0A;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
}

.chat-send-btn:hover {
  background: #2A2A2A;
}

.chat-send-btn:active {
  transform: scale(0.95);
}

/* ============================================================
   THREE COLUMN LAYOUT FOR MESSAGE PAGE
   ============================================================ */

.chat-sidebar-header {
  padding: 20px 20px 0 20px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
}

.chat-details-panel {
  width: 340px;
  flex-shrink: 0;
  border-left: 1px solid #EDEDED;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}

.chat-details-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 3px solid #C8FF00;
  flex-shrink: 0;
}

.chat-details-name {
  font-size: 20px;
  font-weight: 700;
  color: #0A0A0A;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

.chat-details-role {
  font-size: 14px;
  color: #8F8F8F;
  margin-bottom: 16px;
  font-weight: 500;
}

.chat-details-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #0A0A0A;
  margin-bottom: 20px;
}

.chat-details-rating span {
  color: #8F8F8F;
  font-weight: 400;
}

.chat-details-info-box {
  width: 100%;
  border-top: 1px solid #F0F0F0;
  border-bottom: 1px solid #F0F0F0;
  padding: 16px 0;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.chat-details-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #424242;
}

.chat-details-bio {
  font-size: 14px;
  color: #525252;
  line-height: 1.5;
  margin-bottom: 20px;
  text-align: left;
}

.chat-details-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  justify-content: flex-start;
  width: 100%;
}

.chat-details-tag {
  background: #F5F5F5;
  color: #424242;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 500;
}

.chat-details-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-top: auto;
}

.chat-details-btn-primary {
  display: block;
  width: 100%;
  background: #C8FF00;
  color: #0A0A0A;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: opacity 0.2s;
  border: none;
  cursor: pointer;
}

.chat-details-btn-primary:hover {
  opacity: 0.9;
  color: #0A0A0A;
}

.chat-details-btn-secondary {
  display: block;
  width: 100%;
  background: #FFFFFF;
  color: #0A0A0A;
  border: 1px solid #DDDDDD;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.2s;
  cursor: pointer;
}

.chat-details-btn-secondary:hover {
  background: #F9F9F9;
  color: #0A0A0A;
}

/* Report User Modal Styles */
.report_modal .modal-content {
  border-radius: 20px;
  padding: 10px;
  border: none;
}

.report-modal-title {
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  color: #0A0A0A;
}

.report-modal-desc {
  font-size: 12px;
  color: #333333;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.5;
  padding: 0 10px;
}

.report-options {
  display: flex;
  flex-direction: column;
}

.report-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #F0F0F0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: #333333;
  margin-bottom: 0;
}

.report-option input[type="radio"] {
  display: none;
}

.custom-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #E8E8E8;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3.5 7.5l2.5 2.5 4.5-5'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 10px 10px;
  display: inline-block;
  flex-shrink: 0;
}

.report-option input[type="radio"]:checked+.custom-radio {
  background-color: #95BE00;
}

.other-reason-input {
  margin-top: 10px;
}

.other-reason-input textarea {
  border: 1px solid #E8E8E8;
  border-radius: 8px;
  font-size: 12px;
  padding: 12px;
  resize: none;
  box-shadow: none;
  width: 100%;
}

.other-reason-input textarea:focus {
  border-color: #95BE00;
  outline: none;
  box-shadow: none;
}

.report-submit-wrap {
  margin-top: 25px;
  margin-bottom: 10px;
  text-align: center;
}

.report-submit-wrap .btn-dark {
  background-color: #0A0A0A;
  color: #FFFFFF;
  border-radius: 12px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  min-width: 180px;
  margin: 0 auto;
  border: none;
}

.report-submit-wrap .btn-dark:hover {
  background-color: #222222;
}

/* ==================Community [End] ============================ */

.py_60 {
  padding: 60px 0;
}

.invite-Coach-sec .cps-card {
  height: 100%;
}

.inviteCoach-card {
  background-image: url("../images/community/bg-img.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 20px 20px;
  border-radius: 16px;
  height: 100%;

}

.inviteCoach-card .invite-coach-text {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 10%;
  text-transform: uppercase;
  color: #C8FF00;
  margin: 14px 0;
  display: inline-block;
}

.inviteCoach-card .invite-coach-title {
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 0;
  color: #fff;
}

.inviteCoach-card .invite-coach-title span {
  color: #C8FF00;
}

.inviteCoach-card .invite-coach-desc {
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
  margin: 14px 0;
}

.invaite-item {
  margin-bottom: 13px;
  display: flex;
  gap: 10px;
}

.invaite-item .invite-coach-icon {
  width: 5%;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.37px solid #E5E5E5;
  box-shadow: 0px 2.94px 10.29px 0px #0000001A;

}

.invite-coach-feature h6 {
  font-weight: 600;
  font-size: 15px;
  color: #FFFFFF;
  margin-bottom: 2px;

}

.invite-coach-feature p {
  font-weight: 400;
  font-size: 12px;
  color: #FFFFFF;
  opacity: 0.7;
  margin-bottom: 0;
}

.helpLINK {
  font-weight: 500;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #C8FF00;
  margin-top: 2px;

}

/* ==================Community [End] ============================ */
/* ==================support [End] ============================ */
.support-banner {
  background: url("../images/support/banner.png") no-repeat;
  background-position: center;
  background-size: cover;
  padding: 137px 0;
  max-height: 366px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-banner h2 {
  font-weight: 700;
  font-size: 46px;
  color: #FFFFFF;
  margin-bottom: 10px;

}

.support-banner h2 span {
  color: #C8FF00;
}

.support-banner p {
  font-weight: 500;
  font-size: 16px;
  color: #FFFFFF;
  margin-bottom: 0;

}

.accordion {
  --bs-accordion-active-bg: #ffffff;
  --bs-accordion-active-color: #000000;
  --bs-accordion-btn-focus-box-shadow: none;
}

.accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
  border: none;
}

.accordion-button.collapsed {
  border: none;
}

.accordion-collapse {
  transition: all 0.3s;
}

.accordion-button:not(.collapsed) {
  box-shadow: none;
}

.accordion-item {
  box-shadow: 0px 4px 14px 0px #0000001A;
  border: none;
  margin-bottom: 20px;
}

.accordion-button {
  font-weight: 600;
  font-size: 16px;
  padding: 22px 22px;
  color: #0A0A0A;
}

.accordion-body p {
  font-weight: 400;
  font-size: 15px;
  color: #525252;
}

.accordion-button::after {
  width: 14px;
  height: 8px;
  background-size: 14px 8px;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8' fill='none'%3E%3Cpath d='M13 1L7 7L1 1' stroke='%23525252' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  transform: none;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8' fill='none'%3E%3Cpath d='M13 7L7 1L1 7' stroke='%23525252' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  transform: none;
}

.accordion-button::after,
.accordion-button:not(.collapsed)::after {
  transition: 0.3s ease;
  transform: none !important;
}

.policy_content h6 {
  font-weight: 600;
  font-size: 18px;
  border-bottom: 1px solid #0000001A;
  padding-bottom: 12px;
  margin-bottom: 12px;
  color: #0A0A0A;
}

.policy_content p {
  font-weight: 400;
  font-size: 15px;
  color: #525252;
  margin-bottom: 12px;
}

.policy-sec .cps-card {
  max-width: 100%;
}

/* ------7/27/26------------ */
.max100 {
  max-width: 100%;
}

.support_wrapper {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
}



.support_SidebAr {
  border-right: 1px solid #00000033;
  height: 100%;
  padding-right: 36px;

}

.support_SidebAr ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFFFF;
  border: 1px solid #CCCCCC;
  border-radius: 10px;
  padding: 18px 15px;
  margin-bottom: 20px;
}

.support_SidebAr ul li a.active {
  border: 2px solid #95BE00;
}

.support_SidebAr ul li a:hover {
  background: #F3FCE9;

}

.support_SidebAr ul li a .IcON_box {
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  border-radius: 50%;
  background: #EFF9E4;
  display: flex;
  align-items: center;
  justify-content: center;

}

.support_SidebAr ul li a h6 {
  font-weight: 600;
  font-size: 16px;
  color: #0A0A0A;
  margin-bottom: 2px;
}

.support_SidebAr ul li a p {
  font-weight: 500;
  font-size: 12px;
  color: #525252;
  margin-bottom: 0;
}

/* ------upload profile start------------ */
.upload_item .custom-upload-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, 144px);
  gap: 12px;
  margin: auto;
}


/* Upload Box */
.upload_item .custom-upload-label {
  max-width: 411px;
  height: 94px;
  position: relative;
  width: 100%;
  aspect-ratio: 1/0.835;
  border: 1px dashed #E0E0E0;
  border-radius: 10px;
  background: #FFFFFF;
  backdrop-filter: blur(34px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: 0.3s;
  padding: 10px;
  margin-bottom: 12px;
}

.upload_item .custom-upload-label:hover {
  background: #F3FCE9;
  border: 1px solid #E4EFD8
}

.upload_item .custom-upload-input {
  display: none;
}

/* Upload Icon */
.upload_item .custom-upload-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}

.upload_item .custom-upload-icon svg {
  width: 34px;
  height: 34px;
}

.upload_item .custom-upload-icon h6 {
  font-weight: 600;
  font-size: 14px;
  color: #0A0A0A;
  margin-bottom: 2px;

}

.upload_item .custom-upload-icon p {
  font-weight: 500;
  font-size: 12px;
  color: #525252;
  margin-bottom: 0px;

}

/* Preview Item */
.upload_item .custom-preview-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1/0.999;
  border-radius: 11px;
  overflow: hidden;
  position: relative;
}

.upload_item .custom-preview-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
}

.upload_item .custom-preview-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0000004D;
  z-index: 1;
}

/* Remove Button */
.upload_item .custom-remove-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  background: transparent;
  cursor: pointer;
  z-index: 2;
  border: 1px solid #fff;
  border-radius: 50%;
}

.upload_item .custom-remove-btn::before,
.upload_item .custom-remove-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: #fff;
  border-radius: 20px;
}

.upload_item .custom-remove-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.upload_item .custom-remove-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* ------upload profile end------------ */


/* ==================support [End] ============================ */

/* ==================become coach [start] ============================ */
.become_banner {
  background: url(../images/become-coach/banner1.png) no-repeat;
  padding: 148px 0 50px;
  width: 100%;
  height: auto;
  background-position: 100% 0%;
}

.become_banner1 {
  background: url(../images/become-coach/banner2.png) no-repeat;
}

/* ==========================================================================
   PREMIUM PROFILE SHOWCASE SECTION (.pps-section)
   ========================================================================== */
.pps-section {
  position: relative;
}

.pps-content {
  max-width: 555px;
}



/* Cards Visual Overlay Wrapper */
.pps-visual-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 0;
}

.pps-card-stack {
  position: relative;
  width: 470px;
  max-width: 100%;
  height: 520px;
  margin: 0;
}

.pps-card {
  position: absolute !important;
  width: 360px !important;
  max-width: 100%;
  border-radius: 20px !important;
  background: #FFFFFF !important;
  transition: left 0.5s cubic-bezier(0.34, 1.25, 0.64, 1),
    top 0.5s cubic-bezier(0.34, 1.25, 0.64, 1),
    transform 0.5s cubic-bezier(0.34, 1.25, 0.64, 1),
    opacity 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease,
    filter 0.4s ease;
  cursor: pointer;
  user-select: none;
  box-sizing: border-box;
  overflow: hidden !important;
}

/* Inactive Card (Left / Vertically Centered Background Spot) */
.pps-card:not(.active) {
  left: 0px !important;
  top: 50% !important;
  z-index: 2 !important;
  opacity: 0.8 !important;
  filter: opacity(0.85) !important;
  transform: translateY(-50%) scale(0.93) !important;
  box-shadow: 0px 16.56px 38.36px 0px #0000002B;
  border: 1.5px solid #E5E7EB !important;
}

.pps-card:not(.active):hover {
  opacity: 0.95 !important;
  transform: translateY(-50%) scale(0.95) !important;
}

/* Active Card (Right / Foreground Spot) */
.pps-card.active {
  left: 115px !important;
  top: 50% !important;
  z-index: 10 !important;
  opacity: 1 !important;
  filter: none !important;
  transform: translateY(-50%) scale(1) !important;
  border: 2px solid #95BE00 !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1) !important;
}

/* Card Internal View Switching based on .active class */
.pps-card:not(.active) .pps-inactive-view {
  display: block !important;
}

.pps-card:not(.active) .pps-active-view {
  display: none !important;
}

.pps-card.active .pps-inactive-view {
  display: none !important;
}

.pps-card.active .pps-active-view {
  display: block !important;
}

/* Card Padding & Left Alignment */
.pps-card {
  padding: 24px 24px 0 24px;
  text-align: left;
}

.pps-card-top {
  margin-bottom: 20px;
  text-align: left;
}

.pps-basic-badge {
  background: #F3F4F6;
  color: #9CA3AF;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 16px;
  border-radius: 50px;
  text-transform: uppercase;
}

.pps-premium-badge {
  background: #0A0A0A;
  color: #C8FF00;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 10%;
  padding: 7px 18px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
}

.pps-avatar-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 0 20px 0;
}

.pps-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.pps-basic-view .pps-avatar-img {
  filter: grayscale(100%);
  opacity: 0.75;
}

.pps-avatar-verified {
  position: absolute;
  bottom: 3px;
  right: 3px;
  width: 34px;
  height: 34px;
  background: #95BE00;
  border: 3px solid #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pps-coach-info {
  padding: 0;
  text-align: left;
}

.pps-coach-name {
  font-size: 22px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.pps-coach-role {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  margin-bottom: 14px;
  text-align: left;
}

.pps-rating {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  margin-bottom: 20px;
}

.pps-stars {
  display: flex;
  gap: 3px;
}

.pps-count {
  font-size: 13px;
  font-weight: 500;
  color: #000000;
  margin-left: 4px;
}

.pps-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 24px;
  padding: 0;
}

.pps-tag {
  padding: 6px 16px;
  border-radius: 30px;
  border: 1px solid #C4CAAC;
  background: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  color: #525252;
}

/* Stats Footer Box stretching edge-to-edge at the bottom */
.pps-stats-footer {
  background: #F8FBEA;
  border-top: 1px solid #E5EFBE;
  margin-left: -24px;
  margin-right: -24px;
  padding: 16px 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  text-align: center;
}

.pps-stat-col {
  position: relative;
}

.pps-stat-col:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 100%;
  width: 1px;
  background: #C4C4C4;
}

.pps-stat-val {
  font-size: 19px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.pps-stat-arrow-icon {
  margin-left: 2px;
}

.pps-stat-lbl {
  font-size: 12px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0;
}

/* Skeleton bars in basic view */
.pps-skeleton-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 10px 0 30px;
}

.pps-sk-row {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
}

.pps-sk-bar {
  height: 10px;
  background: #F3F4F6;
  border-radius: 10px;
  margin: 0;
}

.sk-70 {
  width: 70%;
}

.sk-25 {
  width: 25%;
}

.sk-85 {
  width: 85%;
  margin: 0 auto;
}

.sk-95 {
  width: 95%;
  margin: 0 auto;
}

.sk-50 {
  width: 50%;
  margin: 0 auto;
}

/* Features Bar (Bottom 4 Items) */
.pps-features-bar {
  border-top: 1px solid #DDDDDD;
  margin-top: 24px;
  padding-top: 45px;
}

.pps-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding-right: 15px;
}

.pps-feat-item:not(.pps-feat-last)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 100%;
  width: 1px;
  background: #0000001A;
}

.pps-feat-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0px 3.41px 11.94px 0px #0000001A;
}

.pps-feat-text h6 {
  font-size: 16px;
  font-weight: 700;
  color: #0A0A0A;
  margin-bottom: 2px;
}

.pps-feat-text p {
  font-size: 13px;
  font-weight: 400;
  color: #0A0A0A;
  margin-bottom: 0;
}

/* ==========================================================================
   BUILT FOR COACHES SECTION (bcf-section)
   ========================================================================== */

.bcf-section {
  position: relative;
}

/* Badge */
.bcf-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: #95BE0033;
  border: 1px solid #95BE00;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  color: #84AB00;
  letter-spacing: 10%;
  margin-bottom: 24px;
}



/* Title */
.bcf-title {
  font-size: 46px;
  font-weight: 800;
  color: #0A0A0A;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.bcf-accent {
  color: #95BE00;
}

.bcf-title-line {
  width: 110px;
  height: 3px;
  background: #95BE00;
  border-radius: 30px;
  margin: 20px 0 30px;
}

/* 3 Features Row */
.bcf-features-row {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 24px;
}

.bcf-feat-col {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  padding-right: 22px;
}

.bcf-feat-col:not(.bcf-feat-last)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  width: 1px;
  background: #0000001A;
}

.bcf-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0px 3.41px 11.94px 0px #0000001A;

}

.bcf-feat-lbl {
  font-size: 14px;
  font-weight: 700;
  color: #0A0A0A;
  line-height: 1.25;
  max-width: 180px;
}

/* Divider */
.bcf-divider {
  height: 1px;
  background: #DDDDDD;
  margin: 28px 0;
  width: 100%;
}

/* Description */
.bcf-desc {
  font-size: 15px;
  color: #525252;
  line-height: 1.6;
  margin-bottom: 32px;
}

.bcf-desc strong {
  color: #0A0A0A;
}

/* CTA Wrap */
.bcf-cta-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-start;
}

.bcf-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #0A0A0A;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.bcf-btn:hover {
  background: #1A1A1A;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.bcf-note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #525252;
  font-size: 13px;
  font-weight: 500;
}

/* ===================== RIGHT COLUMN CARD ===================== */

.bcf-card {
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid #E2E8F0;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.bcf-card-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px 28px;
}

/* Ribbon Tag Top Left */
.bcf-ribbon-tag {
  /* position: absolute;
  top: 0;
  left: 28px; */
  position: relative;
  background: #0A0A0A;
  color: #FFFFFF;
  padding: 14px 14px 22px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
  padding: 20px 20px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;

}

.bcf-ribbon-tag::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: 37px solid;
  border-right: 37px solid transparent;
  border-bottom: 0;
  border-left: 37px solid transparent;
  position: absolute;
  bottom: -19px;
  left: 50%;
  transform: translateX(-50%);
  color: #0A0A0A;
}

.bcf-ribbon-text {
  display: flex;
  flex-direction: column;
  align-items: self-start;
  font-size: 13px;
  font-weight: 500;
  color: #FFFFFF;
  text-align: start;
}

/* Verified Top Right */
.bcf-verified-top {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #0A0A0A;
}

.bcf-verified-top .ICOn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #95BE00;
  border-radius: 50%;

}

/* Card Body */
.bcf-card-body {
  padding: 28px 28px;
}

.bcf-avatar-box {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #F1F5F9;
}

.bcf-avatar-img {
  width: 100%;
  max-height: 272px;
  object-fit: cover;
  display: block;
}

.bcf-coach-name {
  font-size: 26px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 4px;
}

.bcf-coach-role {
  font-size: 15px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 8px;
  opacity: 0.6;
}

.bcf-coach-loc {
  font-size: 12px;
  color: #0A0A0A;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

.bcf-sep {
  color: #00000033;
  margin: 0 4px;
}

/* Tags Wrap */
.bcf-tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bcf-tag {
  padding: 6px 16px;
  border-radius: 30px;
  background: #F6F6F6;
  font-size: 13px;
  font-weight: 700;
  color: #525252;
}


/* Middle Stats Row */
.bcf-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 10px 24px;
  background: #FFFFFF;
}

.bcf-stat-col {
  text-align: center;
  position: relative;
  padding: 0 10px;
}

.bcf-stat-col:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: #E2E8F0;
}

.bcf-stat-val {
  font-size: 26px;
  font-weight: 700;
  color: #0A0A0A;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 4px;
}

.bcf-stat-lbl {
  font-size: 12px;
  color: #525252;
  font-weight: 600;
  margin: 0 auto;
  line-height: 1.1 !important;
}

/* Bottom Dark Banner */
.bcf-dark-banner {
  background: #0A0A0A;
  padding: 28px 30px 26px 30px;
}

.bcf-banner-title {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}

.bcf-banner-line {
  width: 100px;
  height: 3px;
  background: #95BE00;
  border-radius: 60px;
  margin: 16px 0;
}

.bcf-banner-features {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.bcf-banner-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
}

.bcf-banner-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 0.43px solid #E5E5E5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}



/* ==========================================================================
   COACH REGISTRATION & IMPACT SECTION (crd-section)
   Reusing .cps-card component from invite-coach.html
   ========================================================================== */

.crd-section {
  position: relative;
}

.crd-section .cps-card {
  max-width: 100%;
  border-radius: 24px;
  box-shadow: 0px 4px 14px 0px #0000001A;
}

/* Right Card: Info & Features */
.crd-badge {
  font-size: 14px;
  font-weight: 600;
  color: #95BE00;
  letter-spacing: 10%;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.crd-info-title {
  font-size: 40px;
  font-weight: 800;
  color: #0A0A0A;
  margin-bottom: 36px;
}

.crd-accent {
  color: #95BE00;
}

.crd-features-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.crd-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.crd-feat-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 0.5px solid #C4CAAC;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.crd-feat-heading {
  font-size: 17px;
  font-weight: 800;
  color: #0A0A0A;
  margin-bottom: 4px;
}

.crd-feat-desc {
  font-size: 14px;
  color: #0A0A0A;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
  opacity: 0.7;
}




/* ==================become coach [End] ============================ */

/* -------------------Find Coaches [ START ] ------------*/
.no-coach-bx {
  background: #FFFFFF;
  box-shadow: 0px 4px 14px 0px #0000001A;
  border-radius: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px;
  margin-bottom: 15px;
}

.no-coach-bx span {
  background: linear-gradient(180deg, rgba(149, 190, 0, 0.2) 0%, rgba(149, 190, 0, 0) 100%);
  width: 142px;
  height: 142px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.no-coach-bx h3 {
  font-weight: 700;
  font-size: 28px;
  text-align: center;
  margin-bottom: 10px;

}

.no-coach-bx p {
  margin-bottom: 0;
  color: #525252;
  font-weight: 400;
  font-size: 16px;
  text-align: center;


}

.ficoach-section {
  background: url(../images/find-coach/fcoach-bg.png)no-repeat;
  width: 100%;
  height: auto;
  padding: 200px 0 48px;
  background-position: 50% 0%;
}



/* ===== FIND COACH CUSTOM PAGE LAYOUT (Aesthetic Matching) ===== */

.fc-main-grid-section {
  padding: 48px 0;
  background-color: #F6F6F6;
}

/* 1. Filter Sidebar styling */
.fc-filter-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0px 4px 14px 0px #0000001A;
  margin-bottom: 30px;
}

.fc-filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid #F0F0F0;
}

.fc-filter-title {
  font-size: 18px;
  font-weight: 700;
  color: #0A0A0A;
  margin: 0;
}

.fc-reset-btn {
  font-size: 14px;
  font-weight: 600;
  color: #95BE00;
  text-decoration: none;
  transition: color 0.2s;
}

.fc-reset-btn:hover {
  color: #7DA000;
}

.fc-filter-group {
  margin-bottom: 20px;
  border-bottom: 1px solid #00000014;
  padding-bottom: 20px;
}

.fc-group-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #0A0A0A;
  margin-bottom: 10px;
}

.fc-sub-label {
  font-size: 12px;
  font-weight: 600;
  color: #737373;
  margin-bottom: 6px;
}

/* Custom Dropdown/Select styling */
.fc-select-wrapper {
  position: relative;
  width: 100%;
}

.fc-select-wrapper::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 6px;
  background: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23737373' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
  pointer-events: none;
}

.fc-select {
  width: 100%;
  height: auto;
  background: #F8F9FA;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: #737373;
  font-weight: 400;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.fc-select:focus {
  border-color: #95BE00;
  color: #0A0A0A;
}

/* Button & Pill selections */
.fc-btn-group {
  display: flex;
  gap: 8px;
  background: #F8F9FA;
  border-radius: 10px;
  padding: 4px;
  border: 1px solid #E5E7EB;
}

.fc-btn-pill {
  flex: 1;
  height: auto;
  border: none;
  background: transparent;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #737373;
  cursor: pointer;
  padding: 10px;
  transition: all 0.2s;
  white-space: nowrap;
}

.fc-btn-pill.active {
  background: #FFFFFF;
  color: #0A0A0A;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05);
}

/* Gender radio buttons styled as premium options matching screenshot */
.fc-gender-radio-group {
  display: flex;
  gap: 12px;
  width: 100%;
}

.fc-gender-radio-btn {
  flex: 1;
  position: relative;
  display: inline-block;
}

.fc-gender-radio-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.fc-gender-radio-text {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 10px;
  background: #FFFFFF;
  border: 1px solid #CCCCCC;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  color: #0A0A0A;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.2s, background-color 0.2s;
  user-select: none;
  -webkit-user-select: none;
}

.fc-gender-radio-text:hover {
  border-color: #95BE00;
}

.fc-gender-radio-input:checked+.fc-gender-radio-text {
  border-color: #95BE00;
  background-color: #F4F9E6;
}


.fc-grid-pills {
  display: grid;
  gap: 8px;
}

.fc-grid-pills.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.fc-grid-pills.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.fc-pill-opt {
  height: auto;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #0A0A0A;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12px 20px;
}

.fc-pill-opt small {
  font-size: 9px;
  color: #737373;
  font-weight: 500;
}

.fc-pill-opt:hover {
  border-color: #95BE00;
}

.fc-pill-opt.active {
  background: #F4F9E6;
  border-color: #95BE00;
  color: #0A0A0A;
}

.fc-pill-opt.active small {
  color: #7DA000;
}

.fc-pills-row {
  display: flex;
  gap: 6px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.fc-pills-row .fc-pill-opt {
  flex: 1;
  height: auto;
  padding: 8px 5px;
  white-space: nowrap;
}

/* Range Slider customization */
.fc-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.fc-val-label {
  font-size: 13px;
  font-weight: 700;
  color: #95BE00;
}

.fc-range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(to right, #0A0A0A 0%, #0A0A0A var(--value-percent, 50%), #E5E7EB var(--value-percent, 50%), #E5E7EB 100%);
  outline: none;
  margin: 10px 0;
}

.fc-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #0A0A0A;
  border: 3px solid #FFFFFF;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.fc-range-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #0A0A0A;
  border: 3px solid #FFFFFF;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.fc-range-limits {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #8C8C8C;
  font-weight: 500;
  margin-top: -4px;
}

/* Circular Day Selectors */
.fc-days-row {
  display: flex;
  justify-content: space-between;
  gap: 7px;
  margin-top: 6px;
}

.fc-day-circle {
  width: 35px;
  height: 35px;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  background: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  color: #8C8C8C;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s;
  padding: 0;
}

.fc-day-circle:hover {
  border-color: #95BE00;
}

.fc-day-circle.active {
  border-color: #95BE00;
  color: #95BE00;
  background: #F4F9E6;
}

/* Time slots pills */
.fc-time-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.fc-time-pill {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  white-space: nowrap;
  height: auto;
  padding: 8px 10px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
}

.fc-time-pill:hover {
  border-color: #95BE00;
}

.fc-time-pill.active {
  background: #F4F9E6;
  border-color: #95BE00;
}

.fc-time-title {
  font-size: 13px;
  font-weight: 700;
  color: #0A0A0A;
}

.fc-time-range {
  font-size: 11px;
  color: #737373;
  font-weight: 500;
}

.fc-time-pill.active .fc-time-range {
  color: #95BE00;
}

/* Switch Toggle styling */
.fc-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.fc-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.fc-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #E5E7EB;
  transition: .4s;
  border-radius: 24px;
}

.fc-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.15);
}

input:checked+.fc-slider {
  background-color: #95BE00;
}

input:checked+.fc-slider:before {
  transform: translateX(20px);
}

.fc-toggle-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Rating Card Layout */
.fc-ratings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}


.fc-rating-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.fc-rating-card:hover {
  border-color: #95BE00;
}

.fc-rating-card.active {
  background: #F4F9E6;
  border-color: #95BE00;
}

.fc-rate-val {
  font-size: 13px;
  font-weight: 700;
  color: #0A0A0A;
}

.fc-rate-sub {
  font-size: 10px;
  color: #FFC400;
  margin-top: 2px;
}

.fc-rating-card[data-rating="any"] .fc-rate-sub {
  color: #737373;
}

/* Advanced filter expand toggle styles */
.fc-advance-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 16px;
}

.fc-adv-label {
  font-size: 13px;
  font-weight: 700;
  color: #0A0A0A;
}

.fc-toggle-link {
  font-size: 13px;
  font-weight: 600;
  color: #95BE00;
  text-decoration: none;
}

.fc-apply-btn {
  width: 100%;
  height: 48px;
  background: #0A0A0A;
  border: none;
  border-radius: 10px;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.fc-apply-btn svg {
  color: #95BE00;
  transition: transform 0.2s;
}

.fc-apply-btn:hover {
  background: #262626;
}

.fc-apply-btn:hover svg {
  transform: translateX(3px);
}

/* 2. Map Container & Markers */
.fc-map-card {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #EAEAEA;
}

.fc-map-bg {
  width: 100%;
  height: 100%;
}

.fc-map-pin {
  position: absolute;
  transition: transform 0.2s;
}

.fc-map-pin:hover {
  transform: scale(1.1);
  z-index: 10;
}

.fc-leaf-pin {
  width: 32px;
  height: 32px;
  background: #95BE00;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  border: 2px solid #FFFFFF;
}

.fc-leaf-pin span {
  transform: rotate(45deg);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2px;
}

.fc-coach-pin {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.fc-coach-pin-inner {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid #0A0A0A;
  overflow: hidden;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
  background: #FFFFFF;
}

.fc-coach-pin-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fc-coach-pin-pointer {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #0A0A0A;
  margin-top: -2px;
}

/* 3. Results Action Header */
.fc-results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.fc-results-count {
  font-size: 18px;
  font-weight: 700;
  color: #0A0A0A;
}

.fc-results-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.fc-search-area-box {
  position: relative;
  width: 240px;
}

.fc-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
}

.fc-search-input {
  width: 100%;
  height: 40px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  padding: 0 15px 0 38px;
  font-size: 13px;
  color: #0A0A0A;
  outline: none;
  transition: border-color 0.2s;
}

.fc-search-input:focus {
  border-color: #95BE00;
}

.fc-sort-group {
  display: flex;
  background: #EAEAEA;
  padding: 3px;
  border-radius: 20px;
}

.fc-sort-btn {
  border: none;
  background: transparent;
  height: 34px;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 600;
  color: #737373;
  border-radius: 17px;
  cursor: pointer;
  transition: all 0.2s;
}

.fc-sort-btn.active {
  background: #0A0A0A;
  color: #FFFFFF;
}

/* 4. Horizontal Coach Listing Card */
.fc-coach-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
}

.fc-coach-card {
  display: flex;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #EAEAEA;
  transition: transform 0.2s, box-shadow 0.2s;
}

.fc-coach-card:hover {
  transform: translateY(-2px);
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.08);
}

.fc-card-img-wrap {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.fc-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.fc-card-heart {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.2s;
  padding: 0;
  background: transparent;
}

.fc-card-heart.liked svg {
  fill: #FF4A4A;
  stroke: #FF4A4A;
}

.fc-card-body {
  flex-grow: 1;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fc-card-header-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px;
}

.fc-card-name {
  font-size: 18px;
  font-weight: 700;
  color: #0A0A0A;
  margin: 0;
}

.fc-card-verified-badge {
  display: flex;
  align-items: center;
}

.fc-card-title {
  font-size: 13px;
  color: #737373;
  margin: 0 0 6px 0;
  font-weight: 500;
}

.fc-card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

.fc-rating-value {
  font-size: 13px;
  font-weight: 700;
  color: #0A0A0A;
}

.fc-review-count {
  font-size: 12px;
  color: #8C8C8C;
}

.fc-card-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.fc-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #525252;
  font-weight: 500;
}

.fc-meta-item svg {
  color: #8C8C8C;
}

.fc-tags-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.fc-tag-pill {
  font-size: 11px;
  background: #F3F4F6;
  color: #4B5563;
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: 500;
}

.fc-card-sidebar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-shrink: 0;
}

.fc-price-label {
  font-size: 12px;
  color: #8C8C8C;
  margin-bottom: 2px;
}

.fc-price-value {
  font-size: 20px;
  font-weight: 700;
  color: #0A0A0A;
  margin-bottom: 12px;
}

.fc-price-period {
  font-size: 12px;
  font-weight: 500;
  color: #737373;
}

.fc-action-btn {
  width: 100%;
  padding: 10px 25px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  grid-gap: 14px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  margin-bottom: 6px;
  transition: all 0.2s;
  box-sizing: border-box;
}

.fc-action-btn:last-child {
  margin-bottom: 0;
}

.fc-btn-view {
  background: #95BE00;
  color: #FFFFFF;
  border: 1px solid #95BE00;
}

.fc-btn-view:hover {
  background: #7DA000;
  border-color: #7DA000;
  color: #FFFFFF;
}

.fc-btn-message {
  background: #FFFFFF;
  color: #0A0A0A;
  border: 1px solid #E5E7EB;
}

.fc-btn-message:hover {
  background: #0A0A0A;
  color: #FFFFFF;
  border-color: #0A0A0A;
}

/* 5. Pagination Widget */
.fc-pagination-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.fc-page-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  box-shadow: 0px 4px 14px 0px #0000001A;
  border: 0;
  background: #FFFFFF;
  color: #8C8C8C;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}

.fc-page-arrow:hover {
  border-color: #95BE00;
  color: #95BE00;
}

.fc-page-numbers {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fc-page-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #525252;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s;
  padding: 0;
  box-shadow: 0px 4px 14px 0px #0000001A;

}

.fc-page-num:hover {
  background: #F3F4F6;
}

.fc-page-num.active {
  background: #0A0A0A;
  color: #FFFFFF;
}

.fc-page-dots {
  color: #525252;
  font-weight: 700;
  padding: 0 4px;
  background: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 14px 0px #0000001A;
}

/* -------------------Find Coaches [ END ] ---------------*/
/* ==========================================
   COACH PROFILE PAGE STYLES
   ========================================== */

.coach-profile-wrapper {
  background-color: #F8F9FA;
  padding: 24px 0 60px;
}

.coach-profile-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.back-to-coaches-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #0A0A0A;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s ease;
}

.back-to-coaches-btn:hover {
  color: #84B000;
}

.btn-round-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.06);
}

.action-circle-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0px 4px 14px 0px #0000001A;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.action-circle-btn:hover {
  box-shadow: 0px 2px 8px 0px #c8ff0057;
}

/* Left Sidebar Card */
.cp-sidebar-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid #EFEFEF;
  position: sticky;
  top: 122px;
}

.cp-avatar-img {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  object-fit: cover;
  margin-bottom: 16px;
}

.cp-coach-name {
  font-size: 20px;
  font-weight: 700;
  color: #0A0A0A;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cp-verified-icon {
  display: inline-flex;
}

.cp-coach-subtitle {
  font-size: 14px;
  color: #737373;
  margin-bottom: 12px;
}

.cp-rating-meta {
  font-size: 13px;
  color: #525252;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cp-rating-meta .star {
  color: #FACC15;
}

.cp-rating-meta .divider {
  color: #95BE00;
}

.cp-price-box {
  background: #F8F9FA;
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 20px;
}

.cp-price-box .label-text {
  color: #737373;
}

.cp-price-box .price-val {
  font-size: 15px;
  font-weight: 700;
  color: #84B000;
}

.cp-price-box .price-val span {
  color: #737373;
  font-weight: 400;
  font-size: 13px;
}

.cp-detail-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.cp-detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #262626;
  margin-bottom: 12px;
  font-weight: 500;
}

.cp-detail-item .icon {
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #737373;
}

.cp-detail-item a {
  color: #84B000;
  text-decoration: underline;
}

.cp-social-follow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 13px;
  color: #737373;
}

.cp-social-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cp-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  text-decoration: none;
}

.cp-social-icon:hover {
  background: #0A0A0A;
  color: #FFFFFF;
}

.cp-mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.cp-mini-card {
  background: #fff;
  border-radius: 10px;
  padding: 14px 10px;
  text-align: center;
  border: 1px solid #ECECEC;
}

.cp-mini-card .icon {
  margin-bottom: 6px;
  color: #737373;
}

.cp-mini-card .title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #A3A3A3;
  margin-bottom: 2px;
}

.cp-mini-card .value {
  font-size: 13px;
  font-weight: 700;
  color: #0A0A0A;
}

.cp-btn-message {
  border-radius: 12px;
  padding: 12px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid #0A0A0A;
  color: #0A0A0A;
  background: #FFFFFF;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  margin-bottom: 12px;
  transition: all 0.2s ease;
}

.cp-btn-message:hover {
  background: #0A0A0A;
  color: #FFFFFF;
}

.cp-btn-message:hover svg {
  filter: brightness(0) invert(1);
}

.cp-btn-whatsapp {
  border-radius: 12px;
  padding: 12px;
  font-weight: 600;
  font-size: 14px;
  background: #95BE00;
  color: #FFFFFF;
  border: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.cp-btn-whatsapp:hover {
  background: #739B00;
  color: #FFFFFF;
}

/* Right Section - Gallery Grid */
.cp-gallery-grid {
  display: grid;
  grid-template-columns: 1.9fr 1fr 1fr;
  grid-template-rows: 170px 170px;
  gap: 16px;
  margin-bottom: 32px;
}

.cp-gallery-item {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
  cursor: pointer;
}

.cp-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.cp-gallery-item:hover img {
  transform: scale(1.04);
}

.cp-gallery-item.item-main {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.cp-gallery-item.item-last {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.btn-view-all {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: #FFFFFF;
  color: #0A0A0A;
  border-radius: 7px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
  z-index: 2;
  border: none;
  cursor: pointer;
  backdrop-filter: blur(64px);

}


/* Sub Navigation Tabs */
.cp-nav-tabs-wrapper {
  border-bottom: 1px solid #E5E7EB;
  margin-bottom: 32px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
}

.cp-nav-tabs {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
}

.cp-nav-tab-link {
  display: inline-block;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 600;
  color: rgb(10 10 10 / 60%);
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
}

.cp-nav-tab-link:hover,
.cp-nav-tab-link.active {
  color: #0A0A0A;
}

.cp-nav-tab-link.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: #84B000;
  border-radius: 3px 3px 0 0;
}

/* Content Sections */
.cp-section-block {
  margin-bottom: 36px;

}



.cp-section-title {
  font-size: 20px;
  font-weight: 700;
  color: #0A0A0A;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cp-section-title::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 44px;
  background: #95BE00;
  border-radius: 2px;
}

.cp-section-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #1A1A1A;
}

/* Feature Cards (Goals & Specialties) */
.cp-feature-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0px 4px 14px 0px #0000001A;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.cp-feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.05);
}

.cp-feature-card .icon-wrap {
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A0A0A;
}

.cp-feature-card .card-label {
  font-size: 14px;
  font-weight: 600;
  color: #0A0A0A;
  margin: 0;
}

/* Language Badges */
.cp-lang-pill {
  background: #FFFF;
  box-shadow: 0px 4px 14px 0px #0000001A;

  border-radius: 12px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: #0A0A0A;
}

/* Availability Box */
.cp-availability-box {
  background: #FFFFFF;
  border-radius: 14px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  user-select: none;
  border: 1px solid #F0F0F0;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cp-availability-box:hover {
  border-color: #E2E2E2;
}

.cp-availability-trigger {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  width: 100%;
  background: #FFFFFF;
}

.cp-avail-status-text {
  font-size: 15px;
  font-weight: 600;
  color: #333333;
}

.cp-avail-time-text {
  font-size: 14px;
  color: #9E9E9E;
  margin-left: 10px;
}

.cp-avail-chevron {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cp-availability-box.open .cp-avail-chevron {
  transform: rotate(180deg);
}

/* Dropdown Menu - Inline Card Layout */
.cp-availability-dropdown {
  display: none;
  padding: 0 20px 8px 20px;
  background: #FFFFFF;
}

.cp-availability-box.open .cp-availability-dropdown {
  display: block;
}

.cp-avail-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  cursor: pointer;
  font-size: 14px;
  border-bottom: 1px solid #F0F0F0;
  transition: background 0.15s ease;
}

.cp-avail-option:last-child {
  border-bottom: none;
}

.cp-avail-option:hover {
  background: #FAFAFA;
}

.cp-avail-option .cp-option-day {
  color: #333333;
  font-weight: 500;
  font-size: 14.5px;
}

.cp-avail-option .cp-option-time {
  color: #666666;
  font-size: 14px;
}

.cp-avail-option.is-unavailable .cp-option-time {
  color: #B8B8B8;
  font-weight: 400;
}



/* Location Map Box */
.cp-map-box {
  height: 240px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  border: 1px solid #CCCCCC;
}

.cp-map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: #0A0A0A;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C8FF00;
  font-weight: 800;
  font-size: 20px;
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.2);
}




/* Meet & Video Section Styles */
.cp-video-large {
  height: 380px;
  background: #0A0A0A;
  border-radius: 20px;
  overflow: hidden;
}

.cp-video-card {
  height: 200px;
  background: #0A0A0A;
  border-radius: 16px;
  overflow: hidden;
}

.cp-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  transition: background 0.3s ease;
}

.cp-video-card:hover .cp-video-overlay,
.cp-video-large:hover .cp-video-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.cp-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  transition: transform 0.3s ease, background 0.3s ease;
}

.cp-play-btn.sm {
  width: 44px;
  height: 44px;
}

.cp-video-card:hover .cp-play-btn,
.cp-video-large:hover .cp-play-btn {
  transform: scale(1.12);
  background: rgba(255, 255, 255, 0.45);
}

.cp-video-caption {
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  position: absolute;
  bottom: 16px;
  left: 20px;
}

.cp-video-duration {
  font-size: 11px;
  font-weight: 600;
  color: #FFFFFF;
  background: #0A0A0AB2;
  border: 1px solid #FFFFFF30;
  backdrop-filter: blur(64px);
  padding: 6px 10px;
  border-radius: 4px;
  position: absolute;
  bottom: 16px;
  right: 20px;
}

.cp-video-info {
  position: absolute;
  bottom: 14px;
  left: 16px;
}

.cp-video-info .title {
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.cp-video-info .sub {
  font-size: 12px;
  color: #D4D4D4;
}

/* Certificate Cards */
.cp-cert-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 14px 20px;
  border: 1px solid #EFEFEF;
  box-shadow: 0px 4px 14px 0px #0000001A;
  font-size: 15px;
  font-weight: 600;
  color: #525252;
  transition: transform 0.2s ease;
  height: 100%;
  display: flex;
  align-items: center;
}

.cp-cert-card:hover {
  transform: translateY(-2px);
}

/* Review Summary Card */
.cp-review-summary-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid #EFEFEF;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.02);
}

.cp-big-score {
  font-size: 48px;
  font-weight: 800;
  color: #0A0A0A;
  line-height: 1;
  text-align: center;
}

.rating-bx {
  position: relative;
}

.cp-stars-wrap {
  color: #FACC15;
  font-size: 18px;
  margin: 5px auto 8px;
  text-align: center;
}

.cp-reviews-count {
  font-size: 14px;
  color: #000000;
  font-weight: 400;
  text-align: center;
}

.cp-rating-bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  padding: 0 15px;
}

.cp-rating-bars::before {
  content: '';
  position: absolute;
  top: 0;
  left: -12px;
  bottom: 0;
  border-right: 1px solid #CCCCCC;
}

.cp-rating-bars::after {
  content: '';
  position: absolute;
  top: 0;
  right: -4px;
  bottom: 0;
  border-right: 1px solid #CCCCCC;
}

.cp-rating-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  color: #525252;
}

.cp-rating-bar-row .star-label {
  width: 24px;
  flex-shrink: 0;
  color: #000;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  grid-gap: 3px;
}

.cp-rating-bar-row .progress-track {
  flex: 1;
  height: 10px;
  background: #E5E5E5;
  border-radius: 90px;
  overflow: hidden;
}

.cp-rating-bar-row .progress-fill {
  height: 100%;
  background: #84B000;
  border-radius: 10px;
}

.cp-rating-bar-row .percent-label {
  width: 32px;
  text-align: right;
  color: #1A1A1A;

}

.cp-btn-write-review {
  background: #0A0A0A;
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  padding: 14px 15px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}

.cp-btn-write-review:hover {
  background: #262626;
}

/* User Review Card */
.cp-user-review-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #CCCCCC;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.02);
  margin-bottom: 20px;
}

.cp-reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.cp-reviewer-name {
  font-size: 15px;
  font-weight: 700;
  color: #0A0A0A;
}

.cp-stars-yellow {
  color: #FACC15;
  font-size: 13px;
}

.cp-review-time {
  font-size: 12px;
  color: #A3A3A3;
}

.cp-review-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: #525252;
}



/* --------------Coach Profile [ END ]----------------- */

/* --------------Reviews & Ratings [ END ]----------------- */


.Writereview-btn {
  max-width: 236px;
}


.Reviews-ratings-sec .cp-review-summary-card {
  padding: 14px;
  height: 100%;
}

.Reviews-ratings-sec .cp-btn-message {
  padding: 12px 30px;
}


.Reviews-ratings-sec .cp-rating-bars::after {
  border-right: none;
}


.Reviews-ratings-sec .cp-stars-wrap svg {
  width: 18px;
  height: 18px;
}

.dec-MTxt {
  margin: 10px 0 30px;
  color: #0A0A0A;
  font-weight: 400;
  font-size: 16px;

}

/* --------------Reviews & Ratings [ END ]----------------- */
.modal button.btn-close {
  right: 10px;
  position: absolute;
  z-index: 2;
}

.back-arrow svg path {
  stroke: #95BE00;
}

/* ── Anchor scroll offset fix (sticky header compensation) ── */
/* Prevents fixed header from covering content when navigating via #hash links */
#contact-support,
#report-problem,
#suggest-feature {
  scroll-margin-top: 90px;
}

.cp-map-box {
  filter: grayscale(1);
}