/* Sri Lakshmi Narayana — Metallic Gold Theme */
:root {
  /* Primary gold — solid brand #d0a936 everywhere */
  --gold: #d0a936;
  --gold-mid: #d0a936;
  --gold-bright: #d0a936;
  --gold-dark: #d0a936;
  --gold-deep: #b8941f;
  --gold-light: #e8cb6a;
  --gold-soft: rgba(208, 169, 54, 0.16);
  --gold-shine: #d0a936;
  --gold-btn: #d0a936;
  --gold-btn-hover: #c49b2a;
  --gold-bar: #d0a936;

  --orange: #d0a936;
  --orange-dark: #d0a936;
  --orange-light: #e8cb6a;
  --orange-soft: rgba(208, 169, 54, 0.16);

  /* Secondary: deep espresso for text / contrast */
  --blue: #1a1008;
  --blue-mid: #d0a936;
  --blue-dark: #1a1008;
  --blue-soft: rgba(208, 169, 54, 0.12);

  --ink: #1a1008;
  --muted: #6b5a45;
  --line: #e8dfd0;
  --white: #ffffff;
  --cream: #fbf7ef;
  --surface-a: #ffffff;
  --surface-b: #f7f1e3;
  --font-display: "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-button: "Poppins", system-ui, sans-serif;
  --radius: 1rem;
  --shadow: 0 20px 50px rgba(208, 169, 54, 0.18);
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  --page-gutter: 1rem;
  --top-bar-height: 2.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

.hero,
.page-header,
.section,
.section-sm,
.footer-mp,
.navbar-mp {
  width: 100%;
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6,
.section-title,
.hero-brand,
.page-header h1,
.stat-card h3,
.footer-mp h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--blue-dark);
}

h1, .hero-brand, .page-header h1, .section-title {
  font-weight: 700;
}

.btn,
.btn-orange,
.btn-blue,
.btn-outline-orange,
.btn-outline-blue,
.btn-outline-light,
.btn-nav-cta,
.filter-chip,
.service-tabs .nav-link {
  font-family: var(--font-button);
  font-weight: 500;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--blue-mid);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--orange);
}

.text-orange { color: var(--gold) !important; }
.text-blue { color: var(--gold-dark) !important; }
.bg-orange { background-color: var(--gold) !important; }
.bg-blue { background-color: var(--gold-mid) !important; }

/* Atmosphere background */
.page-bg {
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(208, 169, 54, 0.2), transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(208, 169, 54, 0.12), transparent 45%),
    linear-gradient(180deg, #fbf7ef 0%, #ffffff 42%, #f7f1e3 100%);
  min-height: 100vh;
}

/* ========== TOP BAR ========== */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1032;
  height: var(--top-bar-height);
  background: var(--gold-bar);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--top-bar-height);
  min-height: var(--top-bar-height);
}

.top-bar-contact {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.35rem 1.1rem;
  min-width: 0;
}

.top-bar-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
  white-space: nowrap;
  max-width: 100%;
}

.top-bar-contact a:hover {
  color: #fff;
  opacity: 0.9;
}

.top-bar-contact i {
  color: #fff;
  font-size: 0.9rem;
}

.top-bar-social {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex-shrink: 0;
}

.top-bar-social a {
  width: 1.7rem;
  height: 1.7rem;
  display: inline-grid;
  place-items: center;
  color: #fff;
  border-radius: 0.4rem;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.top-bar-social a:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  transform: translateY(-1px);
}

/* ========== NAVBAR ========== */
.navbar-mp {
  top: var(--top-bar-height);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(92, 61, 30, 0.08);
  padding: 0.55rem 0;
  transition: box-shadow var(--transition), padding var(--transition);
  z-index: 1030;
  overflow: visible;
}

.navbar-mp::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: -1;
  pointer-events: none;
}

.navbar-mp.scrolled {
  box-shadow: 0 8px 30px rgba(92, 61, 30, 0.1);
  padding: 0.45rem 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  max-width: min(100%, 22rem);
  line-height: 1.15;
  text-decoration: none !important;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  transition: transform var(--transition);
}

.brand-mark:hover {
  transform: translateY(-1px);
  box-shadow: none;
}

.brand-logo {
  display: block;
  flex-shrink: 0;
  width: auto;
  height: auto;
  object-fit: cover;
  object-position: center;
  background: #fff;
  border-radius: 0.65rem;
  box-shadow: 0 4px 14px rgba(92, 61, 30, 0.14);
}

.brand-logo-header {
  /*width: 80px;*/
  /*height: 50px;*/
  /*max-width: 80px;*/
}

.brand-logo-footer {
  /*width: 72px;*/
  /*height: 62px;*/
  /*max-width: 72px;*/
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  gap: 0.1rem;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  color: #c7a367;
  white-space: normal;
}

