/* ============================================================
   EXECUTIVE LIGHT SPORTS MARKETPLACE DESIGN SYSTEM
   ============================================================ */

:root,
html,
body,
[data-theme="light"],
[data-theme="dark"] {
  --bg: #f8fafc;
  --bg-radial: radial-gradient(circle at 50% 0%, rgba(2, 132, 199, 0.06) 0%, transparent 60%), #f8fafc;
  --surface: #ffffff;
  --surface-card: #ffffff;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --ink: #0f172a;
  --ink-2: #1e293b;
  --muted: #64748b;
  --muted-light: #94a3b8;
  --accent: #0284c7;
  --accent-hover: #0369a1;
  --accent-text: #ffffff;
  --header-bg: rgba(255, 255, 255, 0.95);
  --header-border: #e2e8f0;
  --card-bg: #ffffff;
  --input-bg: #ffffff;
  --footer-bg: #0f172a;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.12);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

/* ============================
   GLOBAL RESET & BASE
   ============================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; background: #f8fafc; color: #0f172a; }
body {
  background: #f8fafc;
  color: #0f172a;
  font-family: 'Cairo', 'Tajawal', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ============================
   NAVBAR (EXECUTIVE SLATE - SAME AS FOOTER)
   ============================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 4vw;
  background: #0f172a;
  border-bottom: 1px solid #1e293b;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.25);
}

.site-nav {
  max-width: 1280px;
  margin: auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand,
a.brand,
a.brand:hover,
a.brand:visited {
  font-size: 20px;
  font-weight: 900;
  color: #ffffff !important;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.star-icon {
  color: #fbbf24;
  font-size: 22px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.primary-nav a {
  font-size: 14px;
  font-weight: 700;
  color: #94a3b8;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 99px;
  transition: all 0.18s ease;
  white-space: nowrap;
}

.primary-nav a:hover,
.primary-nav a.active-link {
  color: #38bdf8;
  background: #1e293b;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-modal-trigger-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border: 1px solid #1e293b;
  border-radius: 99px;
  background: #1e293b;
  color: #38bdf8;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  height: 38px;
  transition: all 0.18s ease;
  flex-shrink: 0;
  box-sizing: border-box;
}

.search-modal-trigger-btn:hover {
  border-color: #38bdf8;
  background: #0284c7;
  color: #ffffff;
  transform: translateY(-1px);
}

.site-nav .language {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 14px;
  border: 1px solid #1e293b;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.18s ease;
  height: 38px;
  box-sizing: border-box;
  background: #1e293b;
}

.site-nav .language:hover {
  border-color: #38bdf8;
  color: #38bdf8;
  background: #1e293b;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: #0284c7;
  border: 1.5px solid #0284c7;
  border-radius: 99px;
  color: #ffffff;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 900;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.3);
  transition: all 0.2s ease;
  height: 38px;
}

.nav-cta:hover {
  background: #0369a1;
  border-color: #0369a1;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.4);
}

/* USER PROFILE MENU DROPDOWN */
.user-menu-dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.user-menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 14px 4px 6px;
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 99px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  height: 38px;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.user-menu-btn:hover,
.user-menu-dropdown-wrapper.is-open .user-menu-btn {
  background: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
}

.user-menu-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid #38bdf8;
  background: #1e293b;
}

.user-menu-name {
  max-width: 130px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-menu-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  inset-inline-end: 0;
  min-width: 190px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 250;
  padding: 6px;
}

.user-menu-dropdown-wrapper.is-open .user-menu-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: #0f172a;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  border-radius: 10px;
  transition: all 0.15s ease;
  width: 100%;
  border: 0;
  background: none;
  text-align: start;
  cursor: pointer;
}

.user-dropdown-item:hover {
  background: #f0f9ff;
  color: #0284c7;
}

/* POPUP SEARCH MODAL OVERLAY */
.search-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 14vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.search-modal-overlay.is-active {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.search-modal-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 24px;
  padding: 28px 32px;
  width: 90%;
  max-width: 580px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.25);
  transform: scale(0.95) translateY(-15px);
  transition: all 0.25s ease;
}

.search-modal-overlay.is-active .search-modal-card {
  transform: scale(1) translateY(0);
}

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

.search-modal-header h3 {
  font-size: 16px;
  font-weight: 900;
  color: #0f172a;
  margin: 0;
}

.close-search-modal-btn {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #0f172a;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  transition: all 0.2s ease;
}

.close-search-modal-btn:hover {
  background: #ef4444;
  color: #ffffff;
  border-color: #ef4444;
}

.search-modal-input-group {
  display: flex;
  gap: 10px;
}

.search-modal-input-group input {
  flex: 1;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 99px;
  padding: 12px 20px;
  font-size: 14px;
  color: #0f172a;
  font-family: inherit;
  outline: none;
  transition: all 0.2s ease;
}

