/* ============================================================
   Irish Real Consultancy — Premium Blue / Red / White theme
   ============================================================ */
:root {
  /* Job-portal palette: deep indigo (trust) + vibrant orange (energy) */
  --navy:      #0b1437;
  --navy-2:    #13205a;
  --navy-3:    #1c2f7a;
  --blue:      #2456e6;
  --blue-2:    #4f7cff;
  --blue-soft: #e9efff;
  --red:       #ff6b2c;   /* accent = recruitment orange */
  --red-2:     #e5581d;
  --red-soft:  #fff0e7;
  --white:     #ffffff;
  --off:       #f4f7ff;
  --text:      #1c2b4a;
  --text-soft: #5a6b8c;
  --text-inv:  #eef2fb;
  --text-inv-soft: #a3b3d6;
  --line:      #e3e9f5;
  --line-dark: #24397c;
  --radius:    16px;
  --shadow:    0 10px 40px rgba(11, 20, 55, .08);
  --shadow-lg: 0 24px 64px rgba(11, 20, 55, .16);
  --grad-brand: linear-gradient(90deg, var(--blue), var(--red));
  --font-head: 'Sora', 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* kill sideways scroll on all browsers */
  width: 100%;
}
body {
  font-family: var(--font-body); color: var(--text); background: var(--white);
  line-height: 1.65; font-size: 16px; -webkit-font-smoothing: antialiased;
  overflow-x: hidden; width: 100%; position: relative;
}
@supports (overflow-x: clip) {
  html, body { overflow-x: clip; }
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.ic { width: 20px; height: 20px; stroke-width: 2; flex-shrink: 0; }
.container { width: min(1200px, 92%); margin: 0 auto; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.22; color: var(--navy); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px; padding: 14px 30px;
  border-radius: 10px; font-weight: 700; font-size: 15px; font-family: var(--font-head);
  cursor: pointer; border: 0; transition: all .3s ease; letter-spacing: .2px;
}
.btn-red { background: var(--red); color: #fff; box-shadow: 0 8px 22px rgba(255,107,44,.32); }
.btn-red:hover { background: var(--red-2); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255,107,44,.45); }
.btn-blue { background: var(--blue); color: #fff; box-shadow: 0 8px 22px rgba(36,86,230,.3); }
.btn-blue:hover { background: var(--navy-3); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(36,86,230,.42); }
.btn-white { background: #fff; color: var(--navy); box-shadow: 0 8px 22px rgba(0,0,0,.18); }
.btn-white:hover { transform: translateY(-2px); }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn-outline:hover { border-color: var(--red); color: #fff; background: rgba(255,107,44,.15); }

/* ---------- Top bar ---------- */
.topbar { background: var(--navy); color: var(--text-inv-soft); font-size: 13px; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; height: 40px; }
.topbar-left { display: flex; gap: 22px; align-items: center; }
.topbar-left a, .topbar-left span { display: inline-flex; align-items: center; gap: 7px; color: var(--text-inv-soft); }
.topbar-left a:hover { color: #fff; }
.topbar .ic { width: 14px; height: 14px; color: var(--red); }
.topbar-social { display: flex; gap: 14px; }
.topbar-social a { color: var(--text-inv-soft); transition: color .25s; }
.topbar-social a:hover { color: #fff; }
.topbar-social .ic { width: 15px; height: 15px; color: currentColor; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px); border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(11,20,55,.1); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 88px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 72px; width: auto; max-width: 260px; object-fit: contain; }
.brand-mark {
  width: 48px; height: 48px; border-radius: 12px; color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(36,86,230,.35);
}
.brand-mark .ic { width: 24px; height: 24px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--font-head); font-size: 19px; font-weight: 800; color: var(--navy); }
.brand-name em { font-style: normal; color: var(--red); }
.brand-tag { font-size: 10.5px; letter-spacing: 2.6px; text-transform: uppercase; color: var(--text-soft); }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav > a { color: var(--text-soft); font-weight: 600; font-size: 15px; position: relative; transition: color .25s; }
.main-nav > a:hover, .main-nav > a.active { color: var(--navy); }
.main-nav > a.active::after {
  content: ''; position: absolute; bottom: -9px; left: 0; right: 0; height: 2.5px;
  background: var(--red); border-radius: 2px;
}
.nav-cta { padding: 11px 22px !important; font-size: 14px; color: #fff !important; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero: full-background image slider, centered content ---------- */
.hero {
  position: relative; color: var(--text-inv); overflow: hidden;
  background: var(--navy); min-height: 92vh;
  display: flex; align-items: center; padding: 110px 0;
}
.hero-bg { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s ease; will-change: opacity, transform;
}
.hero-slide.active { opacity: 1; animation: kenburns 7s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.09); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,20,55,.88) 0%, rgba(11,20,55,.78) 45%, rgba(11,20,55,.92) 100%);
}
.hero-overlay::after {
  content: ''; position: absolute; inset: 0; opacity: .06; pointer-events: none;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero-center {
  position: relative; z-index: 2; text-align: center;
  max-width: 860px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,107,44,.16); border: 1px solid rgba(255,107,44,.5);
  color: #ffc9a8; padding: 8px 18px; border-radius: 50px;
  font-size: 13px; font-weight: 600; letter-spacing: .4px; margin-bottom: 26px;
  backdrop-filter: blur(6px);
}
.hero-badge .ic { width: 15px; height: 15px; }
.hero h1 { font-size: clamp(38px, 5.2vw, 62px); color: #fff; margin-bottom: 22px; font-weight: 800; letter-spacing: -.5px; }
.hero h1 em { font-style: normal; color: var(--red); }
.hero p.lead { font-size: 18px; color: #c9d6e8; max-width: 640px; margin: 0 auto 34px; }

/* Hero quick search (centered) */
.hero-search {
  display: flex; gap: 10px; background: #fff; padding: 10px; border-radius: 14px;
  box-shadow: var(--shadow-lg); width: min(640px, 100%); margin: 0 auto 24px;
}
.hero-search input, .hero-search select {
  border: 0; outline: none; font-family: var(--font-body); font-size: 15px;
  color: var(--text); background: transparent; padding: 10px 12px;
}
.hero-search input { flex: 1.3; min-width: 0; }
.hero-search select { flex: 1; min-width: 0; border-left: 1px solid var(--line); cursor: pointer; }
.hero-search .btn { padding: 12px 22px; border-radius: 10px; flex-shrink: 0; }
.hero-trust { display: flex; align-items: center; justify-content: center; gap: 10px; color: #c9d6e8; font-size: 13.5px; flex-wrap: wrap; }
.hero-trust .ic { width: 16px; height: 16px; color: #4ade80; }

/* Slider dots */
.hero-dots { position: absolute; bottom: 26px; left: 0; right: 0; display: flex; justify-content: center; gap: 10px; z-index: 3; }
.hero-dots button {
  width: 30px; height: 4px; border-radius: 4px; border: 0; cursor: pointer;
  background: rgba(255,255,255,.3); transition: all .3s; padding: 0;
}
.hero-dots button.active { background: var(--red); width: 44px; }

/* ---------- Text reveal animation (word by word) ---------- */
.split-words .word {
  display: inline-block; opacity: 0; transform: translateY(26px) rotate(2deg);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.3,1);
  transition-delay: var(--wd, 0s);
}
.split-words.words-in .word { opacity: 1; transform: none; }

/* Load-in stagger for hero elements */
@keyframes riseIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.rise { opacity: 0; animation: riseIn .8s ease forwards; }
.rise.d1 { animation-delay: .15s; } .rise.d2 { animation-delay: .35s; }
.rise.d3 { animation-delay: .55s; } .rise.d4 { animation-delay: .75s; }

/* ---------- Category marquee ---------- */
.marquee-band { background: var(--red); color: #fff; overflow: hidden; padding: 13px 0; }
.marquee { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.marquee span {
  display: inline-flex; align-items: center; gap: 10px; padding: 0 26px;
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
  letter-spacing: 1.4px; text-transform: uppercase; white-space: nowrap;
}
.marquee .dot { width: 6px; height: 6px; background: rgba(255,255,255,.6); border-radius: 50%; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Stats strip ---------- */
.stats-strip { background: var(--white); padding: 60px 0; border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item { position: relative; }
.stat-item + .stat-item::before {
  content: ''; position: absolute; left: -12px; top: 12%; bottom: 12%; width: 1px; background: var(--line);
}
.stat-num { font-family: var(--font-head); font-size: clamp(32px, 3.6vw, 46px); font-weight: 800; color: var(--blue); }
.stat-num b { color: var(--red); }
.stat-label { font-size: 14px; color: var(--text-soft); letter-spacing: .4px; font-weight: 500; }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section.off { background: var(--off); }
.section.navy { background: var(--navy); color: var(--text-inv); }
.section-head { text-align: center; max-width: 660px; margin: 0 auto 56px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--red); margin-bottom: 14px;
}
.eyebrow::before, .eyebrow::after { content: ''; width: 26px; height: 2px; background: var(--red); border-radius: 2px; }
.section-head h2 { font-size: clamp(30px, 3.5vw, 42px); margin-bottom: 16px; letter-spacing: -.4px; }
.section.navy .section-head h2, .section.navy h2, .section.navy h3 { color: #fff; }
.section-head p { color: var(--text-soft); font-size: 17px; }
.section.navy .section-head p { color: var(--text-inv-soft); }

/* ---------- Split layout ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-img { position: relative; }
.split-img img { border-radius: var(--radius); aspect-ratio: 4/3.2; object-fit: cover; width: 100%; box-shadow: var(--shadow-lg); }
.split-img .img-accent {
  position: absolute; inset: 24px -24px -24px 24px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue-soft), var(--red-soft)); z-index: -1;
}
.split-img .exp-badge {
  position: absolute; bottom: -22px; right: 26px; background: var(--red); color: #fff;
  border-radius: 14px; padding: 18px 24px; text-align: center; box-shadow: 0 14px 34px rgba(255,107,44,.4);
}
.exp-badge strong { display: block; font-family: var(--font-head); font-size: 28px; font-weight: 800; line-height: 1.1; }
.exp-badge span { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; opacity: .9; }
.split-body h2 { font-size: clamp(28px, 3.2vw, 38px); margin-bottom: 20px; letter-spacing: -.4px; }
.split-body p { color: var(--text-soft); margin-bottom: 18px; font-size: 16.5px; }
.section.navy .split-body p { color: var(--text-inv-soft); }
.check-list { margin: 6px 0 26px; }
.check-list li { display: flex; gap: 12px; margin-bottom: 13px; font-weight: 600; color: var(--navy); }
.check-list .ic { color: var(--red); margin-top: 3px; }
.section.navy .check-list li { color: #fff; }

/* ---------- Service cards ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.svc-card {
  background: var(--white); border-radius: var(--radius); border: 1px solid var(--line);
  transition: all .35s ease; position: relative; overflow: hidden;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-photo { height: 200px; overflow: hidden; position: relative; }
.svc-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.svc-card:hover .svc-photo img { transform: scale(1.08); }
.svc-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11,20,55,.55));
}
.svc-body { padding: 26px 26px 30px; position: relative; }
.svc-icon {
  width: 56px; height: 56px; border-radius: 14px; position: absolute; top: -28px; right: 24px;
  background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(255,107,44,.4); transition: transform .35s;
}
.svc-card:hover .svc-icon { transform: rotate(-8deg) scale(1.08); }
.svc-icon .ic { width: 26px; height: 26px; }
.svc-body h3 { font-size: 20px; margin-bottom: 10px; padding-right: 60px; }
.svc-body p { color: var(--text-soft); font-size: 15px; }

/* Simple icon cards (home) */
.svc-mini {
  background: var(--white); border-radius: var(--radius); padding: 32px 28px;
  border: 1px solid var(--line); transition: all .35s ease; position: relative; overflow: hidden;
}
.svc-mini::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.svc-mini:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc-mini:hover::before { transform: scaleX(1); }
.svc-mini .mini-ic {
  width: 58px; height: 58px; border-radius: 14px; margin-bottom: 20px;
  background: var(--blue-soft); color: var(--blue);
  display: flex; align-items: center; justify-content: center; transition: all .35s;
}
.svc-mini:hover .mini-ic { background: var(--red); color: #fff; }
.svc-mini .mini-ic .ic { width: 27px; height: 27px; }
.svc-mini h3 { font-size: 19px; margin-bottom: 10px; }
.svc-mini p { color: var(--text-soft); font-size: 14.5px; }

/* ---------- Process steps ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
.step-card {
  background: var(--navy-2); border: 1px solid var(--line-dark); border-radius: var(--radius);
  padding: 34px 26px; position: relative; transition: all .35s;
}
.step-card:hover { transform: translateY(-6px); border-color: var(--red); }
.step-num {
  font-family: var(--font-head); font-size: 15px; font-weight: 800;
  width: 46px; height: 46px; border-radius: 12px; margin-bottom: 20px;
  background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(255,107,44,.4);
}
.step-card h3 { color: #fff; font-size: 19px; margin-bottom: 10px; }
.step-card p { color: var(--text-inv-soft); font-size: 14.5px; }
.step-card .step-arrow {
  position: absolute; top: 40px; right: -22px; color: var(--red); z-index: 2; opacity: .8;
}
.step-card:last-child .step-arrow { display: none; }

/* ---------- Why us ---------- */
.why-item { display: flex; gap: 18px; margin-bottom: 26px; }
.why-ic {
  width: 54px; height: 54px; flex-shrink: 0; border-radius: 14px;
  background: var(--blue-soft); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.why-ic .ic { width: 25px; height: 25px; }
.why-item h3 { font-size: 19px; margin-bottom: 5px; }
.why-item p { color: var(--text-soft); font-size: 15px; margin: 0; }

/* ---------- Testimonials ---------- */
.testi-card {
  background: var(--white); border-radius: var(--radius); padding: 32px 28px;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 16px; transition: all .35s;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.testi-stars { color: #f5b301; display: flex; gap: 3px; }
.testi-stars .ic { width: 17px; height: 17px; fill: #f5b301; stroke: #f5b301; }
.testi-card blockquote { color: var(--text); font-size: 15px; flex: 1; }
.testi-who { display: flex; align-items: center; gap: 13px; }
.testi-who img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--red-soft); }
.testi-who .avatar-fallback {
  width: 48px; height: 48px; border-radius: 50%; background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-head);
}
.testi-who strong { display: block; font-size: 15px; color: var(--navy); font-family: var(--font-head); }
.testi-who span { color: var(--text-soft); font-size: 13px; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 14px; overflow: hidden; transition: box-shadow .3s; }
.faq-item.open { box-shadow: var(--shadow); border-color: var(--blue-2); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 24px; background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--navy);
}
.faq-q .ic { color: var(--red); transition: transform .3s; }
.faq-item.open .faq-q .ic { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 24px 22px; color: var(--text-soft); font-size: 15px; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; color: #fff; text-align: center; padding: 92px 0;
  background: linear-gradient(120deg, var(--navy) 0%, var(--blue) 55%, var(--navy-3) 100%);
}
.cta-band::before, .cta-band::after {
  content: ''; position: absolute; border-radius: 50%; background: rgba(255,107,44,.18); filter: blur(10px);
}
.cta-band::before { width: 380px; height: 380px; top: -190px; right: -100px; animation: drift 9s ease-in-out infinite; }
.cta-band::after { width: 300px; height: 300px; bottom: -170px; left: -80px; animation: drift 11s ease-in-out infinite reverse; }
@keyframes drift { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-26px, 18px); } }
.cta-band h2 { color: #fff; font-size: clamp(30px, 3.8vw, 44px); margin-bottom: 16px; position: relative; z-index: 1; }
.cta-band p { color: var(--text-inv-soft); max-width: 560px; margin: 0 auto 32px; font-size: 17px; position: relative; z-index: 1; }
.cta-band .btn { position: relative; z-index: 1; }

/* ---------- Page hero ---------- */
.page-hero {
  position: relative; overflow: hidden; color: #fff; text-align: center; padding: 88px 0;
  background: radial-gradient(900px 420px at 82% -20%, rgba(79,124,255,.55), transparent 60%),
              radial-gradient(500px 300px at 0% 120%, rgba(255,107,44,.2), transparent 55%), var(--navy);
}
.page-hero h1 { color: #fff; font-size: clamp(34px, 4.4vw, 50px); margin-bottom: 14px; letter-spacing: -.4px; }
.page-hero p { color: var(--text-inv-soft); max-width: 640px; margin: 0 auto; font-size: 17px; }
.breadcrumb {
  display: inline-flex; gap: 8px; color: #ffc9a8; font-size: 12.5px; letter-spacing: 2.4px;
  text-transform: uppercase; margin-bottom: 16px; font-weight: 700;
}

/* ---------- Mission / vision ---------- */
.mv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.mv-card {
  background: var(--navy-2); border: 1px solid var(--line-dark); border-radius: var(--radius);
  padding: 38px 30px; text-align: center; transition: all .35s;
}
.mv-card:hover { transform: translateY(-6px); border-color: var(--red); }
.mv-card .mv-ic {
  width: 60px; height: 60px; border-radius: 16px; margin: 0 auto 20px;
  background: rgba(255,107,44,.14); color: var(--red);
  display: flex; align-items: center; justify-content: center;
}
.mv-card .mv-ic .ic { width: 28px; height: 28px; }
.mv-card h3 { color: #fff; font-size: 21px; margin-bottom: 12px; }
.mv-card p { color: var(--text-inv-soft); font-size: 15px; }

/* ---------- Jobs ---------- */
.jobs-filter {
  display: flex; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 12px; margin-bottom: 34px; box-shadow: var(--shadow); flex-wrap: wrap;
}
.jobs-filter input, .jobs-filter select {
  flex: 1; min-width: 170px; border: 1.5px solid var(--line); border-radius: 10px;
  padding: 12px 15px; font-family: var(--font-body); font-size: 14.5px; color: var(--text); background: var(--off);
}
.jobs-filter input:focus, .jobs-filter select:focus { outline: none; border-color: var(--blue); background: #fff; }
.jobs-filter .btn { flex-shrink: 0; }

.job-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 30px; display: flex; flex-wrap: wrap; gap: 22px; align-items: center;
  justify-content: space-between; transition: all .3s; margin-bottom: 18px; position: relative; overflow: hidden;
}
.job-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--red); transform: scaleY(0); transition: transform .3s; transform-origin: top;
}
.job-card:hover { box-shadow: var(--shadow-lg); border-color: transparent; }
.job-card:hover::before { transform: scaleY(1); }
.job-main { flex: 1 1 420px; }
.job-cat {
  display: inline-block; background: var(--blue-soft); color: var(--blue);
  font-size: 11.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px; margin-bottom: 12px;
}
.job-card h3 { font-size: 21px; margin-bottom: 8px; }
.job-meta { display: flex; flex-wrap: wrap; gap: 18px; color: var(--text-soft); font-size: 14px; margin-bottom: 10px; }
.job-meta span { display: inline-flex; align-items: center; gap: 6px; }
.job-meta .ic { width: 16px; height: 16px; color: var(--red); }
.job-desc { color: var(--text-soft); font-size: 14.5px; }
.job-apply { flex-shrink: 0; }
.jobs-empty {
  text-align: center; background: var(--white); border: 1.5px dashed var(--line);
  border-radius: var(--radius); padding: 70px 30px; color: var(--text-soft);
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 46px; align-items: start; }
.contact-form-card {
  background: var(--white); border-radius: var(--radius); padding: 42px;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.contact-form-card h2 { font-size: 26px; margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 7px; color: var(--navy); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: var(--font-body); font-size: 15px; background: var(--off);
  transition: border-color .25s; color: var(--text);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--blue); background: #fff;
}
.form-note { font-size: 13px; color: var(--text-soft); margin-top: 14px; display: flex; align-items: center; gap: 8px; }
.form-note .ic { width: 16px; height: 16px; color: #25d366; }

.contact-info-card { background: var(--navy); color: var(--text-inv); border-radius: var(--radius); padding: 42px; }
.contact-info-card h2 { color: #fff; font-size: 26px; margin-bottom: 26px; }
.info-item { display: flex; gap: 16px; margin-bottom: 26px; }
.info-item .info-ic {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 12px;
  background: rgba(255,107,44,.16); color: var(--red);
  display: flex; align-items: center; justify-content: center;
}
.info-item h4 { color: #fff; font-family: var(--font-body); font-size: 15px; margin-bottom: 4px; }
.info-item p, .info-item a { color: var(--text-inv-soft); font-size: 14.5px; }
.info-item a:hover { color: #fff; }
.map-embed { border-radius: var(--radius); overflow: hidden; margin-top: 44px; border: 1px solid var(--line); box-shadow: var(--shadow); }
.map-embed iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- Footer (light) ---------- */
.site-footer {
  background: var(--off); color: var(--text-soft); padding: 80px 0 0;
  border-top: 4px solid; position: relative;
  border-image: linear-gradient(90deg, var(--blue), var(--red), var(--blue)) 1;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1.3fr; gap: 44px; padding-bottom: 54px; }
.footer-logo { height: 70px; width: auto; object-fit: contain; margin-bottom: 18px; }
.footer-brand { color: var(--navy); font-size: 22px; margin-bottom: 16px; }
.footer-brand em { font-style: normal; color: var(--red); }
.footer-about p { font-size: 14.5px; margin-bottom: 22px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 40px; height: 40px; border-radius: 10px; background: #fff;
  border: 1px solid var(--line); display: flex; align-items: center; justify-content: center;
  color: var(--text-soft); transition: all .3s; box-shadow: 0 2px 8px rgba(11,20,55,.05);
}
.social-links a:hover { background: var(--red); color: #fff; transform: translateY(-3px); border-color: var(--red); }
.social-links .ic { width: 18px; height: 18px; }
.footer-col h4 {
  color: var(--navy); font-family: var(--font-head); font-size: 16px; font-weight: 700;
  margin-bottom: 22px; position: relative; padding-bottom: 12px;
}
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 34px; height: 2.5px; background: var(--red); border-radius: 2px; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul a { font-size: 14.5px; transition: all .25s; }
.footer-col ul a:hover { color: var(--red); padding-left: 5px; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact .ic { color: var(--red); margin-top: 3px; width: 18px; height: 18px; }
.footer-contact span, .footer-contact a { font-size: 14.5px; }
.footer-contact a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid var(--line); padding: 20px 0; font-size: 13.5px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
}
.footer-bottom .credit a { color: var(--blue); font-weight: 600; transition: color .25s; }
.footer-bottom .credit a:hover { color: var(--red); }
@media (max-width: 640px) { .footer-bottom { justify-content: center; text-align: center; } }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 90; width: 60px; height: 60px;
  border-radius: 50%; background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 26px rgba(37,211,102,.45); animation: wa-pulse 2.4s infinite; transition: transform .3s;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes wa-pulse {
  0% { box-shadow: 0 8px 26px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.4); }
  70% { box-shadow: 0 8px 26px rgba(37,211,102,.45), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 26px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Alerts ---------- */
.alert { padding: 14px 20px; border-radius: 10px; margin-bottom: 20px; font-size: 14.5px; font-weight: 500; }
.alert-success { background: #e8f7ee; color: #157347; border: 1px solid #b9e6cd; }
.alert-error { background: var(--red-soft); color: #b3273a; border: 1px solid #f6c6cd; }

/* ============================================================
   High-animation layer (job consultancy vibes)
   ============================================================ */

/* Scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3.5px; width: 0%;
  background: var(--grad-brand); z-index: 200; transition: width .12s linear;
  box-shadow: 0 0 12px rgba(255,107,44,.55);
}

/* Button shine sweep on hover */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: ''; position: absolute; top: 0; bottom: 0; left: -80%; width: 45%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-20deg); transition: left .55s ease;
}
.btn:hover::after { left: 130%; }

/* Gradient headline accent */
.hero h1 em, .section-head h2 em {
  background: linear-gradient(90deg, var(--red), #ffa163);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Rotating job-type words (hero ticker) */
.word-rotator {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: clamp(17px, 2vw, 21px);
  color: #ffc9a8; margin-bottom: 28px; min-height: 32px;
}
.word-rotator .rot-wrap {
  display: inline-block; position: relative; text-align: left;
  color: #fff; background: rgba(255,107,44,.18); border: 1px solid rgba(255,107,44,.45);
  padding: 4px 16px; border-radius: 10px; overflow: hidden;
}
.word-rotator .rot-word { display: inline-block; animation: rotIn .5s ease; white-space: nowrap; }
@keyframes rotIn { from { opacity: 0; transform: translateY(110%); } to { opacity: 1; transform: none; } }

/* Premium glowing gradient icon boxes */
.svc-mini .mini-ic {
  background: linear-gradient(135deg, var(--blue), var(--navy-3));
  color: #fff; box-shadow: 0 10px 24px rgba(36,86,230,.35);
}
.svc-mini:hover .mini-ic {
  background: linear-gradient(135deg, var(--red), #ff9552);
  box-shadow: 0 12px 28px rgba(255,107,44,.45);
  transform: rotate(-8deg) scale(1.1);
}
.svc-icon { background: linear-gradient(135deg, var(--red), #ff9552); }
.why-ic {
  background: linear-gradient(135deg, var(--blue-soft), #dbe6ff); color: var(--blue);
  transition: all .35s;
}
.why-item:hover .why-ic {
  background: linear-gradient(135deg, var(--blue), var(--navy-3)); color: #fff;
  transform: translateY(-4px); box-shadow: 0 12px 26px rgba(36,86,230,.35);
}
.mv-card .mv-ic { transition: transform .35s; }
.mv-card:hover .mv-ic { transform: rotate(-10deg) scale(1.12); }

/* Steps: animated dashed connector + icon pop */
.steps-grid { position: relative; }
.step-card { background: rgba(255,255,255,.04); }
.step-num {
  background: linear-gradient(135deg, var(--red), #ff9552);
  transition: transform .35s;
}
.step-card:hover .step-num { transform: rotate(-10deg) scale(1.14); }
.step-card::after {
  content: ''; position: absolute; left: 26px; right: 26px; bottom: 0; height: 3px;
  background: repeating-linear-gradient(90deg, var(--red) 0 12px, transparent 12px 24px);
  background-size: 24px 3px; opacity: 0; transition: opacity .35s;
  animation: dashMove 1.2s linear infinite;
}
.step-card:hover::after { opacity: .9; }
@keyframes dashMove { from { background-position-x: 0; } to { background-position-x: 24px; } }

/* Marquee: brand gradient */
.marquee-band { background: var(--grad-brand); }

/* Card lift + subtle tilt */
.svc-card:hover, .svc-mini:hover { transform: translateY(-8px) rotate(-.4deg); }
.testi-card:hover { transform: translateY(-8px) rotate(.4deg); }

/* Stats icons pulse */
.stat-num { position: relative; }
.stats-strip { background: linear-gradient(180deg, #fff, var(--off)); }

/* Job cards: orange salary highlight + animated border */
.job-meta span:nth-child(2) { color: var(--red-2); font-weight: 600; }
.job-card:hover h3 { color: var(--blue); transition: color .3s; }

/* ---------- Booking section ---------- */
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.booking-info h2 { color: #fff; font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 18px; }
.booking-info p { color: var(--text-inv-soft); margin-bottom: 22px; font-size: 16.5px; }
.booking-stats { display: flex; gap: 40px; margin-top: 28px; }
.booking-stats strong { display: block; font-family: var(--font-head); font-size: 30px; font-weight: 800; color: #ffc9a8; }
.booking-stats span { color: var(--text-inv-soft); font-size: 13.5px; }
.booking-card {
  background: #fff; border-radius: var(--radius); padding: 36px 34px;
  box-shadow: var(--shadow-lg);
}
.booking-card h3 {
  font-size: 22px; margin-bottom: 22px; display: flex; align-items: center; gap: 10px;
}
.booking-card h3 .ic { color: var(--red); width: 24px; height: 24px; }
.booking-card select:disabled { opacity: .6; cursor: not-allowed; }
@media (max-width: 900px) { .booking-grid { grid-template-columns: 1fr; gap: 40px; } }
@media (max-width: 560px) { .booking-card { padding: 26px 20px; } }

/* Section eyebrow shimmer */
.eyebrow { position: relative; }
.section.navy .eyebrow { color: #ffc9a8; }
.section.navy .eyebrow::before, .section.navy .eyebrow::after { background: var(--red); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step-card .step-arrow { display: none; }
  .mv-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .topbar-left span.hide-md { display: none; }
  .hero { padding: 84px 0 96px; min-height: 78vh; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 46px; }
  .split-img .img-accent { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stat-item + .stat-item::before { display: none; }
  .section { padding: 68px 0; }
  .page-hero { padding: 64px 0; }

  .nav-toggle { display: flex; }
  /* backdrop-filter breaks position:fixed children — use solid header on mobile */
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: #ffffff; }
  .main-nav {
    position: fixed; top: 0; right: 0; bottom: 0; height: 100dvh; width: min(320px, 84vw);
    background: #0b1437 !important; flex-direction: column; align-items: flex-start; gap: 0;
    padding: 90px 28px 30px; transform: translateX(105%); transition: transform .35s ease;
    box-shadow: none; visibility: hidden; z-index: 998; overflow-y: auto;
  }
  .main-nav.open {
    transform: translateX(0); visibility: visible;
    box-shadow: -20px 0 60px rgba(0,0,0,.45);
  }
  .main-nav > a { padding: 15px 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 16px; color: var(--text-inv-soft); }
  .main-nav > a:hover, .main-nav > a.active { color: #fff; }
  .main-nav > a.active::after { display: none; }
  .nav-cta { margin-top: 20px; justify-content: center; width: 100%; }
  .nav-toggle { position: relative; z-index: 999; }
  .nav-toggle.open span { background: #fff; }
}

@media (max-width: 560px) {
  .topbar-left a.hide-sm { display: none; }
  .cards-grid, .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card, .contact-info-card { padding: 28px 22px; }
  .hero-search { flex-direction: column; }
  .hero-search select { border-left: 0; border-top: 1px solid var(--line); }
  .hero-search .btn { width: 100%; justify-content: center; }
  .brand-name { font-size: 16px; }
  .header-inner { height: 74px; }
  .brand-logo { height: 58px; max-width: 200px; }
  .job-card { padding: 24px 20px; }
  .job-apply, .job-apply .btn { width: 100%; justify-content: center; }
  .wa-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .split-img .exp-badge { right: 12px; padding: 14px 18px; }

  /* Prevent iOS auto-zoom on focus (inputs must be >= 16px) */
  input, select, textarea { font-size: 16px !important; }

  /* Jobs filter: stack full width */
  .jobs-filter { flex-direction: column; }
  .jobs-filter input, .jobs-filter select, .jobs-filter .btn { width: 100%; justify-content: center; }

  /* Hero ticker wraps neatly */
  .word-rotator { flex-wrap: wrap; justify-content: center; text-align: center; }

  /* Booking section */
  .booking-stats { flex-wrap: wrap; gap: 22px; }
  .booking-info { text-align: center; }
  .booking-info .check-list li { justify-content: flex-start; text-align: left; }
  .booking-stats { justify-content: center; }

  /* Hero dots slightly higher so they don't clash with content */
  .hero-dots { bottom: 16px; }
  .hero { padding: 70px 0 78px; }
  .hero p.lead { font-size: 16px; }

  /* Section spacing tighter on phones */
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 38px; }
  .cta-band { padding: 64px 0; }
  .page-hero { padding: 48px 0 52px; }
}

@media (max-width: 420px) {
  .topbar-inner { justify-content: space-between; gap: 10px; }
  .topbar-left a { font-size: 12.5px; }
  .topbar-social { display: flex; gap: 12px; }
  .hero h1 { font-size: 32px; }
  .booking-card { padding: 22px 16px; }
  .svc-body { padding: 22px 18px 26px; }
  .faq-q { padding: 16px 16px; font-size: 15px; }
  .faq-a p { padding: 0 16px 18px; }
  .testi-card { padding: 24px 20px; }
  .container { width: 94%; }
}
