/* ============================================================
   ADIRA BADMINTON ACADEMY — DESIGN SYSTEM
   ============================================================ */

:root {
  --navy:        #0d1b2a;
  --navy-mid:    #162032;
  --navy-light:  #1e2d42;
  --gold:        #d4a017;
  --gold-bright: #e8b829;
  --gold-pale:   rgba(212, 160, 23, 0.12);
  --white:       #ffffff;
  --off-white:   #f5f7fa;
  --gray-100:    #eef1f6;
  --gray-200:    #dde3ec;
  --gray-400:    #94a3b8;
  --gray-600:    #4f5f72;
  --text:        #18273a;

  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --shadow-xs:   0 1px 4px rgba(13,27,42,0.06);
  --shadow-sm:   0 3px 12px rgba(13,27,42,0.09);
  --shadow-md:   0 8px 28px rgba(13,27,42,0.14);
  --shadow-lg:   0 20px 52px rgba(13,27,42,0.2);
  --ease:        0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   BASE
   ============================================================ */

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--off-white);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}

a:not(.btn) {
  color: var(--gold);
  transition: color var(--ease);
}
a:not(.btn):hover { color: var(--gold-bright); }

a.btn {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Rajdhani', 'Segoe UI', 'Arial Black', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

/* ============================================================
   NAVBAR
   ============================================================ */

.academy-navbar {
  background: var(--navy);
  border-bottom: 2px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 1040;
  transition: box-shadow var(--ease);
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.academy-navbar.nav-scrolled {
  box-shadow: 0 4px 24px rgba(13,27,42,0.35);
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}

.brand-text {
  color: #f0f4f8;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
}

.academy-navbar .nav-link {
  color: #c8d2df;
  font-weight: 500;
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
  transition: color var(--ease), background var(--ease);
  font-size: 0.95rem;
}

.academy-navbar .nav-link:hover,
.academy-navbar .nav-link:focus {
  color: #ffffff;
  background: rgba(255,255,255,0.07);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold-bright), #b8860b) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  border-radius: 999px !important;
  padding: 0.45rem 1.1rem !important;
  font-size: 0.9rem !important;
  transition: all var(--ease) !important;
}
.nav-cta:hover {
  background: linear-gradient(135deg, #f0c840, #c8970a) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(212,160,23,0.4) !important;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  background:
    linear-gradient(135deg, rgba(13,27,42,0.97) 0%, rgba(22,42,68,0.95) 100%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 59px,
      rgba(212,160,23,0.06) 59px,
      rgba(212,160,23,0.06) 60px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 59px,
      rgba(212,160,23,0.06) 59px,
      rgba(212,160,23,0.06) 60px
    );
  color: #fff;
  padding: 5.5rem 0 7rem;
  position: relative;
  overflow: hidden;
}

/* Full-bleed: breaks out of Bootstrap container in the layout */
.hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 90px;
  background: var(--off-white);
  clip-path: polygon(0 100%, 100% 100%, 100% 30%, 0 100%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold-pale);
  border: 1px solid rgba(212,160,23,0.3);
  color: var(--gold-bright);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero-event-spotlight {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(212,160,23,0.35);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.2rem;
  backdrop-filter: blur(4px);
  box-shadow: 0 12px 34px rgba(0,0,0,0.25);
}

.hero-event-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: var(--gold-pale);
  color: var(--gold-bright);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.7rem;
}

.hero-event-spotlight h2 {
  font-family: 'Rajdhani', sans-serif;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.15;
  margin: 0 0 0.65rem;
}

.hero-event-lead {
  color: rgba(255,255,255,0.86);
  font-size: 0.95rem;
  line-height: 1.6;
}

.hero-event-meta {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.76);
  display: grid;
  gap: 0.35rem;
}

.hero-content h1 {
  font-size: clamp(2.1rem, 5.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.1rem;
}

.gold-text { color: var(--gold-bright); }

.hero-content .lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.78);
  max-width: 640px;
}

/* ============================================================
   STATS BAR
   ============================================================ */

.stats-bar {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 1.5rem 1rem;
  margin-top: -3rem;
  position: relative;
  z-index: 2;
  margin-bottom: 2.5rem;
}

.stat-divider {
  border-left: 1px solid var(--gray-200);
}

.stat-item { text-align: center; }