.brand-tag {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.footer-mp .brand-name {
  color: #fff;
}

.footer-mp .brand-tag {
  color: rgba(255, 255, 255, 0.88);
}

.footer-mp .brand-logo {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.navbar-mp .nav-link {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink) !important;
  padding: 0.5rem 0.9rem !important;
  position: relative;
}

.navbar-mp .nav-link::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.2rem;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.navbar-mp .nav-link:hover::after,
.navbar-mp .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-mp .nav-link.active {
  color: var(--orange) !important;
}

.navbar-mp .nav-link.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.navbar-mp .nav-link.dropdown-toggle::after,
.navbar-mp .dropdown-toggle::after {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
  border: 0 !important;
  margin: 0 !important;
}

.navbar-mp .nav-dd-icon {
  font-size: 0.78rem;
  line-height: 1;
  margin-left: 0.25rem;
  color: var(--muted);
  transition: transform var(--transition), color var(--transition);
}

@media (min-width: 992px) {
  .navbar-mp .container {
    position: relative;
  }

  .navbar-mp .nav-offcanvas {
    flex: 1 1 auto;
    width: auto !important;
    max-width: none;
    height: auto !important;
    visibility: visible !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    transform: none !important;
  }

  .navbar-mp .offcanvas-body {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 !important;
    background: transparent !important;
  }

  .navbar-mp .navbar-nav {
    width: 100%;
    margin: 0 !important;
    justify-content: center;
    align-items: center;
  }

  .navbar-mp .navbar-nav > .nav-item:first-child {
    margin-left: auto;
  }

  .navbar-mp .navbar-nav > .nav-cta-item {
    margin-left: auto;
  }

  .navbar-mp .nav-link.dropdown-toggle {
    gap: 0.3rem;
  }

  .navbar-mp .nav-dd-icon {
    margin-left: 0.2rem;
  }
}

.navbar-mp .nav-item.dropdown.show .nav-dd-icon,
.navbar-mp .dropdown-toggle[aria-expanded="true"] .nav-dd-icon {
  transform: rotate(180deg);
  color: var(--orange);
}

.navbar-mp .dropdown-menu {
  --bs-dropdown-min-width: 13rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  padding: 0.5rem;
  box-shadow: 0 16px 40px rgba(92, 61, 30, 0.14);
  margin-top: 0.45rem !important;
}

.navbar-mp .dropdown-menu-jobs {
  text-align: left;
}

@media (min-width: 992px) {
  .navbar-mp .dropdown-menu-jobs[data-bs-popper] {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%);
  }
}

.navbar-mp .dropdown-menu-jobs .dropdown-item {
  display: grid;
  grid-template-columns: 2rem 1fr;
  align-items: center;
  column-gap: 0.65rem;
  justify-content: start;
  border-radius: 0.7rem;
  font-family: var(--font-button);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--ink);
  padding: 0.72rem 0.8rem;
  margin: 0;
}

.navbar-mp .dropdown-menu-jobs li + li .dropdown-item {
  margin-top: 0.25rem;
}

.navbar-mp .dropdown-menu-jobs .dropdown-item i {
  width: 2rem;
  height: 2rem;
  border-radius: 0.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--orange);
  background: var(--orange-soft);
  font-size: 0.9rem;
  line-height: 1;
}

.navbar-mp .dropdown-menu-jobs .dropdown-item span {
  text-align: left;
  line-height: 1.2;
}

.navbar-mp .dropdown-menu-jobs .dropdown-item:hover,
.navbar-mp .dropdown-menu-jobs .dropdown-item:focus {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), rgba(92, 61, 30, 0.06));
  color: var(--blue-dark);
}

.navbar-mp .dropdown-menu-jobs .dropdown-item:hover i,
.navbar-mp .dropdown-menu-jobs .dropdown-item:focus i {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--blue-mid));
}

.btn-nav-cta {
  background: #d0a936;
  color: #fff !important;
  border: none;
  border-radius: 999px;
  padding: 0.55rem 1.25rem !important;
  font-family: var(--font-button);
  font-weight: 600;
  box-shadow: 0 8px 22px rgba(208, 169, 54, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.btn-nav-cta i {
  font-size: 0.95rem;
  line-height: 1;
}

.btn-nav-cta::after { display: none !important; }
.btn-nav-cta:hover {
  background: #c49b2a;
  color: #fff !important;
}

.navbar-mp .nav-link.btn-nav-cta,
.navbar-mp .nav-link.btn-nav-cta.active {
  color: #fff !important;
}

.navbar-mp .nav-link.btn-nav-cta::after {
  display: none !important;
}

.navbar-toggler {
  border: none;
  box-shadow: none !important;
}

/* Mobile slide-in nav */
.nav-offcanvas {
  --bs-offcanvas-width: min(20rem, 88vw);
}

.nav-offcanvas .offcanvas-header {
  position: relative;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 0;
  padding: 1.15rem 1.2rem 1.05rem;
  background:
    linear-gradient(135deg, rgba(92, 61, 30, 0.06), rgba(201, 162, 39, 0.08)),
    #fff;
}

.nav-offcanvas .offcanvas-header::after {
  content: "";
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--blue-mid));
}

.nav-offcanvas .offcanvas-brand {
  min-width: 0;
  flex: 1;
  max-width: calc(100% - 3rem);
}

.nav-offcanvas .offcanvas-brand .brand-logo-header {
  width: 52px;
  height: 45px;
  max-width: 52px;
}

.nav-offcanvas .offcanvas-brand .brand-name {
  font-size: 0.9rem;
}

.nav-offcanvas .offcanvas-brand .brand-tag {
  font-size: 0.68rem;
}

.nav-offcanvas .btn-close {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background-color: rgba(92, 61, 30, 0.06);
  opacity: 1;
  padding: 0.55rem;
  margin: 0;
  transition: background var(--transition), transform var(--transition);
}

.nav-offcanvas .btn-close:hover {
  background-color: var(--orange-soft);
  transform: rotate(90deg);
}

.nav-offcanvas .offcanvas-body {
  padding: 1.15rem 1.1rem 1.4rem;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse 80% 40% at 100% 0%, rgba(212, 175, 55, 0.1), transparent 55%),
    radial-gradient(ellipse 70% 35% at 0% 100%, rgba(201, 162, 39, 0.08), transparent 50%),
    #fbf7ef;
}

.nav-offcanvas-footer {
  width: 100%;
  margin-top: auto;
  display: grid;
  gap: 0.85rem;
}

.nav-offcanvas-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0.9rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: 0 10px 24px rgba(92, 61, 30, 0.05);
}

.nav-offcanvas-social a {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background: var(--blue-soft);
  border: 1px solid rgba(92, 61, 30, 0.08);
  font-size: 1rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

.nav-offcanvas-social a:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--blue-mid));
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(201, 162, 39, 0.28);
}

