/* =====================================================
   Recruitments Solution — Main Stylesheet
   ===================================================== */
:root {
  --teal: #0e5c55;
  --teal-dark: #0a423d;
  --teal-deep: #082f2c;
  --teal-light: #e3efed;
  --teal-soft: #f0f6f5;
  --orange: #e8622b;
  --orange-dark: #cf4f1b;
  --blue: #1f7fd6;
  --ink: #14232b;
  --body: #45555e;
  --muted: #6b7a83;
  --bg: #f6f5f2;
  --card: #ffffff;
  --line: #e5e9e8;
  --radius: 18px;
  --shadow: 0 6px 24px rgba(10, 50, 46, .08);
  --shadow-lg: 0 16px 44px rgba(10, 50, 46, .14);
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.22; font-weight: 800; }
.container { width: min(1180px, 92%); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--teal); color: #fff; padding: 8px 16px; z-index: 300; }
.skip-link:focus { left: 8px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 28px; border-radius: 999px;
  font-weight: 700; font-size: 15.5px; font-family: var(--font);
  border: 2px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--teal); color: #fff; box-shadow: 0 8px 20px rgba(14, 92, 85, .3); }
.btn-primary:hover { background: var(--teal-dark); color: #fff; }
.btn-orange { background: var(--orange); color: #fff; box-shadow: 0 8px 20px rgba(232, 98, 43, .3); }
.btn-orange:hover { background: var(--orange-dark); color: #fff; }
.btn-outline { border-color: rgba(255,255,255,.55); color: #fff; background: transparent; }
.btn-outline:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn-outline-teal { border-color: var(--teal); color: var(--teal); background: transparent; }
.btn-outline-teal:hover { background: var(--teal); color: #fff; }
.btn .ic { width: 19px; height: 19px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 200;
  /* NOTE: no backdrop-filter here — it breaks position:fixed of the mobile nav drawer */
  background: #fff;
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s, border-color .25s;
}
.site-header.scrolled { box-shadow: 0 4px 18px rgba(10,50,46,.09); border-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 11px; min-width: 0; }
.brand img { width: 46px; height: 46px; object-fit: contain; }
.brand-text { font-size: 19px; letter-spacing: .2px; color: var(--ink); white-space: nowrap; }
.brand-text span { font-weight: 600; }
.brand-text strong { font-weight: 800; color: var(--teal); }
.main-nav ul { display: flex; align-items: center; gap: 6px; list-style: none; }
.main-nav a {
  display: block; padding: 9px 15px; border-radius: 999px;
  color: var(--ink); font-weight: 600; font-size: 15.5px;
  transition: background .18s, color .18s;
}
.main-nav a:hover { background: var(--teal-soft); color: var(--teal); }
.main-nav a.active { background: var(--teal); color: #fff; }
.nav-cta { margin-left: 8px; }
.nav-cta .btn { padding: 10px 24px; font-size: 15px; }
.main-nav a.btn-orange { background: var(--orange); color: #fff; }
.main-nav a.btn-orange:hover { background: var(--orange-dark); color: #fff; }

.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; padding: 11px;
  background: var(--teal); border: 0; border-radius: 12px; cursor: pointer;
}
.hamburger span { display: block; height: 2.6px; width: 100%; background: #fff; border-radius: 3px; transition: transform .28s, opacity .2s; }
.hamburger.open span:nth-child(1) { transform: translateY(7.6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.6px) rotate(-45deg); }
.nav-overlay { position: fixed; inset: 0; background: rgba(8, 40, 37, .5); z-index: 190; opacity: 0; transition: opacity .25s; }
.nav-overlay.show { opacity: 1; }

/* ---------- Hero slider ---------- */
.hero { position: relative; overflow: hidden; background: var(--teal-deep); color: #fff; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(700px 420px at 88% -10%, rgba(31,127,214,.35), transparent 60%),
    radial-gradient(600px 420px at -8% 110%, rgba(46,164,146,.3), transparent 60%),
    linear-gradient(135deg, #0a423d 0%, #0e5c55 55%, #0b4a44 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image: radial-gradient(rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 26px 26px;
}
.slider { position: relative; z-index: 2; }
.slide { display: none; animation: fadeUp .7s ease both; }
.slide.current { display: block; }
.slide-inner { padding: 92px 0 72px; max-width: 780px; margin: 0 auto; text-align: center; }
.hero-badge {
  display: inline-block; padding: 8px 20px; border-radius: 999px;
  background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.22);
  font-size: 14px; font-weight: 600; letter-spacing: .3px; margin-bottom: 26px; color: #ecf6f4;
}
.slide h1, .slide .h1 { font-size: clamp(32px, 5vw, 54px); color: #fff; margin-bottom: 20px; letter-spacing: -.5px; }
.slide p { font-size: clamp(16px, 2vw, 19px); color: #cfe2df; max-width: 640px; margin: 0 auto 34px; }
.slide-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.slider-dots { position: relative; z-index: 3; display: flex; gap: 9px; justify-content: center; padding-bottom: 34px; }
.slider-dots button {
  width: 10px; height: 10px; border-radius: 999px; border: 0; cursor: pointer;
  background: rgba(255,255,255,.35); transition: width .25s, background .25s; padding: 0;
}
.slider-dots button.on { width: 30px; background: #fff; }
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.1); color: #fff; font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background .2s;
}
.slider-arrow:hover { background: rgba(255,255,255,.25); }
.slider-prev { left: 22px; } .slider-next { right: 22px; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

/* ---------- Stats ---------- */
.stats-band { position: relative; z-index: 5; margin-top: -1px; background: var(--teal-deep); padding-bottom: 60px; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 34px 28px;
}
.stat { text-align: center; }
.stat b { display: block; font-size: clamp(28px, 3.4vw, 42px); font-weight: 800; color: var(--teal); letter-spacing: -1px; }
.stat span { font-size: 14.5px; color: var(--muted); font-weight: 600; }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section.alt { background: #fff; }
.sec-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.sec-head .kicker {
  display: inline-block; color: var(--teal); background: var(--teal-light);
  font-size: 13px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px; margin-bottom: 16px;
}
.sec-head h2 { font-size: clamp(27px, 3.6vw, 38px); margin-bottom: 14px; letter-spacing: -.4px; }
.sec-head p { color: var(--muted); font-size: 17px; }

/* Cards */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.card {
  background: var(--card); border-radius: var(--radius); padding: 36px 30px;
  box-shadow: var(--shadow); border: 1px solid var(--line);
  transition: transform .22s ease, box-shadow .22s ease;
  text-align: center;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card .icon-wrap {
  width: 68px; height: 68px; margin: 0 auto 22px; border-radius: 20px;
  background: var(--teal-light); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
}
.card .icon-wrap .ic { width: 32px; height: 32px; }
.card h3 { font-size: 20px; margin-bottom: 12px; }
.card p { font-size: 15px; color: var(--muted); }

/* About preview */
.about-flex { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.about-visual { position: relative; }
.about-visual .panel {
  border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg);
  background: linear-gradient(150deg, var(--teal) 0%, var(--teal-dark) 100%);
  aspect-ratio: 4 / 3.4; display: flex; align-items: center; justify-content: center; position: relative;
}
.about-visual .panel::before {
  content: ""; position: absolute; inset: 0; opacity: .55;
  background-image: radial-gradient(rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 22px 22px;
}
.about-visual .panel img { width: 52%; opacity: .96; position: relative; filter: drop-shadow(0 10px 26px rgba(0,0,0,.25)); }
.about-chip {
  position: absolute; bottom: -18px; right: -12px;
  background: #fff; border-radius: 16px; box-shadow: var(--shadow-lg);
  padding: 16px 22px; display: flex; align-items: center; gap: 12px;
}
.about-chip .ic { width: 30px; height: 30px; color: var(--orange); }
.about-chip b { display: block; color: var(--ink); font-size: 18px; }
.about-chip span { font-size: 13px; color: var(--muted); }
.about-content .kicker {
  display: inline-block; color: var(--teal); background: var(--teal-light);
  font-size: 13px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px; margin-bottom: 18px;
}
.about-content h2 { font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 18px; letter-spacing: -.4px; }
.about-content p { margin-bottom: 14px; }
.tick-list { list-style: none; margin: 20px 0 28px; display: grid; gap: 12px; }
.tick-list li { display: flex; gap: 11px; align-items: flex-start; font-weight: 600; color: var(--ink); }
.tick-list .ic { width: 21px; height: 21px; color: var(--teal); flex-shrink: 0; margin-top: 3px; }

/* Steps */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 26px; box-shadow: var(--shadow); }
.step-num {
  width: 52px; height: 52px; border-radius: 16px; margin-bottom: 18px;
  background: linear-gradient(135deg, var(--teal), #157a6e); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 21px; font-weight: 800;
}
.step-card h3 { font-size: 18.5px; margin-bottom: 10px; }
.step-card p { font-size: 14.5px; color: var(--muted); }

/* Testimonials */
.testi-wrap { position: relative; max-width: 820px; margin: 0 auto; }
.testi-track { overflow: hidden; }
.testi { display: none; animation: fadeUp .5s ease both; }
.testi.current { display: block; }
.testi-card {
  background: #fff; border-radius: 22px; box-shadow: var(--shadow);
  border: 1px solid var(--line); padding: 44px 48px; text-align: center;
}
.testi-card .quote { font-size: 46px; color: var(--teal); line-height: 1; font-family: Georgia, serif; }
.testi-card p.msg { font-size: 17.5px; color: var(--ink); font-weight: 500; margin: 12px 0 24px; }
.testi-card b { color: var(--teal); font-size: 16px; }
.testi-card span { display: block; font-size: 13.5px; color: var(--muted); margin-top: 3px; }
.testi-dots { display: flex; justify-content: center; gap: 8px; margin-top: 26px; }
.testi-dots button { width: 9px; height: 9px; border-radius: 999px; border: 0; background: #cfdad7; cursor: pointer; padding: 0; transition: width .25s, background .25s; }
.testi-dots button.on { width: 26px; background: var(--teal); }

/* Blog cards */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform .22s, box-shadow .22s;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.post-card .thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--teal-light); }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.post-meta { display: flex; gap: 10px; align-items: center; font-size: 13px; color: var(--muted); margin-bottom: 11px; }
.post-cat { background: var(--teal-light); color: var(--teal); font-weight: 700; padding: 3.5px 12px; border-radius: 999px; font-size: 12.5px; }
.post-body h3 { font-size: 18px; margin-bottom: 10px; }
.post-body h3 a { color: var(--ink); }
.post-body h3 a:hover { color: var(--teal); }
.post-body p { font-size: 14.5px; color: var(--muted); flex: 1; }
.read-more { margin-top: 16px; font-weight: 700; color: var(--teal); font-size: 14.5px; }

/* CTA / enquiry band */
.cta-band { position: relative; overflow: hidden; background: var(--teal-deep); color: #fff; padding: 76px 0; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(560px 380px at 92% 0%, rgba(31,127,214,.32), transparent 60%),
    radial-gradient(500px 380px at 0% 100%, rgba(46,164,146,.28), transparent 60%),
    linear-gradient(135deg, #0a423d, #0e5c55);
}
.cta-inner { position: relative; display: grid; grid-template-columns: 1.1fr 1fr; gap: 54px; align-items: center; }
.cta-inner h2 { color: #fff; font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 16px; letter-spacing: -.4px; }
.cta-inner > div > p { color: #cfe2df; font-size: 17px; margin-bottom: 26px; }
.enquiry-card { background: #fff; border-radius: 22px; padding: 34px 32px; box-shadow: var(--shadow-lg); color: var(--body); }
.enquiry-card h3 { font-size: 21px; margin-bottom: 6px; }
.enquiry-card .sub { font-size: 14px; color: var(--muted); margin-bottom: 20px; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
label.f-label { display: block; font-weight: 700; font-size: 14px; color: var(--ink); margin-bottom: 7px; }
label.f-label .req { color: var(--orange); }
.f-input, .f-select, .f-textarea {
  width: 100%; padding: 13px 16px; border-radius: 12px;
  border: 1.6px solid var(--line); background: #fbfcfc;
  font-family: var(--font); font-size: 15px; color: var(--ink);
  transition: border-color .18s, box-shadow .18s;
}
.f-input:focus, .f-select:focus, .f-textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(14,92,85,.11); background: #fff;
}
.f-textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 12px; }
.alert { padding: 15px 20px; border-radius: 13px; font-weight: 600; margin-bottom: 22px; font-size: 15px; }
.alert-ok { background: #e5f5ec; color: #14713f; border: 1px solid #bfe5cf; }
.alert-err { background: #fdecec; color: #b3261e; border: 1px solid #f5c9c6; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- Page hero ---------- */
.page-hero { position: relative; overflow: hidden; background: var(--teal-deep); color: #fff; padding: 74px 0 66px; text-align: center; }
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(600px 380px at 90% -10%, rgba(31,127,214,.32), transparent 60%),
    linear-gradient(135deg, #0a423d 0%, #0e5c55 60%, #0b4a44 100%);
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image: radial-gradient(rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 26px 26px;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(30px, 4.4vw, 46px); margin-bottom: 12px; letter-spacing: -.5px; }
.page-hero p { color: #cfe2df; max-width: 620px; margin: 0 auto; font-size: 17px; }
.crumbs { position: relative; z-index: 2; margin-top: 18px; font-size: 14px; color: #a9c6c2; }
.crumbs a { color: #dcecea; font-weight: 600; }

/* ---------- Content pages ---------- */
.content-page { max-width: 840px; margin: 0 auto; background: #fff; border-radius: 22px; border: 1px solid var(--line); box-shadow: var(--shadow); padding: 52px 56px; }
.content-page h2 { font-size: 24px; margin: 30px 0 12px; }
.content-page h3 { font-size: 19px; margin: 24px 0 10px; }
.content-page p { margin-bottom: 14px; }
.content-page ul, .content-page ol { margin: 0 0 16px 22px; }
.content-page li { margin-bottom: 8px; }
.content-page strong { color: var(--ink); }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 30px; align-items: start; }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 32px; }
.info-card h3 { font-size: 20px; margin-bottom: 8px; }
.info-item { display: flex; gap: 15px; padding: 17px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.info-item:last-child { border-bottom: 0; }
.info-item .icon-wrap { width: 48px; height: 48px; border-radius: 14px; background: var(--teal-light); color: var(--teal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-item .icon-wrap .ic { width: 23px; height: 23px; }
.info-item b { display: block; color: var(--ink); margin-bottom: 3px; font-size: 15.5px; }
.info-item p, .info-item a { font-size: 14.5px; color: var(--muted); word-break: break-word; }
.map-frame { margin-top: 26px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.map-frame iframe { display: block; width: 100%; height: 320px; border: 0; }

/* ---------- Registration fee highlight ---------- */
.fee-box {
  margin-top: 20px; padding: 22px 24px; border-radius: 16px; text-align: center;
  background: linear-gradient(135deg, var(--orange) 0%, #f07f3c 100%);
  box-shadow: 0 10px 26px rgba(232, 98, 43, .35);
  display: flex; flex-direction: column; gap: 3px;
}
.fee-box .fee-label {
  color: #ffe3d3; font-size: 13px; font-weight: 700;
  letter-spacing: 1.6px; text-transform: uppercase;
}
.fee-box .fee-amount { color: #fff; font-size: 38px; font-weight: 800; line-height: 1.15; letter-spacing: -.5px; }
.fee-box .fee-note { color: #ffe3d3; font-size: 13px; font-weight: 600; }

/* ---------- Blog listing / single ---------- */
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 34px; align-items: start; }
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 44px; flex-wrap: wrap; }
.pagination a, .pagination span {
  min-width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center;
  padding: 0 14px; border-radius: 12px; background: #fff; border: 1px solid var(--line);
  font-weight: 700; color: var(--ink); font-size: 15px;
}
.pagination .cur { background: var(--teal); color: #fff; border-color: var(--teal); }
.side-widget { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 26px; margin-bottom: 24px; }
.side-widget h3 { font-size: 17px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--teal-light); }
.side-widget ul { list-style: none; }
.side-widget li { margin-bottom: 12px; }
.side-widget li a { font-weight: 600; font-size: 14.5px; color: var(--body); display: block; line-height: 1.45; }
.side-widget li a:hover { color: var(--teal); }
.side-widget .cat-link { display: flex; justify-content: space-between; }
.side-widget .cat-link span { color: var(--muted); font-weight: 700; font-size: 13px; }
.article { background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); overflow: hidden; }
.article .cover { aspect-ratio: 21/9; background: var(--teal-light); }
.article .cover img { width: 100%; height: 100%; object-fit: cover; }
.article-body { padding: 44px 50px; }
.article-body h1 { font-size: clamp(25px, 3.2vw, 34px); margin: 10px 0 18px; letter-spacing: -.4px; }
.article-body h2 { font-size: 23px; margin: 28px 0 12px; }
.article-body h3 { font-size: 19px; margin: 22px 0 10px; }
.article-body p { margin-bottom: 15px; }
.article-body ul, .article-body ol { margin: 0 0 16px 22px; }
.article-body li { margin-bottom: 8px; }
.article-body em { color: var(--teal); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: var(--teal-deep); color: #b9cfcc; margin-top: 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 44px;
  padding: 64px 0 46px;
}
.f-col h3 { color: #fff; font-size: 16.5px; margin-bottom: 20px; letter-spacing: .3px; }
.f-col ul { list-style: none; }
.f-col ul li { margin-bottom: 11px; }
.f-col a { color: #b9cfcc; font-size: 14.5px; transition: color .15s; }
.f-col a:hover { color: #fff; }
.f-about p { font-size: 14.5px; margin: 18px 0 22px; line-height: 1.7; }
.brand-footer .brand-text span, .brand-footer .brand-text strong { color: #fff; }
.brand-footer img { background: #fff; border-radius: 12px; padding: 4px; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center; transition: background .2s, transform .2s;
}
.socials a:hover { background: var(--orange); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; fill: #fff; }
.f-line { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 15px; font-size: 14.5px; }
.f-line .ic { width: 19px; height: 19px; color: #6fb5ac; flex-shrink: 0; margin-top: 3px; }
.map-link { font-weight: 700; color: #7fd0c5 !important; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; font-size: 13.5px; }
.footer-bottom p { color: #8fb0ac; }

.back-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 150;
  width: 46px; height: 46px; border-radius: 50%; border: 0;
  background: var(--teal); color: #fff; font-size: 19px; cursor: pointer;
  box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s;
  transform: translateY(8px);
}
.back-top.show { opacity: 1; pointer-events: auto; transform: none; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =====================================================
   Responsive
   ===================================================== */
@media (max-width: 1024px) {
  .grid-3, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .about-flex { grid-template-columns: 1fr; gap: 44px; }
  .cta-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .blog-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  /* Mobile nav */
  .hamburger { display: flex; }
  .main-nav {
    position: fixed; top: 0; right: 0; bottom: 0; z-index: 195;
    width: min(320px, 84vw); background: #fff;
    transform: translateX(105%); transition: transform .3s ease;
    box-shadow: -12px 0 40px rgba(8,40,37,.18);
    padding: 92px 26px 30px; overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .main-nav a { padding: 14px 18px; border-radius: 13px; font-size: 16.5px; }
  .nav-cta { margin: 14px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .hamburger { position: relative; z-index: 210; }
}
@media (max-width: 720px) {
  .section { padding: 62px 0; }
  .slide-inner { padding: 66px 0 56px; }
  .slider-arrow { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 26px 12px; padding: 28px 20px; }
  .grid-3, .grid-2, .blog-grid, .steps-grid, .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: auto; }
  .content-page { padding: 34px 24px; }
  .article-body { padding: 30px 22px; }
  .testi-card { padding: 34px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; padding: 50px 0 36px; }
  .enquiry-card { padding: 28px 22px; }
  .about-chip { right: 4px; bottom: -14px; padding: 13px 17px; }
  .brand-text { font-size: 16.5px; }
}
