@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Instrument+Serif:ital@0;1&display=swap');

  .services-section{
    background:#f8fafc;
}

.service-card{
    background:#fff;
    border-radius:25px;
    padding:35px 25px;
    text-align:center;
    height:100%;
    transition:all .4s ease;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
    border:1px solid rgba(0,0,0,.05);
    position:relative;
    overflow:hidden;
}

.service-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#0d6efd,#6610f2);
}

.service-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 50px rgba(13,110,253,.15);
}

.service-icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    background:linear-gradient(135deg,#0d6efd,#6610f2);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:35px;
    box-shadow:0 10px 30px rgba(13,110,253,.25);
}

.service-card h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
    color:#1e293b;
}

.service-card p{
    color:#64748b;
    line-height:1.8;
    margin-bottom:25px;
}

.service-btn{
    text-decoration:none;
    color:#0d6efd;
    font-weight:600;
    transition:.3s;
}

.service-btn i{
    margin-left:5px;
}

.service-btn:hover{
    color:#6610f2;
}

@media(max-width:991px){
    .service-card{
        padding:30px 20px;
    }
}


:root {
  --ink:       #0D1117;
  --ink-soft:  #4B5563;
  --ink-faint: #9CA3AF;
  --surface:   #F8F9FC;
  --white:     #FFFFFF;
  --accent:    #2563EB;
  --accent-lt: #EFF6FF;
  --accent-dk: #1D4ED8;
  --gold:      #F59E0B;
  --green:     #10B981;
  --red:       #EF4444;
  --border:    #E5E7EB;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,.09), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.07);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;
  --transition:   .22s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── SHARED UTILS ── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-lt);
  padding: 5px 12px; border-radius: 100px; margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.18; color: var(--ink); font-weight: 400;
}
.section-title span { color: var(--accent); font-style: italic; }
.section-sub {
  color: var(--ink-soft); font-size: 15px; line-height: 1.7; margin-top: 10px;
  max-width: 560px;
}
.btn-primary-new {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff;
  padding: 13px 26px; border-radius: var(--r-sm); font-size: 14px; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 12px rgba(37,99,235,.28);
}
.btn-primary-new:hover { background: var(--accent-dk); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,99,235,.36); }
.btn-outline-new {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--accent);
  padding: 12px 24px; border-radius: var(--r-sm); font-size: 14px; font-weight: 600;
  text-decoration: none; border: 1.5px solid var(--accent);
  transition: background var(--transition), color var(--transition);
}
.btn-outline-new:hover { background: var(--accent); color: #fff; }
.btn-ghost-new {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--ink);
  padding: 12px 24px; border-radius: var(--r-sm); font-size: 14px; font-weight: 600;
  text-decoration: none; border: 1.5px solid var(--border);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.btn-ghost-new:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }

/* ═══════════════════════════
   HERO / BANNER
═══════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0D1117 0%, #1a2744 50%, #0D1117 100%);
  padding: 100px 0 80px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 60% 50%, rgba(37,99,235,.22) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid-bg {
  position: absolute; inset: 0; opacity: .04;
  background-image: linear-gradient(var(--border) 1px, transparent 1px),
                    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero .container { position: relative; z-index: 2; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,99,235,.18); border: 1px solid rgba(37,99,235,.35);
  color: #93C5FD; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.12; color: #fff; font-weight: 400; margin-bottom: 20px;
}
.hero-title em { font-style: italic; color: #60A5FA; }
.hero-desc { color: rgba(255,255,255,.65); font-size: 16px; line-height: 1.75; margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-cta-primary {
  background: var(--accent); color: #fff;
  padding: 15px 30px; border-radius: var(--r-sm); font-size: 15px; font-weight: 700;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(37,99,235,.45);
  transition: background var(--transition), transform var(--transition);
}
.hero-cta-primary:hover { background: var(--accent-dk); transform: translateY(-2px); }
.hero-cta-secondary {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); color: #fff;
  padding: 14px 28px; border-radius: var(--r-sm); font-size: 15px; font-weight: 600;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: background var(--transition);
}
.hero-cta-secondary:hover { background: rgba(255,255,255,.14); }
.hero-stats { display: flex; gap: 32px; margin-top: 44px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.1); }
.hero-stat-num { font-size: 28px; font-weight: 800; color: #fff; line-height: 1; }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 4px; }
.hero-cards-side { display: flex; flex-direction: column; gap: 16px; }
.hero-float-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md); padding: 20px 24px; backdrop-filter: blur(16px);
  display: flex; align-items: center; gap: 16px;
  transition: transform var(--transition);
}
.hero-float-card:hover { transform: translateX(6px); }
.hero-float-icon {
  width: 48px; height: 48px; border-radius: var(--r-sm); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.hfi-blue { background: rgba(37,99,235,.25); color: #60A5FA; }
.hfi-green { background: rgba(16,185,129,.2); color: #6EE7B7; }
.hero-float-title { color: #fff; font-weight: 700; font-size: 15px; }
.hero-float-sub { color: rgba(255,255,255,.5); font-size: 13px; margin-top: 2px; }
.hero-float-badge {
  margin-left: auto; background: rgba(16,185,129,.2); color: #6EE7B7;
  font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 100px;
}

/* ═══════════════════════════
   CATEGORY PILLS
═══════════════════════════ */
.category-section { padding: 36px 0; background: var(--surface); border-bottom: 1px solid var(--border); }
.category-pills { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.cat-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 100px; padding: 10px 22px 10px 14px;
  text-decoration: none; color: var(--ink); font-size: 14px; font-weight: 600;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.cat-pill:hover { border-color: var(--accent); background: var(--accent-lt); box-shadow: var(--shadow-sm); color: var(--accent); }
.cat-pill-icon {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 14px;
}
.cp-blue { background: #EFF6FF; color: var(--accent); }
.cp-green { background: #ECFDF5; color: var(--green); }
.cat-pill-count { font-size: 11px; font-weight: 500; color: var(--ink-faint); margin-left: 2px; }

/* ═══════════════════════════
   FEATURED SECTION
═══════════════════════════ */
.featured-section { padding: 80px 0; background: var(--white); }
.featured-layout { display: grid; grid-template-columns: 360px 1fr; gap: 60px; align-items: start; }
.featured-heading { position: sticky; top: 80px; }
.feature-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.f-card {
  border-radius: var(--r-lg); overflow: hidden; background: var(--white);
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.f-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.f-card-img { position: relative; height: 190px; overflow: hidden; }
.f-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.f-card:hover .f-card-img img { transform: scale(1.05); }
.f-badge-type {
  position: absolute; top: 12px; left: 12px;
  background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
}
.f-badge-type.sale { background: var(--green); }
.f-badge-type.rent { background: var(--gold); color: var(--ink); }
.f-card-body { padding: 18px 20px; }
.f-card-category { font-size: 11px; font-weight: 600; color: var(--ink-faint); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.f-card-title {
  font-size: 15px; font-weight: 700; color: var(--ink);
  margin-bottom: 12px; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.f-card-title a { text-decoration: none; color: inherit; }
.f-card-title a:hover { color: var(--accent); }
.f-card-meta { display: flex; align-items: center; justify-content: space-between; }
.f-card-price { font-size: 16px; font-weight: 800; color: var(--accent); }
.f-card-loc { font-size: 12px; color: var(--ink-soft); display: flex; align-items: center; gap: 4px; }
.f-card-company { font-size: 12px; color: var(--ink-soft); margin-top: 6px; display: flex; align-items: center; gap: 5px; }
.f-card-date { font-size: 11px; color: var(--ink-faint); margin-top: 4px; }

/* ═══════════════════════════
   JOB LISTINGS
═══════════════════════════ */
.jobs-section { padding: 80px 0; background: var(--surface); }
.jobs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; margin-top: 48px; }
.job-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 24px; display: flex; gap: 16px; align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.job-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #BFDBFE; }
.job-logo {
  width: 52px; height: 52px; border-radius: var(--r-sm); flex-shrink: 0; overflow: hidden;
  border: 1px solid var(--border); background: var(--surface);
  display: flex; align-items: center; justify-content: center;
}
.job-logo img { width: 100%; height: 100%; object-fit: cover; }
.job-logo-placeholder { font-size: 22px; color: var(--ink-faint); }
.job-info { flex: 1; min-width: 0; }
.job-type-tag {
  display: inline-flex; align-items: center;
  background: var(--accent-lt); color: var(--accent);
  font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 100px; margin-bottom: 8px;
}
.job-title { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 4px; text-decoration: none; display: block; line-height: 1.4; }
.job-title:hover { color: var(--accent); }
.job-company { font-size: 13px; color: var(--ink-soft); font-weight: 500; display: flex; align-items: center; gap: 5px; }
.job-metas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.job-meta-pill {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; color: var(--ink-soft); background: var(--surface);
  padding: 4px 10px; border-radius: 100px; border: 1px solid var(--border);
}
.job-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
.job-salary { font-size: 15px; font-weight: 800; color: var(--ink); }
.job-view-btn {
  background: var(--accent-lt); color: var(--accent);
  padding: 7px 14px; border-radius: var(--r-sm); font-size: 12px; font-weight: 700;
  text-decoration: none; transition: background var(--transition), color var(--transition);
}
.job-view-btn:hover { background: var(--accent); color: #fff; }

/* ═══════════════════════════
   PROPERTY LISTINGS
═══════════════════════════ */
.property-section { padding: 80px 0; background: var(--white); }
.property-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; margin-top: 48px; }
.prop-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.prop-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.prop-img { position: relative; height: 210px; overflow: hidden; }
.prop-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.prop-card:hover .prop-img img { transform: scale(1.05); }
.prop-for-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--green); color: #fff;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
  padding: 5px 12px; border-radius: 100px;
}
.prop-for-tag.rent { background: var(--gold); color: var(--ink); }
.prop-featured-tag {
  position: absolute; top: 14px; right: 14px;
  background: rgba(0,0,0,.55); color: #fff; backdrop-filter: blur(8px);
  font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
}
.prop-body { padding: 20px 22px; }
.prop-type { font-size: 11px; font-weight: 600; color: var(--ink-faint); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.prop-title { font-size: 16px; font-weight: 700; color: var(--ink); line-height: 1.4; margin-bottom: 10px; }
.prop-title a { text-decoration: none; color: inherit; }
.prop-title a:hover { color: var(--accent); }
.prop-location { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--ink-soft); margin-bottom: 14px; }
.prop-amenities { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.prop-amenity { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--ink-soft); }
.prop-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border); }
.prop-price { font-size: 20px; font-weight: 800; color: var(--ink); }
.prop-price small { font-size: 12px; font-weight: 500; color: var(--ink-soft); }
.prop-actions { display: flex; gap: 8px; }
.prop-btn {
  width: 36px; height: 36px; border-radius: var(--r-sm); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center; text-decoration: none;
  color: var(--ink-soft); font-size: 14px;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.prop-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ═══════════════════════════
   TABS (NICHE) SECTION
═══════════════════════════ */
.niche-section { padding: 80px 0; background: var(--surface); }
.niche-tabs-nav {
  display: flex; gap: 4px; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--r-sm);
  padding: 4px; width: fit-content; margin: 36px auto 40px;
}
.niche-tab-btn {
  padding: 10px 28px; border-radius: 6px; border: none; background: transparent;
  font-size: 14px; font-weight: 600; color: var(--ink-soft); cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.niche-tab-btn.active { background: var(--accent); color: #fff; }
.niche-tab-btn:hover:not(.active) { background: var(--surface); color: var(--ink); }
.niche-tab-pane { display: none; }
.niche-tab-pane.active { display: block; }

/* ═══════════════════════════
   LOCATIONS / CITY
═══════════════════════════ */
.city-section { padding: 80px 0; background: var(--white); }
.city-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.city-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden; height: 200px;
  text-decoration: none; display: block;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.city-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.city-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,17,23,.85) 0%, rgba(13,17,23,.2) 60%, transparent 100%);
  transition: opacity var(--transition);
}
.city-card-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.city-card:hover .city-card-bg { transform: scale(1.06); }
.city-card-body {
  position: absolute; bottom: 20px; left: 20px; z-index: 2;
}
.city-card-name { font-size: 18px; font-weight: 700; color: #fff; line-height: 1.2; }
.city-card-count { font-size: 12px; color: rgba(255,255,255,.65); margin-top: 3px; }
.city-card-arrow {
  position: absolute; bottom: 20px; right: 20px; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px;
  transition: background var(--transition);
}
.city-card:hover .city-card-arrow { background: var(--accent); }

/* ═══════════════════════════
   CTA BANNER
═══════════════════════════ */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0D1117 0%, #1a2744 100%);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,.35) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { text-align: center; position: relative; z-index: 2; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  color: #fff; font-weight: 400; margin-bottom: 16px;
}
.cta-title em { font-style: italic; color: #60A5FA; }
.cta-sub { color: rgba(255,255,255,.6); font-size: 16px; margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════
   PRICING
═══════════════════════════ */
.pricing-section { padding: 70px 10px; background: var(--surface); }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 48px; }
.price-card-new {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-xl); padding: 36px 32px;
  position: relative; transition: transform var(--transition), box-shadow var(--transition);
}
.price-card-new:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.price-card-new.featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, var(--accent-lt) 0%, var(--white) 50%);
}
.price-popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 100px; white-space: nowrap;
}
.price-icon {
  width: 52px; height: 52px; border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  margin-bottom: 20px;
}
.pi-gray { background: var(--surface); color: var(--ink-soft); }
.pi-blue { background: var(--accent-lt); color: var(--accent); }
.pi-dark { background: var(--ink); color: #fff; }
.price-amount { font-size: 40px; font-weight: 800; color: var(--ink); line-height: 1; }
.price-amount span { font-size: 18px; font-weight: 500; color: var(--ink-soft); vertical-align: super; font-style: normal; }
.price-period { font-size: 13px; color: var(--ink-faint); margin-bottom: 6px; }
.price-plan-name { font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 20px; }
.price-divider { height: 1px; background: var(--border); margin-bottom: 20px; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.price-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--ink-soft);
}
.price-feature .check { color: var(--green); font-size: 12px; }
.price-feature .cross { color: var(--ink-faint); font-size: 12px; }
.price-feature.disabled { opacity: .5; }
.price-btn-full {
  display: block; text-align: center; width: 100%;
  padding: 14px; border-radius: var(--r-sm); font-size: 14px; font-weight: 700;
  text-decoration: none; transition: background var(--transition), transform var(--transition);
}
.price-btn-outline-full { border: 1.5px solid var(--border); color: var(--ink); background: transparent; }
.price-btn-outline-full:hover { border-color: var(--accent); color: var(--accent); }
.price-btn-primary-full { background: var(--accent); color: #fff; box-shadow: 0 2px 12px rgba(37,99,235,.3); }
.price-btn-primary-full:hover { background: var(--accent-dk); transform: translateY(-1px); }
.price-btn-dark-full { background: var(--ink); color: #fff; }
.price-btn-dark-full:hover { background: #1f2937; transform: translateY(-1px); }

/* ═══════════════════════════
   RECENT UPLOADS (BLOG)
═══════════════════════════ */
.recent-section { padding: 80px 0; background: var(--white); }
.recent-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin-top: 48px; }
.recent-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.recent-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.recent-img { position: relative; height: 180px; overflow: hidden; }
.recent-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.recent-card:hover .recent-img img { transform: scale(1.05); }
.recent-tag {
  position: absolute; top: 12px; left: 12px;
  font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
}
.rt-job { background: var(--accent); color: #fff; }
.rt-property { background: var(--green); color: #fff; }
.recent-body { padding: 18px 20px; }
.recent-meta { display: flex; align-items: center; gap: 14px; font-size: 12px; color: var(--ink-faint); margin-bottom: 10px; }
.recent-meta-item { display: flex; align-items: center; gap: 4px; }
.recent-title { font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.4; margin-bottom: 8px; }
.recent-title a { text-decoration: none; color: inherit; }
.recent-title a:hover { color: var(--accent); }
.recent-location { font-size: 13px; color: var(--ink-soft); display: flex; align-items: center; gap: 5px; margin-bottom: 6px; }
.recent-price { font-size: 15px; font-weight: 800; color: var(--accent); }
.recent-read-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--accent); text-decoration: none; margin-top: 14px;
  transition: gap var(--transition);
}
.recent-read-more:hover { gap: 10px; }

/* ═══════════════════════════
   SLIDER SHARED
═══════════════════════════ */
.slider-section { padding: 80px 0; }
.slider-section.bg-surface { background: var(--surface); }
.slider-section.bg-white { background: var(--white); }

.slider-outer { position: relative; }
.slider-track-wrap { overflow: hidden; border-radius: var(--r-lg); }
.slider-track {
  display: flex; gap: 24px;
  transition: transform .52s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

/* Handpicked / Featured Job Slider */
.hj-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.hj-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #BFDBFE; }
.hj-img { position: relative; height: 200px; overflow: hidden; }
.hj-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.hj-card:hover .hj-img img { transform: scale(1.05); }
.hj-overlay-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 100px;
}
.hj-overlay-badge.gold { background: var(--gold); color: var(--ink); }
.hj-wish {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.88); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-faint); font-size: 13px;
  transition: color var(--transition), background var(--transition);
}
.hj-wish:hover { color: #EF4444; background: #fff; }
.hj-body { padding: 20px 22px; }
.hj-category { font-size: 11px; font-weight: 600; color: var(--ink-faint); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.hj-title { font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.4; margin-bottom: 10px; }
.hj-title a { text-decoration: none; color: inherit; }
.hj-title a:hover { color: var(--accent); }
.hj-company { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--ink-soft); margin-bottom: 12px; }
.hj-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 14px; }
.hj-tag {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; color: var(--ink-soft);
  background: var(--surface); border: 1px solid var(--border);
  padding: 3px 9px; border-radius: 100px;
}
.hj-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border); }
.hj-salary { font-size: 16px; font-weight: 800; color: var(--ink); }
.hj-apply {
  background: var(--accent); color: #fff;
  padding: 8px 16px; border-radius: var(--r-sm); font-size: 12px; font-weight: 700;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}