.nav-offcanvas-contact {
  margin-top: 0;
  padding: 1rem;
  border-top: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: 0 10px 24px rgba(92, 61, 30, 0.05);
}

.nav-offcanvas-contact a,
.nav-offcanvas-contact p {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 0 0 0.8rem;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.45;
  text-decoration: none;
}

.nav-offcanvas-contact a:last-child,
.nav-offcanvas-contact p:last-child {
  margin-bottom: 0;
}

.nav-offcanvas-contact a:hover {
  color: var(--orange);
}

.nav-offcanvas-contact i {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 0.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  background: var(--orange-soft);
  margin-top: 0;
  flex-shrink: 0;
  font-size: 0.85rem;
}

@media (min-width: 992px) {
  .nav-offcanvas .offcanvas-body {
    display: block;
    padding: 0;
    background: transparent;
  }
}

/* ========== BUTTONS ========== */
.btn-orange {
  background: #d0a936;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: var(--font-button);
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  box-shadow: 0 12px 28px rgba(208, 169, 54, 0.4);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

.btn-orange:hover {
  color: #fff;
  background: #c49b2a;
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(208, 169, 54, 0.5);
}

.btn-blue {
  background: #d0a936;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: var(--font-button);
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  box-shadow: 0 12px 28px rgba(208, 169, 54, 0.4);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

.btn-blue:hover {
  color: #fff;
  background: #c49b2a;
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(208, 169, 54, 0.5);
}

.btn-outline-orange {
  border: 2px solid #d0a936;
  color: #d0a936;
  background: transparent;
  border-radius: 999px;
  font-family: var(--font-button);
  font-weight: 500;
  padding: 0.75rem 1.6rem;
  transition: all var(--transition);
}

.btn-outline-orange:hover {
  background: #d0a936;
  border-color: #d0a936;
  color: #fff;
}

.btn-outline-blue {
  border: 2px solid #d0a936;
  color: #d0a936;
  background: transparent;
  border-radius: 999px;
  font-family: var(--font-button);
  font-weight: 500;
  padding: 0.75rem 1.6rem;
  transition: all var(--transition);
}

.btn-outline-blue:hover {
  background: #d0a936;
  border-color: #d0a936;
  color: #fff;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: white;
}

.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  min-height: 92vh;
}

.hero-carousel .carousel-item {
  position: relative;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 6.5s ease;
}

.hero-carousel .carousel-item.active .hero-media img {
  transform: scale(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(44, 24, 16, 0.9) 0%, rgba(92, 61, 30, 0.72) 45%, rgba(201, 162, 39, 0.48) 100%),
    linear-gradient(to top, rgba(44, 24, 16, 0.65), transparent 50%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 92vh;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 8.5rem 0 5rem;
}

.hero-carousel .hero-content.container {
  width: 100%;
  max-width: var(--bs-breakpoint-xl, 1140px);
}

.hero-text {
  text-align: center;
}

.hero-eyebrow {
  opacity: 0.9;
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.2vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.35rem;
  color: #fff;
  max-width: 100%;
  white-space: normal;
}

.hero-brand .accent {
  color: #d0a936;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: #d0a936;
}

.hero-lead {
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
  max-width: 100%;
  width: 100%;
  opacity: 0.95;
  margin: 0 auto 2rem;
  line-height: 1.65;
  padding: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  width: 100%;
  max-width: 100%;
}

.hero-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-actions .btn-outline-light {
  border-radius: 999px;
  border-width: 2px;
  font-weight: 700;
  padding: 0.85rem 1.75rem;
}

.hero-dots {
  margin-bottom: 1.75rem;
  z-index: 5;
}

.hero-dots [data-bs-target] {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.45);
  border: 0;
  opacity: 1;
}

.hero-dots .active {
  background-color: var(--orange-light);
  width: 1.5rem;
}

@media (min-width: 576px) {
  .hero-actions .btn {
    min-width: 11.5rem;
  }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== SECTIONS ========== */
.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3.5rem 0;
}

.surface-a {
  background-color: var(--surface-a);
}

.surface-b {
  background-color: var(--surface-b);
}

.section-title {
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  margin-bottom: 0.75rem;
}

.section-sub {
  color: var(--muted);
  max-width: 38rem;
  margin-bottom: 2.5rem;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.65rem;
}

/* Testimonials */
.testimonials-section {
  position: relative;
  overflow: hidden;
  color: var(--ink);
}

.testimonials-carousel {
  position: relative;
  max-width: 46rem;
  margin: 0 auto;
}

.testimonials-carousel .carousel {
  position: relative;
  padding: 0 3.5rem;
}

.testimonial-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card-slide {
  margin: 0 auto;
  max-width: 36rem;
  min-height: 15.5rem;
  box-shadow: var(--shadow);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.testimonial-stars {
  color: var(--orange);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.testimonial-quote {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 1.35rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial-author strong {
  display: block;
  color: var(--blue-dark);
  font-size: 0.98rem;
  line-height: 1.25;
}

.testimonial-author span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.35;
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 10px 24px rgba(201, 162, 39, 0.35);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.testimonial-arrow:hover {
  color: #fff;
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 12px 28px rgba(201, 162, 39, 0.45);
}

.testimonial-arrow:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.testimonial-arrow-prev {
  left: 0;
}

.testimonial-arrow-next {
  right: 0;
}

.testimonial-dots {
  position: static;
  margin-top: 1.25rem;
  margin-bottom: 0;
}

.testimonial-dots [data-bs-target] {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background-color: rgba(92, 61, 30, 0.25);
  border: 0;
  opacity: 1;
}

.testimonial-dots .active {
  background-color: var(--orange);
  width: 1.4rem;
}

@media (max-width: 575.98px) {
  .testimonials-carousel .carousel {
    padding: 0 2.6rem;
  }

  .testimonial-arrow {
    width: 2.35rem;
    height: 2.35rem;
    font-size: 1.05rem;
  }

  .testimonial-card-slide {
    min-height: 0;
    padding: 1.35rem;
  }
}

/* Feature / service tiles — interaction containers */
.feature-tile {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-tile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--blue-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.feature-tile:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.feature-tile:hover::before {
  transform: scaleX(1);
}

a.feature-tile {
  display: block;
  color: inherit;
  text-decoration: none;
}

.service-card {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  z-index: 2;
}

.service-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--blue-soft);
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}

.service-card:hover .service-card-media img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 1.35rem 1.5rem 1.6rem;
}

.service-card .feature-icon {
  margin-bottom: 0.85rem;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
  background: var(--orange-soft);
  color: var(--orange);
}

.feature-tile.blue .feature-icon {
  background: var(--gold-soft);
  color: var(--gold-dark);
}

/* Why Choose Us — split layout with center visual */
.why-choose-section {
  position: relative;
  overflow: hidden;
}

.why-choose-section::before {
  content: "";
  position: absolute;
  inset: auto -12% -28% auto;
  width: min(42vw, 28rem);
  height: min(42vw, 28rem);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.08), transparent 68%);
  pointer-events: none;
}