.stat-number {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.stat-gold { color: var(--gold); }

.stat-label {
  font-size: 0.82rem;
  color: var(--gray-600);
  margin-top: 0.25rem;
  font-weight: 500;
}

/* ============================================================
   SECTION TITLES
   ============================================================ */

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--navy);
  position: relative;
  padding-bottom: 0.8rem;
  margin-bottom: 1.75rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 44px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  border-radius: 2px;
}

.section-title.centered { text-align: center; }
.section-title.centered::after {
  left: 50%;
  transform: translateX(-50%);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), #b8860b);
  border: none;
  color: var(--navy);
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: all var(--ease);
}

.btn-gold:hover,
.btn-gold:focus {
  background: linear-gradient(135deg, #f5cc50, #c89212);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(212,160,23,0.42);
}

/* Hero outline buttons: gold fill on hover (avoids white-on-white from Bootstrap .btn-outline-light) */
.hero .btn-outline-light:hover,
.hero .btn-outline-light:focus,
.hero-event-spotlight .btn-outline-light:hover,
.hero-event-spotlight .btn-outline-light:focus {
  color: var(--navy);
  background-color: var(--gold-bright);
  border-color: var(--gold-bright);
  box-shadow: 0 4px 14px rgba(212, 160, 23, 0.35);
}

/* ============================================================
   SUMMER CAMP BANNER
   ============================================================ */

.summer-camp-banner {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  color: white;
  border-left: 5px solid var(--gold);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.summer-camp-banner::before {
  content: '🏸';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 6rem;
  opacity: 0.08;
  pointer-events: none;
}

.summer-camp-banner h2 { color: var(--gold-bright); }
.summer-camp-banner p  { color: rgba(255,255,255,0.82); }

/* ============================================================
   PROGRAM CARDS
   ============================================================ */

.program-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border: 1px solid var(--gray-200);
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform var(--ease), box-shadow var(--ease);
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.program-card h3 {
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.program-badge {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  background: var(--gold-pale);
  color: #7d5e0c;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 0.25rem;
  width: fit-content;
}

.program-card ul { padding-left: 0; list-style: none; }
.program-card ul li {
  padding: 0.2rem 0;
  color: var(--gray-600);
  font-size: 0.92rem;
}
.program-card ul li::before {
  content: '⏰ ';
  font-size: 0.8rem;
}

/* ============================================================
   FEATURE CARDS
   ============================================================ */

.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-xs);
  transition: transform var(--ease), box-shadow var(--ease);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.feature-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 0.85rem;
  line-height: 1;
}

.feature-card h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.feature-card p { color: var(--gray-600); font-size: 0.9rem; margin: 0; }

/* ============================================================
   MINI FACILITY CARDS
   ============================================================ */

.mini-facility-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-xs);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.mini-facility-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: var(--gold);
}

.mini-facility-card .facility-emoji {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.mini-facility-card h3 {
  margin: 0;
  font-size: 0.92rem;
  color: var(--navy);
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

/* ============================================================
   FACILITY GRID CARDS (Facilities page)
   ============================================================ */

.facility-grid-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-xs);
  height: 100%;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.facility-grid-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.facility-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 0.85rem;
  line-height: 1;
}

.facility-grid-card h2 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.facility-grid-card p { color: var(--gray-600); font-size: 0.88rem; margin: 0; }

/* ============================================================
   TRUST SECTION
   ============================================================ */

.trust-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  color: white;
}

.trust-section .section-title { color: var(--gold-bright); }
.trust-section .section-title::after { background: var(--gold-bright); }
.trust-section > p { color: rgba(255,255,255,0.78); }

.trust-metric {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  font-weight: 700;
  color: white;
  transition: background var(--ease), border-color var(--ease);
}

.trust-metric:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
}

.trust-metric small {
  display: block;
  font-weight: 500;
  color: var(--gold-bright);
  font-size: 0.82rem;
  margin-top: 0.3rem;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-xs);
  height: 100%;
  transition: box-shadow var(--ease);
}

.testimonial-card:hover { box-shadow: var(--shadow-sm); }

.testimonial-card p {
  font-style: italic;
  color: var(--gray-600);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.testimonial-card p::before { content: '\201C'; }
.testimonial-card p::after  { content: '\201D'; }

.testimonial-card footer {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
}

/* ============================================================
   BOOKING STRIP
   ============================================================ */

.booking-strip {
  background: linear-gradient(135deg, var(--gold-pale), rgba(232,184,41,0.08));
  border: 1px solid rgba(212,160,23,0.25);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-xs);
}

