/* ============================================================
   COACHES GRID STYLE — Falcon Badminton Club
   Premium, state-of-the-art coach directory layout
   ============================================================ */

.coaches-section {
  background: var(--white);
  padding: 110px 0;
  border-top: 1px solid var(--grey-100);
  position: relative;
  overflow: hidden;
}

.coaches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1240px;
  margin: 0 auto;
}

/* Professional premium card layout */
.coach-card {
  background: var(--white);
  border: 1.5px solid #eaeaea;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.coach-card:hover {
  transform: translateY(-8px);
  border-color: rgba(199, 16, 16, 0.35);
  box-shadow: 0 20px 40px rgba(199, 16, 16, 0.1), 0 4px 12px rgba(0, 0, 0, 0.04);
}

/* Image container */
.coach-img-wrap {
  height: 320px;
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #ffffff !important;
  border-bottom: 1.5px solid var(--grey-100);
}

.coach-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.coach-card:hover .coach-img {
  transform: scale(1.06);
}

.coach-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.25) 0%, transparent 45%);
  pointer-events: none;
}

.coach-badge-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(15, 15, 20, 0.82);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

/* Content body */
.coach-body {
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.coach-role {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.coach-name {
  font-family: var(--font-heading);
  font-weight: 900 !important;
  font-size: 1.35rem;
  color: #09090b;
  margin-bottom: 4px;
  letter-spacing: -0.015em;
}

.coach-exp {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--grey-500);
  font-weight: 600;
  margin-bottom: 18px;
}

.coach-divider {
  height: 1px;
  background: #e4e4e7;
  margin-bottom: 18px;
}

/* Skills list (what they sikhayenge) */
.coach-skills-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--grey-700);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.coach-skills-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.coach-skills-list li {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--grey-600);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
  padding-left: 0;
}

.coach-skills-list li::before {
  content: none;
}

.coach-skill-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(199, 16, 16, 0.1);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.coach-book-btn {
  width: 100%;
  padding: 11px 10px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.coach-book-btn:hover svg {
  transform: translateX(4px);
}

/* RESPONSIVE OVERRIDES */
@media (max-width: 1100px) {
  .coaches-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 24px;
  }
}

@media (max-width: 600px) {
  .coaches-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 16px;
  }

  .coaches-section {
    padding: 64px 0;
  }
}
}

/* ──────────────────────────────────────────────────────────
   WHY TRAIN WITH FALCON SECTION (Copywriting Split Layout)
   ────────────────────────────────────────────────────────── */

/* ──────────────────────────────────────────────────────────
   WHY TRAIN WITH FALCON SECTION (Copywriting Split Layout)
   ────────────────────────────────────────────────────────── */

.why-train-section {
  background: var(--white);
  padding: 110px 0;
  border-top: 1px solid var(--grey-100);
}

.why-train-split {
  display: flex;
  gap: 56px;
  max-width: 1240px;
  margin: 0 auto;
  align-items: flex-start;
}

.why-train-left {
  width: 42%;
  position: sticky;
  top: 100px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-train-left .chip {
  align-self: flex-start;
}

.why-train-left-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.6vw, 3rem);
  font-weight: 900 !important;
  line-height: 1.12;
  color: #09090b;
  letter-spacing: -0.025em;
  margin: 0;
}

.why-train-left-title span {
  color: var(--red);
}

.why-train-left-sub {
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--grey-600);
  line-height: 1.65;
  margin: 0;
}

.why-train-right {
  width: 58%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Elegant list cards */
.why-train-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--white);
  border: 1.5px solid #eaeaea;
  padding: 28px 30px;
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.why-train-card:hover {
  border-color: rgba(199, 16, 16, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(199, 16, 16, 0.08);
}

.why-train-num {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--red);
  line-height: 1;
  background: rgba(199, 16, 16, 0.08);
  border: 1px solid rgba(199, 16, 16, 0.18);
  padding: 10px 14px;
  border-radius: 12px;
  flex-shrink: 0;
}

.why-train-info h4 {
  font-family: var(--font-heading);
  font-weight: 900 !important;
  font-size: 1.2rem;
  color: #09090b;
  margin: 0 0 8px 0;
  letter-spacing: -0.015em;
}

.why-train-info p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--grey-600);
  line-height: 1.6;
  margin: 0;
}

/* Guarantee Card */
.why-train-guarantee {
  background: #fafafa;
  border: 1.5px solid #e4e4e7;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  margin-top: 6px;
  position: relative;
  overflow: hidden;
}

.why-train-guarantee::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--red);
}

.why-train-guarantee-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.why-train-guarantee-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(199, 16, 16, 0.1);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-train-guarantee h3 {
  font-family: var(--font-heading);
  font-weight: 900 !important;
  font-size: 1.25rem;
  color: #09090b;
  margin: 0;
}

.why-train-guarantee p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--grey-600);
  line-height: 1.6;
  margin: 0;
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 900px) {
  .why-train-split {
    flex-direction: column;
    gap: 40px;
    padding: 0 24px;
  }

  .why-train-left {
    width: 100%;
    position: relative;
    top: 0;
  }

  .why-train-right {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .why-train-section {
    padding: 64px 0;
  }
  
  .why-train-split {
    padding: 0 16px;
  }
}