.why-choose-section .section-title em {
  font-style: italic;
  color: var(--orange);
  font-weight: 600;
}

/* Attractive Why SLNS block */
.why-slns-section .section-title {
  font-size: clamp(1.55rem, 3.2vw, 2.25rem);
  margin-bottom: 1rem;
}

.why-slns-copy {
  text-align: justify;
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.why-slns-media {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.why-slns-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 35%;
  background: linear-gradient(to top, rgba(26, 16, 8, 0.35), transparent);
  pointer-events: none;
}

.why-slns-media img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 280px;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
}

.why-slns-highlights {
  display: grid;
  gap: 0.85rem;
}

.why-slns-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 0.95rem 1.05rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(208, 169, 54, 0.1);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.why-slns-card:hover {
  transform: translateY(-3px);
  border-color: rgba(208, 169, 54, 0.45);
  box-shadow: 0 16px 34px rgba(208, 169, 54, 0.18);
}

.why-slns-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.8rem;
  display: grid;
  place-items: center;
  color: #fff;
  background: #d0a936;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.why-slns-card h3 {
  margin: 0 0 0.2rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.why-slns-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
}

@media (max-width: 991.98px) {
  .why-slns-media img {
    min-height: 220px;
    max-height: 280px;
  }
}

/* Mobile-first: header → image → features → CTA */
.why-choose-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.why-choose-visual {
  position: relative;
  justify-self: center;
  width: min(100%, 18rem);
  order: 0;
}

.why-choose-visual::before {
  content: "";
  position: absolute;
  inset: 1.1rem -0.9rem -0.9rem 1.1rem;
  background: linear-gradient(145deg, rgba(201, 162, 39, 0.18), rgba(92, 61, 30, 0.14));
  border-radius: 1.35rem;
  z-index: 0;
}

.why-choose-visual-frame {
  position: relative;
  z-index: 1;
  border-radius: 1.35rem;
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(44, 24, 16, 0.18);
  aspect-ratio: 4 / 5;
  background: var(--blue-soft);
}

.why-choose-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.why-choose-visual:hover .why-choose-visual-frame img {
  transform: scale(1.04);
}

.why-choose-col {
  display: grid;
  gap: 1.35rem;
}

.why-choose-col-left {
  order: 1;
}

.why-choose-col-right {
  order: 2;
}

.why-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
  text-align: left;
}

.why-point-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  color: #fff;
  background: #d0a936;
  box-shadow: 0 10px 22px rgba(208, 169, 54, 0.28);
  flex-shrink: 0;
}

.why-choose-col-right .why-point:nth-child(even) .why-point-icon,
.why-choose-col-left .why-point:nth-child(even) .why-point-icon {
  background: #d0a936;
  box-shadow: 0 10px 22px rgba(208, 169, 54, 0.28);
}

.why-point-copy h3 {
  margin: 0 0 0.3rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--blue-dark);
  letter-spacing: -0.01em;
}

.why-point-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* Phone: same design — stacked list, full-width CTA */
@media (max-width: 575.98px) {
  .why-choose-layout {
    gap: 1.5rem;
  }

  .why-choose-visual {
    width: min(100%, 17rem);
  }

  .why-choose-visual::before {
    inset: 0.85rem -0.7rem -0.7rem 0.85rem;
  }

  .why-choose-col {
    gap: 1.25rem;
  }

  .why-point {
    gap: 0.85rem;
  }

  .why-point-icon {
    width: 2.55rem;
    height: 2.55rem;
    font-size: 1.05rem;
    border-radius: 0.8rem;
  }

  .why-point-copy h3 {
    font-size: 0.98rem;
  }

  .why-point-copy p {
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .why-choose-section .btn-orange {
    width: 100%;
    max-width: 22rem;
    margin-inline: auto;
  }
}

/* Tablet: same design — image on top, two feature columns below */
@media (min-width: 576px) and (max-width: 991.98px) {
  .why-choose-layout {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1.5rem;
    align-items: start;
  }

  .why-choose-visual {
    grid-column: 1 / -1;
    width: min(100%, 20rem);
    margin: 0 auto 0.5rem;
  }

  .why-choose-col-left,
  .why-choose-col-right {
    order: initial;
  }

  .why-choose-col {
    gap: 1.4rem;
  }
}

/* Desktop: left features | image | right features */
@media (min-width: 992px) {
  .why-choose-layout {
    grid-template-columns: 1fr minmax(16rem, 22rem) 1fr;
    gap: 2.25rem 2rem;
    align-items: center;
  }

  .why-choose-visual {
    order: 2;
    width: 100%;
  }

  .why-choose-col-left {
    order: 1;
  }

  .why-choose-col-right {
    order: 3;
  }

  .why-choose-col {
    gap: 1.5rem;
  }

  .why-choose-col-left .why-point {
    grid-template-columns: 1fr auto;
    text-align: right;
  }

  .why-choose-col-left .why-point-icon {
    order: 2;
  }

  .why-choose-col-left .why-point-copy {
    order: 1;
  }

  .why-point {
    align-items: start;
  }
}

/* Recruitment Process — horizontal steps */
.process-section {
  position: relative;
  overflow: hidden;
}

.process-track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  counter-reset: none;
  position: relative;
}

