/* =====================================
TALENT MARKETPLACE HERO V2
===================================== */

.talent-hero-v2{
padding:30px 0;
background:#ffffff;
}

.hero-v2-grid{
display:grid;
grid-template-columns:45% 55%;
gap:60px;
align-items:center;
}

.hero-label{
display:inline-block;
padding:10px 18px;
background:#EEF2FF;
color:#4F46E5;
border-radius:50px;
font-size:13px;
font-weight:700;
margin-bottom:20px;
}

.hero-v2-content h1{
font-size:82px;
line-height:.9;
font-weight:900;
letter-spacing:-3px;
color:#111827;
margin-bottom:25px;
}

.hero-v2-content p{
font-size:18px;
line-height:1.8;
color:#6B7280;
margin-bottom:30px;
max-width:550px;
}

.hero-search-box{
display:flex;
background:#fff;
border:1px solid #E5E7EB;
border-radius:18px;
padding:10px;
box-shadow:0 15px 40px rgba(0,0,0,.06);
margin-bottom:25px;
}

.hero-search-box input{
flex:1;
border:none;
outline:none;
padding:0 15px;
font-size:15px;
}

.hero-search-box button{
background:#111827;
color:#fff;
border:none;
padding:14px 25px;
border-radius:12px;
font-weight:600;
}

.hero-cta{
display:flex;
gap:15px;
}

.btn-explore{
background:linear-gradient(
135deg,
#6C63FF,
#00C2FF
);
color:#fff;
padding:14px 24px;
border-radius:14px;
font-weight:700;
text-decoration:none;
}

.btn-partner{
background:#fff;
border:1px solid #E5E7EB;
color:#111827;
padding:14px 24px;
border-radius:14px;
font-weight:700;
text-decoration:none;
}

.hero-showcase{
display:flex;
gap:20px;
justify-content:center;
align-items:flex-end;
}

.showcase-card{
width:220px;
height:420px;
border-radius:30px;
overflow:hidden;
position:relative;
box-shadow:0 25px 60px rgba(0,0,0,.12);
transition:.4s;
}

.showcase-card:hover{
transform:translateY(-10px);
}

.showcase-card img{
width:100%;
height:100%;
object-fit:cover;
}

.showcase-overlay{
position:absolute;
left:0;
right:0;
bottom:0;
padding:25px;
background:linear-gradient(
transparent,
rgba(0,0,0,.85)
);
color:#fff;
}

.showcase-overlay span{
font-size:13px;
opacity:.9;
}

.showcase-overlay h3{
font-size:24px;
font-weight:700;
margin-top:8px;
}

.showcase-card.active{
height:480px;
}

/* MOBILE */

@media(max-width:991px){

.hero-v2-grid{
grid-template-columns:1fr;
}

.hero-v2-content{
text-align:center;
}

.hero-v2-content h1{
font-size:58px;
}

.hero-v2-content p{
margin-left:auto;
margin-right:auto;
}

.hero-cta{
justify-content:center;
}

.hero-showcase{
margin-top:20px;
overflow-x:auto;
padding-bottom:10px;
}

}

@media(max-width:768px){

.talent-hero-v2{
padding:90px 0;
}

.hero-v2-content h1{
font-size:44px;
letter-spacing:-1px;
}

.hero-v2-content p{
font-size:16px;
}

.hero-search-box{
flex-direction:column;
gap:10px;
}

.hero-search-box button{
width:100%;
}

.hero-showcase{
justify-content:flex-start;
}

.showcase-card{
width:180px;
height:320px;
flex:none;
}

.showcase-card.active{
height:360px;
}

}

/* =====================================
BROWSE CATEGORIES
===================================== */

.browse-categories{
padding:30px 0;
background:#fff;
}

.section-heading{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:30px;
}

.section-heading h2{
font-size:42px;
font-weight:800;
margin-bottom:8px;
color:#111827;
}

.section-heading p{
color:#6B7280;
margin:0;
}

