/* ====== Genship — Stylesheet ====== */

:root{
  --primary: #4F46E5;
  --primary-dark: #3C2DCB;
  --accent-yellow: #FCD34D;
  --accent-yellow-strong: #F59E0B;
  --hero-navy-1: #0E1A3F;
  --hero-navy-2: #182B5C;
  --hero-navy-3: #0B1330;
  --bg-soft: #F4F5FA;
  --border: #E5E7EB;
  --text: #1F2937;
  --muted: #6B7280;
  --green: #10B981;
  --red: #EF4444;
}

*{box-sizing:border-box;}
body{
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg-soft);
  color: var(--text);
  line-height: 1.5;
}
a{text-decoration:none; color:inherit;}
ul{list-style:none;padding:0;margin:0;}

/* ============= TOP BAR ============= */
.top-bar{
  background: linear-gradient(90deg, #0E1A3F 0%, #182B5C 100%);
  color:#fff;
  padding: 8px 0;
  font-size: 13px;
}
.top-bar .register-link{color: var(--accent-yellow); font-weight:600;}
.btn-view-all{
  background: var(--primary);
  color: #fff !important;
  border-radius: 4px;
  padding: 2px 10px;
  font-size: 12px;
}
.btn-view-all:hover{background: var(--primary-dark); color:#fff;}

/* ============= HEADER ============= */
.site-header{
  background:#fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(0,0,0,.02);
  z-index: 999;
}
.header-inner{
  display:flex;
  align-items:center;
  gap: 16px;
  padding: 14px 0;
}
.brand{display:flex;align-items:center;gap:10px;}
.brand-logo{
  width:42px;height:42px;
  display:flex;align-items:center;justify-content:center;
  background: linear-gradient(135deg, var(--primary), #6B5BFF);
  color:#fff;
  border-radius: 50%;
  font-size: 20px;
}
.brand-text{display:flex;flex-direction:column;line-height:1.1;}
.brand-name{font-weight:800;font-size:22px;color:var(--text);}
.brand-tag{font-size:11px;color:var(--muted);}

.search-bar{
  flex:1;
  display:flex;
  background:#fff;
  border:1px solid var(--border);
  border-radius:8px;
  overflow:hidden;
  max-width: 620px;
}
.search-bar.mobile{max-width: 100%;}
.search-input{
  border:0;border-radius:0;
  background: #F8F9FB;
  padding: 10px 14px;
  font-size: 14px;
}
.search-input:focus{box-shadow:none;background:#fff;}
.search-select{
  border:0;border-left:1px solid var(--border);
  background:#fff;
  max-width: 160px;
  border-radius:0;
  font-size:14px;
}
.search-select:focus{box-shadow:none;}
.search-btn{
  background: var(--primary);
  color:#fff;
  border-radius: 0;
  padding: 0 18px;
}
.search-btn:hover{background: var(--primary-dark); color:#fff;}

.header-actions{display:flex;align-items:center;gap:8px;}
.header-link{color:var(--text); font-weight:600; font-size: 14px;}
.header-link:hover{color: var(--primary);}
.btn-primary-cta{
  background: linear-gradient(135deg, var(--primary), #6B5BFF);
  color:#fff !important;
  border:none;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight:600;
  font-size: 14px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-primary-cta:hover{
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(79,70,229,.3);
  color:#fff !important;
}
.mobile-menu-btn{
  background:#F3F4F6;
  border-radius:8px;
  padding: 8px 12px;
  font-size: 18px;
}

/* ============= NAV ============= */
.main-nav{
  background:#fff;
  border-top: 1px solid var(--border);
}
.nav-list{
  display:flex;
  gap: 4px;
  flex-wrap: wrap;
}
.nav-link-item{
  display:inline-block;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  position: relative;
  transition: color .15s;
}
.nav-link-item:hover{color: var(--primary);}
.nav-link-item.active{
  color: var(--primary);
  background: rgba(79,70,229,.07);
  border-radius: 8px 8px 0 0;
}
.nav-link-item.active::after{
  content:"";
  position:absolute;
  left: 12px; right: 12px;
  bottom: 0;
  height: 3px;
  background: var(--primary);
  border-radius: 3px 3px 0 0;
}

/* ============= MOBILE DRAWER ============= */
.mobile-drawer{
  position: fixed;
  top:0; left: -320px;
  width: 280px; height: 100vh;
  background:#fff;
  z-index: 1500;
  padding: 20px;
  transition: left .3s ease;
  overflow-y:auto;
  box-shadow: 4px 0 24px rgba(0,0,0,.1);
}
.mobile-drawer.open{left:0;}
.mobile-drawer-header{
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.mobile-drawer-header .brand-name{font-weight:800;font-size:22px;}
.btn-close-drawer{
  background:#F3F4F6; border:0;
  width:36px;height:36px;border-radius:50%;
  font-size:16px;
}
.mobile-nav-list li a{
  display:flex; align-items:center;
  padding: 12px;
  border-radius: 8px;
  font-weight: 500;
  color: var(--text);
}
.mobile-nav-list li a:hover{background:#F4F5FA; color: var(--primary);}
.mobile-backdrop{
  position:fixed;inset:0;
  background:rgba(0,0,0,.4);
  z-index:1400;
  display:none;
}
.mobile-backdrop.open{display:block;}

/* ============= HERO ============= */
.hero-section{padding: 20px 0;}
.hero-slide{
  position:relative;
  overflow:hidden;
  border-radius: 16px;
  min-height: 360px;
}
.hero-bg{
  position:absolute;inset:0;
  background:
    radial-gradient(circle at 20% 30%, rgba(79,70,229,.4), transparent 50%),
    linear-gradient(135deg, var(--hero-navy-3) 0%, var(--hero-navy-1) 60%, var(--hero-navy-2) 100%);
  z-index:0;
}
.hero-bg::after{
  content:"";
  position:absolute;inset:0;
  background-image: radial-gradient(circle at 25% 25%, rgba(255,255,255,.06) 0%, transparent 50%);
  pointer-events:none;
}
.hero-bg-2{background: linear-gradient(135deg, #0B1330 0%, #1E1B4B 100%);}
.hero-bg-3{background: linear-gradient(135deg, #1A0F3F 0%, #312562 100%);}
.hero-content{
  position:relative;
  z-index: 1;
  padding: 50px 40px;
}
.hero-title{
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero-sub{
  font-size: 15px;
  opacity:.85;
  max-width: 520px;
}
.hero-image{
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 14px 40px rgba(0,0,0,.3);
}
.btn-cta-secondary{
  border:2px solid #fff;
  color:#fff;
  font-weight:600;
  border-radius: 8px;
  padding: 9px 18px;
}
.btn-cta-secondary:hover{background:#fff; color:var(--hero-navy-1);}
.btn-cta-yellow{
  background: var(--accent-yellow);
  color: var(--hero-navy-1) !important;
  font-weight: 700;
  border-radius: 8px;
  padding: 10px 18px;
  border:none;
}
.btn-cta-yellow:hover{background: var(--accent-yellow-strong); color:#fff !important;}

.carousel-control-prev,
.carousel-control-next{
  width: 48px;
  opacity: 1;
}
.carousel-arrow{
  width:44px;height:44px;border-radius:50%;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  display:inline-flex;align-items:center;justify-content:center;
  color:#fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.carousel-arrow:hover{background: rgba(255,255,255,.3);}

/* ============= CATEGORY ============= */
.category-section{padding: 20px 0;}
.category-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius: 12px;
  padding: 22px 14px;
  display:flex;align-items:center;flex-direction:column;
  gap: 10px;
  text-align:center;
  height: 100%;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.category-card:hover{
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: 0 10px 24px rgba(79,70,229,.12);
}
.cat-icon{
  width:54px;height:54px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  font-size: 22px;
}
.cat-blue{background:#EEF2FF;color:#4F46E5;}
.cat-sky{background:#E0F2FE;color:#0284C7;}
.cat-green{background:#DCFCE7;color:#16A34A;}
.cat-orange{background:#FFEDD5;color:#EA580C;}
.cat-purple{background:#F3E8FF;color:#9333EA;}
.cat-red{background:#FEE2E2;color:#DC2626;}
.cat-teal{background:#CCFBF1;color:#0D9488;}
.cat-indigo{background:#E0E7FF;color:#4338CA;}
.cat-label{font-weight:600;font-size:13px;}

/* ============= ADVERTISE BANNER ============= */
.advertise-banner{
  background: linear-gradient(135deg, #4F46E5 0%, #6B5BFF 100%);
  color:#fff;
  padding: 22px 28px;
  border-radius: 14px;
  position:relative;
  overflow:hidden;
}
.advertise-banner h3{font-weight:800;font-size:22px;}
.special-offer-badge{
  display:inline-block;
  background: var(--accent-yellow);
  color: var(--hero-navy-1);
  font-weight: 800;
  padding: 8px 12px;
  border-radius: 50%;
  font-size: 11px;
  line-height: 1.1;
  transform: rotate(-8deg);
  text-align:center;
}
.price-tag{font-size: 30px; color: var(--accent-yellow); font-weight: 800;}
.price-tag small{font-size: 14px; color:#fff;}

/* ============= STATS ============= */
.stats-card{
  background:#fff;
  padding: 18px 12px;
  border-radius: 12px;
  border:1px solid var(--border);
}
.stat-item{
  display:flex;align-items:center;justify-content:center;
  gap: 10px;
  font-weight: 600;
}
.stat-item strong{display:block;font-size: 20px; color: var(--text);}
.stat-item span{display:block;font-size: 12px; color: var(--muted); font-weight: 500;}
.stat-icon{
  font-size: 24px;
  color: var(--primary);
  background: #EEF2FF;
  width: 44px; height: 44px;
  display:flex;align-items:center;justify-content:center;
  border-radius: 10px;
}

/* ============= PANELS ============= */
.panel{
  background:#fff;
  border:1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  height:100%;
}
.panel-head{
  display:flex;align-items:center;justify-content:space-between;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}
.panel-head h4,.panel-head h5{margin:0; font-weight:700;}
.view-all{color: var(--primary); font-weight:600; font-size: 13px;}
.view-all:hover{color: var(--primary-dark);}

/* Company cards */
.company-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  text-align:center;
  position:relative;
  transition: border-color .15s, box-shadow .15s;
}
.company-card:hover{border-color: var(--primary); box-shadow:0 6px 16px rgba(0,0,0,.06);}
.featured-tag{
  position:absolute;top:-2px;left:8px;
  background: var(--accent-yellow);
  color: var(--hero-navy-1);
  font-size: 9px; font-weight: 800;
  padding: 3px 8px;
  border-radius: 0 0 6px 6px;
  text-transform: uppercase;
}
.company-logo{
  width: 64px;height: 64px;
  margin: 8px auto;
  border-radius: 10px;
  background:#F4F5FA;
  display:flex;align-items:center;justify-content:center;
  font-weight: 800;
  font-size: 18px;
  color: var(--primary);
}
.company-card h6{font-size: 14px; font-weight:700; margin: 6px 0 0;}
.company-card p{font-size:11px; color: var(--muted); margin:0;}
.company-flag{font-size: 11px; margin-top: 6px;}
.star-row{color: var(--accent-yellow-strong); font-size: 12px; margin-top: 6px;}

/* Leader cards */
.leader-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  text-align:center;
  transition: border-color .15s, box-shadow .15s;
}
.leader-card:hover{border-color: var(--primary); box-shadow:0 6px 16px rgba(0,0,0,.06);}
.leader-photo{
  width:64px;height:64px;border-radius:50%;
  object-fit:cover;
  margin: 4px auto 8px;
  display:block;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
}
.leader-card h6{font-size:14px;font-weight:700;margin:6px 0 2px;}
.leader-card .leader-co{font-size: 12px; color: var(--muted); margin: 0 0 6px;}
.leader-meta{font-size:11px; color: var(--muted);}
.team-badge{
  display:inline-block;
  background:#EEF2FF;
  color: var(--primary);
  border-radius:6px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight:600;
  margin-top: 8px;
}

/* ============= ADSENSE ============= */
.adsense-banner{
  background:#fff;
  border: 2px dashed var(--border);
  border-radius: 10px;
  height: 110px;
  display:flex;align-items:center;justify-content:center;
}
.ad-title{font-weight:700;color:var(--muted);}

/* ============= CALC ============= */
.calc-card{
  display:flex;flex-direction:column;align-items:center;
  text-align:center;
  background:#FAFBFD;
  border:1px solid var(--border);
  border-radius: 10px;
  padding: 16px 10px;
  height:100%;
  gap: 6px;
  transition: transform .15s, border-color .15s, box-shadow .15s;
}
.calc-card:hover{
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(79,70,229,.10);
}
.calc-icon{
  width: 42px; height:42px;
  border-radius: 10px;
  background: linear-gradient(135deg, #EEF2FF, #E0E7FF);
  color: var(--primary);
  display:flex;align-items:center;justify-content:center;
  font-size: 18px;
}
.calc-card strong{font-size: 13px;}
.calc-card small{font-size: 11px; color: var(--muted); line-height: 1.3;}

/* ============= VENDORS ============= */
.vendor-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  text-align:center;
  height:100%;
  transition: border-color .15s, transform .15s;
}
.vendor-card:hover{border-color:var(--primary); transform: translateY(-2px);}
.vendor-logo{
  width: 54px; height: 54px;
  margin: 0 auto 8px;
  border-radius: 10px;
  display:flex;align-items:center;justify-content:center;
  background: #F4F5FA;
  font-size: 22px;
  color: var(--primary);
}
.vendor-card h6{font-size: 13px; font-weight:700; margin: 4px 0 0;}
.vendor-card p{font-size:11px; color: var(--muted); margin: 2px 0 0;}
.btn-view-profile{
  display:inline-block;
  background: var(--primary);
  color:#fff !important;
  font-size: 11px; font-weight:600;
  padding: 6px 12px;
  border-radius: 6px;
  margin-top: 8px;
}
.btn-view-profile:hover{background: var(--primary-dark);}

/* ============= CLASSIFIEDS LIST ============= */
.classified-list li{
  display:flex;align-items:center;justify-content:space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  gap: 8px;
}
.classified-list li:last-child{border-bottom:0;}
.classified-title{font-weight:600;font-size:13px;flex:1;}
.classified-tag{
  font-size: 10px;font-weight:700;
  padding: 4px 10px;
  border-radius: 20px;
}
.tag-req{background:#FEE2E2; color:#B91C1C;}
.tag-leader{background:#FCE7F3; color:#BE185D;}
.tag-opp{background:#DCFCE7; color:#15803D;}
.tag-train{background:#FFEDD5; color:#C2410C;}
.tag-other{background:#E0E7FF; color:#3730A3;}
.classified-time{font-size: 11px; color: var(--muted); min-width: 70px; text-align:right;}

/* ============= EVENTS ============= */
.event-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius: 10px;
  overflow:hidden;
  height:100%;
  transition: transform .15s, box-shadow .15s;
}
.event-card:hover{transform: translateY(-3px); box-shadow: 0 8px 18px rgba(0,0,0,.08);}
.event-img{
  position:relative;
  height: 110px;
  background-size: cover;background-position: center;
}
.event-date{
  position:absolute;top:8px;left:8px;
  background:#fff;
  border-radius:8px;
  padding: 4px 10px;
  text-align:center;
  font-weight:700;
  font-size: 11px;
  line-height:1.1;
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
}
.event-date span{display:block;font-size: 16px; color: var(--primary);}
.event-body{padding: 12px;}
.event-body h6{font-size:13px;font-weight:700;margin: 0 0 4px;}
.event-meta{font-size:11px;color:var(--muted);margin:0;}
.btn-register-now{
  display:block;
  text-align:center;
  background: linear-gradient(135deg, var(--primary), #6B5BFF);
  color:#fff !important;
  font-size: 11px;
  font-weight:600;
  padding: 6px;
  border-radius: 6px;
  margin-top: 8px;
}

/* ============= NEWS ============= */
.news-item{
  display:flex;gap:10px;align-items:center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.news-item:last-child{border-bottom:0;}
.news-thumb{
  width: 56px; height: 56px;
  border-radius:8px;
  object-fit:cover;
  flex-shrink:0;
  background:#F4F5FA;
}
.news-content h6{font-size:13px;font-weight:700;margin:0 0 4px;}
.news-content small{color: var(--muted); font-size: 11px;}

/* ============= ADVERTISE HERE ============= */
.advertise-here{
  background: linear-gradient(135deg, #2A6DF5 0%, #4F46E5 100%);
  color:#fff;
  border-radius: 14px;
  padding: 26px 30px;
}
.advertise-here h3{font-weight:800; margin: 0;}

/* ============= RANKED LIST ============= */
.ranked-list li,
.trainer-list li{
  display:flex; align-items:center; gap:10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.ranked-list li:last-child,
.trainer-list li:last-child{border-bottom:0;}
.rank-num{
  width: 22px;height: 22px;border-radius:50%;
  background: #EEF2FF; color: var(--primary);
  font-weight:700; font-size:11px;
  display:flex;align-items:center;justify-content:center;
}
.rank-logo{
  width:32px;height:32px;border-radius:8px;
  background:#F4F5FA;
  display:flex;align-items:center;justify-content:center;
  font-weight:800;font-size: 12px;color: var(--primary);
}
.rank-name{flex:1;font-weight:600;font-size:13px;}
.rank-rating{font-size:11px; color: var(--accent-yellow-strong);}
.rank-rating .num{color: var(--text); font-weight:700;}

.trainer-photo{
  width:38px;height:38px;border-radius:50%;
  object-fit:cover;
}
.trainer-name{font-weight:600;font-size:13px;line-height:1.2;margin:0;}
.trainer-meta{font-size:11px;color:var(--muted);}

/* ============= DOWNLOADS ============= */
.download-list li a{
  display:flex;align-items:center;gap:10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  font-weight: 500;
}
.download-list li:last-child a{border-bottom:0;}
.dl-icon{
  width:30px;height:30px;
  background:#EEF2FF;color: var(--primary);
  border-radius:6px;
  display:flex;align-items:center;justify-content:center;
}
.download-list li a:hover{color: var(--primary);}
.download-list li a .fa-download{color: var(--primary);}

/* ============= COMMUNITY CARDS ============= */
.community-card{
  display:flex;align-items:center;gap:10px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:10px;
  padding: 12px 14px;
  height:100%;
  transition: transform .15s, box-shadow .15s;
}
.community-card:hover{transform: translateY(-2px); box-shadow:0 6px 14px rgba(0,0,0,.06);}
.community-card i{font-size: 22px; width:38px;height:38px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;}
.community-telegram i{background:#0088CC;}
.community-whatsapp i{background:#25D366;}
.community-facebook i{background:#1877F2;}
.community-youtube i{background:#FF0000;}
.community-card strong{display:block;font-size:13px;}
.community-card small{font-size:11px;color:var(--muted);}

/* ============= SPONSORS ============= */
.sponsors-row{
  background:#fff;
  border:1px solid var(--border);
  border-radius:10px;
  padding: 18px;
  display:flex;flex-wrap:wrap;gap: 16px;
  justify-content: space-around;
  align-items:center;
  min-height: 100px;
}
.sponsor-logo{
  font-weight:800;font-size:14px;
  color: var(--muted);
  padding: 6px 10px;
  border-radius:6px;
  background:#F4F5FA;
}

/* ============= FOOTER ============= */
.site-footer{
  background: #0B1226;
  color: #B8BCD0;
  padding: 56px 0 24px;
  margin-top: 40px;
}
.site-footer h6{color:#fff;font-weight:700; margin-bottom:14px;}
.footer-about{font-size: 13px; color:#9AA0B8; line-height:1.6;}
.footer-links li{margin-bottom: 8px; font-size:13px;}
.footer-links a:hover{color: var(--accent-yellow);}
.footer-divider{border-color: rgba(255,255,255,.08); margin: 32px 0 16px;}
.social-row{display:flex;gap:8px; margin-top: 12px;}
.social-row a{
  width:34px;height:34px;border-radius:50%;
  background: rgba(255,255,255,.06);
  display:flex;align-items:center;justify-content:center;
  transition: background .15s, transform .15s;
}
.social-row a:hover{background: var(--primary); color:#fff; transform: translateY(-2px);}

/* ============= RESPONSIVE ============= */
@media (max-width: 991.98px){
  .hero-content{padding: 36px 24px;}
  .hero-title{font-size: 30px;}
  .nav-list{gap:0;}
}
@media (max-width: 767.98px){
  .header-inner{flex-wrap:wrap;}
  .hero-content{padding: 30px 20px;}
  .hero-title{font-size: 26px;}
  .advertise-banner h3{font-size:18px;}
  .price-tag{font-size:24px;}
  .stat-item{justify-content:flex-start;padding-left: 14px;}
}

/* ============= INNER PAGES ============= */
.page-hero{
  background: linear-gradient(135deg, var(--hero-navy-3) 0%, var(--hero-navy-1) 100%);
  color:#fff;
  padding: 60px 0 50px;
  margin-bottom: 30px;
}
.page-hero h1{font-weight:800;}
.breadcrumb-light a{color: var(--accent-yellow);}
.breadcrumb-light{color: rgba(255,255,255,.7); font-size:13px;}

.filter-bar{
  background:#fff;
  border:1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
}

.auth-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius: 14px;
  padding: 36px;
  max-width: 460px;
  margin: 40px auto;
  box-shadow: 0 12px 30px rgba(0,0,0,.05);
}
.auth-card h2{font-weight:800; text-align:center; margin-bottom: 8px;}
.auth-card .subtitle{text-align:center; color: var(--muted); margin-bottom: 24px;}

/* utility */
.text-warning{color: var(--accent-yellow) !important;}