.process-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  padding: 1.35rem 1.25rem 1.4rem;
  box-shadow: 0 12px 30px rgba(92, 61, 30, 0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.process-step:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--shadow);
}

.process-step-num {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(92, 61, 30, 0.22);
}

.process-step-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 1rem;
  background: #d0a936;
  box-shadow: 0 10px 22px rgba(208, 169, 54, 0.28);
}

.process-step:nth-child(even) .process-step-icon {
  background: #d0a936;
  box-shadow: 0 10px 22px rgba(208, 169, 54, 0.28);
}

.process-step h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1.3;
  padding-right: 2rem;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

@media (min-width: 768px) {
  .process-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1200px) {
  .process-track {
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    align-items: stretch;
  }

  .process-track::before {
    content: "";
    position: absolute;
    top: 2.65rem;
    left: 8%;
    right: 8%;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--orange), var(--blue-mid), var(--orange));
    opacity: 0.35;
    z-index: 0;
  }

  .process-step {
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0 0.85rem;
    text-align: center;
    z-index: 1;
  }

  .process-step:hover {
    transform: translateY(-4px);
    box-shadow: none;
  }

  .process-step-num {
    position: static;
    display: block;
    margin-bottom: 0.85rem;
    font-size: 0.78rem;
    color: var(--orange);
  }

  .process-step:nth-child(even) .process-step-num {
    color: var(--blue);
  }

  .process-step-icon {
    margin: 0 auto 1rem;
    width: 3.35rem;
    height: 3.35rem;
    border-radius: 50%;
    font-size: 1.25rem;
    border: 4px solid #fff;
    box-shadow:
      0 0 0 3px rgba(201, 162, 39, 0.2),
      0 12px 24px rgba(201, 162, 39, 0.28);
  }

  .process-step:nth-child(even) .process-step-icon {
    box-shadow:
      0 0 0 3px rgba(92, 61, 30, 0.18),
      0 12px 24px rgba(92, 61, 30, 0.25);
  }

  .process-step h3 {
    padding-right: 0;
    font-size: 0.98rem;
    margin-bottom: 0.45rem;
  }

  .process-step p {
    font-size: 0.84rem;
  }
}

@media (max-width: 575.98px) {
  .process-step {
    padding: 1.2rem 1.1rem 1.25rem;
  }

  .process-step h3 {
    font-size: 1rem;
  }

  .process-step p {
    font-size: 0.86rem;
  }
}

/* Split media */
.split-media {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.split-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(to top, rgba(92, 61, 30, 0.45), transparent);
  pointer-events: none;
}

/* Partners marquee */
.partners-section {
  padding-bottom: 4.5rem;
  overflow: visible;
}

.partners-marquee {
  overflow: hidden;
  width: 100%;
  padding: 0.85rem 0 1.35rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.partners-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: partnersScroll 32s linear infinite;
}

.partners-marquee:hover .partners-track {
  animation-play-state: paused;
}

.partners-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-right: 1rem;
}

.partner-logo {
  flex: 0 0 auto;
  width: 11.5rem;
  height: 5.25rem;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  box-shadow: 0 10px 24px rgba(92, 61, 30, 0.06);
  padding: 0.7rem 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.partner-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(92, 61, 30, 0.12);
}

.partner-logo img {
  width: 100%;
  height: 100%;
  max-height: 3.4rem;
  object-fit: contain;
  object-position: center;
  display: block;
}

@keyframes partnersScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 767.98px) {
  .partner-logo {
    width: 9.5rem;
    height: 4.5rem;
  }

  .partner-logo img {
    max-height: 2.8rem;
  }

  .partners-track {
    animation-duration: 24s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .partners-track {
    animation: none;
  }
}

/* Stats — separate achievement cards */
.stats-grid .stat-card {
  position: relative;
  height: 100%;
  padding: 1.75rem 1.2rem 1.5rem;
  border-radius: 1.1rem;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 32px rgba(92, 61, 30, 0.08);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.stats-grid .stat-card::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  top: 0;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-mid), var(--gold-dark));
}

.stats-grid .stat-card:hover {
  transform: translateY(-7px);
  border-color: transparent;
  box-shadow: 0 22px 40px rgba(92, 61, 30, 0.14);
}

.stats-grid .stat-icon {
  width: 3.1rem;
  height: 3.1rem;
  margin: 0.35rem auto 0.95rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  font-size: 1.25rem;
  color: var(--orange);
  background: var(--orange-soft);
  border: 2px solid rgba(201, 162, 39, 0.18);
  line-height: 1;
}

.stats-grid .stat-card:nth-child(even) .stat-icon,
.stats-grid > [class*="col-"]:nth-child(even) .stat-icon {
  color: var(--blue);
  background: var(--blue-soft);
  border-color: rgba(92, 61, 30, 0.15);
}