.section-heading a{
text-decoration:none;
font-weight:700;
color:#4F46E5;
}

.categories-scroll{
display:flex;
gap:20px;
overflow-x:auto;
padding-bottom:10px;
scrollbar-width:none;
}

.categories-scroll::-webkit-scrollbar{
display:none;
}

.category-card{
width:280px;
height:380px;
flex:none;
border-radius:28px;
overflow:hidden;
position:relative;
text-decoration:none;
box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.category-card img{
width:100%;
height:100%;
object-fit:cover;
transition:.4s;
}

.category-card:hover img{
transform:scale(1.08);
}

.category-overlay{
position:absolute;
left:0;
right:0;
bottom:0;
padding:25px;
background:linear-gradient(
transparent,
rgba(0,0,0,.9)
);
color:#fff;
}

.category-overlay h3{
font-size:28px;
font-weight:700;
margin-bottom:8px;
}

.category-overlay span{
font-size:14px;
opacity:.9;
}

/* =====================================
FEATURED TALENT
===================================== */

.featured-talent{
padding:30px 0;
background:#fff;
}

.talent-scroll{
display:flex;
gap:25px;
overflow-x:auto;
padding-bottom:10px;
scrollbar-width:none;
}

.talent-scroll::-webkit-scrollbar{
display:none;
}

.talent-card{
width:300px;
flex:none;
background:#fff;
border-radius:24px;
overflow:hidden;
box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.talent-card img{
width:100%;
height:320px;
object-fit:cover;
}

.talent-card-body{
padding:20px;
}

.talent-card-body h3{
font-size:22px;
font-weight:700;
margin-bottom:5px;
}

.talent-card-body span{
display:block;
color:#4F46E5;
font-weight:600;
margin-bottom:5px;
}

.talent-card-body small{
display:block;
color:#6B7280;
margin-bottom:15px;
}

.talent-card-body a{
display:inline-block;
background:#111827;
color:#fff;
padding:10px 18px;
border-radius:12px;
text-decoration:none;
font-size:14px;
font-weight:600;
}

/* =====================================
TRENDING TALENT
===================================== */

.trending-talent{
padding:30px 0;
background:#fafafa;
}

.trending-scroll{
display:flex;
gap:20px;
overflow-x:auto;
padding-bottom:10px;
scrollbar-width:none;
}

.trending-scroll::-webkit-scrollbar{
display:none;
}

.trending-card{
width:260px;
flex:none;
background:#fff;
border-radius:24px;
padding:20px;
box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.rank{
display:inline-block;
font-size:28px;
font-weight:800;
color:#4F46E5;
margin-bottom:15px;
}

.trending-card img{
width:100%;
height:240px;
object-fit:cover;
border-radius:18px;
margin-bottom:15px;
}

.trending-card h3{
font-size:20px;
font-weight:700;
margin-bottom:5px;
}

.trending-card p{
color:#6B7280;
margin:0;
}

/* =====================================
EXPLORE ALL TALENT
===================================== */

.explore-talent{
padding:30px 0;
background:#fff;
}

.talent-filters{
display:flex;
gap:15px;
margin:40px 0;
flex-wrap:wrap;
}

.talent-filters input,
.talent-filters select{
padding:14px 18px;
border:1px solid #E5E7EB;
border-radius:14px;
background:#fff;
min-width:180px;
}

.talent-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.market-talent-card{
background:#fff;
border-radius:24px;
overflow:hidden;
box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.market-talent-card img{
width:100%;
height:280px;
object-fit:cover;
}

.market-card-body{
padding:20px;
}

.market-card-body h3{
font-size:22px;
font-weight:700;
margin-bottom:6px;
}

.market-card-body span{
display:block;
color:#4F46E5;
font-weight:600;
margin-bottom:6px;
}

.market-card-body p{
color:#6B7280;
margin-bottom:10px;
}

.market-card-body strong{
display:block;
margin-bottom:15px;
}

.market-card-body a{
display:inline-block;
background:#111827;
color:#fff;
padding:10px 18px;
border-radius:12px;
text-decoration:none;
}

@media(max-width:1200px){

.talent-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.talent-grid{
grid-template-columns:1fr;
}

.talent-filters{
flex-direction:column;
}

.talent-filters input,
.talent-filters select{
width:100%;
}

}

/* =====================================
WHY ACMOBOOK
===================================== */

.why-acmobook{
padding:30px 0;
background:#fafafa;
}

.why-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
margin-top:40px;
}

.why-card{
background:#fff;
padding:35px;
border-radius:24px;
text-align:center;
box-shadow:0 15px 40px rgba(0,0,0,.05);
}

.why-icon{
width:70px;
height:70px;
margin:auto;
margin-bottom:20px;
border-radius:20px;
background:#EEF2FF;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
}

.why-card h3{
font-size:22px;
font-weight:700;
margin-bottom:12px;
}

.why-card p{
color:#6B7280;
margin:0;
}

@media(max-width:991px){

.why-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.why-grid{
grid-template-columns:1fr;
}

}

/* =====================================
PARTNER CTA
===================================== */

.partner-cta{
padding:30px 0;
background:#ffffff;
}

.partner-box{
background:linear-gradient(
135deg,
#6C63FF,
#2563EB
);
padding:70px;
border-radius:36px;
display:flex;
justify-content:space-between;
align-items:center;
gap:40px;
color:#fff;
}

.partner-tag{
display:inline-block;
padding:10px 18px;
background:rgba(255,255,255,.15);
border-radius:50px;
font-size:13px;
font-weight:700;
margin-bottom:20px;
}

.partner-box h2{
font-size:52px;
font-weight:900;
margin-bottom:20px;
}

.partner-box p{
font-size:18px;
line-height:1.8;
max-width:650px;
margin:0;
opacity:.95;
}

.partner-actions{
display:flex;
gap:15px;
flex-wrap:wrap;
}

.partner-btn-primary{
background:#fff;
color:#111827;
padding:16px 26px;
border-radius:14px;
font-weight:700;
text-decoration:none;
}

.partner-btn-secondary{
background:transparent;
border:1px solid rgba(255,255,255,.4);
color:#fff;
padding:16px 26px;
border-radius:14px;
font-weight:700;
text-decoration:none;
}

@media(max-width:991px){

.partner-box{
flex-direction:column;
text-align:center;
padding:50px 30px;
}

.partner-box h2{
font-size:38px;
}

.partner-actions{
justify-content:center;
}

}

.section-heading h2{
font-size:42px;
font-weight:800;
margin-bottom:10px;
color:#111827;
}

.section-heading p{
font-size:18px;
color:#6B7280;
margin:0;
}

.talent-card,
.trending-card,
.market-talent-card{
transition:.3s;
}

.talent-card:hover,
.trending-card:hover,
.market-talent-card:hover{
transform:translateY(-8px);
}

/* =====================================
TABLET & ACCESSIBILITY ENHANCEMENTS
===================================== */

@media(min-width:769px) and (max-width:991px){

.hero-v2-content h1{
font-size:52px;
}

.section-heading h2{
font-size:34px;
}

.why-grid{
grid-template-columns:repeat(2,1fr);
}

.talent-card,
.category-card{
width:260px;
}

}

@media(max-width:767px){

.section-heading{
flex-direction:column;
align-items:flex-start;
gap:12px;
}

.section-heading h2{
font-size:28px;
}

.why-grid{
grid-template-columns:1fr;
}

.btn-explore,
.btn-partner{
min-height:48px;
display:inline-flex;
align-items:center;
justify-content:center;
}

}

@media (prefers-reduced-motion: reduce){

.showcase-card:hover,
.talent-card:hover,
.trending-card:hover,
.market-talent-card:hover,
.category-card:hover img{
transform:none;
}

}