/* =============================================
   Talent Achive — Main Stylesheet
   ============================================= */

:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark: #9B7A2F;
  --black: #080808;
  --black-2: #111111;
  --black-3: #1A1A1A;
  --black-4: #222222;
  --white: #FAFAF8;
  --gray: #888888;
  --gray-light: #AAAAAA;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  --gold-gradient: linear-gradient(135deg, #C9A84C 0%, #E8C96A 50%, #9B7A2F 100%);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ── ANIMATIONS ── */
@keyframes shimmer { 0%,100%{background-position:0% 50%}50%{background-position:100% 50%} }
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(201,168,76,.4)}50%{box-shadow:0 0 0 16px rgba(201,168,76,0)} }
@keyframes float { 0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)} }
@keyframes marquee { 0%{transform:translateX(0)}100%{transform:translateX(-50%)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)} }

/* ── UTILITIES ── */
.text-gold { color: var(--gold) !important; }
.bg-dark-2 { background: var(--black-2) !important; }
.bg-dark-3 { background: var(--black-3) !important; }
.font-display { font-family: var(--font-display); }

.gold-text {
  background: var(--gold-gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s ease infinite;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-tag::before { content:''; display:block; width:24px; height:1px; background:var(--gold); }

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem,5vw,3.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.02em;
}

/* ── BUTTONS ── */
.btn-gold {
  background: var(--gold-gradient);
  color: var(--black) !important;
  font-weight: 600;
  letter-spacing: .05em;
  border: none;
  border-radius: 2px;
  padding: .65rem 1.8rem;
  transition: var(--transition);
  animation: pulse 3s ease infinite;
}
.btn-gold:hover { opacity: .85; transform: translateY(-2px); box-shadow: 0 16px 40px rgba(201,168,76,.35); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold) !important;
  border: 1px solid rgba(201,168,76,.5);
  border-radius: 2px;
  padding: .65rem 1.8rem;
  font-weight: 500;
  transition: var(--transition);
}
.btn-outline-gold:hover { background: rgba(201,168,76,.1); border-color: var(--gold); }

/* ── NAVBAR ── */
.ta-navbar {
  background: transparent;
  padding: 1.2rem 0;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}
.ta-navbar.scrolled {
  background: rgba(8,8,8,.97);
  backdrop-filter: blur(20px);
  border-bottom-color: rgba(201,168,76,.15);
  padding: .85rem 0;
}
.ta-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  background: var(--gold-gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease infinite;
}
.ta-navbar .nav-link {
  color: var(--gray-light) !important;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .3s ease;
  padding: .4rem .75rem !important;
}
.ta-navbar .nav-link:hover, .ta-navbar .nav-link.active { color: var(--gold) !important; }
.navbar-toggler { border-color: rgba(201,168,76,.4); }
.navbar-toggler-icon { filter: invert(.8) sepia(1) saturate(3) hue-rotate(5deg); }

/* ── HERO ── */
.ta-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,.12) 0%, transparent 70%),
              linear-gradient(180deg, #080808 0%, #0D0A05 50%, #080808 100%);
  padding-top: 80px;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .06;
  background-image:
    linear-gradient(rgba(201,168,76,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,1) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.ta-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem,7vw,6rem);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -.03em;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid rgba(201,168,76,.4);
  background: rgba(201,168,76,.08);
  padding: .35rem 1.2rem;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}
.hero-badge .dot { width:6px;height:6px;border-radius:50%;background:var(--gold);animation:pulse 2s ease infinite; }
.hero-stat-divider { width:1px;height:40px;background:rgba(201,168,76,.2); }
.stat-number { font-family:var(--font-display);font-size:2rem;font-weight:700;line-height:1; }

/* ── MARQUEE ── */
.ta-marquee {
  background: rgba(201,168,76,.04);
  border-top: 1px solid rgba(201,168,76,.1);
  border-bottom: 1px solid rgba(201,168,76,.1);
  padding: 1rem 0;
  overflow: hidden;
}
.ta-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.ta-marquee-item {
  padding: 0 2.5rem;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: .75rem;
}

