:root {
  --blue-primary: #1B4A6B;
  --gold-primary: #B4A06E;
  
  --teal:      #1B4A6B;
  --teal-dark: #143750;
  --teal-soft: #eef3f7;
  --navy:      #1B4A6B;
  --gold:      #B4A06E;
  --light-bg:  #f8fafb;
  --text:      #1e2d3d;
  --muted:     #6b7d8e;
  --radius:    10px;
}

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

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: #fff;
}

h1, h2, h3, h4 {
  font-family: 'DM Serif Display', serif;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--blue-primary);
  color: #fff;
  font-size: .78rem;
  padding: 7px 0;
}
.topbar a { color: #fff; text-decoration: none; }
.topbar a:hover { color: #fff; }
.topbar .sep { margin: 0 10px; opacity: .4; }

/* ── NAVBAR ── */
.navbar {
  background: #fff;
  box-shadow: 0 2px 18px rgba(11,123,110,.08);
  padding: 14px 0;
}
.navbar-brand img { height: 46px; }
.navbar-brand .brand-text {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: var(--teal-dark);
  line-height: 1.2;
}
.navbar-brand .brand-sub {
  font-size: .68rem;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.nav-link {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text) !important;
  padding: 8px 14px !important;
  border-radius: 6px;
  transition: background .2s, color .2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--teal) !important;
  background: var(--teal-soft);
}
.btn-nav {
  background: var(--teal);
  color: #fff !important;
  padding: 9px 22px !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: .85rem;
}
.btn-nav:hover { background: var(--teal-dark) !important; }

/* ── HERO ── */
.hero {
  background: linear-gradient(125deg, var(--blue-primary) 0%, #143750 100%);
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-badge {
  display: inline-block;
  background: rgba(212,168,67,.18);
  border: 1px solid rgba(212,168,67,.4);
  color: var(--gold);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero p {
  color: rgba(255,255,255,.75);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
}
.btn-primary-cta {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 34px;
  border-radius: 50px;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .2s, box-shadow .2s;
}
.btn-primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,168,67,.4);
}
.btn-outline-cta {
  border: 2px solid rgba(255,255,255,.4);
  color: #fff !important;
  font-weight: 500;
  font-size: .95rem;
  padding: 13px 34px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color .2s, background .2s;
}
.btn-outline-cta:hover {
  border-color: #fff;
  background: rgba(255,255,255,.08);
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
}
.hero-stat .num {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: #fff;
}
.hero-stat .label {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.hero-card-wrap {
  position: relative;
  z-index: 1;
}
.hero-img-card {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
  padding: 28px;
  color: #fff;
}
.hiring-badge {
  background: var(--teal);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: .04em;
}
.office-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 10px 14px;
  margin-top: 10px;
}
.office-chip .icon {
  width: 34px; height: 34px;
  background: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}
.office-chip .city { font-size: .88rem; font-weight: 600; }
.office-chip .phone { font-size: .75rem; color: rgba(255,255,255,.6); }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--teal-soft);
  padding: 22px 0;
  border-top: 1px solid rgba(11,123,110,.12);
  border-bottom: 1px solid rgba(11,123,110,.12);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .87rem;
  font-weight: 500;
  color: var(--teal-dark);
}
.trust-item i { font-size: 1.2rem; color: var(--teal); }

/* ── SECTION HELPERS ── */
.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
}
.divider-teal {
  width: 52px; height: 3px;
  background: var(--teal);
  border-radius: 2px;
  margin-bottom: 20px;
}

/* ── SERVICES ── */
.services { background: var(--light-bg); padding: 90px 0; }
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  height: 100%;
  border: 1px solid #e8eef3;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(11,123,110,.12);
}
.service-img-wrap {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-card-img {
  transform: scale(1.1);
}
.service-img-placeholder {
  width: 100%; height: 100%;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 3rem;
}
.service-card h5 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
}
.link-teal {
  color: var(--teal);
  font-weight: 600;
  font-size: .88rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.link-teal:hover { color: var(--teal-dark); gap: 10px; }

/* ── ABOUT ── */
.about { padding: 90px 0; }
.about-img-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 16px;
}
.about-img-placeholder {
  width: 100%; height: 440px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--teal-soft) 0%, #c8e6e2 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  color: var(--teal);
  position: relative;
  overflow: hidden;
}
.about-img-placeholder::after {
  content: '';
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(11,123,110,.08);
  top: -60px; right: -60px;
}
.exp-badge {
  position: absolute;
  bottom: 24px;
  right: 0;
  background: var(--navy);
  color: #fff;
  padding: 18px 24px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(13,43,69,.25);
  z-index: 5;
}
.exp-badge .num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}
.exp-badge .txt { font-size: .78rem; color: rgba(255,255,255,.7); margin-top: 2px; }
.check-list { list-style: none; padding: 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .92rem;
  color: var(--text);
  margin-bottom: 12px;
}
.check-list li i { color: var(--teal); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }

/* ── OFFICES ── */
.offices { background: var(--navy); padding: 80px 0; }
.offices .section-title { color: #fff; }
.offices .section-label { color: var(--gold); }
.offices .divider-teal { background: var(--gold); }
.office-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 30px 26px;
  height: 100%;
  transition: background .25s, border-color .25s;
}
.office-card:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--gold);
}
.office-card .badge-main {
  background: var(--gold);
  color: var(--navy);
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
}
.office-card h5 { color: #fff; font-size: 1.1rem; margin: 14px 0 6px; }
.office-card .addr { color: rgba(255,255,255,.6); font-size: .87rem; line-height: 1.6; }
.office-card .contact-row {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: .84rem;
  margin-top: 10px;
}
.office-card .contact-row i { color: var(--teal); font-size: 1rem; }
.office-card a { color: rgba(255,255,255,.7); text-decoration: none; }
.office-card a:hover { color: #fff; }

/* ── BLOG ── */
.blog { background: var(--light-bg); padding: 90px 0; }
.blog-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e8eef3;
  height: 100%;
  transition: box-shadow .25s, transform .25s;
}
.blog-card:hover {
  box-shadow: 0 12px 40px rgba(11,123,110,.1);
  transform: translateY(-4px);
}
.blog-img {
  width: 100%; height: 200px;
  background: linear-gradient(135deg, var(--teal-soft), #c8e6e2);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  color: var(--teal);
}
.blog-body { padding: 22px; }
.blog-tag {
  font-size: .73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--teal);
  margin-bottom: 8px;
}
.blog-body h6 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 10px;
}
.blog-body p { font-size: .85rem; color: var(--muted); line-height: 1.65; }
.blog-meta {
  font-size: .78rem;
  color: var(--muted);
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── HIRING BANNER ── */
.hiring-banner {
  background: linear-gradient(100deg, var(--teal-dark), var(--teal));
  padding: 60px 0;
}
.hiring-banner h3 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 10px;
}
.hiring-banner p { color: rgba(255,255,255,.75); margin-bottom: 0; }
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: 13px 32px;
  border-radius: 50px;
  border: none;
  text-decoration: none;
  font-size: .95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity .2s, transform .2s;
}
.btn-gold:hover { opacity: .9; transform: translateY(-2px); color: var(--navy); }

/* ── CONTACT ── */
.contact { padding: 90px 0; }
.contact-form-card {
  background: var(--light-bg);
  border-radius: 16px;
  padding: 42px 40px;
}
.form-label { font-weight: 500; font-size: .88rem; color: var(--text); }
.form-control, .form-select {
  border: 1.5px solid #d8e3ea;
  border-radius: 8px;
  padding: 11px 16px;
  font-size: .9rem;
  color: var(--text);
  background: #fff;
}
.form-control:focus, .form-select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(11,123,110,.12);
}
.btn-submit {
  background: var(--teal);
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  padding: 13px 36px;
  border-radius: 50px;
  border: none;
  width: 100%;
  transition: background .2s;
}
.btn-submit:hover { background: var(--teal-dark); }
.contact-info-box {
  background: var(--navy);
  border-radius: 16px;
  padding: 42px 36px;
  height: 100%;
  color: #fff;
}
.contact-info-box h4 { color: #fff; margin-bottom: 24px; }
.info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}
.info-item .icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.info-item .detail { font-size: .9rem; color: rgba(255,255,255,.7); line-height: 1.6; }
.info-item .detail strong { color: #fff; display: block; margin-bottom: 2px; font-size: .92rem; }
.info-item a { color: rgba(255,255,255,.7); text-decoration: none; }
.info-item a:hover { color: #fff; }

/* ── FOOTER ── */
footer {
  background: #0d2435;
  color: rgba(255,255,255,.55);
  padding: 60px 0 24px;
}
.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: #fff;
}
.footer-logo span { color: var(--gold); }
footer p { font-size: .87rem; line-height: 1.7; margin-top: 12px; max-width: 280px; }
.footer-heading {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 18px;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-size: .88rem;
  transition: color .2s;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 22px;
  margin-top: 42px;
  font-size: .82rem;
}
.social-links a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  font-size: .95rem;
  transition: background .2s, color .2s;
}
.social-links a:hover { background: var(--teal); color: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { min-height: auto; padding: 60px 0; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .exp-badge { right: 10px; bottom: 10px; }
  .contact-form-card { padding: 28px 20px; }
  .contact-info-box { padding: 28px 20px; margin-top: 24px; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-hero > * {
  opacity: 0;
  animation: fadeUp .7s ease forwards;
}
.animate-hero > *:nth-child(1) { animation-delay: .1s; }
.animate-hero > *:nth-child(2) { animation-delay: .25s; }
.animate-hero > *:nth-child(3) { animation-delay: .4s; }
.animate-hero > *:nth-child(4) { animation-delay: .55s; }
.animate-hero > *:nth-child(5) { animation-delay: .7s; }