.hj-apply:hover { background: var(--accent-dk); transform: translateY(-1px); }

/* Recent Job Slider — horizontal card style */
.rj-card {
  flex: 0 0 calc(50% - 12px);
  min-width: 0;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 20px 22px; display: flex; gap: 16px; align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.rj-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #BFDBFE; }
.rj-logo {
  width: 54px; height: 54px; flex-shrink: 0; border-radius: var(--r-sm);
  overflow: hidden; border: 1px solid var(--border); background: var(--surface);
  display: flex; align-items: center; justify-content: center;
}
.rj-logo img { width: 100%; height: 100%; object-fit: cover; }
.rj-logo-ph { font-size: 22px; color: var(--ink-faint); }
.rj-info { flex: 1; min-width: 0; }
.rj-type-row { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.rj-type-tag {
  background: var(--accent-lt); color: var(--accent);
  font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 100px;
}
.rj-new-tag {
  background: #ECFDF5; color: var(--green);
  font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 100px;
}
.rj-title { font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.4; margin-bottom: 4px; text-decoration: none; display: block; }
.rj-title:hover { color: var(--accent); }
.rj-company { font-size: 13px; color: var(--ink-soft); display: flex; align-items: center; gap: 5px; margin-bottom: 10px; }
.rj-metas { display: flex; flex-wrap: wrap; gap: 8px; }
.rj-meta { display: flex; align-items: center; gap: 4px; font-size: 12px; color: var(--ink-soft); }
.rj-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); }
.rj-salary { font-size: 14px; font-weight: 800; color: var(--accent); }
.rj-date { font-size: 11px; color: var(--ink-faint); display: flex; align-items: center; gap: 4px; }