.stats-grid .stat-card h3 {
  color: var(--orange);
  font-size: clamp(1.9rem, 4vw, 2.45rem);
  margin-bottom: 0.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.stats-grid .stat-card p {
  margin: 0;
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 0.98rem;
}

/* Job cards */
.job-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.job-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.job-card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--blue-soft);
}

.job-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}

.job-card:hover .job-card-media img {
  transform: scale(1.05);
}

.job-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.job-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}

.job-tag.tech {
  background: var(--gold-soft);
  color: var(--gold-dark);
}

.job-tag.nontech {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-deep);
}

.job-meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0.75rem 0 1.25rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.job-meta i {
  color: var(--orange);
  margin-right: 0.25rem;
}

/* Contact */
.contact-panel {
  background: white;
  border-radius: 1.25rem;
  border: 1px solid var(--line);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-item .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), var(--blue-mid));
  color: white;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.form-control,
.form-select {
  border-radius: 0.75rem;
  border: 1px solid var(--line);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 0.2rem rgba(201, 162, 39, 0.2);
}

/* Page header (inner pages) */
.page-header {
  position: relative;
  padding: 9.5rem 0 4rem;
  color: white;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(44, 24, 16, 0.92), rgba(201, 162, 39, 0.7));
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  color: white;
  font-size: clamp(2rem, 5vw, 3.2rem);
}

/* About page — even left/right body text */
.page-about .section p,
.page-about .section .text-muted,
.page-about .section .section-sub,
.page-about .section .small,
.page-about .contact-panel p {
  text-align: justify;
  text-justify: inter-word;
}

.page-about .page-header p {
  text-align: left;
}

/* About split media — top-aligned, full image visible beside tall text */
.page-about .about-media {
  position: sticky;
  top: calc(var(--top-bar-height) + 6.25rem);
  align-self: flex-start;
  width: 100%;
}

.page-about .about-media.split-media {
  height: auto;
}

.page-about .about-media.split-media img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: min(68vh, 520px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

@media (max-width: 991.98px) {
  .page-about .about-media {
    position: static;
    top: auto;
    margin-bottom: 0.25rem;
  }

  .page-about .about-media.split-media {
    width: 100%;
  }

  .page-about .about-media.split-media img {
    width: 100%;
    height: 220px;
    min-height: 220px;
    max-height: none;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
  }
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 0.75rem;
}

.breadcrumb-item,
.breadcrumb-item a,
.breadcrumb-item.active,
.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.85);
}

/* Privacy content */
.policy-content h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--blue);
}

.policy-content p,
.policy-content li {
  color: var(--muted);
}

/* Footer */
.footer-mp {
  background: #8d752f;
  color: rgba(255, 255, 255, 0.92);
  padding-top: 4rem;
  position: relative;
  overflow: hidden;
}

.footer-mp h5 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.footer-mp a {
  color: rgba(255, 255, 255, 0.9);
}

.footer-mp a:hover {
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.55rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  margin-top: 3rem;
  padding: 1.25rem 0;
  font-size: 0.9rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.88);
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  display: inline-grid;
  place-items: center;
  margin-right: 0.5rem;
  transition: background var(--transition), transform var(--transition), color var(--transition);
}

.social-link:hover {
  background: #fff;
  color: var(--gold);
  transform: translateY(-3px);
}

.footer-mp .text-orange {
  color: #fff !important;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Service tabs */
.service-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.4rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(92, 61, 30, 0.08);
}

.service-tabs .nav-link {
  border: none;
  border-radius: 999px;
  font-weight: 700;
  color: var(--blue-dark);
  padding: 0.7rem 1.4rem;
  margin: 0;
  background: transparent;
  transition: color var(--transition), background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.service-tabs .nav-link:hover {
  color: var(--orange);
  background: var(--orange-soft);
}

.service-tabs .nav-link.active {
  background: #d0a936;
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(208, 169, 54, 0.35);
}

/* Jobs page filter select */
.jobs-filter-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.25rem;
}

.jobs-toolbar {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  max-width: 100%;
  padding: 0.4rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(92, 61, 30, 0.1);
}

.jobs-search {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 13.5rem;
  flex: 1 1 12rem;
  padding: 0.55rem 0.9rem;
  background: transparent;
  border: 0;
  border-radius: 999px;
  box-shadow: none;
}

.jobs-search i {
  color: var(--orange);
  font-size: 1rem;
  flex-shrink: 0;
}

.jobs-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
}

.jobs-search input::placeholder {
  color: #a89478;
  font-weight: 500;
}

.jobs-toolbar-divider {
  width: 1px;
  align-self: stretch;
  min-height: 1.6rem;
  margin: 0.35rem 0.15rem;
  background: var(--line);
}

.jobs-empty {
  margin: 0 0 1rem;
  color: var(--muted);
  font-weight: 600;
}

