/* Imported intact from provided design */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --cream: #FDF8F3; --sand: #F5EDE4; --warm: #E8DDD2;
  --teal: #1A6B5A; --teal-dark: #0F4F42; --teal-light: #E6F2EF;
  --gold: #C8963E; --gold-light: #F9F0E0;
  --coral: #E07A5F; --coral-light: #FCE8E3;
  --text: #2C2C2C; --text-light: #6B6B6B; --white: #FFFFFF;
  --border: #E0D6CC; --purple-light: #E8E6F2;
  --font-d: 'Fraunces', serif; --font-b: 'DM Sans', sans-serif;
  --r: 16px; --rs: 10px; --rp: 50px;
  --shadow: 0 4px 30px rgba(0,0,0,0.06);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.08);
  --tr: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-b); color: var(--text); background: var(--cream); line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: inherit; }
img { max-width: 100%; display: block; }

.ctn { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(253,248,243,0.95); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { font-family: var(--font-d); font-weight: 700; font-size: 1.35rem; color: var(--teal); display: flex; align-items: center; gap: 10px; cursor: pointer; }
.logo-i { width: 38px; height: 38px; background: var(--teal); border-radius: var(--rs); display: flex; align-items: center; justify-content: center; color: white; font-size: 0.85rem; font-weight: 800; letter-spacing: -0.5px; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a, .nav-link { font-size: 0.9rem; font-weight: 500; color: var(--text-light); transition: var(--tr); cursor: pointer; background: none; border: none; font-family: var(--font-b); }
.nav-links a:hover, .nav-link:hover { color: var(--teal); }
.nav-link.act { color: var(--teal); font-weight: 600; }
.nav-cta { display: flex; gap: 10px; }
.mob-btn { display: none; background: none; font-size: 1.5rem; color: var(--text); cursor: pointer; border: none; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 11px 26px; border-radius: var(--rp); font-size: 0.9rem; font-weight: 600; transition: var(--tr); cursor: pointer; border: none; }
.btn-o { border: 1.5px solid var(--teal); color: var(--teal); background: transparent; }
.btn-o:hover { background: var(--teal); color: white; }
.btn-p { background: var(--teal); color: white; }
.btn-p:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(26,107,90,0.25); }
.btn-g { background: var(--gold); color: white; }
.btn-g:hover { background: #b8862e; }
.btn-w { background: white; color: var(--teal); font-weight: 700; }
.btn-w:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); }
.btn-wo { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.4); }
.btn-wo:hover { border-color: white; background: rgba(255,255,255,0.1); }
.btn-lg { padding: 15px 34px; font-size: 0.98rem; }
.btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* LABELS */
.s-label { display: inline-flex; align-items: center; gap: 8px; font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--teal); margin-bottom: 14px; }
.s-label::before { content: ''; width: 24px; height: 2px; background: var(--teal); }
.s-title { font-family: var(--font-d); font-size: 2.5rem; font-weight: 700; line-height: 1.2; margin-bottom: 14px; }
.s-sub { font-size: 1.02rem; color: var(--text-light); max-width: 600px; margin-bottom: 48px; line-height: 1.7; }

/* HERO */
.hero { padding: 130px 0 90px; position: relative; overflow: hidden; background: linear-gradient(135deg, var(--cream) 0%, var(--teal-light) 50%, var(--sand) 100%); }
.hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 700px; height: 700px; background: radial-gradient(circle, rgba(26,107,90,0.08) 0%, transparent 70%); border-radius: 50%; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--gold-light); color: var(--gold); font-size: 0.78rem; font-weight: 700; padding: 7px 16px; border-radius: var(--rp); margin-bottom: 20px; letter-spacing: 0.5px; text-transform: uppercase; }
.hero h1 { font-family: var(--font-d); font-size: 3.2rem; font-weight: 700; line-height: 1.14; margin-bottom: 18px; }
.hero h1 em { color: var(--teal); font-style: italic; }
.hero-p { font-size: 1.08rem; color: var(--text-light); line-height: 1.7; margin-bottom: 32px; max-width: 520px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats { display: flex; gap: 36px; }
.h-stat-n { font-family: var(--font-d); font-size: 1.9rem; font-weight: 700; color: var(--teal); }
.h-stat-l { font-size: 0.8rem; color: var(--text-light); font-weight: 500; }

/* HERO SEARCH WIDGET */
.hero-widget { background: var(--white); border-radius: 22px; box-shadow: var(--shadow-card); padding: 32px; max-width: 460px; width: 100%; position: relative; margin: 0 auto; }
.hero-widget-title { font-family: var(--font-d); font-size: 1.15rem; font-weight: 700; margin-bottom: 18px; text-align: center; }
.hw-roles { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.hw-role { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-radius: var(--rs); border: 1.5px solid var(--border); background: var(--cream); cursor: pointer; transition: var(--tr); }
.hw-role:hover { border-color: var(--teal); background: var(--teal-light); }
.hw-role-ico { font-size: 1.3rem; }
.hw-role-text { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.hw-role-count { font-size: 0.68rem; color: var(--text-light); }
.hw-divider { display: flex; align-items: center; gap: 12px; margin: 16px 0; color: var(--text-light); font-size: 0.75rem; }
.hw-divider::before, .hw-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.hw-stats-row { display: flex; justify-content: space-between; gap: 10px; }
.hw-stat-box { flex: 1; text-align: center; padding: 12px 8px; background: var(--cream); border-radius: var(--rs); }
.hw-stat-num { font-family: var(--font-d); font-size: 1.3rem; font-weight: 700; color: var(--teal); }
.hw-stat-label { font-size: 0.65rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.3px; }

/* TRUST BAR */
.trust { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 24px 0; }
.trust .ctn { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-i { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-light); font-weight: 500; }

/* HOW IT WORKS */
.hiw { padding: 90px 0; background: var(--white); }
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.step { text-align: center; padding: 32px 20px; border-radius: var(--r); background: var(--cream); transition: var(--tr); position: relative; }
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.step-n { width: 48px; height: 48px; border-radius: 50%; background: var(--teal); color: white; display: flex; align-items: center; justify-content: center; font-family: var(--font-d); font-weight: 700; font-size: 1.15rem; margin: 0 auto 16px; }
.step h3 { font-family: var(--font-d); font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.step p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }
.step-arr { position: absolute; top: 46px; right: -18px; color: var(--border); font-size: 1.1rem; }

/* SERVICES */
.svc { padding: 90px 0; background: linear-gradient(180deg, var(--cream), var(--sand)); }
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.svc-card { background: var(--white); border-radius: var(--r); padding: 32px 24px; transition: var(--tr); border: 1px solid var(--border); cursor: pointer; }
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); border-color: var(--teal); }
.svc-ico { width: 56px; height: 56px; border-radius: var(--rs); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 18px; }
.svc-card h3 { font-family: var(--font-d); font-size: 1.12rem; font-weight: 600; margin-bottom: 8px; }
.svc-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; margin-bottom: 14px; }
.svc-link { font-size: 0.82rem; font-weight: 600; color: var(--teal); display: inline-flex; align-items: center; gap: 6px; transition: var(--tr); }
.svc-link:hover { gap: 10px; }

