:root {
  --orange: #E8642A;
  --orange-dark: #C84E18;
  --orange-light: #FF7A3D;
  --orange-pale: #FFF0E8;
  --dark: #0F1419;
  --dark-2: #1A2332;
  --dark-3: #243044;
  --mid: #3D5166;
  --text: #2C3E50;
  --text-light: #64748B;
  --text-lighter: #94A3B8;
  --border: #E8EDF2;
  --border-light: #F1F5F9;
  --white: #FFFFFF;
  --success: #10B981;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(15,20,25,0.08);
  --shadow-md: 0 8px 40px rgba(15,20,25,0.12);
  --shadow-lg: 0 20px 60px rgba(15,20,25,0.16);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body { font-family:'DM Sans',sans-serif; color:var(--text); background:var(--white); overflow-x:hidden; }

/* ── NAV ── */
nav {
  position: fixed; top:0; left:0; right:0; z-index:100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
}
.nav-inner {
  max-width: 1280px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  height: 70px;
}
.nav-logo {
  font-family:'Sora',sans-serif; font-size:22px; font-weight:800;
  color:var(--dark); text-decoration:none; letter-spacing:-0.5px;
}
.nav-logo span { color:var(--orange); }
.nav-links { display:flex; align-items:center; gap:32px; list-style:none; }
.nav-links a { font-size:14px; font-weight:500; color:var(--text-light); text-decoration:none; transition:color .2s; }
.nav-links a:hover, .nav-links a.active{ color:var(--orange); }
.nav-cta { display:flex; align-items:center; gap:12px; }
.btn-ghost {
  padding:9px 20px; border-radius:var(--radius-sm); border:1.5px solid var(--border);
  font-size:14px; font-weight:500; color:var(--text); background:transparent;
  cursor:pointer; text-decoration:none; transition:all .2s;
}
.btn-ghost:hover { border-color:var(--orange); color:var(--orange); }
.btn-primary {
  padding:9px 22px; border-radius:var(--radius-sm);
  background:var(--orange); color:white; font-size:14px; font-weight:600;
  border:none; cursor:pointer; text-decoration:none; transition:all .2s;
  box-shadow: 0 4px 12px rgba(232,100,42,0.3);
}
.btn-primary:hover { background:var(--orange-dark); transform:translateY(-1px); box-shadow:0 6px 16px rgba(232,100,42,0.4); }

.text-primary { color:var(--orange) !important; }
.bg-primary { background:var(--orange) !important; color:white !important; }
/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark-3) 100%);
  display:flex; align-items:center;
  padding: 120px 5% 80px;
  position:relative; overflow:hidden;
}
.hero::before {
  content:'';
  position:absolute; top:-200px; right:-100px;
  width:700px; height:700px;
  background: radial-gradient(circle, rgba(232,100,42,0.15) 0%, transparent 70%);
  border-radius:50%;
}
/* .hero::after {
  content:'';
  position:absolute; bottom:-100px; left:-50px;
  width:400px; height:400px;
  background: radial-gradient(circle, rgba(232,100,42,0.08) 0%, transparent 70%);
  border-radius:50%;
} */
.hero-grid {
  max-width:1280px; margin:0 auto; width:100%;
  display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center;
}
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(232,100,42,0.15); border:1px solid rgba(232,100,42,0.3);
  color:#FF9A6C; padding:6px 14px; border-radius:50px;
  font-size:13px; font-weight:500; margin-bottom:24px;
}
.hero-badge::before { content:'●'; font-size:8px; animation:pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

.hero h1 {
  font-family:'Sora',sans-serif;
  font-size: clamp(36px,4.5vw,58px);
  font-weight:800; line-height:1.1; letter-spacing:-1.5px;
  color:white; margin-bottom:20px;
}
.hero h1 em { color:var(--orange); font-style:normal; }
.hero p {
  font-size:17px; color:rgba(255,255,255,0.65); line-height:1.7;
  margin-bottom:36px; max-width:480px; font-weight:300;
}

/* Search Box */
.search-box {
  background:white; border-radius:var(--radius);
  padding:8px; display:flex; gap:8px; align-items:center;
  box-shadow: var(--shadow-lg); margin-bottom:10px;
}
.search-input-wrap { flex:1; display:flex; align-items:center; gap:10px; padding:0 12px; }
.search-input-wrap svg { color:var(--text-lighter); flex-shrink:0; }
.search-input-wrap input {
  flex:1; border:none; outline:none; font-size:15px;
  font-family:'DM Sans',sans-serif; color:var(--text);
}
.search-input-wrap input::placeholder { color:var(--text-lighter); }
.search-divider { width:1px; height:36px; background:var(--border); }
.search-select {
  border:none; outline:none; font-size:14px; font-family:'DM Sans',sans-serif;
  color:var(--text); padding:0 12px; cursor:pointer; background:transparent;
  min-width:160px;
}
.search-btn {
  padding:12px 24px; background:var(--orange); color:white;
  border:none; border-radius:10px; font-size:15px; font-weight:600;
  cursor:pointer; font-family:'DM Sans',sans-serif; white-space:nowrap;
  transition:all .2s; box-shadow:0 4px 12px rgba(232,100,42,0.4);
}
.search-btn:hover { background:var(--orange-dark); transform:translateY(-1px); }

.hero-tags { display:flex; flex-wrap:wrap; gap:8px; }
.hero-tag {
  background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.12);
  color:rgba(255,255,255,0.7); padding:5px 12px; border-radius:50px;
  font-size:12px; cursor:pointer; transition:all .2s; text-decoration:none;
}
.hero-tag:hover { background:rgba(232,100,42,0.2); border-color:rgba(232,100,42,0.4); color:white; }