/* ============================================================
   JOIN STEPS
   ============================================================ */

.join-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.join-step {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: transform var(--ease), box-shadow var(--ease);
}

.join-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.join-step-number {
  width: 3rem;
  height: 3rem;
  background: var(--navy);
  color: var(--gold-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 0.85rem;
}

.join-step h3 {
  font-size: 0.92rem;
  color: var(--navy);
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

/* ============================================================
   CONTACT CARD
   ============================================================ */

.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.contact-card a:not(.btn) {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
}

.contact-card a:not(.btn):hover { color: var(--gold); }

/* ============================================================
   MAP
   ============================================================ */

.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   HIGHLIGHT BOX
   ============================================================ */

.highlight-box {
  border-left: 4px solid var(--gold);
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-xs);
}

/* ============================================================
   CARD OVERRIDES
   ============================================================ */

.card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
}

/* ============================================================
   FOOTER
   ============================================================ */

.academy-footer {
  background: var(--navy);
  color: #8a9ab0;
  padding: 3.5rem 0 0;
  margin-top: 4rem;
}

.footer-brand-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.footer-brand-logo {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
  margin-right: 0.6rem;
}

.footer-tagline {
  color: #6a7f96;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 0.5rem;
}

.footer-heading {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 0.55rem; }

.footer-links a {
  color: #8a9ab0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--ease);
}

.footer-links a:hover { color: white; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #8a9ab0;
  font-size: 0.88rem;
  margin-bottom: 0.6rem;
}

.footer-contact-item a {
  color: #8a9ab0;
  text-decoration: none;
  transition: color var(--ease);
}

.footer-contact-item a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.1rem 0;
  margin-top: 2.5rem;
}

.footer-copy {
  color: #546070;
  font-size: 0.82rem;
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1030;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: #25d366;
  color: white;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.88rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: all var(--ease);
}

.whatsapp-float:hover,
.whatsapp-float:focus {
  color: white;
  background: #1db957;
  transform: translateY(-2px);
  box-shadow: 0 6px 26px rgba(37,211,102,0.55);
}

.whatsapp-float .wa-emoji {
  font-size: 1.3rem;
  line-height: 1;
}

/* ============================================================
   INNER PAGE HERO (no diagonal cut)
   ============================================================ */

.hero.inner-hero {
  padding: 4rem 0 5rem;
}

.hero.inner-hero::after {
  clip-path: polygon(0 100%, 100% 100%, 100% 50%, 0 100%);
  height: 60px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 991px) {
  .brand-text { font-size: 0.95rem; }
  .hero { padding: 4rem 0 6rem; }
  .hero::after { display: none; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-content { max-width: 100%; }
  .stats-bar { margin-top: 1.5rem; }
  .join-steps { grid-template-columns: repeat(2, 1fr); }
  .summer-camp-banner::before { display: none; }
  .trust-section { padding: 2rem 1.5rem; }
  .academy-footer { margin-top: 2.5rem; }
}

@media (max-width: 767px) {
  .stat-divider { border-left: none; border-top: 1px solid var(--gray-200); padding-top: 1rem; }
}

@media (max-width: 575px) {
  .hero { padding: 3.5rem 0 5rem; }
  .join-steps { grid-template-columns: 1fr; }
  .whatsapp-float .wa-label { display: none; }
}

/* ============================================================
   EVENTS PAGE
   ============================================================ */

.events-filter-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  padding: 1.35rem 1.5rem;
}

.events-filter-card .form-control {
  border-color: var(--gray-200);
}

.events-filter-card .form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem var(--gold-pale);
}

.events-empty {
  background: var(--white);
}

.subtle-border {
  border: 1px dashed var(--gray-200);
}

.events-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}

.events-badge-upcoming {
  background: rgba(37, 99, 235, 0.12);
  color: #1d4ed8;
}

.events-badge-done {
  background: var(--gray-100);
  color: var(--gray-600);
}

.events-badge-muted {
  background: var(--gold-pale);
  color: var(--navy-mid);
  font-weight: 600;
}

.events-meta {
  color: var(--gray-600);
  border-top: 1px solid var(--gray-200);
  padding-top: 0.75rem;
  margin-top: auto;
}

