/*
Theme Name: GymCoach Connect
Theme URI: https://gymcoachconnect.com
Author: GymCoach Connect
Author URI: https://gymcoachconnect.com
Description: Official theme for GymCoach Connect — India's elite personal trainer marketplace. Connects certified gym trainers with clients across India.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gymcoach
Tags: fitness, trainers, marketplace, custom
*/

/* ═══════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --card: #1a1a1a;
  --card2: #222222;
  --orange: #FF5E1A;
  --orange-d: #d94e10;
  --blue: #2563EB;
  --blue-d: #1d4ed8;
  --green: #16a34a;
  --red: #dc2626;
  --white: #ffffff;
  --gray: #888888;
  --lgray: #cccccc;
  --border: rgba(255,255,255,0.1);
  --border2: rgba(255,255,255,0.2);
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--black);
  color: var(--white);
  font-size: 16px;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
}

/* ═══════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 22px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s;
  text-decoration: none;
  border: none;
  font-family: inherit;
  line-height: 1;
}
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-d); color: #fff; text-decoration: none; }
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-d); color: #fff; text-decoration: none; }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.07); color: #fff; text-decoration: none; }
.btn-outline-orange { background: transparent; color: var(--orange); border: 1.5px solid var(--orange); }
.btn-outline-orange:hover { background: rgba(255,94,26,0.08); color: var(--orange); text-decoration: none; }
.btn-ghost { background: transparent; color: var(--lgray); border: 1px solid var(--border); }
.btn-ghost:hover { color: var(--white); border-color: var(--border2); text-decoration: none; }

/* ═══════════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════════ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 5rem 0; }
.section-pad-sm { padding: 3rem 0; }

/* ═══════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(17,17,17,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  height: 64px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
}
.nav-logo:hover { text-decoration: none; color: var(--white); }

.nav-logo-icon {
  width: 36px; height: 36px;
  background: var(--blue);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 13px; color: #fff;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.nav-logo-text { font-size: 13px; font-weight: 700; line-height: 1.2; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--lgray);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links li.current-menu-item a { color: var(--white); }
.nav-links li.current-menu-item a { text-decoration: underline; text-underline-offset: 3px; }

.nav-right { display: flex; align-items: center; gap: 0.75rem; }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  z-index: 199;
  padding: 1rem 2rem;
  gap: 0.75rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--lgray);
  text-decoration: none;
  font-size: 15px;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:hover { color: var(--white); }

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: calc(100vh - 64px);
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 64px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.38);
  transition: opacity 0.3s;
}

.hero-content {
  position: relative;
  z-index: 2;
  background: rgba(0,0,0,0.78);
  padding: 2.5rem 3rem;
  max-width: 520px;
  margin-left: 6%;
  border-left: 4px solid var(--orange);
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  text-transform: none !important;
  font-feature-settings: "case" 1 !important;
  font-variant: normal !important;
}

.hero-sub {
  color: var(--lgray);
  font-size: 15px;
  margin-bottom: 1.75rem;
  line-height: 1.65;
}

.hero-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════
   WHY SECTION
═══════════════════════════════════════════════════ */
.why-section {
  background: var(--dark);
  padding: 5rem 0;
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.why-label {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--orange);
  text-transform: none !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-feature-settings: "case" 1 !important;
  line-height: 1.1;
}

.why-item {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}
.why-item:first-child { padding-top: 0; }
.why-item h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 0.35rem;
  text-transform: none !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-feature-settings: "case" 1 !important;
}
.why-item p { color: var(--gray); font-size: 14px; line-height: 1.65; }

/* ═══════════════════════════════════════════════════
   TESTIMONIAL
═══════════════════════════════════════════════════ */
.testimonial-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
}

.t-img {
  background-size: cover;
  background-position: center;
  min-height: 300px;
}

.t-content {
  background: var(--orange);
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.t-quote {
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 1.5rem;
  color: var(--black);
}

.t-author { font-size: 13px; font-weight: 700; color: var(--black); }
.t-role { font-size: 12px; color: rgba(0,0,0,0.55); }

/* ═══════════════════════════════════════════════════
   FEATURED TRAINERS (homepage)
═══════════════════════════════════════════════════ */
.featured-trainers { padding: 5rem 0; background: var(--black); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 0.5rem; }
.section-header p { color: var(--gray); font-size: 15px; }

/* ═══════════════════════════════════════════════════
   TRAINER CARDS
═══════════════════════════════════════════════════ */
.trainers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem;
}

.trainer-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: var(--white);
  display: block;
}
.trainer-card:hover {
  transform: translateY(-5px);
  border-color: var(--border2);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--white);
}

.tc-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top;
  display: block;
  background: var(--card2);
}

