/* Generated: plain CSS utilities to replace Tailwind dependency */
:root {
  --font-sans:
    "Plus Jakarta Sans", "Inter", ui-sans-serif, system-ui, sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";

  /* Clean & bright corporate palette */
  --page-bg: #f0f4f8;
  --text: #1e293b;
  --muted: #64748b;

  /* Brand / UI accents */
  --brand: #1a5632;
  --brand-2: #34d058;
  --accent: #f59e0b; /* amber accent */

  /* Soft colors */
  --soft-blue: #dbeafe;
  --soft-yellow: #fef3c7;
  --soft-green: #d1fae5;

  /* Surfaces */
  --card: #ffffff;
  --card-border: #e2e8f0;
  --input: #ffffff;
  --input-border: #cbd5e1;
  --ring: rgba(30, 64, 175, 0.22);

  /* Header */
  --nav: #0f172a;
  --nav-2: #1e293b;
  --nav-border: rgba(255, 255, 255, 0.12);
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--page-bg);
  color: var(--text);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}
/* Reset native button styles so navbar dropdown buttons don't get default light background */
button {
  background: transparent;
  border: 0;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
button:focus {
  outline: none;
}
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1152px;
  }
}
.bg-gradient-to-b {
  background-image: linear-gradient(
    to bottom,
    var(--tw-gradient-from, rgba(255, 255, 255, 0.1)),
    var(--tw-gradient-to, transparent)
  );
}
.from-white\/10 {
  --tw-gradient-from: rgba(255, 255, 255, 0.1);
}
.to-transparent {
  --tw-gradient-to: transparent;
}
.space-y-1 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 0.25rem;
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 0.5rem;
}
.space-y-3 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 0.75rem;
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 1rem;
}
.backdrop-blur {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.prose h1,
.prose h2,
.prose h3 {
  color: var(--text);
  line-height: 1.2;
  margin: 1.5rem 0 0.75rem;
}
.prose p {
  margin: 0.75rem 0;
}
.prose ul {
  padding-left: 1.25rem;
  margin: 0.75rem 0;
}
.prose li {
  margin: 0.25rem 0;
}
.prose a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.table th,
.table td {
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid var(--card-border);
  vertical-align: top;
}
.table th {
  font-weight: 600;
  color: var(--text);
  text-align: left;
}
.input,
.select,
.textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--input-border);
  border-radius: 0.75rem;
  background: var(--input);
  outline: none;
  color: var(--text);
}
.input:focus,
.select:focus,
.textarea:focus {
  box-shadow: 0 0 0 0.25rem var(--ring);
  border-color: rgba(29, 78, 216, 0.45);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 0.9rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(15, 23, 42, 0.15);
  background: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--text);
}
.btn:hover {
  background: #f1f5f9;
}
.btn-primary {
  background: var(--brand);
  border-color: rgba(29, 78, 216, 0.65);
  color: #fff;
}
.btn-primary:hover {
  filter: brightness(1.06);
}
.btn-danger {
  background: rgba(248, 113, 113, 0.14);
  border-color: rgba(248, 113, 113, 0.3);
}
.btn-danger:hover {
  background: rgba(248, 113, 113, 0.22);
}
.card {
  border: 1px solid var(--card-border);
  background: var(--card);
  border-radius: 1rem;
  overflow: hidden;
  color: var(--text);
  border-radius: 1.25rem;
  box-shadow: 0 16px 50px rgba(2, 6, 23, 0.08);
}
.card-body {
  padding: 1.25rem;
}
.min-h-screen {
  min-height: 100vh;
}
.bg-slate-950 {
  background: var(--nav);
}
.bg-slate-900 {
  background: var(--nav-2);
}
.bg-white {
  background: #ffffff;
  color: var(--text);
}
.text-slate-100 {
  color: #f8fafc;
}
.text-slate-200 {
  color: #e2e8f0;
}
.text-slate-300 {
  color: #cbd5e1;
}
.text-slate-400 {
  color: #94a3b8;
}
.text-slate-500 {
  color: var(--muted);
}
.text-slate-950 {
  color: #020617;
}
.text-emerald-200 {
  color: #a7f3d0;
}
.text-red-200 {
  color: #fecaca;
}
.text-red-300 {
  color: #fca5a5;
}
.bg-white\/5 {
  background: rgba(255, 255, 255, 0.06);
}
.bg-white\/10 {
  background: rgba(255, 255, 255, 0.1);
}
.bg-slate-950\/40 {
  background: rgba(11, 27, 52, 0.4);
}
.bg-slate-950\/60 {
  background: rgba(11, 27, 52, 0.6);
}
.bg-slate-950\/80 {
  background: rgba(11, 27, 52, 0.8);
}
.bg-emerald-400\/10 {
  background: rgba(52, 211, 153, 0.1);
}
.bg-red-400\/10 {
  background: rgba(248, 113, 113, 0.1);
}
.border {
  border: 1px solid var(--card-border);
}
.border-b {
  border-bottom: 1px solid var(--card-border);
}
.border-t {
  border-top: 1px solid var(--card-border);
}
.border-r {
  border-right: 1px solid var(--card-border);
}
.border-white\/10 {
  border-color: var(--nav-border);
}
.border-white\/15 {
  border-color: rgba(255, 255, 255, 0.15);
}
.border-white\/20 {
  border-color: rgba(255, 255, 255, 0.2);
}
.border-emerald-400\/30 {
  border-color: rgba(52, 211, 153, 0.3);
}
.border-red-400\/30 {
  border-color: rgba(248, 113, 113, 0.3);
}
.flex {
  display: flex;
}
.grid {
  display: grid;
}
.block {
  display: block;
}
.hidden {
  display: none;
}
.inline-flex {
  display: inline-flex;
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-1 {
  flex: 1 1 0%;
}
.items-center {
  align-items: center;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.justify-between {
  justify-content: space-between;
}
.justify-end {
  justify-content: flex-end;
}
.place-items-center {
  place-items: center;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.w-full {
  width: 100%;
}
.w-72 {
  width: 18rem;
}
.w-56 {
  width: 14rem;
}
.w-9 {
  width: 2.25rem;
}
.w-4 {
  width: 1rem;
}
.h-16 {
  height: 4rem;
}
.h-9 {
  height: 2.25rem;
}
.h-4 {
  height: 1rem;
}
.p-3 {
  padding: 0.75rem;
}
.p-4 {
  padding: 1rem;
}
.p-5 {
  padding: 1.25rem;
}
.p-6 {
  padding: 1.5rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.py-14 {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.pt-4 {
  padding-top: 1rem;
}
.pt-6 {
  padding-top: 1.5rem;
}
.pl-5 {
  padding-left: 1.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-10 {
  gap: 2.5rem;
}
.space-y-1 {
  --space-y: 0.25rem;
}
.space-y-2 {
  --space-y: 0.5rem;
}
.space-y-3 {
  --space-y: 0.75rem;
}
.space-y-4 {
  --space-y: 1rem;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.rounded-2xl {
  border-radius: 1rem;
}
.shadow-lg {
  box-shadow: 0 14px 40px rgba(2, 6, 23, 0.12);
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-x-auto {
  overflow-x: auto;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.top-0 {
  top: 0;
}
.left-0 {
  left: 0;
}
.z-40 {
  z-index: 40;
}
.sticky {
  position: sticky;
}
.opacity-0 {
  opacity: 0;
}
.invisible {
  visibility: hidden;
}
.transition {
  transition: all 0.2s ease;
}
.outline-none {
  outline: none;
}
.leading-tight {
  line-height: 1.25;
}
.tracking-tight {
  letter-spacing: -0.025em;
}
.list-disc {
  list-style: disc;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.font-normal {
  font-weight: 400;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}
.font-mono {
  font-family:
    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
}
.max-w-none {
  max-width: none;
}
.max-w-md {
  max-width: 28rem;
}
.max-w-2xl {
  max-width: 42rem;
}
.max-w-3xl {
  max-width: 48rem;
}
.max-w-6xl {
  max-width: 72rem;
}
.prose {
  max-width: 65ch;
  line-height: 1.75;
  color: var(--muted);
}
.prose-invert {
  color: var(--muted);
}
/* text colors */
.text-white {
  color: #fff;
}
.text-white\/90 {
  color: rgba(255, 255, 255, 0.9);
}
.text-white\/80 {
  color: rgba(255, 255, 255, 0.8);
}
.text-white\/70 {
  color: rgba(255, 255, 255, 0.7);
}
.hover\:bg-white\/5:hover {
  background: rgba(255, 255, 255, 0.05);
}
.hover\:bg-white\/10:hover {
  background: rgba(255, 255, 255, 0.1);
}
.hover\:bg-red-400\/20:hover {
  background: rgba(248, 113, 113, 0.2);
}
.hover\:opacity-90:hover {
  opacity: 0.9;
}
.hover\:text-white:hover {
  color: #ffffff;
}
.hover\:text-white\/80:hover {
  color: rgba(255, 255, 255, 0.8);
}
.focus\:ring-2:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.12);
}
.focus\:ring-white\/20:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.2);
}
.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}
.group:hover .group-hover\:visible {
  visibility: visible;
}

/* ------------------------------------------------------------
   Premium header (lebih "berkelas" + estetik)
------------------------------------------------------------- */
.site-header {
  color: rgba(255, 255, 255, 0.9);
  overflow: visible;
  position: sticky;
  top: 0;
  z-index: 80;
}
.site-header a,
.site-header button {
  color: inherit;
}
.site-header a:hover,
.site-header button:hover {
  color: #fff;
}
/* Override for pill-style (light) header */
.site-header--pill {
  color: #334155;
}
.site-header--pill a,
.site-header--pill button {
  color: #334155;
}
.site-header--pill a:hover,
.site-header--pill button:hover {
  color: #2d8a4e;
}
.site-header--pill .dropdown a,
.site-header--pill .dropdown button {
  color: rgba(255, 255, 255, 0.92);
}
.site-header--pill .dropdown a:hover {
  color: #fff;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      900px circle at 18% 0%,
      rgba(59, 130, 246, 0.3),
      transparent 55%
    ),
    radial-gradient(
      800px circle at 80% 35%,
      rgba(14, 165, 233, 0.18),
      transparent 60%
    ),
    linear-gradient(180deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.78));
  pointer-events: none;
}
/* Hide dark background for pill-style header — MUST come after base ::before/::after */
.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  /* subtle noise / texture */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  opacity: 0.1;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.site-header > * {
  position: relative;
  z-index: 1;
}
.site-header:not(.site-header--pill) {
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.2);
}

/* Pill-style overrides (after base definitions) */
.site-header--pill {
  box-shadow: none !important;
  background: transparent !important;
}
.site-header--pill::before,
.site-header--pill::after {
  display: none !important;
  content: none !important;
}

/* ------------------------------------------------------------
   Light-theme mapping for existing Tailwind-like utility classes
   (keeps header dark, but makes page content look like reference)
------------------------------------------------------------- */
.theme-light {
  background: var(--page-bg);
  color: var(--text);
}
.theme-light .from-white\/10 {
  --tw-gradient-from: rgba(29, 78, 216, 0.08);
} /* hero wash */
.theme-light .to-transparent {
  --tw-gradient-to: transparent;
}

/* Cards / sections that previously used translucent whites */
.theme-light .bg-white\/5 {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92),
    rgba(235, 244, 255, 0.86)
  );
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 55px rgba(2, 6, 23, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.theme-light .bg-white\/10 {
  background: rgba(15, 23, 42, 0.04);
} /* subtle hover tint */
.theme-light .border-white\/10 {
  border-color: var(--card-border);
}
.theme-light .border-white\/15 {
  border-color: var(--card-border);
}
.theme-light .border-white\/20 {
  border-color: var(--card-border);
}

/* Text mapping */
.theme-light .text-slate-100 {
  color: var(--text);
} /* headings */
.theme-light .text-slate-200 {
  color: var(--text);
}
.theme-light .text-slate-300 {
  color: var(--muted);
}
.theme-light .text-slate-400 {
  color: #64748b;
}

/* Links / hovers */
.theme-light .hover\:text-white:hover {
  color: var(--brand);
}
.theme-light .hover\:text-white\/80:hover {
  color: rgba(29, 78, 216, 0.85);
}
.theme-light .hover\:bg-white\/5:hover {
  background: rgba(15, 23, 42, 0.04);
}
.theme-light .hover\:bg-white\/10:hover {
  background: rgba(15, 23, 42, 0.06);
}

/* Form controls used in contact page */
.theme-light .bg-slate-950\/60 {
  background: var(--input);
}
.theme-light .bg-slate-950\/40 {
  background: var(--input);
}
.theme-light .bg-slate-950\/80 {
  background: var(--input);
}
.theme-light .focus\:ring-white\/20:focus {
  box-shadow: 0 0 0 0.25rem var(--ring);
}
.theme-light .focus\:ring-2:focus {
  box-shadow: 0 0 0 0.25rem var(--ring);
}
@media (min-width: 768px) {
  .md\:flex {
    display: flex;
  }
  .md\:flex-row {
    flex-direction: row;
  }
  .md\:inline-flex {
    display: inline-flex;
  }
  .md\:items-center {
    align-items: center;
  }
  .md\:justify-between {
    justify-content: space-between;
  }
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:col-span-1 {
    grid-column: span 1 / span 1;
  }
  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  .md\:col-span-3 {
    grid-column: span 3 / span 3;
  }
  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
}
@media (min-width: 1024px) {
  .lg\:block {
    display: block;
  }
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Navbar dropdown: glass + always above */
.site-header .group {
  position: relative;
}
.site-header .group > .absolute {
  z-index: 9999;
}
.site-header .group > .absolute {
  background: rgba(10, 20, 40, 0.92) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 22px 60px rgba(2, 6, 23, 0.35);
}
.site-header .group > .absolute a {
  color: rgba(255, 255, 255, 0.88);
}
.site-header .group > .absolute a:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Click-open state for dropdown (mobile/desktop) */
.site-header .group.is-open .opacity-0 {
  opacity: 1 !important;
}
.site-header .group.is-open .invisible {
  visibility: visible !important;
}

/* =========================
   Lux Card (Public)
   ========================= */
.lux-card {
  border-radius: 28px;
  padding: 44px 34px;
  background:
    radial-gradient(
      1200px 400px at 20% 0%,
      rgba(59, 130, 246, 0.1),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(248, 250, 252, 0.96)
    );
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow:
    0 26px 60px rgba(2, 6, 23, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
  color: #0f172a;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.lux-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 30px 72px rgba(2, 6, 23, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.72) inset;
}
.lux-card.text-center {
  text-align: center;
}

.lux-card .card-kicker {
  font-size: 14px;
  font-weight: 700;
  color: rgba(51, 65, 85, 0.72);
  letter-spacing: 0.02em;
}
.lux-card .card-title {
  font-size: 34px;
  line-height: 1.12;
  font-weight: 750;
  letter-spacing: -0.02em;
  margin-top: 12px;
  color: #0f172a;
}
.lux-card .card-desc {
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(51, 65, 85, 0.8);
}

/* Fallback: if a card still uses old tailwind-like utility combo, make it look similar */
.rounded-2xl.border.border-white\/10.bg-white\/5 {
  border-radius: 28px;
  background:
    radial-gradient(
      1200px 400px at 20% 0%,
      rgba(59, 130, 246, 0.1),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(248, 250, 252, 0.96)
    );
  border: 1px solid rgba(148, 163, 184, 0.22) !important;
  box-shadow:
    0 26px 60px rgba(2, 6, 23, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
  color: #0f172a;
}

/* =========================
   Premium redesign (IgnAasia-like)
========================= */
.site-header--pill {
  background: transparent;
}
.site-header--pill:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.75),
    rgba(255, 255, 255, 0.25)
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
/* show subtle top glass when sticky */
.site-header--pill {
  position: sticky;
  top: 0;
}
.site-header--pill.is-stuck:before {
  opacity: 1;
}

.nav-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 1.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(226, 232, 240, 0.6);
  box-shadow:
    0 4px 24px rgba(15, 23, 42, 0.06),
    0 1px 3px rgba(15, 23, 42, 0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.brand-mark {
  height: 42px;
  width: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #2d8a4e, #5cb85c);
  border: none;
  font-weight: 800;
  color: #fff;
  font-size: 18px;
}
.brand-logo {
  height: 42px;
  width: auto;
  max-height: 42px;
  max-width: 120px;
  border-radius: 10px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-name {
  font-weight: 800;
  color: #1e293b;
  letter-spacing: -0.3px;
  font-size: 15px;
}
.brand-tagline {
  font-size: 11.5px;
  color: #64748b;
  letter-spacing: 0.01em;
}
.nav-links {
  color: #334155;
  gap: 2rem !important;
}
.nav-link {
  color: #334155;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, #2d8a4e, #5cb85c);
  border-radius: 999px;
  transition:
    left 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    right 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link:hover {
  color: #2d8a4e;
}
.nav-link:hover::after {
  left: 0;
  right: 0;
}

/* Outline pill for Contact Us */
.nav-link--outline {
  border: 2px solid #2d8a4e;
  border-radius: 999px;
  padding: 8px 22px !important;
  color: #2d8a4e !important;
  font-weight: 600;
  transition: all 0.3s ease;
}
.nav-link--outline::after {
  display: none !important;
}
.nav-link--outline:hover {
  background: #2d8a4e;
  color: #fff !important;
}

/* Language dropdown */
.lang-dropdown {
  position: relative;
  display: block;
  margin-left: 10px;
}
.lang-dropdown__btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 2px;
  border: none;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  color: #334155;
  transition: all 0.2s ease;
}
.lang-dropdown__btn:hover {
  opacity: 0.7;
}
.lang-dropdown__btn svg:first-child {
  border-radius: 2px;
  flex-shrink: 0;
}
.lang-dropdown__arrow {
  transition: transform 0.2s ease;
  opacity: 0.5;
}
.lang-dropdown.open .lang-dropdown__arrow {
  transform: rotate(180deg);
}
.lang-dropdown__menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 110px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  padding: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all 0.2s ease;
  z-index: 100;
}
.lang-dropdown.open .lang-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-dropdown__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: #334155;
  font-size: 0.8rem;
  font-weight: 500;
  transition: background 0.15s ease;
}
.lang-dropdown__item:hover {
  background: #f1f5f9;
}
.lang-dropdown__item--active {
  background: #f0fff4;
  color: #2d8a4e;
  font-weight: 600;
}

/* Mini flag icons (pure CSS) */
.lang-flag-mini {
  display: inline-block;
  width: 22px;
  height: 15px;
  border-radius: 3px;
  flex-shrink: 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
}
.lang-flag-mini--id {
  background: linear-gradient(to bottom, #dc1f26 50%, #fff 50%);
}
.lang-flag-mini--en {
  background: repeating-linear-gradient(
    to bottom,
    #b22234 0%,
    #b22234 7.69%,
    #fff 7.69%,
    #fff 15.38%
  );
  position: relative;
}
.lang-flag-mini--en::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 54%;
  background: #3c3b6e;
}

.dropdown {
  z-index: 9999;
  border-radius: 14px;
  background: #fff;
  color: #334155;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  overflow: visible;
  padding: 8px 0;
}
.dropdown a {
  color: #475569;
  padding: 10px 22px;
  display: block;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent !important;
}
.dropdown a::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 6px;
  height: 2px;
  background: linear-gradient(90deg, #2d8a4e, #5cb85c);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.dropdown a:hover {
  color: #2d8a4e;
}
.dropdown a:hover::after {
  transform: scaleX(1);
}

/* Support old tailwind-like hover variant + click open */
.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}
.group:hover .group-hover\:visible {
  visibility: visible;
}
.site-header .group.is-open .dropdown {
  opacity: 1;
  visibility: visible;
}

.btn-pill {
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2d8a4e, #34d058);
  border: none;
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
  transition: all 0.2s ease;
}
.btn-pill:hover {
  background: linear-gradient(135deg, #22863a, #2d8a4e);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
  transform: translateY(-1px);
}

.mobile-toggle {
  height: 40px;
  width: 44px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.65);
  display: grid;
  place-items: center;
  gap: 5px;
  padding: 10px;
}
.mobile-toggle span {
  display: block;
  height: 2px;
  width: 18px;
  background: #0b1b34;
  border-radius: 999px;
}
.mobile-nav {
  display: none;
  margin-top: 0.75rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(226, 232, 240, 0.6);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
  padding: 0.75rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
@media (min-width: 768px) {
  .mobile-nav {
    position: absolute;
    right: 0;
    top: 100%;
    width: 260px;
    margin-top: 0.5rem;
  }
}
.mobile-nav a {
  display: block;
  padding: 0.6rem 0.85rem;
  border-radius: 0;
  color: #1e293b;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
}
.mobile-nav a::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 4px;
  height: 2px;
  background: linear-gradient(90deg, #2d8a4e, #5cb85c);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav a:hover {
  color: #2d8a4e;
  background: transparent;
}
.mobile-nav a:hover::after {
  transform: scaleX(1);
}
.mobile-nav-divider {
  height: 1px;
  background: rgba(226, 232, 240, 0.8);
  margin: 0.5rem 0.5rem;
}
.mobile-nav-admin {
  font-size: 13px !important;
  color: #64748b !important;
  font-weight: 500 !important;
}
.mobile-nav-admin:hover {
  color: #2d8a4e !important;
}
.mobile-nav.is-open {
  display: block;
}

/* HERO — New light design */
.hero-new {
  position: relative;
  padding: 40px 0 60px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(187, 247, 208, 0.5) 0%,
    rgba(220, 252, 231, 0.35) 35%,
    rgba(255, 255, 255, 0.3) 55%,
    rgba(254, 243, 199, 0.3) 100%
  );
}
.hero-new .hero-bg-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-new .hero-bg-deco--1 {
  top: -60px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: rgba(45, 138, 78, 0.1);
  filter: blur(60px);
  animation: heroFloat 6s ease-in-out infinite;
}
.hero-new .hero-bg-deco--2 {
  bottom: -50px;
  left: -60px;
  width: 350px;
  height: 350px;
  background: rgba(245, 158, 11, 0.1);
  filter: blur(50px);
  animation: heroFloat 6s ease-in-out infinite 2s;
}

/* Geometric shapes — visible circles + triangle */
.hero-geo {
  position: absolute;
  pointer-events: none;
}
/* Large outer ring */
.hero-geo--ring {
  top: 20px;
  right: 80px;
  width: 360px;
  height: 360px;
  border: 3px solid rgba(45, 138, 78, 0.15);
  border-radius: 50%;
}
/* Circle 1 — overlapping */
.hero-geo--circle1 {
  top: 60px;
  right: 160px;
  width: 240px;
  height: 240px;
  border: 3px solid rgba(45, 138, 78, 0.18);
  border-radius: 50%;
  background: rgba(220, 252, 231, 0.06);
}
/* Circle 2 — overlapping offset */
.hero-geo--circle2 {
  top: 110px;
  right: 80px;
  width: 220px;
  height: 220px;
  border: 3px solid rgba(45, 138, 78, 0.15);
  border-radius: 50%;
  background: rgba(220, 252, 231, 0.04);
}
/* Triangle */
.hero-geo--triangle {
  top: 140px;
  right: 160px;
  width: 0;
  height: 0;
  border-left: 65px solid transparent;
  border-bottom: 110px solid rgba(254, 243, 199, 0.5);
  border-right: 65px solid transparent;
  transform: rotate(12deg);
}

@media (max-width: 899px) {
  .hero-geo {
    display: none;
  }
}
@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.hero-new .hero-inner {
  position: relative;
  z-index: 2;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-layout {
    grid-template-columns: 1.2fr 1fr;
  }
}

/* Trust badge */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(226, 232, 240, 0.6);
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
}
.trust-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.hero-heading {
  font-size: 48px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -1px;
  margin: 0 0 20px;
  color: #1e293b;
}
.hero-heading .text-primary {
  color: #1a5632;
}
.hero-heading .text-accent {
  color: #f59e0b;
}
.hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: #64748b;
  max-width: 500px;
  margin-bottom: 28px;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  background: #1a5632;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 8px 24px rgba(30, 64, 175, 0.25);
  transition: all 0.2s ease;
}
.hero-btn-primary:hover {
  background: #22863a;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 32px rgba(30, 64, 175, 0.35);
}
.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  background: #fff;
  color: #475569;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid #e2e8f0;
  transition: all 0.2s ease;
}
.hero-btn-secondary:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