.events-card-completed {
  opacity: 0.96;
}

/* ============================================================
   COACHING FEEDBACK PAGE
   ============================================================ */

.feedback-section-intro {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin: -0.5rem 0 1.35rem;
  max-width: 52rem;
}

.feedback-anon-notice {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.35rem;
  box-shadow: var(--shadow-xs);
}

.feedback-anon-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.feedback-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
  overflow: hidden;
}

.feedback-form-block {
  padding: 0.25rem 0;
}

.feedback-form-block-head {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}

.feedback-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-bright);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.feedback-label {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  display: block;
}

.feedback-block-desc {
  font-size: 0.86rem;
  color: var(--gray-600);
}

.feedback-form-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 1.35rem 0;
}

.feedback-coach-radios {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  width: 100%;
}

.feedback-coach-pick {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0;
  padding: 0.95rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--off-white);
  cursor: pointer;
  transition: border-color var(--ease), background var(--ease), box-shadow var(--ease);
}

.feedback-coach-pick:hover {
  border-color: rgba(212, 160, 23, 0.45);
  background: var(--white);
}

.feedback-coach-pick:has(.feedback-coach-pick-input:checked) {
  border-color: var(--gold);
  background: var(--gold-pale);
  box-shadow: var(--shadow-xs);
}

.feedback-coach-pick-input {
  width: 1.15rem;
  height: 1.15rem;
  margin: 0.15rem 0 0;
  flex-shrink: 0;
  border-color: var(--gray-400);
  cursor: pointer;
}

.feedback-coach-pick-input:checked {
  background-color: var(--gold);
  border-color: var(--gold);
}

.feedback-coach-pick-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem var(--gold-pale);
}

.feedback-coach-pick-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.feedback-coach-pick-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.25;
}

.feedback-coach-pick-role {
  font-size: 0.78rem;
  color: var(--gray-600);
  line-height: 1.35;
}

.feedback-textarea {
  border-color: var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  resize: vertical;
  min-height: 150px;
  padding: 0.85rem 1rem;
  background: var(--off-white);
}

.feedback-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem var(--gold-pale);
  background: var(--white);
}

.feedback-hint {
  margin-top: 0.55rem;
  font-size: 0.82rem;
  color: var(--gray-400);
}

.feedback-form-actions {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-200);
  display: flex;
  justify-content: flex-end;
}

.feedback-form-actions--page {
  margin-top: 1.75rem;
  padding-top: 0;
  border-top: none;
}

.feedback-alert {
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid transparent;
}

.feedback-alert.is-success {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.35);
  color: #166534;
}

.feedback-alert.is-error {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.35);
  color: #991b1b;
}

.feedback-form-actions .btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.feedback-ratings-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.feedback-coach-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.35rem;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--ease), border-color var(--ease);
}

.feedback-coach-rating:hover {
  border-color: rgba(212, 160, 23, 0.35);
  box-shadow: var(--shadow-sm);
}

.feedback-coach-name {
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
  color: var(--navy);
}

.feedback-coach-role {
  font-size: 0.85rem;
  color: var(--gray-600);
}

.feedback-stars {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex-shrink: 0;
}

.feedback-star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: transform var(--ease), background var(--ease);
}

.feedback-star svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: var(--gray-200);
  transition: fill var(--ease), transform var(--ease);
}

.feedback-star:hover,
.feedback-star:focus-visible {
  outline: none;
  background: var(--gold-pale);
  transform: scale(1.08);
}

.feedback-star.is-active svg,
.feedback-star.is-preview svg {
  fill: var(--gold-bright);
}

.feedback-star.is-active svg {
  filter: drop-shadow(0 1px 2px rgba(212, 160, 23, 0.35));
}

@media (min-width: 992px) {
  .feedback-form-card {
    padding: 2rem 2.25rem;
  }

  .feedback-coach-radios {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feedback-coach-pick:last-child:nth-child(3n + 1) {
    grid-column: span 1;
  }
}

@media (max-width: 767px) {
  .feedback-coach-radios {
    grid-template-columns: 1fr;
  }

  .feedback-form-actions {
    justify-content: stretch;
  }

  .feedback-form-actions .btn {
    width: 100%;
  }

  .feedback-coach-rating {
    flex-direction: column;
    align-items: flex-start;
  }

  .feedback-stars {
    width: 100%;
    justify-content: flex-start;
  }
}