.search-modal-input-group input:focus {
  border-color: #0284c7;
  box-shadow: 0 0 15px rgba(2, 132, 199, 0.2);
}

.modal-search-submit {
  background: #0284c7 !important;
  color: #ffffff !important;
  border: 1.5px solid #0284c7 !important;
  border-radius: 99px !important;
  padding: 12px 24px !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  white-space: nowrap !important;
}

.modal-search-submit:hover {
  background: #0369a1 !important;
}

/* ============================================================
   DISCOVER PAGE EXECUTIVE FILTERS BAR
   ============================================================ */
.discover-filter-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  margin-bottom: 36px;
}

.filters-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  align-items: flex-end;
}

.filter-field {
  display: flex;
  flex-direction: column;
}

.filter-label {
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.filter-select {
  height: 48px;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 16px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  font-family: inherit;
  outline: none;
  transition: all 0.2s ease;
  width: 100%;
  box-sizing: border-box;
  appearance: auto;
}

.filter-select:focus,
.filter-select:hover {
  border-color: #0284c7;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(2, 132, 199, 0.12);
}

.btn-search-v2 {
  height: 48px;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  border: none;
  border-radius: 16px;
  font-size: 14.5px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.22s ease;
  box-shadow: 0 4px 16px rgba(2, 132, 199, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.btn-search-v2:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.45);
  background: linear-gradient(135deg, #0369a1 0%, #075985 100%);
}

/* ============================================================
   FULL ATHLETE POSTER CARDS V11 (.pro-card-v11)
   ============================================================ */
.pro-card-v11 {
  background: #0f172a;
  border: 1.5px solid #1e293b;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #ffffff;
  position: relative;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.2);
}

.pro-card-v11:hover {
  transform: translateY(-8px);
  border-color: #0284c7;
  box-shadow: 0 24px 50px rgba(2, 132, 199, 0.25);
}

.pro-v11-poster {
  position: relative;
  height: 250px;
  background: #090d16;
  overflow: hidden;
}

.pro-v11-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}

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

.pro-v11-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0f172a 0%, rgba(15, 23, 42, 0.7) 45%, transparent 100%);
}

