/* ==========================================================================
   Your Gracious Lively Ltd — Stylesheet
   Design tokens, base styles, layout and components.
   ========================================================================== */

:root {
  /* Brand palette */
  --color-primary: #0056A6;
  --color-primary-dark: #003D7A;
  --color-primary-light: #EAF2FB;
  --color-secondary: #C2943E;
  --color-secondary-dark: #9d7223;
  --color-accent-bg: #F5F7FA;
  --color-gold: #B8863F;
  --color-navy: #0B2545;
  --color-text: #1F2937;
  --color-text-muted: #5B6472;
  --color-white: #FFFFFF;
  --color-border: #E3E8EF;

  /* Type */
  --font-display: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  /* Layout */
  --container-width: 1240px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --nav-height: 84px;

  /* Shadow */
  --shadow-soft: 0 10px 30px rgba(11, 37, 69, 0.08);
  --shadow-card: 0 6px 18px rgba(11, 37, 69, 0.07);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--color-navy);
  line-height: 1.22;
  margin: 0 0 .6em;
  font-weight: 600;
}
h1 { font-size: clamp(2.2rem, 3.6vw, 3.4rem); font-weight: 700; letter-spacing: -.01em; }
h2 { font-size: clamp(1.7rem, 2.6vw, 2.35rem); letter-spacing: -.01em; }
h3 { font-size: 1.28rem; }
p { margin: 0 0 1em; color: var(--color-text-muted); }
:focus-visible { outline: 3px solid var(--color-gold); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

.container { width: 100%; max-width: var(--container-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--muted { background: var(--color-accent-bg); }
.section--navy { background: var(--color-navy); color: #C7D2E3; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy p { color: #AEBBD1; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--color-secondary); display: inline-block; }

.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: var(--color-primary-dark); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0,86,166,.25); }
.btn-secondary { background: var(--color-secondary); color: #fff; }
.btn-secondary:hover { background: var(--color-secondary-dark); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(40,167,69,.25); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.55); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-outline-navy { background: transparent; border-color: var(--color-primary); color: var(--color-primary); }
.btn-outline-navy:hover { background: var(--color-primary); color: #fff; }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 10px 20px; font-size: .85rem; }

/* ==========================================================================
   Preloader
   ========================================================================== */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--color-navy);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}
#preloader.loaded { opacity: 0; visibility: hidden; }
.preloader-mark {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.preloader-ring {
  width: 46px; height: 46px; border-radius: 50%;
  border: 3px solid rgba(255,255,255,.18);
  border-top-color: var(--color-secondary);
  animation: spin .9s linear infinite;
}
.preloader-mark span { font-family: var(--font-display); color: #fff; letter-spacing: .08em; font-size: .78rem; text-transform: uppercase; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ==========================================================================
   Top bar
   ========================================================================== */
.topbar {
  background: var(--color-navy);
  color: #AEBBD1;
  font-size: .82rem;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; padding-top: 9px; padding-bottom: 9px; flex-wrap: wrap; gap: 8px; }
.topbar-links { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-links a:hover { color: #fff; }
.topbar-links i { color: var(--color-secondary); margin-right: 6px; }
.topbar-social { display: flex; gap: 14px; }
.topbar-social a { width: 26px; height: 26px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); display: flex; align-items: center; justify-content: center; font-size: .75rem; transition: background .2s, border-color .2s; }
.topbar-social a:hover { background: var(--color-secondary); border-color: var(--color-secondary); }

/* ==========================================================================
   Navigation
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 500;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-transparent {
  position: absolute; top: 33px; left: 0; right: 0; width: 100%;
  background: transparent; border-bottom-color: transparent;
}
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(11,37,69,.08); }
.navbar { display: flex; align-items: center; justify-content: space-between; height: var(--nav-height); }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.28rem; color: var(--color-navy); }
.is-transparent .brand { color: #fff; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 10px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.1rem;
  flex-shrink: 0;
}
.brand small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .64rem; letter-spacing: .08em; text-transform: uppercase; color: var(--color-text-muted); }
.is-transparent .brand small { color: rgba(255,255,255,.75); }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex; align-items: center; gap: 6px;
  padding: 14px 16px; font-weight: 500; font-size: .95rem; color: var(--color-text);
  border-bottom: 2px solid transparent;
}
.is-transparent .nav-menu > li > a { color: #fff; }
.nav-menu > li > a:hover, .nav-menu > li.active > a { color: var(--color-primary); border-color: var(--color-secondary); }
.is-transparent .nav-menu > li > a:hover { color: #fff; border-color: var(--color-secondary); }

.has-mega { position: static; }
.mega-menu {
  position: absolute; left: 0; right: 0; top: 100%;
  background: #fff; border-top: 3px solid var(--color-secondary);
  box-shadow: 0 24px 48px rgba(11,37,69,.14);
  padding: 34px 0; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.has-mega:hover .mega-menu, .has-mega:focus-within .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-grid { max-width: var(--container-width); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.mega-item { display: flex; gap: 14px; padding: 14px; border-radius: var(--radius-sm); align-items: flex-start; }
.mega-item:hover { background: var(--color-accent-bg); }
.mega-item i { width: 40px; height: 40px; border-radius: 8px; background: var(--color-primary-light); color: var(--color-primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mega-item strong { display: block; color: var(--color-navy); font-family: var(--font-display); font-size: .92rem; margin-bottom: 3px; }
.mega-item span { font-size: .82rem; color: var(--color-text-muted); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--color-navy); cursor: pointer; }
.is-transparent .nav-toggle { color: #fff; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: var(--color-navy);
  padding-top: calc(var(--nav-height) + 33px + 90px);
  padding-bottom: 130px;
}
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(11,37,69,.94) 0%, rgba(11,37,69,.82) 42%, rgba(0,86,166,.55) 100%);
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25); padding: 7px 16px; border-radius: 40px; font-size: .8rem; font-weight: 600; letter-spacing: .05em; margin-bottom: 22px; }
.hero-eyebrow i { color: var(--color-secondary); }
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: #C2943E }
.hero p.lead { font-size: 1.15rem; color: rgba(255,255,255,.82); max-width: 540px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 46px; }
.hero-trust { display: flex; gap: 30px; flex-wrap: wrap; }
.hero-trust div { display: flex; align-items: center; gap: 10px; }
.hero-trust i { font-size: 1.4rem; color: var(--color-secondary); }
.hero-trust strong { display: block; font-family: var(--font-display); font-size: .92rem; color: #fff; }
.hero-trust span { font-size: .78rem; color: rgba(255,255,255,.68); }

.hero-card {
  background: #fff; color: var(--color-text); border-radius: var(--radius-md);
  padding: 30px; box-shadow: var(--shadow-soft);
}
.hero-card img { border-radius: var(--radius-sm); margin-bottom: 18px; height: 260px; object-fit: cover; width: 100%; }
.hero-card-stats { display: flex; justify-content: space-between; border-top: 1px solid var(--color-border); padding-top: 18px; margin-top: 6px; }
.hero-card-stats div strong { display: block; font-family: var(--font-display); color: var(--color-primary); font-size: 1.3rem; }
.hero-card-stats div span { font-size: .76rem; color: var(--color-text-muted); }

/* Page hero (interior pages) — shorter, no floating card */
.page-hero { padding-top: calc(var(--nav-height) + 33px + 60px); padding-bottom: 70px; }
.page-hero .hero-inner { grid-template-columns: 1fr; text-align: left; }
.breadcrumbs { display: flex; gap: 10px; align-items: center; font-size: .85rem; color: rgba(255,255,255,.7); margin-top: 8px; }
.breadcrumbs a:hover { color: #fff; }

/* ==========================================================================
   Stats strip
   ========================================================================== */
.stats-strip { background: var(--color-primary); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 40px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,.16); color: #fff; }
.stat-item:last-child { border-right: none; }
.stat-item .num { font-family: var(--font-display); font-weight: 700; font-size: 2.4rem; display: flex; justify-content: center; align-items: baseline; gap: 3px; }
.stat-item span.label { display: block; font-size: .85rem; color: rgba(255,255,255,.82); margin-top: 4px; }

/* ==========================================================================
   About / split content
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-md); width: 100%; height: 460px; object-fit: cover; }
.split-media .float-badge {
  position: absolute; bottom: -26px; left: -26px; background: #fff;
  border-radius: var(--radius-md); box-shadow: var(--shadow-soft);
  padding: 20px 24px; display: flex; align-items: center; gap: 14px; max-width: 260px;
}
.split-media .float-badge i { font-size: 1.7rem; color: var(--color-secondary); }
.split-media .float-badge strong { display: block; font-family: var(--font-display); color: var(--color-navy); }
.split-media .float-badge span { font-size: .8rem; }

.check-list li { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.check-list i { color: var(--color-secondary); background: #E7F7EB; width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .75rem; flex-shrink: 0; margin-top: 2px; }
.check-list strong { color: var(--color-navy); font-family: var(--font-display); font-size: .96rem; display: block; }
.check-list p { margin: 2px 0 0; font-size: .9rem; }

/* ==========================================================================
   Services grid (asymmetric)
   ========================================================================== */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  border: 1px solid var(--color-border); border-radius: var(--radius-md);
  padding: 34px 28px; background: #fff; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: transparent; }
.service-card .icon { width: 56px; height: 56px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 20px; color: #fff; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: .93rem; margin-bottom: 16px; }
.service-card a.more { font-family: var(--font-display); font-weight: 600; font-size: .85rem; color: var(--color-primary); display: inline-flex; align-items: center; gap: 6px; }
.service-card a.more i { transition: transform .2s ease; font-size: .8rem; }
.service-card a.more:hover i { transform: translateX(4px); }
.icon-bg-1 { background: var(--color-primary); }
.icon-bg-2 { background: var(--color-secondary); }
.icon-bg-3 { background: var(--color-gold); }

/* Featured wide card variant for homepage services (breaks the grid pattern) */
.service-feature {
  grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--color-border); border-radius: var(--radius-md); overflow: hidden;
}
.service-feature img { height: 100%; min-height: 220px; object-fit: cover; }
.service-feature .content { padding: 34px; display: flex; flex-direction: column; justify-content: center; }

/* ==========================================================================
   Why choose us
   ========================================================================== */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.why-item { text-align: left; padding-left: 20px; border-left: 3px solid var(--color-border); }
.why-item.active-accent { border-color: var(--color-secondary); }
.why-item .why-num { font-family: var(--font-display); font-weight: 700; font-size: .82rem; color: var(--color-secondary); letter-spacing: .08em; }
.why-item h3 { margin: 8px 0 8px; font-size: 1.1rem; }
.why-item p { font-size: .9rem; }

/* ==========================================================================
   Industries
   ========================================================================== */
.industries-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; background: var(--color-border); border: 1px solid var(--color-border); }
.industry-tile { background: #fff; padding: 30px 14px; text-align: center; transition: background .2s ease; }
.industry-tile:hover { background: var(--color-primary-light); }
.industry-tile i { font-size: 1.6rem; color: var(--color-primary); margin-bottom: 12px; }
.industry-tile span { display: block; font-size: .82rem; font-weight: 600; color: var(--color-navy); }

/* ==========================================================================
   Process (numbered — a real sequence)
   ========================================================================== */
.process-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; }
.process-row::before {
  content: ""; position: absolute; top: 34px; left: 60px; right: 60px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--color-border) 0 10px, transparent 10px 18px);
  z-index: 0;
}
.process-step { position: relative; z-index: 1; text-align: center; }
.process-step .step-num {
  width: 68px; height: 68px; border-radius: 50%; background: #fff; border: 2px solid var(--color-primary);
  color: var(--color-primary); font-family: var(--font-display); font-weight: 700; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.process-step h3 { font-size: 1.02rem; }
.process-step p { font-size: .88rem; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-slider { position: relative; max-width: 780px; margin: 0 auto; overflow: hidden; }
.testimonial-track { display: flex; transition: transform .5s ease; }
.testimonial-slide { min-width: 100%; text-align: center; padding: 0 12px; }
.testimonial-slide .stars { color: var(--color-gold); margin-bottom: 18px; letter-spacing: 3px; }
.testimonial-slide p.quote { font-family: var(--font-display); font-size: 1.28rem; color: var(--color-navy); font-weight: 500; line-height: 1.5; margin-bottom: 26px; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.testimonial-author img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.testimonial-author strong { display: block; color: var(--color-navy); font-family: var(--font-display); font-size: .92rem; }
.testimonial-author span { font-size: .8rem; }
.testimonial-nav { display: flex; justify-content: center; gap: 10px; margin-top: 34px; }
.testimonial-nav button { width: 10px; height: 10px; border-radius: 50%; background: var(--color-border); border: none; cursor: pointer; padding: 0; }
.testimonial-nav button.active { background: var(--color-secondary); width: 26px; border-radius: 6px; }
.testimonial-arrows { position: absolute; top: 50%; transform: translateY(-50%); width: 100%; display: flex; justify-content: space-between; left: 0; pointer-events: none; }
.testimonial-arrows button { pointer-events: all; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--color-border); background: #fff; cursor: pointer; color: var(--color-primary); }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-question { width: 100%; text-align: left; background: none; border: none; padding: 22px 4px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-family: var(--font-display); font-weight: 600; color: var(--color-navy); font-size: 1rem; }
.faq-question i { transition: transform .25s ease; color: var(--color-primary); flex-shrink: 0; margin-left: 20px; }
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer p { padding: 0 4px 22px; font-size: .94rem; }

/* ==========================================================================
   News / cards
   ========================================================================== */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.news-card { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--color-border); transition: box-shadow .2s ease, transform .2s ease; }
.news-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.news-card img { height: 200px; object-fit: cover; width: 100%; }
.news-card .content { padding: 24px; }
.news-meta { display: flex; gap: 14px; font-size: .78rem; color: var(--color-text-muted); margin-bottom: 10px; }
.news-meta span i { color: var(--color-secondary); margin-right: 5px; }
.news-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.news-card a.more { font-size: .84rem; font-weight: 600; color: var(--color-primary); font-family: var(--font-display); }

/* ==========================================================================
   Contact / forms
   ========================================================================== */
.contact-wrap { display: grid; grid-template-columns: .85fr 1.15fr; gap: 50px; }
.contact-info-card { background: var(--color-navy); color: #fff; border-radius: var(--radius-md); padding: 40px 34px; }
.contact-info-card h3 { color: #fff; }
.contact-info-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item i { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--color-secondary); }
.contact-info-item strong { display: block; color: #fff; font-family: var(--font-display); font-size: .92rem; margin-bottom: 3px; }
.contact-info-item span, .contact-info-item a { font-size: .87rem; color: #AEBBD1; }

.form-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 40px; box-shadow: var(--shadow-card); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { display: block; font-family: var(--font-display); font-weight: 600; font-size: .85rem; color: var(--color-navy); margin-bottom: 8px; }
.form-group label .req { color: #DC3545; }
.form-control {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--color-border); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .95rem; color: var(--color-text); background: #fff; transition: border-color .2s ease, box-shadow .2s ease;
}
.form-control:focus { border-color: var(--color-primary); box-shadow: 0 0 0 4px rgba(0,86,166,.1); outline: none; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-error { display: none; color: #DC3545; font-size: .78rem; margin-top: 6px; }
.form-group.has-error .form-control { border-color: #DC3545; }
.form-group.has-error .form-error { display: block; }
.form-success { display: none; background: #E7F7EB; border: 1px solid var(--color-secondary); color: #155724; padding: 16px 20px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: .9rem; }
.form-success.show { display: block; }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; font-size: .85rem; color: var(--color-text-muted); }
.checkbox-row input { margin-top: 4px; }

.map-embed { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--color-border); height: 360px; }
.map-placeholder-visual { width: 100%; height: 100%; background: linear-gradient(135deg,#EAF2FB,#F5F7FA); display:flex; align-items:center; justify-content:center; flex-direction:column; gap:10px; color: var(--color-primary); }
.map-placeholder-visual i { font-size: 2.4rem; }

/* ==========================================================================
   Careers / job cards
   ========================================================================== */
.job-card { border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 26px 28px; display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 18px; flex-wrap: wrap; transition: border-color .2s ease, box-shadow .2s ease; }
.job-card:hover { border-color: var(--color-primary); box-shadow: var(--shadow-card); }
.job-card h3 { margin-bottom: 8px; font-size: 1.08rem; }
.job-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.job-tags span { font-size: .76rem; font-weight: 600; padding: 5px 12px; border-radius: 40px; background: var(--color-accent-bg); color: var(--color-text-muted); }
.job-tags span.tag-type { background: var(--color-primary-light); color: var(--color-primary); }
.job-tags span.tag-pay { background: #E7F7EB; color: var(--color-secondary-dark); }

.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.benefit-item { text-align: center; padding: 28px 18px; }
.benefit-item i { font-size: 1.8rem; color: var(--color-secondary); margin-bottom: 14px; }
.benefit-item h3 { font-size: 1rem; }
.benefit-item p { font-size: .86rem; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band { background: linear-gradient(120deg, var(--color-primary) 0%, var(--color-primary-dark) 100%); color: #fff; padding: 64px 0; position: relative; overflow: hidden; }
.cta-band-inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,.85); margin-bottom: 0; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ==========================================================================
   Sidebar (policy pages)
   ========================================================================== */
.policy-wrap { display: grid; grid-template-columns: .8fr 2.2fr; gap: 50px; align-items: start; }
.policy-nav { position: sticky; top: calc(var(--nav-height) + 24px); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 22px; }
.policy-nav strong { display: block; font-family: var(--font-display); color: var(--color-navy); margin-bottom: 14px; font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; }
.policy-nav a { display: block; padding: 8px 0; font-size: .88rem; color: var(--color-text-muted); border-left: 2px solid transparent; padding-left: 12px; margin-left: -13px; }
.policy-nav a:hover, .policy-nav a.active { color: var(--color-primary); border-color: var(--color-primary); }
.policy-body h2 { margin-top: 2.2em; }
.policy-body h2:first-child { margin-top: 0; }
.policy-body ul { list-style: disc; padding-left: 22px; margin-bottom: 1em; }
.policy-body li { margin-bottom: 8px; color: var(--color-text-muted); }
.policy-updated { font-size: .85rem; color: var(--color-text-muted); background: var(--color-accent-bg); display: inline-block; padding: 8px 16px; border-radius: 40px; margin-bottom: 30px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--color-navy); color: #AEBBD1; padding-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 46px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .brand { color: #fff; margin-bottom: 18px; }
.footer-brand p { font-size: .9rem; color: #91A0BC; max-width: 300px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; transition: background .2s ease; }
.footer-social a:hover { background: var(--color-secondary); }
.footer-col h4 { color: #fff; font-size: .92rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 22px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: .9rem; color: #91A0BC; }
.footer-col ul li a:hover { color: var(--color-secondary); }
.footer-col ul li i { margin-right: 8px; color: var(--color-secondary); width: 14px; }
.footer-hours div { display: flex; justify-content: space-between; font-size: .87rem; padding: 6px 0; border-bottom: 1px dashed rgba(255,255,255,.08); }
.newsletter-form { display: flex; margin-top: 14px; gap: 0; }
.newsletter-form input { flex: 1; padding: 12px 14px; border-radius: 6px 0 0 6px; border: none; font-size: .88rem; }
.newsletter-form button { border-radius: 0 6px 6px 0; border: none; background: var(--color-secondary); color: #fff; padding: 0 18px; cursor: pointer; font-weight: 600; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 26px 0; font-size: .82rem; flex-wrap: wrap; gap: 10px; }
.footer-bottom a:hover { color: #fff; }
.footer-bottom-links { display: flex; gap: 22px; }

/* ==========================================================================
   Back to top
   ========================================================================== */
#back-to-top {
  position: fixed; bottom: 28px; right: 28px; width: 48px; height: 48px; border-radius: 50%;
  background: var(--color-primary); color: #fff; border: none; display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .25s ease; z-index: 400;
  box-shadow: var(--shadow-soft);
}
#back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
#back-to-top:hover { background: var(--color-primary-dark); }

/* ==========================================================================
   Utility
   ========================================================================== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
[data-aos] { }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-feature { grid-column: span 2; }
  .industries-strip { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-row { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .process-row::before { display: none; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
}

@media (max-width: 960px) {
  .nav-menu, .nav-cta .btn-outline-navy { display: none; }
  .nav-toggle { display: block; }
  .mega-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; display: none; }
  .site-header.is-transparent { position: sticky; top: 0; background: var(--color-navy); }
  .site-header.is-transparent .brand, .site-header.is-transparent .nav-menu > li > a { color: #fff; }
  .nav-menu.open { display: flex; flex-direction: column; position: absolute; top: var(--nav-height); left: 0; right: 0; background: #fff; box-shadow: var(--shadow-soft); padding: 10px 24px 26px; gap: 0; }
  .nav-menu.open > li { width: 100%; }
  .nav-menu.open > li > a { color: var(--color-text) !important; width: 100%; }
  .nav-menu.open .mega-menu.open { display: block; position: static; box-shadow: none; padding: 10px 0; border-top: none; }
  .mega-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner, .split, .contact-wrap, .policy-wrap { grid-template-columns: 1fr; }
  .split-media { order: -1 !important; margin-bottom: 30px; }
  .split.reverse .split-media { order: -1; }
  .policy-nav { position: static; }
}

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .service-grid, .news-grid, .why-grid, .benefit-grid, .form-grid { grid-template-columns: 1fr; }
  .service-feature { grid-column: span 1; grid-template-columns: 1fr; }
  .industries-strip { grid-template-columns: repeat(2, 1fr); }
  .process-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .topbar-links span:nth-child(3) { display: none; }
  .hero-trust { gap: 18px; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .job-card { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.16); }
}