/* STATS */
.stats { padding: 70px 0; background: var(--teal); color: white; position: relative; overflow: hidden; }
.stats::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23fff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.stats-g { display: grid; grid-template-columns: repeat(4,1fr); gap: 36px; text-align: center; position: relative; z-index: 1; }
.stat h2 { font-family: var(--font-d); font-size: 2.6rem; font-weight: 700; margin-bottom: 4px; }
.stat p { font-size: 0.88rem; opacity: 0.85; }

/* WHY CHOOSE */
.why { padding: 90px 0; background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.why-feats { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.why-f { display: flex; gap: 14px; padding: 16px; border-radius: var(--rs); transition: var(--tr); }
.why-f:hover { background: var(--cream); }
.why-fi { flex-shrink: 0; width: 44px; height: 44px; border-radius: var(--rs); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.why-f h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 3px; }
.why-f p { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; }
.why-vis { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.why-c { background: var(--cream); border-radius: var(--r); padding: 24px; text-align: center; }
.why-c:nth-child(2), .why-c:nth-child(4) { transform: translateY(28px); }
.why-c-ico { font-size: 1.8rem; margin-bottom: 10px; }
.why-c h4 { font-family: var(--font-d); font-size: 1.5rem; font-weight: 700; color: var(--teal); margin-bottom: 2px; }
.why-c p { font-size: 0.78rem; color: var(--text-light); }

/* PROFILES / FIND WORKERS */
.profiles { padding: 90px 0; background: linear-gradient(180deg, var(--cream), var(--teal-light)); }
.prof-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 44px; flex-wrap: wrap; gap: 16px; }
.prof-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.pcard { background: var(--white); border-radius: var(--r); overflow: hidden; transition: var(--tr); border: 1px solid var(--border); }
.pcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.pcard-top { padding: 24px 20px 0; display: flex; gap: 14px; }
.pcard-av { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--sand), var(--warm)); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.pcard-info h3 { font-size: 1rem; font-weight: 600; margin-bottom: 1px; }
.pcard-role { font-size: 0.8rem; color: var(--teal); font-weight: 600; }
.pcard-loc { font-size: 0.75rem; color: var(--text-light); }
.pcard-body { padding: 14px 20px 20px; }
.pcard-tags { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 14px; }
.pcard-tag { padding: 3px 10px; border-radius: var(--rp); background: var(--cream); font-size: 0.7rem; font-weight: 500; color: var(--text-light); }
.pcard-meta { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid var(--border); }
.pcard-meta span { font-size: 0.75rem; color: var(--text-light); }
.pcard-vbtn { padding: 7px 18px; border-radius: var(--rp); background: var(--teal); color: white; font-size: 0.75rem; font-weight: 600; cursor: pointer; transition: var(--tr); }
.pcard-vbtn:hover { background: var(--teal-dark); }

/* PRICING */
.pricing { padding: 90px 0; background: var(--white); }
.price-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; max-width: 720px; margin: 0 auto; }
.prcard { background: var(--cream); border-radius: var(--r); padding: 32px 24px; text-align: center; border: 2px solid transparent; transition: var(--tr); position: relative; }
.prcard.pop { border-color: var(--teal); background: var(--white); transform: scale(1.04); box-shadow: var(--shadow-card); }
.prcard.pop::after { content: 'Most Popular'; position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--teal); color: white; padding: 3px 18px; border-radius: var(--rp); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.prcard h3 { font-family: var(--font-d); font-size: 1.25rem; font-weight: 600; margin-bottom: 6px; }
.prcard .dur { font-size: 0.82rem; color: var(--text-light); margin-bottom: 18px; }
.pr-price { font-family: var(--font-d); font-size: 2.4rem; font-weight: 700; color: var(--teal); margin-bottom: 3px; }
.pr-price span { font-size: 0.9rem; font-weight: 400; color: var(--text-light); }
.pr-note { font-size: 0.76rem; color: var(--text-light); margin-bottom: 22px; }
.pr-feats { text-align: left; margin-bottom: 24px; list-style: none; }
.pr-feats li { display: flex; align-items: center; gap: 9px; font-size: 0.85rem; padding: 7px 0; }
.pr-feats li::before { content: '✓'; color: var(--teal); font-weight: 700; width: 18px; text-align: center; flex-shrink: 0; }

/* TESTIMONIALS */
.testi { padding: 90px 0; background: linear-gradient(180deg, var(--sand), var(--cream)); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.tcard { background: var(--white); border-radius: var(--r); padding: 28px; border: 1px solid var(--border); transition: var(--tr); }
.tcard:hover { box-shadow: var(--shadow-card); }
.tcard-stars { color: var(--gold); font-size: 0.92rem; margin-bottom: 14px; letter-spacing: 2px; }
.tcard p { font-size: 0.92rem; line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.tcard-auth { display: flex; align-items: center; gap: 10px; padding-top: 14px; border-top: 1px solid var(--border); }
.tcard-avat { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--teal-light), var(--teal)); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 0.8rem; }
.tcard-name { font-weight: 600; font-size: 0.85rem; }
.tcard-loc { font-size: 0.75rem; color: var(--text-light); }

/* VISA */
.visa { padding: 90px 0; background: linear-gradient(135deg, var(--teal-light), var(--cream)); }
.visa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.visa-feats { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.visa-f { display: flex; align-items: flex-start; gap: 12px; padding: 14px; background: var(--white); border-radius: var(--rs); border: 1px solid var(--border); }
.visa-fi { width: 38px; height: 38px; border-radius: 50%; background: var(--teal); color: white; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.85rem; }
.visa-f h3 { font-size: 0.92rem; font-weight: 600; margin-bottom: 2px; }
.visa-f p { font-size: 0.8rem; color: var(--text-light); }
.visa-card { background: var(--white); border-radius: var(--r); padding: 36px; box-shadow: var(--shadow-card); }
.visa-card h3 { font-family: var(--font-d); font-size: 1.35rem; font-weight: 600; margin-bottom: 8px; }
.visa-card > p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 22px; }
.vp-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.vp-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.88rem; }
.vp-item span:last-child { font-weight: 600; color: var(--teal); }