.pro-v11-check-badge {
  position: absolute;
  top: 14px;
  inset-inline-end: 14px;
  width: 26px;
  height: 26px;
  background: #16a34a;
  color: #ffffff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
  display: inline-grid;
  place-items: center;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.pro-v11-status-pill {
  position: absolute;
  top: 14px;
  inset-inline-start: 14px;
  font-size: 11.5px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 99px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.pro-v11-status-pill.status-avail { background: #dcfce7; color: #15803d; border: 1px solid #86efac; }
.pro-v11-status-pill.status-off { background: #fef9c3; color: #a16207; border: 1px solid #fde047; }
.pro-v11-status-pill.status-con { background: #fee2e2; color: #b91c1c; border: 1px solid #fca5a5; }

.pro-v11-poster-identity {
  position: absolute;
  bottom: 12px;
  inset-inline-start: 18px;
  inset-inline-end: 18px;
  z-index: 2;
}

.pro-v11-sport-tag {
  font-size: 12.5px;
  font-weight: 800;
  color: #38bdf8;
  margin-bottom: 4px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.pro-v11-name {
  font-size: 20px;
  font-weight: 900;
  color: #ffffff;
  margin: 0;
  line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.pro-v11-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: #0f172a;
}

.pro-v11-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 14px;
  padding: 10px 8px;
  margin-bottom: 16px;
  text-align: center;
}

.v11-stat {
  display: flex;
  flex-direction: column;
}

.v11-stat-lbl {
  font-size: 10.5px;
  font-weight: 700;
  color: #94a3b8;
  margin-bottom: 2px;
}

.v11-stat-val {
  font-size: 12.5px;
  font-weight: 900;
  color: #ffffff;
  white-space: nowrap;
}

.pro-v11-cta {
  margin-top: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 4px 16px rgba(2, 132, 199, 0.35);
  transition: all 0.22s ease;
}

.pro-card-v11:hover .pro-v11-cta {
  background: linear-gradient(135deg, #0369a1 0%, #075985 100%);
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.55);
}

.v11-arrow {
  font-size: 15px;
  transition: transform 0.2s ease;
}

.pro-card-v11:hover .v11-arrow {
  transform: translateX(-4px);
}

.pro-v10-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  gap: 8px;
}

.pro-v10-badge-role {
  font-size: 12px;
  font-weight: 800;
  color: #0369a1;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  padding: 4px 12px;
  border-radius: 99px;
  white-space: nowrap;
}

.pro-v10-badge-status {
  font-size: 11.5px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 99px;
  white-space: nowrap;
}

.pro-v10-badge-status.status-avail { background: #dcfce7; color: #15803d; border: 1px solid #86efac; }
.pro-v10-badge-status.status-off { background: #fef9c3; color: #a16207; border: 1px solid #fde047; }
.pro-v10-badge-status.status-con { background: #fee2e2; color: #b91c1c; border: 1px solid #fca5a5; }

.pro-v10-identity-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.pro-v10-avatar-box {
  position: relative;
  width: 76px;
  height: 76px;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #e2e8f0;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
  background: #f1f5f9;
  flex-shrink: 0;
}

.pro-v10-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.pro-v10-check {
  position: absolute;
  bottom: 3px;
  inset-inline-end: 3px;
  width: 20px;
  height: 20px;
  background: #16a34a;
  color: #ffffff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
  display: inline-grid;
  place-items: center;
  border: 2px solid #ffffff;
}

.pro-v10-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pro-v10-name {
  font-size: 18px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 4px;
  line-height: 1.3;
}

.pro-v10-sport {
  font-size: 13px;
  font-weight: 800;
  color: #0284c7;
  margin-bottom: 3px;
}

.pro-v10-location {
  font-size: 12.5px;
  color: #64748b;
  font-weight: 600;
}

.pro-v10-quote-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-inline-start: 3.5px solid #0284c7;
  border-radius: 14px;
  padding: 10px 14px;
  margin-bottom: 16px;
}

.pro-v10-quote-box p {
  font-size: 12.5px;
  color: #475569;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 38px;
}

.pro-v10-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.v10-matrix-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 14px;
  border: 1.5px solid #f1f5f9;
  background: #ffffff;
  transition: all 0.2s ease;
}

.chip-nationality { background: #f0fdf4; border-color: #dcfce7; }
.chip-age { background: #fff7ed; border-color: #ffedd5; }
.chip-verified { background: #ecfdf5; border-color: #a7f3d0; }

.v10-chip-icon {
  font-size: 17px;
  flex-shrink: 0;
}

.v10-chip-text {
  display: flex;
  flex-direction: column;
}

.v10-chip-text b {
  font-size: 12px;
  font-weight: 900;
  color: #0f172a;
  white-space: nowrap;
}

.v10-chip-text small {
  font-size: 10px;
  font-weight: 700;
  color: #64748b;
}

.pro-v10-cta-btn {
  margin-top: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11.5px 18px;
  background: #0284c7;
  color: #ffffff;
  border-radius: 99px;
  font-size: 13.5px;
  font-weight: 900;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.25);
  transition: all 0.22s ease;
}

.pro-card-v10:hover .pro-v10-cta-btn {
  background: #0369a1;
  box-shadow: 0 8px 22px rgba(2, 132, 199, 0.4);
}

.v10-arrow {
  font-size: 15px;
  transition: transform 0.2s ease;
}

.pro-card-v10:hover .v10-arrow {
  transform: translateX(-4px);
}

.pro-v9-hero-banner {
  height: 96px;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 45%, #0284c7 100%);
  padding: 16px;
  position: relative;
}

.pro-v9-badges-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.pro-v9-role-badge {
  font-size: 12px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  white-space: nowrap;
}

.pro-v9-status-pill {
  font-size: 11.5px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 99px;
  white-space: nowrap;
}

.pro-v9-status-pill.status-avail { background: #dcfce7; color: #15803d; border: 1px solid #86efac; }
.pro-v9-status-pill.status-off { background: #fef9c3; color: #a16207; border: 1px solid #fde047; }
.pro-v9-status-pill.status-con { background: #fee2e2; color: #b91c1c; border: 1px solid #fca5a5; }

.pro-v9-body {
  padding: 0 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.pro-v9-avatar-box {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 4px solid #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.18);
  background: #ffffff;
  margin-top: -48px;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.pro-v9-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}

.pro-v9-check-badge {
  position: absolute;
  bottom: 2px;
  inset-inline-end: 2px;
  width: 26px;
  height: 26px;
  background: #16a34a;
  color: #ffffff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
  display: inline-grid;
  place-items: center;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.pro-v9-identity {
  margin-bottom: 14px;
  width: 100%;
}

.pro-v9-name {
  font-size: 19px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 6px;
  line-height: 1.3;
}

.pro-v9-subrole-chip {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 800;
  color: #7c3aed;
  background: #faf5ff;
  border: 1px solid #ddd6fe;
  padding: 3px 12px;
  border-radius: 99px;
  margin-bottom: 6px;
}

.pro-v9-location-line {
  font-size: 13px;
  color: #64748b;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.pro-v9-quote-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-inline-start: 4px solid #0284c7;
  border-radius: 14px;
  padding: 12px 16px;
  margin-bottom: 18px;
  width: 100%;
}

.pro-v9-quote-box p {
  font-size: 12.5px;
  color: #334155;
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 38px;
  text-align: right;
  font-style: italic;
}

.pro-v9-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
  margin-bottom: 22px;
}

.v9-metric-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 10px;
  border-radius: 16px;
  border: 1.5px solid #f1f5f9;
  background: #ffffff;
  text-align: right;
  transition: all 0.2s ease;
}

.chip-sport { background: #f0f9ff; border-color: #e0f2fe; }
.chip-age { background: #fff7ed; border-color: #ffedd5; }
.chip-verified { background: #f0fdf4; border-color: #dcfce7; }

.chip-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.chip-copy {
  display: flex;
  flex-direction: column;
}

.chip-copy b {
  font-size: 12px;
  font-weight: 900;
  color: #0f172a;
  white-space: nowrap;
}

.chip-copy small {
  font-size: 10px;
  font-weight: 700;
  color: #64748b;
}

.pro-v9-cta-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 4px 18px rgba(2, 132, 199, 0.35);
  transition: all 0.22s ease;
  margin-top: auto;
}

.pro-card-v9:hover .pro-v9-cta-btn {
  background: linear-gradient(135deg, #0369a1 0%, #075985 100%);
  box-shadow: 0 8px 26px rgba(2, 132, 199, 0.5);
  transform: translateY(-2px);
}

.v9-arrow {
  font-size: 15px;
  transition: transform 0.2s ease;
}

.pro-card-v9:hover .v9-arrow {
  transform: translateX(-4px);
}

.pro-v8-banner {
  height: 80px;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0284c7 100%);
  padding: 14px;
  position: relative;
}

.pro-v8-badges {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.pro-v8-pill {
  font-size: 11.5px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 99px;
  white-space: nowrap;
}

.pill-role {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.pill-avail { background: #dcfce7; color: #15803d; border: 1px solid #86efac; }
.pill-offers { background: #fef9c3; color: #a16207; border: 1px solid #fde047; }
.pill-contracted { background: #fee2e2; color: #b91c1c; border: 1px solid #fca5a5; }

.pro-v8-main {
  padding: 0 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.pro-v8-avatar-wrapper {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 4px solid #ffffff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.14);
  background: #ffffff;
  margin-top: -42px;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.pro-v8-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}

.pro-v8-verified {
  position: absolute;
  bottom: 0;
  inset-inline-end: 0;
  width: 24px;
  height: 24px;
  background: #16a34a;
  color: #ffffff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
  display: inline-grid;
  place-items: center;
  border: 2.5px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.pro-v8-name {
  font-size: 18.5px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 4px;
  line-height: 1.3;
}

.pro-v8-subrole {
  font-size: 13px;
  font-weight: 800;
  color: #7c3aed;
  margin-bottom: 4px;
}

.pro-v8-location {
  font-size: 12.5px;
  color: #64748b;
  font-weight: 700;
  margin-bottom: 14px;
}

.pro-v8-quote {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-inline-start: 4px solid #0284c7;
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 16px;
  width: 100%;
}

.pro-v8-quote p {
  font-size: 12.5px;
  color: #334155;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 38px;
  text-align: right;
  font-style: italic;
}

.pro-v8-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
  margin-bottom: 18px;
}

.matrix-item {
  background: #ffffff;
  border: 1.5px solid #f1f5f9;
  border-radius: 14px;
  padding: 8px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: border-color 0.2s ease;
}

.pro-card-v8:hover .matrix-item {
  border-color: #e0f2fe;
}

.m-icon {
  font-size: 16px;
  margin-bottom: 2px;
}

.m-val {
  font-size: 12px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 1px;
  white-space: nowrap;
}

.m-lbl {
  font-size: 10.5px;
  font-weight: 700;
  color: #64748b;
}

.pro-v8-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 4px 16px rgba(2, 132, 199, 0.3);
  transition: all 0.22s ease;
  margin-top: auto;
}

.pro-card-v8:hover .pro-v8-button {
  background: linear-gradient(135deg, #0369a1 0%, #075985 100%);
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.45);
  transform: translateY(-1px);
}

.btn-arrow {
  font-size: 15px;
  transition: transform 0.2s ease;
}

.pro-card-v8:hover .btn-arrow {
  transform: translateX(-4px);
}

.pro-v7-poster {
  position: relative;
  height: 190px;
  background: #0f172a;
  overflow: hidden;
}

.pro-v7-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.3s ease;
}

.pro-card-v7:hover .pro-v7-img {
  transform: scale(1.05);
}

.pro-v7-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.7) 0%, transparent 60%);
}

.pro-v7-badge-verified {
  position: absolute;
  top: 12px;
  inset-inline-end: 12px;
  width: 26px;
  height: 26px;
  background: #16a34a;
  color: #ffffff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
  display: inline-grid;
  place-items: center;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.pro-v7-badge-status {
  position: absolute;
  top: 12px;
  inset-inline-start: 12px;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 99px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.pro-v7-badge-status.status-avail { background: #dcfce7; color: #15803d; border: 1px solid #86efac; }
.pro-v7-badge-status.status-off { background: #fef9c3; color: #a16207; border: 1px solid #fde047; }
.pro-v7-badge-status.status-con { background: #fee2e2; color: #b91c1c; border: 1px solid #fca5a5; }

.pro-v7-body {
  padding: 18px 18px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pro-v7-role-tag {
  font-size: 12px;
  font-weight: 800;
  color: #0284c7;
  margin-bottom: 4px;
}

.pro-v7-name {
  font-size: 18px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 4px;
  line-height: 1.3;
}

.pro-v7-location {
  font-size: 12.5px;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 14px;
}

.pro-v7-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 10px 8px;
  margin-top: auto;
  text-align: center;
}

.v7-stat {
  display: flex;
  flex-direction: column;
}

.v7-stat small {
  font-size: 10.5px;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 2px;
}

.v7-stat b {
  font-size: 12.5px;
  font-weight: 900;
  color: #0f172a;
  white-space: nowrap;
}

.pro-v7-cta-bar {
  background: #0f172a;
  color: #ffffff;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13.5px;
  font-weight: 900;
  transition: background 0.2s ease;
}

.pro-card-v7:hover .pro-v7-cta-bar {
  background: #0284c7;
}

.v7-arrow {
  font-size: 16px;
  transition: transform 0.2s ease;
}

.pro-card-v7:hover .v7-arrow {
  transform: translateX(-4px);
}

.pro-v6-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  gap: 8px;
}

.pro-v6-role {
  font-size: 12px;
  font-weight: 800;
  color: #0369a1;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  padding: 4px 12px;
  border-radius: 99px;
  white-space: nowrap;
}

.pro-v6-status {
  font-size: 11.5px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 99px;
  white-space: nowrap;
}

.pro-v6-status.status-avail { background: #dcfce7; color: #15803d; border: 1px solid #86efac; }
.pro-v6-status.status-off { background: #fef9c3; color: #a16207; border: 1px solid #fde047; }
.pro-v6-status.status-con { background: #fee2e2; color: #b91c1c; border: 1px solid #fca5a5; }

.pro-v6-identity-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.pro-v6-avatar-box {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  background: #f1f5f9;
  flex-shrink: 0;
}

.pro-v6-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.pro-v6-check {
  position: absolute;
  bottom: 3px;
  inset-inline-end: 3px;
  width: 18px;
  height: 18px;
  background: #16a34a;
  color: #ffffff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
  display: inline-grid;
  place-items: center;
  border: 2px solid #ffffff;
}

.pro-v6-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pro-v6-name {
  font-size: 17px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 3px;
  line-height: 1.3;
}

.pro-v6-sport {
  font-size: 12.5px;
  font-weight: 800;
  color: #0284c7;
  margin-bottom: 3px;
}

.pro-v6-location {
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
}

.pro-v6-headline-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-right: 3.5px solid #0284c7;
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 16px;
}

.pro-v6-headline-box p {
  font-size: 12.5px;
  color: #475569;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 38px;
}

.pro-v6-cta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: #f0f9ff;
  color: #0284c7;
  border: 1.5px solid #bae6fd;
  border-radius: 99px;
  font-size: 13.5px;
  font-weight: 900;
  transition: all 0.2s ease;
}

.pro-card-v6:hover .pro-v6-cta {
  background: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.25);
}

.pro-card-banner {
  height: 64px;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 55%, #0284c7 100%);
  padding: 12px 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.pro-badge-role {
  font-size: 11.5px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  white-space: nowrap;
}

.pro-badge-status {
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 99px;
  white-space: nowrap;
}

.pro-badge-status.status-avail { background: #dcfce7; color: #15803d; border: 1px solid #86efac; }
.pro-badge-status.status-off { background: #fef9c3; color: #a16207; border: 1px solid #fde047; }
.pro-badge-status.status-con { background: #fee2e2; color: #b91c1c; border: 1px solid #fca5a5; }

.pro-card-body {
  padding: 0 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.pro-avatar-wrapper {
  position: relative;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  border: 3.5px solid #ffffff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
  background: #f1f5f9;
  margin-top: -34px;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.pro-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}

.pro-verified-badge {
  position: absolute;
  bottom: 0;
  inset-inline-end: 0;
  width: 22px;
  height: 22px;
  background: #16a34a;
  color: #ffffff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
  display: inline-grid;
  place-items: center;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.pro-meta {
  width: 100%;
  margin-bottom: 12px;
}

.pro-title-name {
  font-size: 17.5px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 6px;
  line-height: 1.3;
}

.pro-tags-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.tag-sport {
  font-size: 12px;
  font-weight: 800;
  color: #0369a1;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  padding: 3px 10px;
  border-radius: 99px;
}

.tag-location {
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 3px 10px;
  border-radius: 99px;
}

.pro-quote-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 10px 14px;
  margin-bottom: 16px;
  width: 100%;
}

.pro-quote-box p {
  font-size: 12.5px;
  color: #475569;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 38px;
  text-align: center;
}

.pro-cta-button {
  margin-top: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  background: #0284c7;
  color: #ffffff;
  border-radius: 99px;
  font-size: 13.5px;
  font-weight: 900;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.2);
}

.pro-card-v5:hover .pro-cta-button {
  background: #0369a1;
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.35);
}

.pro-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.pro-role-badge {
  font-size: 11.5px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 99px;
  background: #f0f9ff;
  color: #0369a1;
  border: 1px solid #bae6fd;
  white-space: nowrap;
}

.pro-status-badge {
  font-size: 11.5px;
  font-weight: 800;
  color: #15803d;
  background: #f0fdf4;
  padding: 4px 10px;
  border-radius: 99px;
  border: 1px solid #bbf7d0;
}

.pro-card-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  margin-bottom: 14px;
}

.pro-avatar-box {
  position: relative;
  width: 88px;
  height: 88px;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  background: #f1f5f9;
  flex-shrink: 0;
}

.pro-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.pro-verified-dot {
  position: absolute;
  bottom: 4px;
  inset-inline-end: 4px;
  width: 20px;
  height: 20px;
  background: #16a34a;
  color: #ffffff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
  display: inline-grid;
  place-items: center;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.pro-identity {
  width: 100%;
}

.pro-name {
  font-size: 17px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 3px;
}

.pro-sport-line {
  font-size: 12.5px;
  font-weight: 800;
  color: #0284c7;
  margin-bottom: 4px;
}

.pro-location {
  font-size: 12px;
  color: #64748b;
}

.pro-headline {
  font-size: 12.5px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 38px;
  text-align: center;
}

.pro-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 8px 12px;
  margin-bottom: 16px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-lbl {
  font-size: 10.5px;
  color: #64748b;
  font-weight: 700;
}

.stat-val {
  font-size: 12.5px;
  font-weight: 800;
  color: #0f172a;
}

.status-available {
  color: #16a34a !important;
}

.pro-card-action {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  background: #0284c7;
  color: #ffffff;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 900;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.2);
}

.pro-card-v4:hover .pro-card-action {
  background: #0369a1;
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.3);
}

/* ============================
   FOOTER (DARK EXECUTIVE SLATE)
   ============================ */
.site-footer {
  background: #0f172a;
  color: #f8fafc;
  margin-top: 80px;
  border-top: 1px solid #1e293b;
}

.footer-top {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 4vw 40px;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1.2fr;
  gap: 32px;
}

.footer-brand .brand {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 12px;
}

.footer-brand p {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.7;
}

.footer-top h3 {
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-top a {
  display: block;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 13.5px;
  margin-bottom: 10px;
  transition: color 0.18s ease;
}

.footer-top a:hover {
  color: #38bdf8;
}

.footer-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px;
  border-radius: 16px;
  text-align: center;
}

.footer-badge span {
  font-size: 15px;
  font-weight: 900;
  color: #ffffff;
}

.footer-badge p {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 4px;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 4vw;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #94a3b8;
}

/* FLOATING WHATSAPP BUTTON */
.whatsapp-float-btn {
  position: fixed;
  bottom: 28px;
  inset-inline-end: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.25s ease;
  text-decoration: none;
}

.whatsapp-float-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
  background: #20ba5a;
  color: #ffffff;
}

/* ============================================================
   COLORFUL HIGH-IMPACT TALENT PROFILE DESIGN (v2)
   ============================================================ */
.profile-shell {
  max-width: 1280px;
  margin: 30px auto 60px;
  padding: 0 4vw;
}

.profile-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 24px;
}

.profile-breadcrumb a {
  color: #0284c7;
  text-decoration: none;
  transition: color 0.18s ease;
}

.profile-breadcrumb a:hover {
  color: #0369a1;
}

.profile-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
}

@media (max-width: 992px) {
  .profile-layout {
    grid-template-columns: 1fr;
  }
}

/* IDENTITY CARD V2 */
.identity-card-v2 {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  margin-bottom: 28px;
  position: relative;
}

.identity-banner-bg {
  height: 120px;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 45%, #0284c7 100%);
  position: relative;
}

.identity-content-wrapper {
  padding: 0 28px 28px;
}

.identity-header-v2 {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  margin-top: -45px;
  margin-bottom: 28px;
}

.profile-photo-container {
  position: relative;
  width: 115px;
  height: 115px;
  border-radius: 24px;
  border: 4px solid #ffffff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
  background: #ffffff;
  flex-shrink: 0;
}

.profile-photo-v2 {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  object-position: center top;
}

.verified-badge-icon {
  position: absolute;
  bottom: -6px;
  inset-inline-end: -6px;
  width: 26px;
  height: 26px;
  background: #16a34a;
  color: #ffffff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
  display: inline-grid;
  place-items: center;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.identity-copy-v2 {
  flex: 1;
  padding-top: 10px;
}

.eyebrow-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.eyebrow-badge {
  font-size: 12px;
  font-weight: 800;
  color: #0369a1;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  padding: 4px 12px;
  border-radius: 99px;
}

.status-pill {
  font-size: 12px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 99px;
}

.status-available { background: #dcfce7; color: #15803d; border: 1px solid #86efac; }
.status-offers { background: #fef9c3; color: #a16207; border: 1px solid #fde047; }
.status-contracted { background: #fee2e2; color: #b91c1c; border: 1px solid #fca5a5; }

.profile-title {
  font-size: 26px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 6px;
}

.headline-v2 {
  font-size: 15px;
  font-weight: 700;
  color: #0284c7;
  margin-bottom: 12px;
}

.badges-v2 {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.role-chip, .subrole-chip, .sport-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 99px;
  vertical-align: middle;
}

.role-chip {
  background: #e0f2fe;
  color: #0369a1;
  border: 1px solid #7dd3fc;
}

.subrole-chip {
  background: #faf5ff;
  color: #7c3aed;
  border: 1px solid #ddd6fe;
}

.sport-chip {
  background: #fef3c7;
  color: #b45309;
  border: 1px solid #fde68a;
}

/* STATS TICKER BAR V2 */
.stats-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

@media (max-width: 768px) {
  .stats-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 12px;
  transition: transform 0.2s ease;
  min-width: 0;
  box-sizing: border-box;
}

.stat-card:hover {
  transform: translateY(-2px);
}

.stat-age { background: #f0f9ff; border: 1.5px solid #bae6fd; color: #0369a1; }
.stat-nationality { background: #f0fdf4; border: 1.5px solid #bbf7d0; color: #15803d; }
.stat-residence { background: #faf5ff; border: 1.5px solid #e9d5ff; color: #7c3aed; }
.stat-status { background: #ecfdf5; border: 1.5px solid #a7f3d0; color: #047857; }

.stat-icon {
  font-size: 18px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.stat-icon img {
  width: 16px !important;
  height: 12px !important;
  margin: 0 !important;
  display: inline-block !important;
  vertical-align: middle !important;
}

.stat-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  justify-content: center;
}

.stat-info b {
  font-size: 11px;
  font-weight: 800;
  color: #0f172a;
  white-space: normal;
  word-break: break-word;
  line-height: 1.25;
}

.stat-info small {
  font-size: 10px;
  font-weight: 700;
  color: #64748b;
  line-height: 1.2;
  margin-top: 2px;
}

/* DETAILS CARD V2 */
.details-card-v2 {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  margin-bottom: 28px;
}

.card-title-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  border-bottom: 1.5px solid #f1f5f9;
  padding-bottom: 14px;
}

.title-icon {
  font-size: 22px;
}

.card-title-header h2 {
  font-size: 18px;
  font-weight: 900;
  color: #0f172a;
}

.detail-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.grid-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 16px;
  border: 1.5px solid #e2e8f0;
  background: #ffffff;
  transition: all 0.2s ease;
}

.grid-card:hover {
  border-color: #0284c7;
  box-shadow: 0 4px 16px rgba(2, 132, 199, 0.08);
}

.grid-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}

.grid-card-location .grid-card-icon { background: #f0f9ff; }
.grid-card-flag .grid-card-icon { background: #f0fdf4; }
.grid-card-age .grid-card-icon { background: #fff7ed; }
.grid-card-sport .grid-card-icon { background: #fef3c7; }
.grid-card-role .grid-card-icon { background: #faf5ff; }
.grid-card-subrole .grid-card-icon { background: #f43f5e15; }
.grid-card-availability .grid-card-icon { background: #dcfce7; }
.grid-card-verified .grid-card-icon { background: #e0f2fe; }

.grid-card-content {
  display: flex;
  flex-direction: column;
}

.grid-card-content small {
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 2px;
}

.grid-card-content b {
  font-size: 14px;
  font-weight: 900;
  color: #0f172a;
}

.text-success { color: #16a34a !important; }
.text-warning { color: #d97706 !important; }
.text-danger { color: #dc2626 !important; }
.text-primary { color: #0284c7 !important; }
.text-sub { font-size: 12px; color: #b45309; display: block; font-weight: 700; }

/* SIDEBAR VIBRANT BUTTONS V2 */
.profile-sidebar .side-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 24px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.profile-sidebar .side-card h2 {
  font-size: 16px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 18px;
  border-bottom: 1.5px solid #f1f5f9;
  padding-bottom: 12px;
}

.side-action-v2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 18px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.22s ease;
  margin-bottom: 12px;
}

.side-action-video {
  background: linear-gradient(135deg, #0284c7, #0369a1);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.3);
}

.side-action-video:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.45);
}

.side-action-share {
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  color: #1e293b;
}

.side-action-share:hover {
  border-color: #0284c7;
  color: #0284c7;
  background: #f0f9ff;
}

.btn-whatsapp-v2 {
  background: linear-gradient(135deg, #25d366, #128c7e) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 99px !important;
  padding: 14px 20px !important;
  font-size: 14.5px !important;
  font-weight: 900 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35) !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  margin-bottom: 10px !important;
}

.btn-whatsapp-v2:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5) !important;
}

.btn-phone-v2 {
  background: linear-gradient(135deg, #0284c7, #0369a1) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 99px !important;
  padding: 13px 20px !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  margin-bottom: 10px !important;
}

.btn-phone-v2:hover {
  transform: translateY(-2px) !important;
}

.btn-email-v2 {
  background: linear-gradient(135deg, #4f46e5, #3730a3) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 99px !important;
  padding: 13px 20px !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  margin-bottom: 10px !important;
}

.btn-cv-download-v2 {
  background: linear-gradient(135deg, #059669, #047857) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 99px !important;
  padding: 14px 20px !important;
  font-size: 14.5px !important;
  font-weight: 900 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  text-decoration: none !important;
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.3) !important;
  transition: all 0.2s ease !important;
  margin-top: 14px !important;
}

.btn-cv-download-v2:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.45) !important;
}

/* ============================================================
   NATIVE APP BOTTOM NAVIGATION & MOBILE RESPONSIVE FIXES
   ============================================================ */

.mobile-bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  html, body {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    padding-bottom: 75px !important;
  }

  .site-header {
    padding: 0 16px !important;
  }

  .site-nav {
    height: 60px !important;
  }

  .primary-nav {
    display: none !important;
  }

  .brand, a.brand {
    font-size: 16px !important;
  }

  .mobile-bottom-nav {
    display: flex !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 65px !important;
    background: rgba(15, 23, 42, 0.97) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    align-items: center !important;
    justify-content: space-around !important;
    z-index: 9999 !important;
    box-shadow: 0 -6px 25px rgba(0, 0, 0, 0.35) !important;
    padding: 4px 6px !important;
  }

  .bottom-nav-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    color: #94a3b8 !important;
    text-decoration: none !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    flex: 1 !important;
    padding: 4px 0 !important;
    gap: 3px !important;
    transition: all 0.2s ease !important;
  }

  .bottom-nav-icon {
    font-size: 20px !important;
    line-height: 1 !important;
    transition: transform 0.2s ease !important;
  }

  .bottom-nav-label {
    line-height: 1 !important;
  }

  .bottom-nav-item:hover,
  .bottom-nav-item.active {
    color: #38bdf8 !important;
  }

  .bottom-nav-item.active .bottom-nav-icon {
    transform: translateY(-2px) scale(1.1) !important;
  }

  .whatsapp-float-btn {
    bottom: 78px !important;
    left: 16px !important;
  }

  /* Hide search button in top header on mobile (already present in bottom nav) */
  .site-header #open-search-modal-btn,
  .site-header .search-modal-trigger-btn {
    display: none !important;
  }

  /* Ad Banner Mobile Responsive Fix — Fits entire image without cropping */
  .ad-banner-container {
    padding: 0 12px !important;
    margin: 14px auto !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .ad-banner-container img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    border-radius: 10px !important;
    display: block !important;
    margin: 0 auto !important;
  }

  /* Mobile Filter Card Collapsible Styles */
  .mobile-filter-toggle-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    padding: 14px 18px !important;
    background: #ffffff !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 16px !important;
    font-weight: 800 !important;
    font-size: 15px !important;
    color: #0f172a !important;
    cursor: pointer !important;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05) !important;
    margin-bottom: 16px !important;
    transition: all 0.2s ease !important;
  }

  .mobile-filter-toggle-btn.is-open {
    border-color: #0284c7 !important;
    color: #0284c7 !important;
    box-shadow: 0 4px 18px rgba(2, 132, 199, 0.15) !important;
  }

  .mobile-filter-toggle-btn .toggle-btn-arrow {
    font-size: 18px !important;
    transition: transform 0.25s ease !important;
    display: inline-block !important;
  }

  .mobile-filter-toggle-btn.is-open .toggle-btn-arrow {
    transform: rotate(180deg) !important;
  }

  .discover-filter-card {
    display: none;
  }

  .discover-filter-card.is-expanded-mobile {
    display: block !important;
    margin-bottom: 24px !important;
    animation: fadeIn 0.25s ease-in-out !important;
  }
}

.mobile-filter-toggle-btn {
  display: none;
}