/* ── TALENT CARDS ── */
.talent-card {
  background: var(--black-3);
  border: 1px solid rgba(201,168,76,.1);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.talent-card:hover {
  border-color: rgba(201,168,76,.4);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,.6);
}
.talent-card-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--black-4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(201,168,76,.2);
  position: relative;
}
.talent-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.talent-card:hover .talent-card-img img { transform: scale(1.06); }
.talent-badge-featured {
  position: absolute;
  top: .75rem; left: .75rem;
  background: var(--gold-gradient);
  color: var(--black);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 2px;
  z-index: 2;
}
.talent-card-body { padding: 1.2rem; }
.talent-category-label {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .3rem;
}
.talent-card-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: .4rem;
}
.talent-price { font-weight: 600; color: var(--gold-light); }
.talent-book-btn {
  display: block;
  width: 100%;
  margin-top: 1rem;
  padding: .55rem;
  background: transparent;
  border: 1px solid rgba(201,168,76,.35);
  color: var(--gold);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  border-radius: 2px;
  transition: var(--transition);
}
.talent-book-btn:hover { background: var(--gold-gradient); color: var(--black) !important; border-color: var(--gold); }

/* ── HOW IT WORKS ── */
.step-circle {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.4);
  background: var(--black-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 auto 1.2rem;
  transition: var(--transition);
}
.step-wrap:hover .step-circle { background: var(--gold); color: var(--black); transform: scale(1.1); }

/* ── WHY CARDS ── */
.why-card {
  padding: 1.6rem;
  border: 1px solid rgba(201,168,76,.1);
  border-radius: 4px;
  background: rgba(255,255,255,.01);
  transition: var(--transition);
  height: 100%;
}
.why-card:hover { border-color: rgba(201,168,76,.35); transform: translateY(-4px); background: rgba(201,168,76,.03); }
.why-icon {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ── TESTIMONIAL CARDS ── */
.testi-card {
  background: var(--black-3);
  border: 1px solid rgba(201,168,76,.08);
  border-radius: 4px;
  padding: 1.8rem;
  position: relative;
  transition: var(--transition);
  height: 100%;
}
.testi-card:hover { border-color: rgba(201,168,76,.25); transform: translateY(-4px); }
.testi-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(201,168,76,.12);
  position: absolute;
  top: .5rem; left: 1.2rem;
  line-height: 1;
}
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  color: var(--black);
  flex-shrink: 0;
}

/* ── CATEGORY CARDS ── */
.cat-card {
  background: var(--black-3);
  border: 1px solid rgba(201,168,76,.1);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  height: 100%;
}
.cat-card:hover { border-color: rgba(201,168,76,.4); transform: translateY(-4px); background: rgba(201,168,76,.04); }
.cat-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 1rem; }
.cat-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; }

/* ── FORMS ── */
.ta-form-control {
  background: var(--black-3) !important;
  border: 1px solid rgba(255,255,255,.1) !important;
  color: var(--white) !important;
  border-radius: 4px;
  padding: .75rem 1rem;
  transition: var(--transition);
}
.ta-form-control:focus {
  border-color: rgba(201,168,76,.5) !important;
  box-shadow: 0 0 0 3px rgba(201,168,76,.12) !important;
  outline: none;
}
.ta-form-control::placeholder { color: var(--gray); }
.ta-form-label { color: var(--gray-light); font-size: .85rem; font-weight: 500; margin-bottom: .4rem; }
.ta-form-select { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23C9A84C' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important; }

/* ── AUTH PAGES ── */
.ta-auth-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1rem;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(201,168,76,.08) 0%, transparent 70%), var(--black);
}
.ta-auth-card {
  background: var(--black-2);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 8px;
  padding: 2.5rem;
  width: 100%;
  max-width: 440px;
}