/* Slider nav controls */
.slider-controls {
  display: flex; align-items: center; gap: 10px; margin-top: 32px; justify-content: center;
}
.slider-btn {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 15px; color: var(--ink-soft);
  transition: background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
}
.slider-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; box-shadow: 0 4px 14px rgba(37,99,235,.3); }
.slider-btn:disabled { opacity: .35; pointer-events: none; }
.slider-dots { display: flex; gap: 6px; }
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); border: none; cursor: pointer; padding: 0;
  transition: background var(--transition), transform var(--transition), width var(--transition);
}
.slider-dot.active { background: var(--accent); width: 22px; border-radius: 4px; }
.slider-section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; margin-bottom: 40px;
}

/* ═══════════════════════════
   RESPONSIVE
═══════════════════════════ */
@media (max-width: 1024px) {
  .featured-layout { grid-template-columns: 1fr; }
  .featured-heading { position: static; }
  .feature-cards-grid { grid-template-columns: repeat(4, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 100px; margin-left: auto; margin-right: auto; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .hj-card { flex: 0 0 calc(30% - 12px); }
  .rj-card { flex: 0 0 100%; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-cards-side { display: none; }
  .hero { padding: 70px 0 60px; }
  .feature-cards-grid { grid-template-columns: 1fr 1fr; }
  .city-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 20px; }
  .hj-card { flex: 0 0 100%; }
  .rj-card { flex: 0 0 100%; }
  .slider-section-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .feature-cards-grid { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: 1fr; }
  .niche-tabs-nav { width: 100%; justify-content: center; }
}

/* container width reuse */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin-left: auto; margin-right: auto; }
.view-all-wrap { text-align: center; margin-top: 40px; }