.tc-photo-placeholder {
  width: 100%;
  height: 220px;
  background: var(--card2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}

.tc-body { padding: 1.25rem; }
.tc-name { font-size: 17px; font-weight: 700; margin-bottom: 0.2rem; }
.tc-specialty { color: var(--orange); font-size: 13px; font-weight: 600; margin-bottom: 0.4rem; }
.tc-location { color: var(--gray); font-size: 13px; margin-bottom: 0.75rem; }
.tc-bio {
  color: var(--lgray);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tc-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
.tag {
  background: rgba(255,94,26,0.12);
  color: var(--orange);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
  border: 1px solid rgba(255,94,26,0.25);
}

.tc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  margin-top: 0.5rem;
}

.tc-rate { font-size: 13px; color: var(--lgray); }
.tc-rate strong { color: var(--white); font-weight: 700; font-size: 15px; }

/* ═══════════════════════════════════════════════════
   FILTER BAR (coaches page)
═══════════════════════════════════════════════════ */
.filter-bar {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
  position: sticky;
  top: 64px;
  z-index: 100;
}

.filter-inner {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.filter-select {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 14px;
  color: var(--white);
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
  min-width: 160px;
}
.filter-select:focus { border-color: var(--blue); }
.filter-select option { background: var(--card2); }

.filter-search {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 14px;
  color: var(--white);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  flex: 1;
  min-width: 180px;
}
.filter-search:focus { border-color: var(--blue); }
.filter-search::placeholder { color: var(--gray); }

/* ═══════════════════════════════════════════════════
   SINGLE TRAINER PAGE
═══════════════════════════════════════════════════ */
.trainer-single { padding-top: 64px; }

.trainer-hero {
  background: var(--dark);
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

.trainer-hero-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.trainer-avatar {
  width: 280px;
  height: 320px;
  object-fit: cover;
  object-position: top;
  border-radius: 14px;
  display: block;
}

.trainer-avatar-placeholder {
  width: 280px;
  height: 320px;
  background: var(--card);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  border: 1px solid var(--border);
}

.trainer-name { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; margin-bottom: 0.3rem; }
.trainer-specialty-badge {
  display: inline-flex;
  background: rgba(255,94,26,0.15);
  color: var(--orange);
  border: 1px solid rgba(255,94,26,0.3);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.trainer-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.trainer-meta-item { display: flex; align-items: center; gap: 6px; font-size: 14px; color: var(--lgray); }
.trainer-meta-item .mi-icon { font-size: 16px; }

.trainer-bio-preview { color: var(--lgray); font-size: 15px; line-height: 1.7; margin-bottom: 1.5rem; }

.trainer-action-row { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.trainer-body {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.trainer-section { margin-bottom: 2.5rem; }
.trainer-section h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.cert-item-display {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 14px;
  color: var(--lgray);
}

.avail-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.avail-chip {
  background: rgba(37,99,235,0.12);
  color: #60a5fa;
  border: 1px solid rgba(37,99,235,0.25);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 600;
}

.sidebar-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  position: sticky;
  top: 90px;
}

.sidebar-card h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.sidebar-rate {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
}
.sidebar-rate-label { color: var(--gray); font-size: 13px; margin-bottom: 1.25rem; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--white);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  margin-bottom: 0.75rem;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--blue); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--gray); }
.contact-form textarea { resize: vertical; min-height: 90px; }

/* ═══════════════════════════════════════════════════
   SIGN-UP PAGE
═══════════════════════════════════════════════════ */
.signup-page { padding-top: 64px; }
.signup-wrap { max-width: 800px; margin: 0 auto; padding: 3rem 2rem 5rem; }

.signup-header { text-align: center; margin-bottom: 3rem; }
.signup-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--orange); margin-bottom: 0.75rem;
}
.signup-header h1 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 900; margin-bottom: 0.75rem; }
.signup-header p { color: var(--gray); font-size: 15px; max-width: 500px; margin: 0 auto; line-height: 1.65; }

.form-section {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.form-section-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid.cols-1 { grid-template-columns: 1fr; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--lgray); }

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--white);
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray); }
.form-group select option { background: var(--card2); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-hint { font-size: 12px; color: var(--gray); margin-top: 2px; }

.cert-list { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 0.75rem; }
.cert-item-form {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--card2); border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 12px; font-size: 14px;
}
.cert-remove {
  margin-left: auto; background: none; border: none;
  color: var(--gray); cursor: pointer; font-size: 16px; padding: 2px 4px;
}
.cert-remove:hover { color: var(--red); }
.cert-add-row { display: flex; gap: 0.5rem; }
.cert-add-row input { flex: 1; }