/* ── DASHBOARD ── */
.ta-dash-sidebar {
  width: 260px;
  background: var(--black-2);
  border-right: 1px solid rgba(201,168,76,.1);
  min-height: 100vh;
  position: fixed;
  top: 0; left: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.ta-dash-sidebar .sidebar-brand {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(201,168,76,.1);
}
.ta-dash-nav { padding: 1rem 0; flex: 1; }
.ta-dash-nav a {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .7rem 1.5rem;
  color: var(--gray-light);
  font-size: .88rem;
  font-weight: 500;
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.ta-dash-nav a:hover, .ta-dash-nav a.active {
  color: var(--gold);
  background: rgba(201,168,76,.06);
  border-left-color: var(--gold);
}
.ta-dash-nav a i { width: 18px; text-align: center; }
.ta-dash-content { margin-left: 260px; min-height: 100vh; background: var(--black); }
.ta-dash-topbar {
  background: var(--black-2);
  border-bottom: 1px solid rgba(201,168,76,.1);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.ta-stat-card {
  background: var(--black-2);
  border: 1px solid rgba(201,168,76,.12);
  border-radius: 6px;
  padding: 1.5rem;
  transition: var(--transition);
  height: 100%;
}
.ta-stat-card:hover { border-color: rgba(201,168,76,.3); }
.ta-stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.ta-stat-label { font-size: .8rem; color: var(--gray); text-transform: uppercase; letter-spacing: .1em; margin-top: .4rem; }

/* ── TABLES ── */
.ta-table { width: 100%; }
.ta-table thead th {
  background: var(--black-3);
  color: var(--gold);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .75rem 1rem;
  border: none;
}
.ta-table tbody td {
  padding: .85rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
  color: var(--gray-light);
  font-size: .88rem;
  vertical-align: middle;
}
.ta-table tbody tr:hover { background: rgba(201,168,76,.03); }

/* ── STATUS BADGES ── */
.badge-pending  { background: rgba(255,193,7,.15);  color: #ffc107; }
.badge-approved { background: rgba(25,135,84,.15);  color: #20c997; }
.badge-rejected { background: rgba(220,53,69,.15);  color: #ff6b6b; }
.badge-completed{ background: rgba(13,110,253,.15); color: #6ea8fe; }

/* ── MARKETPLACE FILTERS ── */
.ta-filter-bar {
  background: var(--black-2);
  border: 1px solid rgba(201,168,76,.1);
  border-radius: 6px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

/* ── TALENT DETAIL ── */
.ta-talent-detail {
  padding-top: 100px;
}
.talent-gallery-img {
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.15);
  background: var(--black-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  color: rgba(201,168,76,.2);
}
.talent-gallery-img img { width:100%;height:100%;object-fit:cover; }

/* ── PAYMENT PAGE ── */
.ta-payment-card {
  background: var(--black-2);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 8px;
  padding: 2rem;
}
.ta-wallet-box {
  background: var(--black-3);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 6px;
  padding: 1.5rem;
  font-family: monospace;
  font-size: .9rem;
  color: var(--gold-light);
  word-break: break-all;
  cursor: pointer;
  transition: var(--transition);
}
.ta-wallet-box:hover { border-color: var(--gold); }
.coin-tab.active { background: rgba(201,168,76,.1); border-color: var(--gold) !important; color: var(--gold); }

/* ── STICKY & FLOATING ── */
.ta-sticky-cta {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 999;
  display: none;
}
.ta-sticky-cta.visible { display: block; }
.ta-whatsapp-float {
  position: fixed;
  bottom: 5.5rem; right: 2rem;
  width: 48px; height: 48px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 998;
  animation: float 3s ease infinite;
  text-decoration: none;
}
.ta-whatsapp-float:hover { color:#fff; transform:scale(1.1); }

/* ── FOOTER ── */
.ta-footer {
  background: var(--black-2);
  border-top: 1px solid rgba(201,168,76,.1);
}
.ta-footer-links li { margin-bottom: .5rem; }
.ta-footer-links a { color: var(--gray); font-size: .85rem; transition: color .3s; }
.ta-footer-links a:hover { color: var(--white); }
.ta-social-link {
  width: 34px; height: 34px;
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: .85rem;
  transition: var(--transition);
}
.ta-social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,.08); }

/* ── ALERTS ── */
.alert-success { background: rgba(25,135,84,.15); border-color: rgba(25,135,84,.3); color: #20c997; }
.alert-danger  { background: rgba(220,53,69,.15);  border-color: rgba(220,53,69,.3);  color: #ff6b6b; }
.alert-warning { background: rgba(255,193,7,.15);  border-color: rgba(255,193,7,.3);  color: #ffc107; }
.btn-close { filter: invert(1); }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .ta-dash-sidebar { width: 0; overflow: hidden; }
  .ta-dash-sidebar.open { width: 260px; }
  .ta-dash-content { margin-left: 0; }
}
@media (max-width: 768px) {
  .ta-hero h1 { font-size: 2.4rem; }
  .ta-dash-topbar { padding: 1rem; }
}

/* ── ADMIN/MANAGER PANEL ── */
.panel-wrap { display: flex; min-height: 100vh; background: var(--black); }
.panel-main { flex: 1; display: flex; flex-direction: column; }
.panel-page { padding: 2rem; }