/* Hero right stats */
.hero-right { position:relative; }
.hero-stats-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.stat-card {
  background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.1);
  border-radius:var(--radius); padding:24px;
  backdrop-filter:blur(10px); transition:all .3s;
}
.stat-card:hover { background:rgba(255,255,255,0.08); transform:translateY(-2px); }
.stat-card.featured {
  grid-column:1/-1;
  background:linear-gradient(135deg,var(--orange),var(--orange-dark));
  border-color:transparent;
}
.stat-icon { font-size:28px; margin-bottom:12px; }
.stat-num { font-family:'Sora',sans-serif; font-size:32px; font-weight:800; color:white; line-height:1; }
.stat-label { font-size:13px; color:rgba(255,255,255,0.6); margin-top:4px; font-weight:300; }
.stat-card.featured .stat-label { color:rgba(255,255,255,0.8); }

/* Floating card */
.trust-float {
  position:absolute; bottom:-20px; left:-30px;
  background:white; border-radius:14px; padding:14px 18px;
  box-shadow:var(--shadow-md); display:flex; align-items:center; gap:12px;
  animation: float 3s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.trust-avatars { display:flex; }
.trust-avatars span {
  width:30px; height:30px; border-radius:50%; border:2px solid white;
  background:var(--orange); display:flex; align-items:center; justify-content:center;
  font-size:11px; color:white; font-weight:700; margin-left:-8px;
}
.trust-avatars span:first-child { margin-left:0; }
.trust-text { font-size:12px; }
.trust-text strong { display:block; font-size:13px; color:var(--dark); }
.trust-text span { color:var(--text-light); }

/* ── TRUST BAR ── */
.trust-bar {
  background:var(--dark-2); padding:20px 5%;
  border-bottom:1px solid rgba(255,255,255,0.06);
}
.trust-bar-inner {
  max-width:1280px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between; gap:32px;
  flex-wrap:wrap;
}
.trust-item { display:flex; align-items:center; gap:10px; color:rgba(255,255,255,0.7); font-size:13px; }
.trust-item svg { color:var(--orange); flex-shrink:0; }

/* ── SECTION COMMON ── */
section { padding:90px 5%; }
.section-inner { max-width:1280px; margin:0 auto; }
.section-label {
  display:inline-flex; align-items:center; gap:8px;
  color:var(--orange); font-size:12px; font-weight:700;
  text-transform:uppercase; letter-spacing:2px; margin-bottom:14px;
}
.section-label::before { content:''; width:20px; height:2px; background:var(--orange); border-radius:2px; }
.section-title {
  font-family:'Sora',sans-serif; font-size:clamp(28px,3vw,40px);
  font-weight:800; color:var(--dark); letter-spacing:-1px; line-height:1.15;
}
.section-sub { font-size:16px; color:var(--text-light); margin-top:10px; font-weight:300; }

/* ── CATEGORIES ── */
.cats-section { background:var(--border-light); }
.cats-header { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:48px; flex-wrap:wrap; gap:16px; }
.cats-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(160px,1fr)); gap:14px; }
.cat-card {
  background:white; border-radius:var(--radius); padding:24px 16px;
  text-align:center; border:1.5px solid var(--border);
  cursor:pointer; text-decoration:none; transition:all .25s;
  display:flex; flex-direction:column; align-items:center; gap:12px;
}
.cat-card:hover {
  border-color:var(--orange); transform:translateY(-4px);
  box-shadow:0 12px 32px rgba(232,100,42,0.12);
}
.cat-icon {
  width:56px; height:56px; border-radius:14px;
  background:var(--orange-pale); display:flex; align-items:center;
  justify-content:center; font-size:24px; transition:all .25s;
}
.cat-card:hover .cat-icon { background:var(--orange); }
.cat-name { font-size:13px; font-weight:600; color:var(--dark); }
.cat-count { font-size:11px; color:var(--text-lighter); }
.view-all-btn {
  display:inline-flex; align-items:center; gap:8px;
  color:var(--orange); font-weight:600; font-size:14px;
  text-decoration:none; border:1.5px solid var(--orange);
  padding:10px 22px; border-radius:var(--radius-sm); transition:all .2s;
}
.view-all-btn:hover { background:var(--orange); color:white; }