.avail-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.4rem;
}
.avail-day-btn {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.6rem 0.25rem;
  text-align: center;
  cursor: pointer;
  user-select: none;
  transition: all 0.18s;
  font-size: 12px;
  font-weight: 600;
  color: var(--lgray);
  font-family: inherit;
}
.avail-day-btn.active { background: var(--blue); border-color: var(--blue); color: #fff; }
.avail-day-btn:hover:not(.active) { border-color: var(--border2); color: var(--white); }

.form-submit-area { text-align: center; margin-top: 2rem; }
.form-submit-area p { color: var(--gray); font-size: 13px; margin-top: 0.75rem; line-height: 1.6; }
.form-error { color: var(--red); font-size: 14px; margin-top: 0.75rem; }

.success-box { text-align: center; padding: 5rem 2rem; }
.success-icon { font-size: 72px; margin-bottom: 1rem; }
.success-box h2 { font-size: 2rem; font-weight: 900; margin-bottom: 0.75rem; }
.success-box p { color: var(--gray); font-size: 15px; max-width: 440px; margin: 0 auto 2rem; line-height: 1.65; }

/* ═══════════════════════════════════════════════════
   SERVICES PAGE
═══════════════════════════════════════════════════ */
.services-page { padding-top: 64px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }

.svc-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}
.svc-card:hover { transform: translateY(-4px); border-color: var(--border2); }
.svc-card img { width: 100%; height: 220px; object-fit: cover; display: block; }
.svc-body { padding: 1.25rem; }
.svc-body h3 { font-size: 18px; font-weight: 700; padding-bottom: 0.75rem; margin-bottom: 0.5rem; border-bottom: 1px solid var(--border); }
.svc-meta { color: var(--gray); font-size: 13px; margin: 0.6rem 0 1rem; line-height: 1.7; }

/* ═══════════════════════════════════════════════════
   CTA SECTIONS
═══════════════════════════════════════════════════ */
.register-cta { background: var(--dark); padding: 5rem 0; text-align: center; }
.register-cta h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 1rem; }
.register-cta p { color: var(--gray); max-width: 480px; margin: 0 auto 2rem; font-size: 15px; line-height: 1.65; }

.cta-band { background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 5rem 0; text-align: center; }
.cta-band h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 0.75rem; }
.cta-band p { color: var(--gray); font-size: 15px; max-width: 420px; margin: 0 auto 2rem; }
.cta-btns { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════════════════ */
.breadcrumb {
  padding: 1rem 2rem;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.breadcrumb a { color: var(--lgray); text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
#site-footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.footer-logo:hover { text-decoration: none; color: var(--white); }
.footer-logo-icon {
  width: 30px; height: 30px;
  background: var(--blue);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 12px; color: #fff;
}

.footer-brand p { color: var(--gray); font-size: 13px; line-height: 1.65; max-width: 260px; margin-top: 0.5rem; }

.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1rem; color: var(--white); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a { color: var(--gray); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  font-size: 12px;
  color: var(--gray);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-links { display: flex; gap: 1.25rem; }
.footer-links a { color: var(--gray); text-decoration: none; font-size: 12px; }
.footer-links a:hover { color: var(--white); }

/* ═══════════════════════════════════════════════════
   EMPTY / NO RESULTS
═══════════════════════════════════════════════════ */
.empty-state {
  text-align: center;
  padding: 5rem 2rem;
  color: var(--gray);
  grid-column: 1 / -1;
}
.empty-state .ei { font-size: 48px; margin-bottom: 1rem; }
.empty-state p { font-size: 15px; line-height: 1.6; }
.empty-state a { color: var(--orange); }

/* ═══════════════════════════════════════════════════
   NOTIFICATIONS / ALERTS
═══════════════════════════════════════════════════ */
.alert {
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 1rem;
  border-left: 4px solid;
}
.alert-success { background: rgba(22,163,74,0.1); border-color: var(--green); color: #4ade80; }
.alert-error { background: rgba(220,38,38,0.1); border-color: var(--red); color: #f87171; }
.alert-info { background: rgba(37,99,235,0.1); border-color: var(--blue); color: #60a5fa; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }

  .why-inner { grid-template-columns: 1fr; gap: 2rem; }
  .testimonial-band { grid-template-columns: 1fr; }
  .t-img { min-height: 250px; }

  .trainer-hero-inner { grid-template-columns: 1fr; }
  .trainer-avatar,
  .trainer-avatar-placeholder { width: 100%; height: 260px; border-radius: 10px; }

  .trainer-body { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }

  .form-grid { grid-template-columns: 1fr; }
  .avail-days-grid { grid-template-columns: repeat(4, 1fr); }

  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .hero-content { margin: 0 1rem; padding: 2rem 1.5rem; }

  .filter-inner { flex-direction: column; align-items: stretch; }
  .filter-select { min-width: unset; }
}

@media (max-width: 480px) {
  .avail-days-grid { grid-template-columns: repeat(4, 1fr); }
  .trainer-action-row { flex-direction: column; }
  .hero-btns { flex-direction: column; }
}