.filter-select {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: none;
  background: transparent;
  color: var(--blue-dark);
  font-family: var(--font-button);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.filter-chip i {
  font-size: 0.95rem;
  opacity: 0.85;
}

.filter-chip:hover {
  color: var(--orange);
  background: var(--orange-soft);
}

.filter-chip.active {
  background: #d0a936;
  color: #fff;
  box-shadow: 0 8px 22px rgba(208, 169, 54, 0.4);
  transform: translateY(-1px);
}

.filter-chip.active i {
  opacity: 1;
}

@media (max-width: 575.98px) {
  .jobs-toolbar {
    width: 100%;
    border-radius: 1.1rem;
  }

  .jobs-toolbar-divider {
    display: none;
  }

  .jobs-search {
    width: 100%;
    min-width: 0;
    flex: 1 1 100%;
    border-bottom: 1px solid var(--line);
    border-radius: 0.85rem 0.85rem 0 0;
    margin-bottom: 0.2rem;
  }

  .filter-select {
    width: 100%;
    border-radius: 1.1rem;
  }

  .filter-chip {
    flex: 1 1 auto;
    min-width: calc(50% - 0.35rem);
    white-space: normal;
    text-align: center;
    justify-content: center;
  }

  /* Services tabs: keep Technical + Non-Technical in one row */
  .service-tabs {
    width: 100%;
    max-width: 100%;
    flex-wrap: nowrap;
    border-radius: 999px;
    gap: 0.3rem;
  }

  .service-tabs .nav-item {
    flex: 1 1 0;
    min-width: 0;
  }

  .service-tabs .nav-link {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    white-space: nowrap;
    text-align: center;
    padding: 0.65rem 0.55rem;
    font-size: 0.84rem;
  }

  .service-tabs .nav-link i {
    font-size: 0.9rem;
  }
}

/* CTA strip */
.cta-strip {
  background:
    linear-gradient(110deg, rgba(208, 169, 54, 0.95), rgba(196, 155, 42, 0.92)),
    url("../assets/images/pages/cta-bg.jpg") center/cover;
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  color: white;
  text-align: center;
}

.cta-strip h2 {
  color: white;
}

.cta-strip .cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
}

.cta-strip .cta-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.25;
  min-height: 3.15rem;
  padding: 0.85rem 1.75rem;
}

.cta-strip .cta-actions .btn-orange {
  border: 2px solid transparent;
}

.cta-strip .cta-actions .btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.95);
  color: #fff;
  background: transparent;
}

.cta-strip .cta-actions .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: #fff;
}

/* Job detail sidebar */
.detail-sidebar {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: sticky;
  top: 100px;
  z-index: 2;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.detail-sidebar .meta-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.detail-sidebar .meta-row:last-of-type {
  border-bottom: none;
}

.detail-sidebar .meta-row span:first-child {
  color: var(--muted);
  font-weight: 600;
}

/* Map embed */
.map-frame {
  border: 0;
  border-radius: 1rem;
  width: 100%;
  height: 320px;
  filter: grayscale(0.15) contrast(1.05);
}

/* WhatsApp float */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  z-index: 1040;
  transition: transform var(--transition);
}

.wa-float:hover {
  color: white;
  transform: scale(1.08);
}

@media (max-width: 991.98px) {
  .detail-sidebar {
    position: static;
    max-height: none;
    top: auto;
  }

  .navbar-mp,
  .navbar-mp .container {
    overflow: visible;
  }

  /* Full-height right sidebar — not clipped by navbar height */
  .nav-offcanvas {
    height: 100vh !important;
    height: 100dvh !important;
    max-height: 100vh !important;
    max-height: 100dvh !important;
    background: #fbf7ef;
    border-left: 1px solid rgba(201, 162, 39, 0.15);
    box-shadow: -18px 0 48px rgba(154, 116, 25, 0.14);
    z-index: 1055;
  }

  .nav-offcanvas .offcanvas-body {
    overflow-y: auto;
  }

  .nav-offcanvas .navbar-nav {
    width: 100%;
    gap: 0.35rem;
    padding: 0.35rem;
    margin-bottom: 1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 1.1rem;
    box-shadow: 0 10px 24px rgba(92, 61, 30, 0.05);
  }

  .nav-offcanvas .nav-item {
    width: 100%;
  }

  .nav-offcanvas .nav-link {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.9rem 1rem !important;
    border-radius: 0.85rem;
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--ink) !important;
  }

  .nav-offcanvas .nav-link::after {
    display: none !important;
    content: none !important;
  }

  .nav-offcanvas .nav-link.dropdown-toggle {
    justify-content: space-between;
    gap: 0.75rem;
  }

  .nav-offcanvas .dropdown-toggle::after {
    display: none !important;
    content: none !important;
    border: 0 !important;
    margin: 0 !important;
    width: 0 !important;
    height: 0 !important;
  }

  .nav-offcanvas .nav-dd-icon {
    flex: 0 0 auto;
    margin-left: 0;
    font-size: 0.85rem;
    color: var(--muted);
  }

  .nav-offcanvas .nav-link.dropdown-toggle[aria-expanded="true"],
  .nav-offcanvas .nav-item.dropdown.show > .nav-link {
    background: var(--blue-soft);
    color: var(--blue) !important;
  }

  .nav-offcanvas .nav-link.dropdown-toggle[aria-expanded="true"] .nav-dd-icon,
  .nav-offcanvas .nav-item.dropdown.show .nav-dd-icon {
    transform: rotate(180deg);
    color: var(--orange);
  }

  .nav-offcanvas .dropdown-menu,
  .nav-offcanvas .dropdown-menu-jobs {
    --bs-dropdown-min-width: 100%;
    width: 100%;
    position: static !important;
    inset: auto !important;
    transform: none !important;
    float: none;
    margin: 0.35rem 0 0.45rem !important;
    padding: 0.45rem;
    border: 0;
    border-radius: 0.9rem;
    background: rgba(212, 175, 55, 0.12);
    box-shadow: none;
  }

  .nav-offcanvas .dropdown-menu-jobs .dropdown-item {
    display: grid !important;
    grid-template-columns: 2.15rem minmax(0, 1fr);
    align-items: center;
    column-gap: 0.85rem;
    width: 100%;
    margin: 0;
    padding: 0.8rem 0.85rem !important;
    border-radius: 0.75rem;
    background: #fff;
    box-shadow: 0 4px 12px rgba(92, 61, 30, 0.05);
    color: var(--ink);
    font-family: var(--font-button);
    font-weight: 500;
    font-size: 0.92rem;
    white-space: normal;
  }

  .nav-offcanvas .dropdown-menu-jobs li + li .dropdown-item {
    margin-top: 0.4rem;
  }

  .nav-offcanvas .dropdown-menu-jobs .dropdown-item i {
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 0.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    background: var(--orange-soft);
    font-size: 0.95rem;
    line-height: 1;
  }

  .nav-offcanvas .dropdown-menu-jobs .dropdown-item span {
    display: block;
    line-height: 1.25;
    text-align: left;
  }

  .nav-offcanvas .dropdown-menu-jobs .dropdown-item:hover,
  .nav-offcanvas .dropdown-menu-jobs .dropdown-item:focus {
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-dark);
  }

  .nav-offcanvas .nav-link:hover {
    background: var(--gold-soft);
    color: #d0a936 !important;
  }

  .nav-offcanvas .nav-link.active {
    background: rgba(208, 169, 54, 0.16);
    color: #d0a936 !important;
  }

  .nav-offcanvas .btn-nav-cta {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    margin-top: 0.35rem;
    text-align: center;
    border-radius: 0.85rem !important;
    color: #fff !important;
  }

  .nav-offcanvas .btn-nav-cta:hover {
    color: #fff !important;
  }
}