/* FAQ */
.faq-sec { padding: 90px 0; background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--cream); border-radius: var(--rs); overflow: hidden; border: 1px solid var(--border); }
.faq-q { width: 100%; padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; font-size: 0.92rem; font-weight: 600; background: transparent; text-align: left; color: var(--text); cursor: pointer; transition: var(--tr); gap: 12px; }
.faq-q:hover { color: var(--teal); }
.faq-q .ico { font-size: 1.15rem; transition: var(--tr); color: var(--teal); flex-shrink: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a-inner { padding: 0 20px 18px; font-size: 0.85rem; color: var(--text-light); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-item.open .faq-q .ico { transform: rotate(45deg); }

/* ARTICLES */
.blog { padding: 90px 0; background: var(--cream); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.acard { background: var(--white); border-radius: var(--r); overflow: hidden; border: 1px solid var(--border); transition: var(--tr); cursor: pointer; }
.acard:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.acard-thumb { height: 160px; background: linear-gradient(135deg, var(--teal-light), var(--sand)); display: flex; align-items: center; justify-content: center; font-size: 2.4rem; }
.acard-body { padding: 20px; }
.acard-tag { display: inline-block; padding: 3px 10px; border-radius: var(--rp); background: var(--teal-light); color: var(--teal); font-size: 0.7rem; font-weight: 600; margin-bottom: 10px; }
.acard h3 { font-family: var(--font-d); font-size: 1rem; font-weight: 600; margin-bottom: 6px; line-height: 1.4; }
.acard p { font-size: 0.8rem; color: var(--text-light); line-height: 1.6; margin-bottom: 12px; }
.acard-meta { font-size: 0.72rem; color: var(--text-light); }

/* CTA */
.cta { padding: 90px 0; background: var(--teal); color: white; text-align: center; position: relative; overflow: hidden; }
.cta::before { content: ''; position: absolute; top: -50%; left: 50%; transform: translateX(-50%); width: 800px; height: 800px; background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%); border-radius: 50%; }
.cta .ctn { position: relative; z-index: 1; }
.cta h2 { font-family: var(--font-d); font-size: 2.6rem; font-weight: 700; margin-bottom: 14px; line-height: 1.2; }
.cta > .ctn > p { font-size: 1.05rem; opacity: 0.9; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
.ftr { background: var(--text); color: white; padding: 70px 0 0; }
.ftr-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.ftr-brand .logo { color: white; margin-bottom: 14px; }
.ftr-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 18px; }
.ftr-soc { display: flex; gap: 10px; }
.ftr-s { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; transition: var(--tr); cursor: pointer; }
.ftr-s:hover { background: var(--teal); border-color: var(--teal); }
.ftr-col h4 { font-family: var(--font-d); font-size: 0.95rem; font-weight: 600; margin-bottom: 16px; }
.ftr-col ul { list-style: none; }
.ftr-col li { margin-bottom: 8px; }
.ftr-col li a, .ftr-col li span { font-size: 0.82rem; color: rgba(255,255,255,0.55); transition: var(--tr); cursor: pointer; }
.ftr-col li a:hover, .ftr-col li span:hover { color: white; }
.ftr-bottom { padding: 20px 0; text-align: center; font-size: 0.78rem; color: rgba(255,255,255,0.35); }

/* SEARCH/FILTER PAGE */
.search-sec { padding: 100px 0 40px; background: var(--white); }
.search-bar { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.search-bar input, .search-bar select { padding: 11px 16px; border: 1.5px solid var(--border); border-radius: var(--rs); font-size: 0.88rem; font-family: var(--font-b); background: var(--cream); outline: none; transition: var(--tr); }
.search-bar input:focus, .search-bar select:focus { border-color: var(--teal); }
.search-bar input { flex: 1; min-width: 200px; }
.search-bar select { min-width: 150px; }
.filter-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.ftag { padding: 6px 16px; border-radius: var(--rp); border: 1.5px solid var(--border); background: var(--white); font-size: 0.82rem; font-weight: 500; cursor: pointer; transition: var(--tr); }
.ftag:hover, .ftag.act { background: var(--teal); color: white; border-color: var(--teal); }
.results-count { font-size: 0.88rem; color: var(--text-light); margin-bottom: 24px; }

/* Filter toggle */
.filter-toggle { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.filter-toggle-btn { display: flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: var(--rp); border: 1.5px solid var(--teal); background: var(--white); color: var(--teal); font-size: 0.88rem; font-weight: 600; cursor: pointer; transition: var(--tr); font-family: var(--font-b); }
.filter-toggle-btn:hover { background: var(--teal-light); }
.filter-toggle-btn.open { background: var(--teal); color: white; }
.filter-toggle-btn .ft-icon { transition: transform 0.3s ease; }
.filter-toggle-btn.open .ft-icon { transform: rotate(180deg); }
.filter-panel { overflow: hidden; transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease; }
.filter-panel.collapsed { max-height: 0; opacity: 0; margin-bottom: 0; }
.filter-panel.expanded { max-height: 400px; opacity: 1; margin-bottom: 16px; }
.filter-panel-inner { padding: 20px; background: var(--cream); border-radius: var(--r); border: 1px solid var(--border); }
.filter-panel-inner .search-bar { margin-bottom: 14px; }
.filter-panel-inner .filter-tags { margin-bottom: 0; }
.active-filters { display: flex; gap: 6px; flex-wrap: wrap; }
.active-filter { display: flex; align-items: center; gap: 4px; padding: 4px 12px; border-radius: var(--rp); background: var(--teal-light); color: var(--teal); font-size: 0.76rem; font-weight: 600; }
.af-clear { cursor: pointer; font-size: 0.9rem; margin-left: 2px; opacity: 0.7; }
.af-clear:hover { opacity: 1; }

/* SERVICE LANDING PAGE */
.svc-hero { padding: 130px 0 60px; background: linear-gradient(135deg, var(--teal-light), var(--cream)); text-align: center; }
.svc-hero h1 { font-family: var(--font-d); font-size: 2.8rem; font-weight: 700; margin-bottom: 16px; }
.svc-hero p { font-size: 1.05rem; color: var(--text-light); max-width: 640px; margin: 0 auto 32px; }
.svc-content { padding: 60px 0; background: var(--white); }
.svc-content h2 { font-family: var(--font-d); font-size: 1.8rem; font-weight: 600; margin-bottom: 16px; margin-top: 40px; }
.svc-content h2:first-child { margin-top: 0; }
.svc-content h3 { font-family: var(--font-d); font-size: 1.3rem; font-weight: 600; margin: 28px 0 10px; }
.svc-content p { font-size: 0.95rem; color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.svc-content ul { list-style: none; margin-bottom: 20px; }
.svc-content ul li { padding: 6px 0 6px 24px; position: relative; font-size: 0.92rem; color: var(--text-light); }
.svc-content ul li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }

/* ABOUT PAGE */
.about-hero { padding: 130px 0 60px; background: linear-gradient(135deg, var(--cream), var(--teal-light)); text-align: center; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 60px 0; }
.about-values { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; padding: 40px 0 80px; }
.av-card { text-align: center; padding: 32px 20px; background: var(--cream); border-radius: var(--r); }
.av-card .ico { font-size: 2rem; margin-bottom: 12px; }
.av-card h3 { font-family: var(--font-d); font-size: 1.1rem; font-weight: 600; margin-bottom: 6px; }
.av-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* CONTACT PAGE */
.contact-sec { padding: 130px 0 80px; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form input, .contact-form select, .contact-form textarea { padding: 14px 18px; border: 1.5px solid var(--border); border-radius: var(--rs); font-size: 0.92rem; font-family: var(--font-b); background: var(--cream); outline: none; transition: var(--tr); resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--teal); }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.ci-item { display: flex; gap: 14px; padding: 20px; background: var(--cream); border-radius: var(--rs); }
.ci-ico { width: 44px; height: 44px; border-radius: 50%; background: var(--teal); color: white; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.ci-item h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 2px; }
.ci-item p { font-size: 0.85rem; color: var(--text-light); }

/* VISA FULL PAGE */
.visa-hero { padding: 130px 0 60px; background: linear-gradient(135deg, var(--teal-light), var(--cream)); text-align: center; }
.visa-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; padding: 60px 0; }
.vs-card { background: var(--cream); border-radius: var(--r); padding: 28px; text-align: center; }
.vs-card .num { width: 44px; height: 44px; border-radius: 50%; background: var(--teal); color: white; display: flex; align-items: center; justify-content: center; font-family: var(--font-d); font-weight: 700; margin: 0 auto 14px; }
.vs-card h3 { font-family: var(--font-d); font-size: 1.05rem; font-weight: 600; margin-bottom: 6px; }
.vs-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* PROFILE MODAL */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.55); backdrop-filter: blur(6px); z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 12px; animation: modalFadeIn 0.25s ease; overflow: hidden; }
@keyframes modalFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalSlideUp { from { opacity: 0; transform: translateY(30px) scale(0.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
.modal { background: var(--white); border-radius: 20px; max-width: 1100px; width: calc(100% - 24px); max-height: 94vh; overflow-y: auto; overflow-x: hidden; box-shadow: 0 24px 80px rgba(0,0,0,0.2); animation: modalSlideUp 0.3s cubic-bezier(0.16,1,0.3,1); position: relative; display: flex; flex-direction: column; box-sizing: border-box; }
.modal::-webkit-scrollbar { width: 5px; }
.modal::-webkit-scrollbar-thumb { background: var(--border); border-radius: 10px; }
.modal-close { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border-radius: 50%; background: var(--cream); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; cursor: pointer; transition: var(--tr); z-index: 10; color: var(--text); }
.modal-close:hover { background: var(--teal); color: white; border-color: var(--teal); }

/* Top header bar */
.modal-top { display: flex; align-items: center; gap: 18px; padding: 22px 28px; border-bottom: 1px solid var(--border); background: linear-gradient(135deg, var(--teal-light), var(--cream)); flex-shrink: 0; box-sizing: border-box; width: 100%; }
.modal-avatar { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--teal-light), var(--teal)); display: flex; align-items: center; justify-content: center; font-size: 2rem; flex-shrink: 0; box-shadow: 0 4px 16px rgba(26,107,90,0.18); }
.modal-hinfo { flex: 1; min-width: 0; overflow: hidden; }
.modal-name { font-family: var(--font-d); font-size: 1.35rem; font-weight: 700; margin-bottom: 1px; word-wrap: break-word; }
.modal-name-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 2px; }
.modal-contact-btn { padding: 8px 22px; font-size: 0.82rem; flex-shrink: 0; border-radius: var(--rp); }
.modal-role-line { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.modal-role { font-size: 0.85rem; color: var(--teal); font-weight: 600; }
.modal-loc { font-size: 0.8rem; color: var(--text-light); }
.modal-rating { display: inline-flex; align-items: center; gap: 5px; background: var(--gold-light); color: var(--gold); padding: 3px 10px; border-radius: var(--rp); font-size: 0.74rem; font-weight: 700; }
.modal-badges-row { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; }
.modal-badge { display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px; border-radius: var(--rp); font-size: 0.7rem; font-weight: 600; white-space: nowrap; }
.mb-green { background: var(--teal-light); color: var(--teal); }
.mb-gold { background: var(--gold-light); color: var(--gold); }
.mb-coral { background: var(--coral-light); color: #C04A33; }
.mb-purple { background: var(--purple-light); color: #6B5BA8; }

/* 2-col body */
.modal-body { display: grid; grid-template-columns: 1fr 1fr; width: 100%; box-sizing: border-box; }
.modal-col { padding: 20px 24px; box-sizing: border-box; min-width: 0; overflow: hidden; }
.modal-col:first-child { border-right: 1px solid var(--border); }

.modal-section { margin-bottom: 16px; }
.modal-section-title { font-family: var(--font-d); font-size: 0.88rem; font-weight: 700; margin-bottom: 8px; color: var(--text); display: flex; align-items: center; gap: 7px; }
.modal-section-title .ms-ico { font-size: 0.88rem; }

.modal-details-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.modal-details-2col { grid-template-columns: 1fr 1fr; }
.modal-detail { background: var(--cream); padding: 9px 11px; border-radius: 8px; box-sizing: border-box; min-width: 0; }
.modal-detail-label { font-size: 0.62rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 1px; }
.modal-detail-value { font-size: 0.8rem; font-weight: 600; color: var(--text); word-wrap: break-word; overflow-wrap: break-word; }

.modal-visa-status { display: flex; align-items: center; gap: 7px; padding: 9px 12px; background: var(--teal-light); border-radius: 8px; font-size: 0.8rem; color: var(--teal); font-weight: 600; word-wrap: break-word; }
.modal-visa-status .vs-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }

.modal-about { font-size: 0.82rem; color: var(--text-light); line-height: 1.65; }

.modal-skills { display: flex; gap: 6px; flex-wrap: wrap; }
.modal-skill { padding: 4px 12px; border-radius: var(--rp); background: var(--teal-light); color: var(--teal); font-size: 0.74rem; font-weight: 600; white-space: nowrap; }

.modal-langs { display: flex; gap: 6px; flex-wrap: wrap; }
.modal-lang { padding: 4px 12px; border-radius: var(--rp); background: var(--purple-light); color: #6B5BA8; font-size: 0.74rem; font-weight: 600; white-space: nowrap; }

.modal-refs { display: flex; flex-direction: column; gap: 6px; }
.modal-ref { display: flex; align-items: center; gap: 8px; padding: 8px 11px; background: var(--cream); border-radius: 8px; font-size: 0.78rem; color: var(--text-light); word-wrap: break-word; }
.modal-ref-ico { width: 24px; height: 24px; border-radius: 50%; background: var(--gold-light); display: flex; align-items: center; justify-content: center; font-size: 0.65rem; flex-shrink: 0; }

.modal-divider { height: 1px; background: var(--border); margin: 12px 0; }

/* Footer bar */
.modal-footer { padding: 14px 24px; border-top: 1px solid var(--border); display: flex; gap: 10px; flex-shrink: 0; background: var(--cream); box-sizing: border-box; width: 100%; }
.modal-footer .btn { flex: 1; padding: 12px 20px; }

/* Tabs */
.modal-tabs { display: flex; border-bottom: 2px solid var(--border); flex-shrink: 0; background: var(--white); }
.modal-tab { flex: 1; padding: 14px 16px; font-size: 0.88rem; font-weight: 600; color: var(--text-light); background: none; border: none; cursor: pointer; transition: var(--tr); font-family: var(--font-b); position: relative; }
.modal-tab:hover { color: var(--teal); background: var(--cream); }
.modal-tab.active { color: var(--teal); }
.modal-tab.active::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 3px; background: var(--teal); border-radius: 3px 3px 0 0; }

/* Tab content */
.modal-tab-content { padding: 24px; overflow-y: auto; flex: 1; box-sizing: border-box; }

/* Info grid - 2 column label:value rows */
.modal-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.modal-info-row { display: flex; justify-content: space-between; align-items: center; padding: 11px 14px; border-bottom: 1px solid var(--border); gap: 12px; }
.modal-info-row:nth-child(odd) { background: var(--cream); }
.mir-label { font-size: 0.8rem; color: var(--text-light); font-weight: 500; }
.mir-value { font-size: 0.8rem; font-weight: 600; color: var(--text); text-align: right; word-break: break-word; }

/* Skills tab */
.modal-skills-content { }
.modal-skills-list { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.modal-skill-pill { padding: 7px 18px; border-radius: var(--rp); background: var(--teal-light); color: var(--teal); font-size: 0.82rem; font-weight: 600; }

/* Contact lock */
.modal-contact-lock { display: flex; align-items: center; gap: 16px; padding: 20px; background: var(--gold-light); border-radius: var(--rs); margin-top: 10px; }
.mcl-icon { font-size: 1.5rem; flex-shrink: 0; }
.mcl-text { font-size: 0.85rem; color: var(--text-light); line-height: 1.5; }


/* VISA PAGE V2 */
.visa-hero2 { padding: 130px 0 70px; background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%); color: white; text-align: center; position: relative; overflow: hidden; }
.visa-hero2::before { content: ''; position: absolute; top: -40%; right: -15%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%); border-radius: 50%; }
.visa-hero2 h1 { font-family: var(--font-d); font-size: 2.8rem; font-weight: 700; margin-bottom: 14px; line-height: 1.15; }
.visa-hero2 h1 em { font-style: italic; color: var(--gold-light); }
.visa-hero2 .hero-p { color: rgba(255,255,255,0.85); max-width: 640px; margin: 0 auto 28px; font-size: 1.05rem; }
.visa-hero2 .visa-hero-stats { display: flex; gap: 40px; justify-content: center; margin-top: 36px; }
.visa-hero2 .vhs { text-align: center; }
.visa-hero2 .vhs-n { font-family: var(--font-d); font-size: 2rem; font-weight: 700; }
.visa-hero2 .vhs-l { font-size: 0.78rem; opacity: 0.7; }
.visa-hero2 .hero-badges { display: flex; gap: 12px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }
.visa-hero2 .hb { padding: 6px 16px; border-radius: var(--rp); background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); font-size: 0.78rem; font-weight: 600; }

/* Process steps visual */
.vproc { padding: 80px 0; background: var(--white); }
.vproc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.vproc-card { text-align: center; padding: 24px 16px; background: var(--cream); border-radius: var(--r); position: relative; transition: var(--tr); }
.vproc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.vproc-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--teal); color: white; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 1.3rem; }
.vproc-card h3 { font-family: var(--font-d); font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; }
.vproc-card p { font-size: 0.78rem; color: var(--text-light); line-height: 1.5; }
.vproc-arr { position: absolute; top: 50%; right: -14px; color: var(--border); font-size: 1rem; z-index: 2; }