/* Stat cards */
.stat-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 500px) {
  .stat-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
.stat-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px 20px;
  border: 1px solid rgba(226, 232, 240, 0.6);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
  transition: all 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}
.stat-card:nth-child(2) {
  margin-top: 0;
}
@media (min-width: 500px) {
  .stat-card:nth-child(2) {
    margin-top: 32px;
  }
}
.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  font-size: 20px;
}
.stat-icon--blue {
  background: var(--soft-blue);
  color: #1a5632;
}
.stat-icon--yellow {
  background: var(--soft-yellow);
  color: #f59e0b;
}
.stat-icon--green {
  background: var(--soft-green);
  color: #16a34a;
}
.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: #1a5632;
  letter-spacing: -1px;
}
.stat-label {
  font-size: 13px;
  color: #64748b;
  margin-top: 4px;
}

/* Fade-in animation */
.fade-in-up {
  animation: fadeInUp 0.8s ease-out both;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.observe-me {
  opacity: 0;
}
.observe-me.fade-in-up {
  opacity: 1;
}

/* Sections */
.section-gray {
  background: #f1f5f9;
}
.section-white {
  background: #f8faff;
}
.section-title {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.4px;
  color: #1e293b;
  margin: 0;
}
.section-title--light {
  color: #f0f9ff;
}
.centered {
  text-align: center;
}
.section-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-direction: column;
}