@media (max-width: 767.98px) {
  :root {
    --page-gutter: 1.1rem;
    --top-bar-height: 2.35rem;
  }

  .brand-logo-header {
    width: 48px;
    height: 42px;
    max-width: 48px;
  }

  .brand-name {
    font-size: 0.82rem;
  }

  .brand-tag {
    font-size: 0.64rem;
    letter-spacing: 0.12em;
  }

  .top-bar {
    font-size: 0.75rem;
  }

  .top-bar-inner {
    display: flex;
    justify-content: center;
  }

  .top-bar-contact {
    display: none;
  }

  .top-bar-social {
    gap: 0.2rem;
    justify-self: center;
  }

  .top-bar-social a {
    width: 1.55rem;
    height: 1.55rem;
    font-size: 0.92rem;
  }

  .section {
    padding: 3.25rem 0;
  }

  .section-sm {
    padding: 2.25rem 0;
  }

  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-xxl {
    max-width: 100%;
    padding-left: var(--page-gutter) !important;
    padding-right: var(--page-gutter) !important;
  }

  .navbar-mp {
    padding-left: 0;
    padding-right: 0;
  }

  .navbar-mp .navbar-toggler {
    padding: 0.35rem;
    margin-right: -0.15rem;
  }

  .hero,
  .hero-carousel,
  .hero-carousel .carousel-inner,
  .hero-carousel .carousel-item,
  .hero-content {
    min-height: 85vh;
  }

  .hero {
    width: 100%;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    padding: 7.75rem 0 3.5rem;
    margin: 0 auto;
    text-align: center;
    align-items: center;
  }

  .hero-carousel .hero-content.container {
    width: 100%;
    max-width: 100%;
  }

  .hero-content .eyebrow {
    letter-spacing: 0.12em;
  }

  .hero-brand {
    font-size: clamp(1.45rem, 6.2vw, 2.2rem);
    max-width: 100%;
    word-break: normal;
    letter-spacing: -0.02em;
    white-space: normal;
  }

  .hero-lead {
    max-width: 100%;
    font-size: 0.98rem;
    margin-bottom: 1.5rem;
    padding: 0;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 20rem;
    gap: 0.75rem;
  }

  .hero-actions .btn,
  .cta-strip .cta-actions .btn {
    width: 100% !important;
    max-width: 100%;
    min-height: 3.15rem;
    margin: 0 !important;
    display: flex !important;
    justify-content: center;
    box-sizing: border-box;
  }

  .page-header {
    padding: 8rem 0 2.75rem;
  }

  .page-header .container > * {
    max-width: 100%;
  }

  .stats-grid .stat-card {
    padding: 1.3rem 0.85rem 1.15rem;
  }

  .stats-grid .stat-icon {
    width: 2.6rem;
    height: 2.6rem;
    font-size: 1.05rem;
    margin-bottom: 0.7rem;
  }

  .stats-grid .stat-card h3 {
    font-size: 1.65rem;
  }

  .stats-grid .stat-card p {
    font-size: 0.84rem;
  }

  .cta-strip {
    border-radius: 1.15rem;
    padding: 2.25rem 1.15rem;
  }

  .cta-strip .cta-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .job-card {
    padding: 0;
  }

  .contact-panel {
    padding: 1.25rem 1.35rem 1.4rem;
  }

  .contact-panel > .split-media:first-child {
    margin: -1.25rem -1.35rem 1.25rem;
    border-radius: 1.25rem 1.25rem 0 0 !important;
    overflow: hidden;
  }

  .detail-sidebar {
    padding: 1.25rem 1.35rem;
  }

  .contact-panel ul,
  .detail-sidebar ul {
    padding-left: 1.15rem;
    margin-bottom: 0;
  }

  .contact-panel .form-actions {
    padding-bottom: 0.25rem;
  }

  .job-card-body {
    padding: 1.1rem 1.25rem 1.25rem;
  }

  .section.surface-b {
    padding-bottom: 4.5rem;
  }

  .footer-mp {
    padding-top: 3rem;
    width: 100%;
  }

  .footer-mp p,
  .footer-mp a {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .footer-bottom {
    margin-top: 2rem;
    text-align: center;
  }

  .map-frame {
    height: 260px;
  }

  .wa-float {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }

  .split-media {
    min-height: 220px;
  }
}

@media (max-width: 575.98px) {
  .btn-orange,
  .btn-blue,
  .btn-outline-orange,
  .btn-outline-blue,
  .btn-outline-light {
    white-space: normal;
  }

  .row.g-4,
  .row.g-5 {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
  }

  .contact-panel {
    padding: 1.15rem 1.15rem 1.3rem;
  }

  .contact-panel > .split-media:first-child {
    margin: -1.15rem -1.15rem 1.15rem;
  }

  .detail-sidebar {
    padding: 1.15rem;
  }
}