/* Pathways */
.vpaths { padding: 80px 0; background: var(--cream); }
.vpaths-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 48px; }
.vpath-card { background: var(--white); border-radius: var(--r); padding: 32px; border: 2px solid var(--border); transition: var(--tr); }
.vpath-card:hover { border-color: var(--teal); box-shadow: var(--shadow-card); }
.vpath-icon { font-size: 2rem; margin-bottom: 12px; }
.vpath-card h3 { font-family: var(--font-d); font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; }
.vpath-card > p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; margin-bottom: 18px; }
.vpath-points { list-style: none; margin-bottom: 18px; }
.vpath-points li { padding: 5px 0 5px 22px; position: relative; font-size: 0.82rem; color: var(--text-light); }
.vpath-points li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.vpath-req { background: var(--cream); border-radius: var(--rs); padding: 14px 18px; }
.vpath-req-title { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--teal); margin-bottom: 6px; }
.vpath-req p { font-size: 0.8rem; color: var(--text-light); line-height: 1.6; }

/* Comparison table */
.vcomp { padding: 80px 0; background: var(--white); }
.vcomp-table { width: 100%; border-collapse: separate; border-spacing: 0; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); }
.vcomp-table th { background: var(--teal); color: white; padding: 14px 18px; font-size: 0.85rem; font-weight: 600; text-align: left; }
.vcomp-table th:first-child { width: 28%; }
.vcomp-table td { padding: 13px 18px; font-size: 0.82rem; border-bottom: 1px solid var(--border); color: var(--text-light); line-height: 1.5; }
.vcomp-table tr:last-child td { border-bottom: none; }
.vcomp-table tr:nth-child(even) td { background: var(--cream); }
.vcomp-table td:first-child { font-weight: 600; color: var(--text); }