.btn-pill-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2d8a4e, #5cb85c);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.22);
  transition: all 0.2s ease;
}
.btn-pill-accent:hover {
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.3);
  transform: translateY(-1px);
}

.cards-3 {
  margin-top: 32px;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .cards-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lux-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  padding: 32px 26px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.lux-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
}
.lux-card--center {
  text-align: center;
}
.lux-icon {
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
}
.lux-title {
  font-size: 26px;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: -0.4px;
  margin-top: 6px;
}
.lux-desc {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.7;
  color: #64748b;
}

/* Business tiles */
.biz-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 900px) {
  .biz-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.biz-tile {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  box-shadow: 0 22px 60px rgba(2, 6, 23, 0.16);
}
.biz-tile[data-variant="marine"] {
  background:
    radial-gradient(
      900px 280px at 20% 30%,
      rgba(45, 212, 255, 0.55),
      rgba(45, 212, 255, 0) 60%
    ),
    linear-gradient(135deg, #061529 0%, #0b2f87 45%, #0f172a 100%);
}
.biz-tile[data-variant="property"] {
  background:
    radial-gradient(
      900px 280px at 20% 30%,
      rgba(255, 154, 61, 0.48),
      rgba(255, 154, 61, 0) 60%
    ),
    linear-gradient(135deg, #2b0f18 0%, #6b1b2d 45%, #0f172a 100%);
}
.biz-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
}
.biz-label {
  position: relative;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.8px;
}
.biz-sub {
  position: relative;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.45;
  max-width: 520px;
}

/* WHY choose us — Feature Cards (new light design) */
.features-section {
  padding: 80px 0;
  background: #fff;
}
.features-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.features-kicker {
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.features-title {
  font-size: 34px;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: -0.5px;
  margin: 0 0 12px;
}
.features-subtitle {
  color: #64748b;
  font-size: 16px;
  line-height: 1.7;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.feature-card {
  position: relative;
  border-radius: 20px;
  padding: 40px 28px 36px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  color: #fff;
  text-align: center;
}
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0) 60%
  );
  pointer-events: none;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
}
/* Card variants - gradient backgrounds */
.feature-card--blue {
  background: linear-gradient(135deg, #1a5632 0%, #2d8a4e 50%, #34d058 100%);
  box-shadow: 0 8px 30px rgba(45, 138, 78, 0.2);
}
.feature-card--amber {
  background: linear-gradient(135deg, #92400e 0%, #d97706 50%, #fbbf24 100%);
  box-shadow: 0 8px 30px rgba(217, 119, 6, 0.2);
}
.feature-card--green {
  background: linear-gradient(135deg, #064e3b 0%, #047857 50%, #10b981 100%);
  box-shadow: 0 8px 30px rgba(4, 120, 87, 0.2);
}
.feature-icon {
  display: flex;
  justify-content: center;
  margin: 0 auto 24px;
  color: #fff;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.25));
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-icon svg {
  width: 56px;
  height: 56px;
  stroke-width: 1.2;
}
.feature-card:hover .feature-icon {
  transform: scale(1.15) translateY(-4px);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}
.feature-icon--blue,
.feature-icon--amber,
.feature-icon--green {
  color: #fff;
}
.feature-card h3 {
  font-size: 21px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
}
.feature-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* Vision & Mission */
.vm-section {
  padding: 80px 0;
  background: #f1f5f9;
}
.vm-header {
  text-align: center;
  margin-bottom: 40px;
}
.vm-kicker {
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.vm-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .vm-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.vm-card {
  border-radius: 24px;
  padding: 40px 36px;
  transition: all 0.3s ease;
}
.vm-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}
.vm-card--vision {
  background: rgba(219, 234, 254, 0.5);
  border: 2px solid rgba(147, 197, 253, 0.6);
}
.vm-card--mission {
  background: rgba(254, 243, 199, 0.5);
  border: 2px solid rgba(252, 211, 77, 0.5);
}
.vm-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.vm-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 20px;
}
.vm-icon--vision {
  background: #1a5632;
}
.vm-icon--mission {
  background: #f59e0b;
}
.vm-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: #1a5632;
  margin: 0;
}
.vm-card p {
  color: #475569;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

/* SMARTT Values */
.values-section {
  padding: 80px 0;
  background: #fff;
}
.values-title {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 48px;
}
.values-title span {
  color: #1a5632;
}
.values-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
@media (min-width: 768px) {
  .values-row {
    gap: 48px;
  }
}
.value-item {
  text-align: center;
  transition: transform 0.2s ease;
}
.value-item:hover {
  transform: scale(1.1);
}
.value-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  border-width: 4px;
  border-style: solid;
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
  font-size: 22px;
  font-weight: 800;
}
.value-circle--primary {
  border-color: #1a5632;
  color: #1a5632;
}
.value-circle--secondary {
  border-color: #34d058;
  color: #34d058;
}
.value-circle--accent {
  border-color: #f59e0b;
  color: #f59e0b;
}
.value-circle--green {
  border-color: #16a34a;
  color: #16a34a;
}
.value-circle--purple {
  border-color: #7c3aed;
  color: #7c3aed;
}
.value-circle--red {
  border-color: #ef4444;
  color: #ef4444;
}
.value-label {
  font-weight: 700;
  color: #475569;
  font-size: 14px;
}

/* Class of Business section — updated */
.section-white {
  background: #f0f4f8;
}
.section-title {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.4px;
  color: #1e293b;
  margin: 0;
}
.section-title--light {
  color: #f0f9ff;
}
.centered {
  text-align: center;
}
.section-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-direction: column;
}
.btn-pill-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #1a5632, #34d058);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.22);
  transition: all 0.2s ease;
}
.btn-pill-accent:hover {
  box-shadow: 0 8px 28px rgba(30, 64, 175, 0.3);
  transform: translateY(-1px);
}

.biz-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 900px) {
  .biz-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.biz-tile {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  box-shadow: 0 22px 60px rgba(2, 6, 23, 0.16);
}
.biz-tile[data-variant="marine"] {
  background:
    radial-gradient(
      900px 280px at 20% 30%,
      rgba(45, 212, 255, 0.55),
      rgba(45, 212, 255, 0) 60%
    ),
    linear-gradient(135deg, #061529 0%, #0b2f87 45%, #0f172a 100%);
}
.biz-tile[data-variant="property"] {
  background:
    radial-gradient(
      900px 280px at 20% 30%,
      rgba(255, 154, 61, 0.48),
      rgba(255, 154, 61, 0) 60%
    ),
    linear-gradient(135deg, #2b0f18 0%, #6b1b2d 45%, #0f172a 100%);
}
.biz-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
}
.biz-label {
  position: relative;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.8px;
}
.biz-sub {
  position: relative;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.45;
  max-width: 520px;
}

/* Clients section — light background for contrast */
.clients-section {
  background: #f0f4f8;
  position: relative;
  overflow: hidden;
}
.clients-section:before {
  content: "";
  position: absolute;
  inset: -200px;
  background:
    radial-gradient(
      900px 520px at 20% 25%,
      rgba(37, 99, 235, 0.04),
      rgba(37, 99, 235, 0) 60%
    ),
    radial-gradient(
      900px 520px at 75% 35%,
      rgba(59, 130, 246, 0.05),
      rgba(59, 130, 246, 0) 62%
    );
  opacity: 0.9;
  pointer-events: none;
}
.clients-section > * {
  position: relative;
}
.section-title--light {
  color: #1e293b !important;
}
.logo-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (min-width: 768px) {
  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.logo-card {
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.6);
  box-shadow: 0 4px 20px rgba(2, 6, 23, 0.06);
  padding: 24px;
  display: grid;
  place-items: center;
  min-height: 100px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.logo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(2, 6, 23, 0.12);
}
.logo-card img {
  max-height: 48px;
  object-fit: contain;
}
.logo-placeholder {
  font-weight: 800;
  color: #94a3b8;
}
.logo-name {
  margin-top: 8px;
  font-size: 12.5px;
  color: #64748b;
  text-align: center;
}

.cta-bar {
  margin-top: 40px;
  margin-bottom: 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #1a5632, #2d8a4e);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
  box-shadow: 0 8px 32px rgba(30, 64, 175, 0.2);
}
@media (min-width: 900px) {
  .cta-bar {
    flex-direction: row;
    align-items: center;
  }
}
.cta-title {
  color: #fff;
  font-weight: 800;
  font-size: 15px;
}
.cta-sub {
  margin-top: 6px;
  color: rgba(191, 219, 254, 0.8);
  font-size: 13px;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #1a1a1a;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.2px;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.25);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(245, 158, 11, 0.35);
}

/* Footer — dark navy gradient for prominence */
.footer-premium {
  background: linear-gradient(180deg, #0c1a3a 0%, #0a1628 100%);
  color: #fff;
  padding-top: 56px;
  padding-bottom: 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  }
}
.footer-brand {
  font-weight: 800;
  color: #fff;
  font-size: 20px;
}
.footer-note {
  margin-top: 12px;
  color: rgba(148, 163, 184, 0.85);
  font-size: 14px;
  line-height: 1.7;
}
.footer-title {
  font-weight: 700;
  color: #6ee7b7;
  margin-bottom: 14px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-premium a {
  display: inline-block;
  color: rgba(148, 163, 184, 0.8);
  font-size: 14px;
  padding: 0.35rem 0;
  position: relative;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-premium a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1.5px;
  background: linear-gradient(90deg, #34d058, #5cb85c);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-premium a:hover {
  color: #fff;
}
.footer-premium a:hover::after {
  transform: scaleX(1);
}
.footer-meta {
  color: rgba(148, 163, 184, 0.8);
  font-size: 14px;
  line-height: 1.7;
  margin: 0.35rem 0;
}
.footer-meta span {
  display: inline-block;
  min-width: 68px;
  color: rgba(147, 197, 253, 0.55);
}
.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(148, 163, 184, 0.45);
  font-size: 13px;
  text-align: center;
}

/* Responsive hero title */
@media (max-width: 520px) {
  .hero-heading {
    font-size: 34px;
  }
}

/* ============ Contact Page ============ */
.contact-hero {
  background: linear-gradient(135deg, #1a5632 0%, #2d8a4e 60%, #34d058 100%);
  padding: 56px 0 48px;
  text-align: center;
}
.contact-hero__title {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
}
.contact-hero__sub {
  margin-top: 10px;
  color: rgba(191, 219, 254, 0.85);
  font-size: 16px;
}

.contact-section {
  background: #f0f4f8;
  padding: 48px 0 64px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
  }
}

/* Info card */
.contact-info__card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.contact-info__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
}
.contact-info__item + .contact-info__item {
  border-top: 1px solid #f1f5f9;
}
.contact-info__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-info__icon--blue {
  background: #f0fff4;
  color: #2d8a4e;
}
.contact-info__icon--green {
  background: #f0fdf4;
  color: #16a34a;
}
.contact-info__icon--amber {
  background: #fffbeb;
  color: #d97706;
}
.contact-info__label {
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-info__value {
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  margin-top: 2px;
}

/* Office hours */
.contact-hours {
  margin-top: 20px;
  background: #fff;
  border-radius: 20px;
  padding: 24px 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.contact-hours__title {
  font-weight: 700;
  font-size: 15px;
  color: #1e293b;
  margin-bottom: 14px;
}
.contact-hours__row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  color: #475569;
}
.contact-hours__row + .contact-hours__row {
  border-top: 1px solid #f1f5f9;
}

/* Form card */
.contact-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.contact-form__title {
  font-size: 22px;
  font-weight: 800;
  color: #1e293b;
}
.contact-form__sub {
  margin-top: 6px;
  font-size: 14px;
  color: #64748b;
  margin-bottom: 24px;
}
.contact-form__group {
  margin-bottom: 18px;
}
.contact-form__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
}
.contact-form__input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-size: 14px;
  color: #1e293b;
  background: #f8fafc;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
  font-family: inherit;
}
.contact-form__input:focus {
  border-color: #2d8a4e;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background: #fff;
}
.contact-form__input::placeholder {
  color: #94a3b8;
}
.contact-form__textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form__error {
  font-size: 12px;
  color: #ef4444;
  margin-top: 4px;
}
.contact-form__btn {
  width: 100%;
  padding: 14px 24px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #1a5632, #2d8a4e);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25);
  margin-top: 8px;
}
.contact-form__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(37, 99, 235, 0.35);
}

.contact-alert--success {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}