/* ── HOW IT WORKS ── */
.how-section { background:white; }
.steps-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:40px; margin-top:56px; }
.step-card { text-align:center; position:relative; }
.step-card::after {
  content:'→'; position:absolute; top:28px; right:-24px;
  font-size:24px; color:var(--border); font-weight:300;
}
.step-card:last-child::after { display:none; }
.step-num {
  width:56px; height:56px; border-radius:16px;
  background:linear-gradient(135deg,var(--orange),var(--orange-dark));
  display:flex; align-items:center; justify-content:center;
  font-family:'Sora',sans-serif; font-size:20px; font-weight:800; color:white;
  margin:0 auto 20px; box-shadow:0 8px 20px rgba(232,100,42,0.3);
}
.step-title { font-family:'Sora',sans-serif; font-size:18px; font-weight:700; color:var(--dark); margin-bottom:10px; }
.step-desc { font-size:14px; color:var(--text-light); line-height:1.7; }

/* ── PROFESSIONALS SECTION (used on category page too) ── */
.pros-section { background:var(--border-light); }
.pros-header { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:32px; flex-wrap:wrap; gap:16px; }
.pros-filters { display:flex; gap:8px; flex-wrap:wrap; }
.filter-btn {
  padding:7px 16px; border-radius:50px; border:1.5px solid var(--border);
  font-size:13px; font-weight:500; color:var(--text-light);
  background:white; cursor:pointer; transition:all .2s;
}
.filter-btn.active, .filter-btn:hover { border-color:var(--orange); color:var(--orange); background:var(--orange-pale); }
.pros-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:20px; }
.pro-card {
  background:white; border-radius:var(--radius); overflow:hidden;
  border:1.5px solid var(--border); transition:all .25s; cursor:pointer;
}
.pro-card:hover { border-color:var(--orange); box-shadow:var(--shadow-md); transform:translateY(-3px); }
.pro-card-top { padding:20px; display:flex; gap:14px; align-items:flex-start; }
.pro-avatar {
  width:54px; height:54px; border-radius:14px; background:var(--orange);
  flex-shrink:0; display:flex; align-items:center; justify-content:center;
  font-family:'Sora',sans-serif; font-size:20px; font-weight:800; color:white;
}
.pro-info { flex:1; min-width:0; }
.pro-name { font-family:'Sora',sans-serif; font-size:16px; font-weight:700; color:var(--dark); }
.pro-trade { font-size:13px; color:var(--text-light); margin-top:2px; }
.pro-badges { display:flex; gap:6px; flex-wrap:wrap; margin-top:8px; }
.badge {
  padding:3px 10px; border-radius:50px; font-size:11px; font-weight:600;
}
.badge-verified { background:#E8F5E9; color:#2E7D32; }
.badge-featured { background:var(--orange-pale); color:var(--orange-dark); }
.badge-top { background:#EDE7F6; color:#512DA8; }
.pro-card-mid { padding:0 20px 16px; }
.pro-stats { display:flex; gap:20px; }
.pro-stat { text-align:center; }
.pro-stat-num { font-family:'Sora',sans-serif; font-size:18px; font-weight:700; color:var(--dark); }
.pro-stat-label { font-size:11px; color:var(--text-lighter); }
.stars { color:#F59E0B; font-size:13px; letter-spacing:1px; }
.pro-card-footer {
  padding:14px 20px; border-top:1px solid var(--border-light);
  display:flex; align-items:center; justify-content:space-between;
}
.pro-location { display:flex; align-items:center; gap:5px; font-size:12px; color:var(--text-light); }
.pro-cta {
  padding:8px 18px; background:var(--orange); color:white;
  border:none; border-radius:var(--radius-sm); font-size:13px;
  font-weight:600; cursor:pointer; font-family:'DM Sans',sans-serif;
  transition:all .2s;
}
.pro-cta:hover { background:var(--orange-dark); }

/* ── TESTIMONIALS ── */
.testimonials-section { background:white; }
.testimonials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:48px; }
.testimonial-card {
  background:var(--border-light); border-radius:var(--radius);
  padding:28px; border:1.5px solid var(--border); transition:all .25s;
}
.testimonial-card:hover { border-color:var(--orange); box-shadow:var(--shadow); }
.testimonial-card.featured {
  background:linear-gradient(135deg,var(--dark),var(--dark-2));
  border-color:transparent; grid-row:span 2;
}
.quote-icon { font-size:36px; color:var(--orange); margin-bottom:16px; line-height:1; }
.testimonial-card.featured .quote-icon { color:rgba(232,100,42,0.6); }
.testimonial-text { font-size:14px; line-height:1.8; color:var(--text-light); }
.testimonial-card.featured .testimonial-text { color:rgba(255,255,255,0.7); font-size:15px; }
.testimonial-author { display:flex; align-items:center; gap:12px; margin-top:20px; }
.author-avatar {
  width:40px; height:40px; border-radius:50%;
  background:var(--orange); display:flex; align-items:center;
  justify-content:center; font-weight:700; color:white; font-size:14px; flex-shrink:0;
}
.author-name { font-weight:600; font-size:14px; color:var(--dark); }
.testimonial-card.featured .author-name { color:white; }
.author-trade { font-size:12px; color:var(--text-lighter); }
.testimonial-card.featured .author-trade { color:rgba(255,255,255,0.5); }

/* ── JOIN CTA ── */
.join-section {
  background:linear-gradient(135deg,var(--dark) 0%,var(--dark-2) 100%);
  position:relative; overflow:hidden;
}
.join-section::before {
  content:''; position:absolute; top:-50%; right:-10%;
  width:600px; height:600px;
  background:radial-gradient(circle,rgba(232,100,42,0.2) 0%,transparent 60%);
  border-radius:50%;
}
.join-inner {
  max-width:1280px; margin:0 auto;
  display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center;
}
.join-title {
  font-family:'Sora',sans-serif; font-size:clamp(28px,3vw,42px);
  font-weight:800; color:white; letter-spacing:-1px; margin-bottom:16px;
}
.join-title em { color:var(--orange); font-style:normal; }
.join-desc { font-size:16px; color:rgba(255,255,255,0.6); line-height:1.7; margin-bottom:32px; font-weight:300; }
.join-features { display:flex; flex-direction:column; gap:14px; }
.join-feature { display:flex; align-items:center; gap:12px; color:rgba(255,255,255,0.8); font-size:14px; }
.join-feature-dot { width:8px; height:8px; border-radius:50%; background:var(--orange); flex-shrink:0; }
.join-card {
  background:white; border-radius:var(--radius-lg); padding:40px;
  box-shadow:var(--shadow-lg);
}
.join-card-title { font-family:'Sora',sans-serif; font-size:22px; font-weight:700; color:var(--dark); margin-bottom:8px; }
.join-card-sub { font-size:14px; color:var(--text-light); margin-bottom:28px; }
.join-input {
  width:100%; padding:14px 16px; border:1.5px solid var(--border);
  border-radius:var(--radius-sm); font-size:15px; outline:none;
  font-family:'DM Sans',sans-serif; color:var(--text); margin-bottom:12px;
  transition:border-color .2s;
}
.join-input:focus { border-color:var(--orange); }
.join-submit {
  width:100%; padding:14px; background:var(--orange); color:white;
  border:none; border-radius:var(--radius-sm); font-size:15px; font-weight:700;
  cursor:pointer; font-family:'DM Sans',sans-serif; transition:all .2s;
  box-shadow:0 6px 16px rgba(232,100,42,0.3);
}
.join-submit:hover { background:var(--orange-dark); transform:translateY(-1px); }
.join-note { text-align:center; margin-top:12px; font-size:12px; color:var(--text-lighter); }

/* ── POPULAR AREAS ── */
.areas-section { background:var(--border-light); }
.areas-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:10px; margin-top:36px; }
.area-link {
  background:white; border:1.5px solid var(--border); border-radius:10px;
  padding:12px 16px; text-decoration:none; color:var(--text);
  font-size:13px; font-weight:500; transition:all .2s;
  display:flex; align-items:center; justify-content:space-between;
}
.area-link:hover { border-color:var(--orange); color:var(--orange); background:var(--orange-pale); }
.area-link span { font-size:11px; color:var(--text-lighter); }

/* ── FOOTER ── */
footer {
  background:var(--dark); color:white; padding:60px 5% 0;
}
.footer-grid {
  max-width:1280px; margin:0 auto;
  display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px;
  padding-bottom:48px; border-bottom:1px solid rgba(255,255,255,0.08);
}
.footer-brand-name {
  font-family:'Sora',sans-serif; font-size:22px; font-weight:800; margin-bottom:14px;
}
.footer-brand-name span { color:var(--orange); }
.footer-desc { font-size:14px; color:rgba(255,255,255,0.5); line-height:1.8; margin-bottom:24px; font-weight:300; }
.footer-social { display:flex; gap:10px; }
.social-btn {
  width:38px; height:38px; border-radius:10px;
  background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.1);
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,0.6); font-size:14px; cursor:pointer;
  transition:all .2s; text-decoration:none;
}
.social-btn:hover { background:var(--orange); border-color:var(--orange); color:white; }
.footer-col-title { font-family:'Sora',sans-serif; font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:1.5px; color:rgba(255,255,255,0.4); margin-bottom:20px; }
.footer-links { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-links a { font-size:14px; color:rgba(255,255,255,0.6); text-decoration:none; transition:color .2s; font-weight:300; }
.footer-links a:hover { color:var(--orange); }
.footer-contact { display:flex; flex-direction:column; gap:12px; }
.footer-contact-item { display:flex; align-items:flex-start; gap:10px; font-size:13px; color:rgba(255,255,255,0.6); font-weight:300; }
.footer-contact-item svg { color:var(--orange); flex-shrink:0; margin-top:2px; }
.footer-bottom {
  max-width:1280px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  padding:20px 0; font-size:12px; color:rgba(255,255,255,0.35);
  flex-wrap:wrap; gap:12px;
}
.footer-bottom-links { display:flex; gap:20px; }
.footer-bottom-links a { color:rgba(255,255,255,0.35); text-decoration:none; transition:color .2s; }
.footer-bottom-links a:hover { color:rgba(255,255,255,0.7); }

/* ── ANIMATIONS ── */
.fade-up { opacity:0; transform:translateY(30px); transition:all 0.6s ease; }
.fade-up.visible { opacity:1; transform:translateY(0); }

/* ── RESPONSIVE ── */
@media(max-width:768px) {
  .hero-grid { grid-template-columns:1fr; gap:40px; }
  .hero-right { display:none; }
  .steps-grid, .testimonials-grid { grid-template-columns:1fr; }
  .join-inner { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .nav-links { display:none; }
}


/* Trust row */
.hero-trust-row {
    display: flex; align-items: center; gap: 16px;
    flex-wrap: wrap; margin-bottom: 24px;
}
.tp-pill {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 50px; padding: 7px 14px;
    text-decoration: none; transition: all 0.3s;
}
.tp-pill:hover { background: rgba(255,255,255,0.13); }
.tp-pill .tp-name { font-size: 0.78rem; font-weight: 800; color: #fff; }
.tp-pill .tp-name em { color: #00b67a; font-style: normal; }
.tp-pill .tp-stars i { color: #00b67a; font-size: 0.7rem; }
.tp-pill .tp-num { font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.85); }
.h-divider { width: 1px; height: 18px; background: rgba(255,255,255,0.18); }
.h-avatars { display: flex; }
.h-avatars img {
    width: 28px; height: 28px; border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.25);
    margin-left: -7px; object-fit: cover;
}
.h-avatars img:first-child { margin-left: 0; }
.h-trust-text { font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.75); }


/* Hero stats */
.hero-stats { display: flex; gap: 28px; flex-wrap: wrap; }
.h-stat .h-stat-num {
    font-size: 1.8rem; font-weight: 900; color: #fff;
    line-height: 1; display: block; letter-spacing: -0.5px;
}
.h-stat .h-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.55); font-weight: 500; }