/* Worker types grid */
.vtypes { padding: 80px 0; background: var(--cream); }
.vtypes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.vtype-card { background: var(--white); border-radius: var(--r); padding: 28px; text-align: center; border: 1px solid var(--border); transition: var(--tr); }
.vtype-card:hover { border-color: var(--teal); box-shadow: var(--shadow-card); transform: translateY(-3px); }
.vtype-card .vt-ico { font-size: 2rem; margin-bottom: 10px; }
.vtype-card h3 { font-family: var(--font-d); font-size: 1.05rem; font-weight: 600; margin-bottom: 6px; }
.vtype-card p { font-size: 0.8rem; color: var(--text-light); line-height: 1.5; }

/* Visa consultation form */
.vconsult { padding: 80px 0; background: var(--white); }
.vconsult-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.vconsult-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.vconsult-form .full { grid-column: 1/-1; }
.vconsult-form input, .vconsult-form select, .vconsult-form textarea { padding: 13px 16px; border: 1.5px solid var(--border); border-radius: var(--rs); font-size: 0.88rem; font-family: var(--font-b); background: var(--cream); outline: none; transition: var(--tr); }
.vconsult-form input:focus, .vconsult-form select:focus, .vconsult-form textarea:focus { border-color: var(--teal); }
.vconsult-form textarea { resize: vertical; }
.vconsult-perks { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.vconsult-perk { display: flex; align-items: center; gap: 12px; font-size: 0.85rem; color: var(--text-light); }
.vconsult-perk-ico { width: 36px; height: 36px; border-radius: 50%; background: var(--teal-light); color: var(--teal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.9rem; }

/* Visa FAQ filter tabs */
.vfaq-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.vfaq-tab { padding: 6px 16px; border-radius: var(--rp); border: 1.5px solid var(--border); background: var(--white); font-size: 0.8rem; font-weight: 500; cursor: pointer; transition: var(--tr); }
.vfaq-tab:hover, .vfaq-tab.act { background: var(--teal); color: white; border-color: var(--teal); }

/* JOBS PAGE */
.jobs-hero { padding: 100px 0 30px; background: var(--white); border-bottom: 1px solid var(--border); }
.jobs-hero h1 { font-family: var(--font-d); font-size: 2.2rem; font-weight: 700; margin-bottom: 0; }

.jobs-sec { padding: 30px 0 80px; background: var(--white); }

/* Sidebar filters */

/* Job cards */
.jobs-list { display: flex; flex-direction: column; gap: 14px; }
.jcard { background: var(--cream); border-radius: var(--r); padding: 22px 24px; display: flex; align-items: center; gap: 18px; border: 1.5px solid var(--border); transition: var(--tr); cursor: pointer; box-sizing: border-box; width: 100%; overflow: hidden; }
.jcard:hover { border-color: var(--teal); box-shadow: var(--shadow-card); transform: translateY(-2px); }
.jcard-icon { width: 52px; height: 52px; border-radius: var(--rs); background: var(--teal-light); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.jcard-info { flex: 1; min-width: 0; overflow: hidden; }
.jcard-title { font-family: var(--font-d); font-size: 1.02rem; font-weight: 600; margin-bottom: 4px; display: flex; align-items: center; gap: 8px; }
.jcard-urgent { padding: 2px 8px; border-radius: var(--rp); background: var(--coral); color: white; font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.jcard-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: 0.78rem; color: var(--text-light); }
.jcard-meta span { display: flex; align-items: center; gap: 4px; }
.jcard-salary { font-size: 0.88rem; font-weight: 600; color: var(--teal); white-space: nowrap; }
.jcard-date { font-size: 0.75rem; color: var(--text-light); white-space: nowrap; }
.jcard-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; flex-shrink: 0; }

/* Job detail modal */
.jmodal { background: var(--white); border-radius: 20px; max-width: 800px; width: calc(100% - 24px); max-height: 96vh; overflow-y: auto; overflow-x: hidden; box-shadow: 0 24px 80px rgba(0,0,0,0.2); animation: modalSlideUp 0.3s cubic-bezier(0.16,1,0.3,1); position: relative; box-sizing: border-box; }
.jmodal::-webkit-scrollbar { width: 5px; }
.jmodal::-webkit-scrollbar-thumb { background: var(--border); border-radius: 10px; }
.jmodal-header { padding: 28px 32px; background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: white; border-radius: 20px 20px 0 0; position: relative; box-sizing: border-box; width: 100%; overflow: hidden; }
.jmodal-header h2 { font-family: var(--font-d); font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; padding-right: 40px; word-wrap: break-word; }
.jmodal-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.jmodal-tag { padding: 4px 12px; border-radius: var(--rp); background: rgba(255,255,255,0.15); color: white; font-size: 0.74rem; font-weight: 600; }
.jmodal-tag.urgent { background: var(--coral); }
.jmodal-salary { font-family: var(--font-d); font-size: 1.3rem; font-weight: 700; }
.jmodal-meta { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 8px; font-size: 0.8rem; opacity: 0.8; }

.jmodal-body { padding: 28px 32px; box-sizing: border-box; width: 100%; }
.jmodal-section { margin-bottom: 24px; }
.jmodal-section h3 { font-family: var(--font-d); font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.jmodal-section h3 .jico { font-size: 1rem; }
.jmodal-list { list-style: none; }
.jmodal-list li { padding: 5px 0 5px 20px; position: relative; font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }
.jmodal-list li::before { content: '•'; position: absolute; left: 4px; color: var(--teal); font-weight: 700; }
.jmodal-note { background: var(--gold-light); border-radius: var(--rs); padding: 18px; font-size: 0.88rem; color: var(--text); line-height: 1.65; font-style: italic; border-left: 4px solid var(--gold); }
.jmodal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.jmodal-detail { background: var(--cream); padding: 12px 14px; border-radius: var(--rs); }
.jmodal-detail-label { font-size: 0.65rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.jmodal-detail-value { font-size: 0.85rem; font-weight: 600; word-wrap: break-word; overflow-wrap: break-word; }
.jmodal-footer { padding: 20px 32px 28px; border-top: 1px solid var(--border); display: flex; gap: 12px; box-sizing: border-box; width: 100%; }
.jmodal-footer .btn { flex: 1; }

.jobs-count { font-size: 0.88rem; color: var(--text-light); margin-bottom: 16px; }

/* SCROLL ANIM */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.vis { opacity: 1; transform: translateY(0); }

/* MOBILE NAV OVERLAY */
.mob-nav { position: fixed; inset: 0; background: rgba(253,248,243,0.98); backdrop-filter: blur(20px); z-index: 999; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px; }
.mob-nav a, .mob-nav button { font-size: 1.2rem; font-weight: 600; background: none; border: none; color: var(--text); cursor: pointer; font-family: var(--font-b); }
.mob-nav .close-btn { position: absolute; top: 24px; right: 24px; font-size: 1.5rem; }

/* ═══════════════════════ RESPONSIVE — CONSOLIDATED ═══════════════════════ */

/* TABLET — 1024px */
@media(max-width:1024px) {
  .hero-grid, .why-grid, .visa-grid, .faq-grid, .about-grid, .contact-grid, .vconsult-grid { grid-template-columns: 1fr; }
  .hero-grid { text-align: center; }
  .hero h1 { font-size: 2.3rem; }
  .hero-p { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .s-title { font-size: 2.1rem; }
  .s-sub { max-width: 100%; }
  .steps, .svc-grid, .stats-g, .prof-grid, .testi-grid, .blog-grid, .about-values, .visa-steps, .vproc-grid, .vtypes-grid { grid-template-columns: repeat(2,1fr); }
  .price-grid { grid-template-columns: repeat(2,1fr); }
  .step-arr, .vproc-arr { display: none; }
  .prcard.pop { transform: none; }
  .ftr-grid { grid-template-columns: repeat(2,1fr); }
  .vpaths-grid { grid-template-columns: 1fr; }
  .vcomp-table { font-size: 0.78rem; }
  .vcomp-table th, .vcomp-table td { padding: 11px 14px; }
  .nav-links { gap: 16px; }
  .nav-links .nav-link { font-size: 0.8rem; }
  .nav-cta .btn { padding: 9px 18px; font-size: 0.82rem; }
  .prof-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* SMALL TABLET — 900px */
@media(max-width:900px) {
  .modal { max-width: 96vw; width: 96vw; }
  .modal-body { grid-template-columns: 1fr; }
  .modal-col:first-child { border-right: none; border-bottom: 1px solid var(--border); }
  .modal-col { padding: 16px 20px; }
  .modal-details-grid { grid-template-columns: repeat(2, 1fr); }
  .modal-details-2col { grid-template-columns: 1fr 1fr; }
  .modal-top { padding: 18px 20px; gap: 14px; }
  .modal-footer { padding: 12px 20px; }
  .jcard { flex-direction: column; align-items: flex-start; gap: 12px; }
  .jcard-info { width: 100%; }
  .jcard-right { flex-direction: row; align-items: center; width: 100%; justify-content: space-between; }
  .jmodal { max-width: 96vw; width: 96vw; }
  .jmodal-header { padding: 24px 20px; }
  .jmodal-header h2 { padding-right: 40px; }
  .jmodal-body { padding: 20px; }
  .jmodal-footer { padding: 16px 20px; flex-direction: column; }
  .jmodal-footer .btn { width: 100%; justify-content: center; }
  .jmodal-grid { grid-template-columns: 1fr 1fr; }
  .jmodal-meta { flex-wrap: wrap; }
  .nav-links { gap: 14px; }
}

/* MOBILE — 768px */
@media(max-width:768px) {
  /* Nav */
  .nav-links, .nav-cta { display: none !important; }
  .mob-btn { display: block !important; }

  /* Typography */
  .hero h1 { font-size: 1.8rem; }
  .s-title { font-size: 1.7rem; }
  .s-sub { font-size: 0.92rem; max-width: 100%; }
  .cta h2 { font-size: 1.7rem; }
  .s-label { font-size: 0.7rem; }

  /* Hero */
  .hero { padding: 105px 0 50px; }
  .hero-grid { text-align: center; gap: 30px; }
  .hero-p { font-size: 0.95rem; margin-left: auto; margin-right: auto; }
  .hero-btns { flex-direction: column; gap: 10px; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 360px; text-align: center; justify-content: center; }
  .hero-stats { flex-direction: row; gap: 24px; justify-content: center; flex-wrap: wrap; }
  .hero-badge { font-size: 0.7rem; }
  .hero-widget { padding: 20px; max-width: 100%; }
  .hw-roles { grid-template-columns: 1fr 1fr; gap: 8px; }
  .hw-role { padding: 10px 12px; }
  .hw-role-ico { font-size: 1.1rem; }
  .hw-role-text { font-size: 0.8rem; }

  /* Grids → single column */
  .steps, .svc-grid, .prof-grid, .blog-grid, .about-values, .visa-steps, .testi-grid, .price-grid, .vproc-grid, .vtypes-grid { grid-template-columns: 1fr; }
  .stats-g { grid-template-columns: 1fr 1fr; }
  .ftr-grid { grid-template-columns: 1fr; }
  .why-vis { grid-template-columns: 1fr 1fr; gap: 12px; }
  .why-c:nth-child(2), .why-c:nth-child(4) { transform: none; }

  /* Search */
  .search-sec { padding: 90px 0 30px; }
  .search-bar { flex-direction: column; }
  .search-bar input, .search-bar select { width: 100%; min-width: 0; }
  .filter-tags { gap: 6px; }
  .ftag { font-size: 0.75rem; padding: 5px 12px; }
  .prof-grid { gap: 16px; }

  /* Pricing */
  .pricing { padding: 60px 0; }
  .price-grid { max-width: 100% !important; gap: 16px; }
  .prcard { padding: 24px 18px; }
  .prcard.pop { box-shadow: none; }
  .pr-price { font-size: 2.2rem; }
  .pr-feats li { font-size: 0.82rem; }

  /* CTA */
  .cta { padding: 60px 0; }
  .cta p { font-size: 0.92rem; }
  .cta-btns { flex-direction: column; gap: 10px; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 320px; }
  .btn-row { flex-direction: column; align-items: center; gap: 10px; }
  .btn-row .btn { width: 100%; max-width: 360px; }

  /* Footer */
  .ftr { padding: 50px 0 0; }
  .ftr-grid { gap: 28px; }
  .ftr-brand p { font-size: 0.82rem; }

  /* About */
  .about-hero h1, .svc-hero h1 { font-size: 1.7rem; }
  .svc-hero p, .about-hero p { font-size: 0.92rem; }
  .av-card { padding: 22px 16px; }

  /* Contact */
  .contact-sec { padding: 105px 0 60px; }
  .ci-item { flex-direction: column; text-align: center; align-items: center; }

  /* Visa page */
  .visa-hero2 h1 { font-size: 1.8rem; }
  .visa-hero2 .hero-p { font-size: 0.92rem; }
  .visa-hero2 .visa-hero-stats { flex-direction: column; gap: 10px; }
  .visa-hero2 .hero-badges { flex-direction: column; align-items: center; gap: 8px; }
  .vpaths-grid { gap: 16px; }
  .vpath-card { padding: 22px 18px; }
  .vconsult-form { grid-template-columns: 1fr; }
  .vcomp-table th, .vcomp-table td { padding: 8px 10px; font-size: 0.72rem; }
  .vcomp-table th:first-child { width: 30%; }

  /* Jobs page */
  .jobs-hero { padding: 105px 0 40px; }
  .jobs-hero h1 { font-size: 1.8rem; }
  .jobs-sec { padding: 30px 0 60px; }
  .jobs-list { gap: 10px; }
  .jcard { padding: 14px 16px; flex-direction: column; align-items: flex-start; gap: 10px; }
  .jcard-icon { width: 42px; height: 42px; font-size: 1.1rem; }
  .jcard-info { width: 100%; }
  .jcard-title { font-size: 0.9rem; flex-wrap: wrap; }
  .jcard-meta { gap: 8px; font-size: 0.72rem; }
  .jcard-right { flex-direction: row; width: 100%; justify-content: space-between; align-items: center; }
  .jcard-salary { font-size: 0.82rem; }
  .jcard-date { font-size: 0.7rem; }
  .jobs-count { font-size: 0.82rem; }

  /* Job detail modal */
  .jmodal { max-width: 96vw; width: 96vw; max-height: 94vh; border-radius: 16px; }
  .jmodal-header { padding: 20px; border-radius: 16px 16px 0 0; }
  .jmodal-header h2 { font-size: 1.2rem; padding-right: 36px; }
  .jmodal-tags { gap: 6px; }
  .jmodal-tag { font-size: 0.68rem; padding: 3px 10px; }
  .jmodal-salary { font-size: 1.05rem; }
  .jmodal-meta { gap: 10px; font-size: 0.74rem; }
  .jmodal-body { padding: 18px; }
  .jmodal-grid { grid-template-columns: 1fr; gap: 8px; }
  .jmodal-detail { padding: 10px 12px; }
  .jmodal-detail-label { font-size: 0.6rem; }
  .jmodal-detail-value { font-size: 0.8rem; }
  .jmodal-section { margin-bottom: 18px; }
  .jmodal-section h3 { font-size: 0.92rem; }
  .jmodal-list li { font-size: 0.8rem; padding-left: 18px; }
  .jmodal-note { padding: 14px; font-size: 0.82rem; }
  .jmodal-footer { padding: 14px 18px; flex-direction: column; gap: 10px; }
  .jmodal-footer .btn { width: 100%; justify-content: center; }

  /* Profile modal tabs */
  .modal-tabs { overflow-x: auto; }
  .modal-tab { font-size: 0.82rem; padding: 12px 12px; white-space: nowrap; }
  .modal-tab-content { padding: 18px; }
  .modal-info-grid { grid-template-columns: 1fr; }
  .modal-info-row { padding: 10px 12px; }
  .mir-label { font-size: 0.76rem; }
  .mir-value { font-size: 0.76rem; }
  .modal-skill-pill { font-size: 0.78rem; padding: 6px 14px; }
  .modal-contact-lock { flex-direction: column; text-align: center; padding: 16px; }

  /* Buttons general */
  .btn-lg { padding: 13px 28px; font-size: 0.9rem; }
  .prof-header { flex-direction: column; align-items: flex-start; }

  /* Override inline maxWidth */
  .s-title, .s-sub, .hero-p, p { max-width: 100% !important; }
}

/* SMALL MOBILE — 480px */
@media(max-width:480px) {
  .hero h1 { font-size: 1.55rem; }
  .s-title { font-size: 1.45rem; }
  .ctn { padding: 0 16px; }
  .hero { padding: 95px 0 40px; }
  .hero-stats { gap: 8px; }
  .h-stat-n { font-size: 1.5rem; }
  .hero-widget { padding: 16px; }
  .hw-roles { gap: 6px; }
  .hw-role { padding: 10px; gap: 8px; }
  .hw-role-ico { font-size: 1rem; }
  .hw-role-text { font-size: 0.75rem; }
  .hw-role-count { font-size: 0.62rem; }
  .hw-stat-num { font-size: 1.1rem; }
  .hw-stats-row { gap: 6px; }
  .trust .ctn { gap: 16px; }
  .trust-i { font-size: 0.75rem; gap: 5px; }
  .step { padding: 22px 14px; }
  .step-n { width: 40px; height: 40px; font-size: 1rem; }
  .svc-card { padding: 22px 16px; }
  .svc-ico { width: 48px; height: 48px; font-size: 1.3rem; }
  .stat h2 { font-size: 2rem; }
  .stat p { font-size: 0.78rem; }
  .why-f { padding: 12px; flex-direction: column; }
  .why-fi { width: 36px; height: 36px; font-size: 1rem; }
  .why-c { padding: 16px; }
  .why-c h4 { font-size: 1.2rem; }
  .pcard-top { padding: 16px 14px 0; }
  .pcard-av { width: 52px; height: 52px; font-size: 1.1rem; }
  .pcard-body { padding: 10px 14px 14px; }
  .pcard-tags { gap: 4px; }
  .pcard-tag { font-size: 0.65rem; padding: 3px 8px; }
  .pcard-meta { font-size: 0.7rem; }
  .prcard { padding: 20px 14px; }
  .pr-price { font-size: 2rem; }
  .tcard { padding: 20px; }
  .tcard p { font-size: 0.85rem; }
  .visa-f { flex-direction: column; }
  .faq-q { font-size: 0.85rem; padding: 14px 16px; }
  .faq-a-inner { padding: 0 16px 14px; font-size: 0.8rem; }
  .acard-thumb { height: 120px; font-size: 2rem; }
  .acard-body { padding: 14px; }
  .acard h3 { font-size: 0.9rem; }
  .cta h2 { font-size: 1.45rem; }
  .ftr-col h4 { font-size: 0.88rem; }
  .ftr-bottom { font-size: 0.72rem; }
  .visa-hero2 h1 { font-size: 1.5rem; }
  .vproc-card { padding: 18px 12px; }
  .vproc-icon { width: 44px; height: 44px; font-size: 1.1rem; }
  .vpath-card { padding: 18px 14px; }
  .vtype-card { padding: 18px 12px; }
  .vconsult-form input, .vconsult-form select, .vconsult-form textarea { padding: 11px 12px; font-size: 0.82rem; }
  .jobs-hero h1 { font-size: 1.4rem; }
  .jobs-hero { padding: 95px 0 30px; }
  .jobs-sec { padding: 20px 0 50px; }
  .jcard { padding: 12px; gap: 8px; }
  .jcard-icon { width: 34px; height: 34px; font-size: 0.9rem; border-radius: 8px; }
  .jcard-title { font-size: 0.82rem; gap: 5px; }
  .jcard-urgent { font-size: 0.56rem; padding: 1px 6px; }
  .jcard-meta { font-size: 0.68rem; gap: 6px; }
  .jcard-meta span { gap: 2px; }
  .jcard-salary { font-size: 0.76rem; }
  .jcard-date { font-size: 0.66rem; }
  .jcard-right { gap: 4px; }

  /* Job modal small mobile */
  .jmodal { max-width: 100vw; width: 100vw; max-height: 96vh; border-radius: 14px 14px 0 0; }
  .jmodal-header { padding: 16px; border-radius: 14px 14px 0 0; }
  .jmodal-header h2 { font-size: 1.05rem; padding-right: 30px; margin-bottom: 6px; }
  .jmodal-tags { gap: 4px; margin-bottom: 8px; }
  .jmodal-tag { font-size: 0.62rem; padding: 2px 8px; }
  .jmodal-salary { font-size: 0.95rem; }
  .jmodal-meta { gap: 8px; font-size: 0.68rem; flex-direction: column; }
  .jmodal-body { padding: 14px; }
  .jmodal-grid { gap: 6px; }
  .jmodal-detail { padding: 8px 10px; }
  .jmodal-detail-label { font-size: 0.56rem; }
  .jmodal-detail-value { font-size: 0.74rem; word-break: break-word; }
  .jmodal-section { margin-bottom: 14px; }
  .jmodal-section h3 { font-size: 0.85rem; gap: 5px; }
  .jmodal-section h3 .jico { font-size: 0.85rem; }
  .jmodal-list li { font-size: 0.76rem; padding: 3px 0 3px 16px; }
  .jmodal-note { padding: 12px; font-size: 0.78rem; line-height: 1.55; border-left-width: 3px; }
  .jmodal-footer { padding: 12px 14px; gap: 8px; }
  .jmodal-footer .btn { padding: 10px 16px; font-size: 0.82rem; }

  /* Modal mobile */
  .modal-overlay { padding: 0; align-items: flex-end; }
  .modal { max-width: 100vw; width: 100vw; max-height: 96vh; border-radius: 16px 16px 0 0; }
  .modal-top { padding: 16px; gap: 12px; flex-direction: column; align-items: center; text-align: center; }
  .modal-avatar { width: 56px; height: 56px; font-size: 1.5rem; }
  .modal-name { font-size: 1.1rem; }
  .modal-name-row { flex-direction: column; align-items: center; gap: 10px; }
  .modal-contact-btn { width: 100%; text-align: center; justify-content: center; }
  .modal-hinfo { overflow: visible; }
  .modal-badges-row { justify-content: center; }
  .modal-role-line { justify-content: center; flex-direction: column; gap: 4px; }
  .modal-body { grid-template-columns: 1fr; }
  .modal-col { padding: 14px 16px; }
  .modal-col:first-child { border-right: none; border-bottom: 1px solid var(--border); }
  .modal-details-grid { grid-template-columns: 1fr 1fr; gap: 5px; }
  .modal-details-2col { grid-template-columns: 1fr; }
  .modal-detail { padding: 7px 9px; }
  .modal-detail-label { font-size: 0.58rem; }
  .modal-detail-value { font-size: 0.74rem; }
  .modal-footer { padding: 10px 16px; gap: 8px; flex-direction: column; }
  .modal-footer .btn { padding: 10px 16px; font-size: 0.82rem; }
  .modal-close { width: 30px; height: 30px; font-size: 0.9rem; top: 10px; right: 10px; }
  .modal-section-title { font-size: 0.82rem; }
  .modal-skill, .modal-lang { font-size: 0.68rem; padding: 3px 10px; }
  .modal-ref { font-size: 0.72rem; padding: 7px 10px; }
  .modal-visa-status { font-size: 0.74rem; padding: 8px 10px; }

  /* Tabs small mobile */
  .modal-tabs { gap: 0; }
  .modal-tab { font-size: 0.75rem; padding: 10px 8px; }
  .modal-tab-content { padding: 14px; }
  .modal-info-grid { grid-template-columns: 1fr; }
  .modal-info-row { padding: 8px 10px; gap: 8px; }
  .mir-label { font-size: 0.7rem; }
  .mir-value { font-size: 0.7rem; }
  .modal-skill-pill { font-size: 0.72rem; padding: 5px 12px; }
  .modal-contact-lock { padding: 14px; gap: 10px; }
  .mcl-text { font-size: 0.78rem; }
}
