/* ═══════════════════════════════════════════════════
   BORTERMICIS INVESTMENT LIMITED
   Premium International Design System v2.0
   Fonts: Playfair Display (headings) + Inter (body)
   Theme: Deep Navy + Champagne Gold + Glassmorphism
═══════════════════════════════════════════════════ */

/* ── 1. Design Tokens ──────────────────────────── */
:root {
  /* Brand Palette */
  --navy: #0A2647;
  --navy-800: #0d2f57;
  --navy-dark: #071a33;
  --navy-deeper: #040f1e;
  --navy-50: #f0f4f9;
  --navy-glass: rgba(10, 38, 71, 0.85);
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-lighter: #f5dfa0;
  --gold-dark: #a8872d;
  --gold-glow: rgba(201, 168, 76, 0.4);
  --white: #ffffff;
  --off-white: #fafaf8;

  /* Neutrals */
  --gray-50: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #adb5bd;
  --gray-500: #868e96;
  --gray-600: #495057;
  --gray-700: #343a40;
  --gray-900: #111827;

  /* Elevation */
  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.22);
  --shadow-gold: 0 8px 30px rgba(201, 168, 76, 0.35);
  --shadow-gold-lg: 0 16px 50px rgba(201, 168, 76, 0.45);
  --glow-gold: 0 0 40px rgba(201, 168, 76, 0.25), 0 0 80px rgba(201, 168, 76, 0.1);

  /* Shape */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --radius-full: 9999px;

  /* Typography */
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast: 160ms;
  --dur: 280ms;
  --dur-slow: 500ms;
  --dur-xslow: 800ms;

  /* Layout */
  --container: 1200px;
  --section-v: 7rem;
}

/* ── 2. Reset & Base ───────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: inherit;
}

/* ── 3. Scrollbar ──────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--navy-deeper);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-light);
}

/* ── 4. Typography ─────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.75rem);
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(1.9rem, 3.5vw, 3.25rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

h4 {
  font-size: 1.15rem;
}

p {
  line-height: 1.8;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.875rem;
}

.label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

.lead {
  font-size: 1.125rem;
  color: var(--gray-500);
  line-height: 1.85;
}

/* ── 5. Layout ─────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: var(--section-v) 0;
}

.section--dark {
  background: var(--navy-dark);
  color: var(--white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section--light {
  background: var(--off-white);
}

.section--gray {
  background: var(--gray-50);
}

/* Section header layout */
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4.5rem;
}

.section-head .divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-full);
  margin: 1.375rem auto 1.75rem;
}

.section-head--left {
  text-align: left;
  max-width: none;
  margin-bottom: 3rem;
}

.section-head--left .divider {
  margin-left: 0;
}

/* Grid helpers */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* ── 6. Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--dur);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
}

.btn:hover::before {
  opacity: 1;
}

.btn svg {
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease-spring);
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy-dark);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
  font-weight: 700;
}

.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-lg);
}

.btn--dark {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn--dark:hover {
  background: var(--navy-800);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
  backdrop-filter: blur(4px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.85);
  transform: translateY(-3px);
}

.btn--outline-dark {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}

.btn--outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-3px);
}

.btn--outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}

.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-3px);
}

.btn--sm {
  padding: 0.625rem 1.375rem;
  font-size: 0.8125rem;
}

.btn--lg {
  padding: 1.125rem 2.75rem;
  font-size: 0.9375rem;
  letter-spacing: 0.06em;
}

.btn--block {
  width: 100%;
  justify-content: center;
}

/* ── 7. Navbar ─────────────────────────────────── */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--dur-slow) var(--ease);
}

#main-nav .nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

#main-nav.nav-transparent {
  background: transparent;
}

#main-nav.nav-solid {
  background: rgba(7, 26, 51, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

#main-nav.nav-solid .nav-inner {
  height: 72px;
}

/* Logo */
.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}

#main-nav.nav-solid .nav-logo img {
  height: 46px;
}

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color var(--dur) var(--ease);
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.82);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-full);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease-out);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link:hover {
  color: var(--white);
}

.nav-link.active {
  color: var(--gold-light);
  font-weight: 600;
}

/* CTA button in nav */
.nav-cta {
  margin-left: 0.75rem;
  padding: 0.65rem 1.625rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-dark);
  transition: all var(--dur) var(--ease);
  box-shadow: 0 3px 16px rgba(201, 168, 76, 0.35);
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity var(--dur);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
}

.nav-cta:hover::before {
  opacity: 1;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--dur) var(--ease);
  cursor: pointer;
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: var(--radius-full);
  background: var(--white);
  transition: all var(--dur) var(--ease);
}

/* Mobile menu */
.nav-mobile {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease);
  background: rgba(7, 26, 51, 0.97);
  backdrop-filter: blur(24px);
  border-top: 1px solid rgba(201, 168, 76, 0.12);
}

.nav-mobile.is-open {
  max-height: 420px;
}

.nav-mobile-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1rem 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.nav-mobile-link {
  display: block;
  padding: 0.875rem 1.125rem;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: all var(--dur) var(--ease);
  border-left: 3px solid transparent;
}

.nav-mobile-link:hover {
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold-light);
  border-left-color: var(--gold);
  padding-left: 1.5rem;
}

.nav-mobile-cta {
  margin-top: 0.875rem;
  text-align: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-dark);
  font-weight: 700;
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  transition: all var(--dur) var(--ease);
  letter-spacing: 0.04em;
}

.nav-mobile-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ── 8. Hero ────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 10s ease;
  will-change: transform;
}

.hero.loaded .hero__bg {
  transform: scale(1.02);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
      rgba(4, 15, 30, 0.92) 0%,
      rgba(7, 26, 51, 0.78) 45%,
      rgba(4, 15, 30, 0.95) 100%);
}

/* Animated grain texture */
.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Hero Particles */
.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  animation: particleFloat linear infinite;
  opacity: 0;
}

@keyframes particleFloat {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.2;
  }

  100% {
    transform: translateY(-100vh) rotate(720deg);
    opacity: 0;
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
  animation: heroReveal 1.2s var(--ease-out) both;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(48px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.55rem 1.5rem;
  border-radius: var(--radius-full);
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
  animation: heroReveal 1.2s 0.2s var(--ease-out) both;
}

.hero h1 {
  font-family: var(--font-display);
  color: var(--white);
  margin-bottom: 1.75rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  animation: heroReveal 1.2s 0.3s var(--ease-out) both;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
  position: relative;
}

.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  border-radius: var(--radius-full);
  animation: shimmer 3s ease infinite;
}

@keyframes shimmer {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 640px;
  margin: 0 auto 3rem;
  line-height: 1.85;
  animation: heroReveal 1.2s 0.4s var(--ease-out) both;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  animation: heroReveal 1.2s 0.5s var(--ease-out) both;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollBounce 2.5s ease infinite;
  transition: color var(--dur);
}

.hero__scroll:hover {
  color: var(--gold-light);
}

.hero__scroll span {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201, 168, 76, 0.6), transparent);
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ── 9. Stats Bar ───────────────────────────────── */
.stats-bar {
  background: var(--navy-darker, var(--navy-dark));
  padding: 3rem 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
  background-size: 200% 100%;
  animation: gradientSlide 4s linear infinite;
}

.stats-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

@keyframes gradientSlide {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 200% 0%;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: var(--radius-full);
  transition: width var(--dur-slow) var(--ease);
}

.stat-item:hover::before {
  width: 60%;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  text-shadow: 0 0 30px rgba(201, 168, 76, 0.3);
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── 10. Page Hero (inner pages) ────────────────── */
.page-hero {
  background: var(--navy-darker, var(--navy-dark));
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1600&q=50') center/cover no-repeat;
  opacity: 0.06;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
  background-size: 200% 100%;
  animation: gradientSlide 4s linear infinite;
}

/* Geometric accent */
.page-hero .geo-accent {
  position: absolute;
  top: -60px;
  right: -80px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero .geo-accent::after {
  content: '';
  position: absolute;
  inset: 40px;
  border: 1px solid rgba(201, 168, 76, 0.05);
  border-radius: 50%;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.875rem;
  animation: heroReveal 0.8s var(--ease-out) both;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  animation: heroReveal 0.8s 0.15s var(--ease-out) both;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--dur);
}

.breadcrumb a:hover {
  color: var(--gold-light);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb svg {
  flex-shrink: 0;
}

/* ── 11. Cards ──────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  transition: transform var(--dur-slow) var(--ease),
    box-shadow var(--dur-slow) var(--ease),
    border-color var(--dur-slow);
  border: 1px solid var(--gray-100);
  position: relative;
}

.card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-slow) var(--ease);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.card:hover::after {
  transform: scaleX(1);
}

.card__img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-xslow) var(--ease);
}

.card:hover .card__img img {
  transform: scale(1.08);
}

.card__body {
  padding: 2rem;
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.125rem;
  flex-shrink: 0;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.card__icon svg {
  color: var(--gold-dark);
}

/* ── 12. Feature / Icon List ────────────────────── */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-item {
  display: flex;
  gap: 1.375rem;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy-50), rgba(10, 38, 71, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur) var(--ease);
  border: 1px solid rgba(10, 38, 71, 0.08);
}

.feature-item:hover .feature-icon {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.2), rgba(201, 168, 76, 0.05));
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.15);
}

.feature-icon svg {
  color: var(--navy);
  transition: color var(--dur);
}

.feature-item:hover .feature-icon svg {
  color: var(--gold-dark);
}

.feature-item h3 {
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ── 13. Two-column split ───────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.5rem;
  align-items: center;
}

.split--reverse .split__media {
  order: -1;
}

.split__media {
  position: relative;
}

.split__media img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  transition: box-shadow var(--dur-slow);
}

.split__media:hover img {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

/* Decorative frame */
.split__media::before {
  content: '';
  position: absolute;
  inset: -16px;
  border: 2px solid rgba(201, 168, 76, 0.15);
  border-radius: calc(var(--radius-xl) + 16px);
  pointer-events: none;
}

.split__media::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(201, 168, 76, 0.04));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 168, 76, 0.15);
  pointer-events: none;
  z-index: -1;
}

.badge-float {
  position: absolute;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-gold-lg);
  line-height: 1.35;
  z-index: 3;
}

/* ── 14. Process Steps ──────────────────────────── */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.375rem;
  border-radius: var(--radius);
  transition: all var(--dur) var(--ease);
  border: 1px solid transparent;
}

.process-step:hover {
  background: var(--navy-50);
  border-color: rgba(201, 168, 76, 0.15);
  transform: translateX(4px);
}

.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: var(--shadow-sm);
}

.process-step:last-child .step-num {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-dark);
  box-shadow: var(--shadow-gold);
}

.process-step h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* ── 15. Capability Bars ────────────────────────── */
.cap-list {
  display: flex;
  flex-direction: column;
  gap: 1.625rem;
}

.cap-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.625rem;
  font-size: 0.875rem;
}

.cap-header span:first-child {
  font-weight: 500;
  color: var(--gray-700);
}

.cap-header span:last-child {
  font-weight: 700;
  color: var(--navy);
}

.cap-track {
  height: 8px;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

.cap-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  border-radius: var(--radius-full);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s var(--ease-out);
  position: relative;
}

.cap-fill::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: var(--gold-light);
  border-radius: var(--radius-full);
}

.cap-fill.animated {
  transform: scaleX(1);
}

/* ── 16. Partners / Logo Grid ───────────────────── */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.375rem;
}

.partner-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur) var(--ease);
  box-shadow: var(--shadow-xs);
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.05), transparent);
  opacity: 0;
  transition: opacity var(--dur);
}

.partner-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateY(-4px);
}

.partner-card:hover::before {
  opacity: 1;
}

.partner-card img {
  height: 52px;
  width: 100%;
  object-fit: contain;
  filter: grayscale(1) opacity(0.55);
  transition: filter var(--dur-slow) var(--ease);
}

.partner-card:hover img {
  filter: grayscale(0) opacity(1);
}

/* ── 17. Service Nav Pills ──────────────────────── */
.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.service-pill {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
}

.service-pill:hover,
.service-pill.active {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.service-pill__icon {
  width: 46px;
  height: 46px;
  background: var(--navy-50);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-pill__icon svg {
  color: var(--navy);
}

.service-pill h4 {
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
  color: var(--navy);
}

.service-pill p {
  font-size: 0.775rem;
  color: var(--gray-400);
}

/* ── 18. Equipment / Service Cards ─────────────── */
.equip-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-xs);
  transition: all var(--dur-slow) var(--ease);
  position: relative;
}

.equip-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-slow) var(--ease);
}

.equip-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.equip-card:hover::after {
  transform: scaleX(1);
}

.equip-card__img {
  height: 210px;
  overflow: hidden;
}

.equip-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-xslow) var(--ease);
}

.equip-card:hover .equip-card__img img {
  transform: scale(1.08);
}

.equip-card__body {
  padding: 1.625rem;
}

.equip-card__body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.equip-card__body p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.equip-card__link {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: all var(--dur) var(--ease-spring);
}

.equip-card__link:hover {
  gap: 0.7rem;
  color: var(--navy);
}

/* ── 19. Support Service Cards ──────────────────── */
.support-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--dur-slow) var(--ease);
  position: relative;
  overflow: hidden;
}

.support-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-slow) var(--ease);
  border-radius: 0 0 var(--radius-full) var(--radius-full);
}

.support-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-5px);
}

.support-card:hover::before {
  transform: scaleX(1);
}

.support-card__icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--navy-50), rgba(10, 38, 71, 0.06));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.375rem;
  border: 1px solid rgba(10, 38, 71, 0.08);
  transition: all var(--dur);
}

.support-card:hover .support-card__icon {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.18), rgba(201, 168, 76, 0.05));
  border-color: rgba(201, 168, 76, 0.25);
}

.support-card__icon svg {
  color: var(--navy);
  transition: color var(--dur);
}

.support-card:hover .support-card__icon svg {
  color: var(--gold-dark);
}

.support-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.support-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* ── 20. Info Cards (contact page) ─────────────── */
.info-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: all var(--dur-slow) var(--ease);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.info-card__icon {
  width: 64px;
  height: 64px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.info-card__icon svg {
  color: var(--gold);
}

.info-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.info-card a,
.info-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.info-card a:hover {
  color: var(--gold-dark);
}

/* ── 21. Form ───────────────────────────────────── */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.125rem;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--gray-700);
  transition: border-color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease),
    background var(--dur);
}

.form-control:focus {
  outline: none;
  background: var(--white);
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(10, 38, 71, 0.08);
}

.form-control::placeholder {
  color: var(--gray-400);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
  line-height: 1.7;
}

/* ── 22. FAQ Accordion ──────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur);
}

.faq-item.open {
  border-color: rgba(10, 38, 71, 0.25);
  box-shadow: var(--shadow-sm);
}

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.375rem 1.625rem;
  background: none;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  transition: background var(--dur);
}

.faq-item.open .faq-btn {
  background: var(--navy-50);
}

.faq-btn:hover {
  background: var(--navy-50);
}

.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur), transform var(--dur) var(--ease);
}

.faq-item.open .faq-icon {
  background: var(--navy);
  transform: rotate(180deg);
}

.faq-icon svg {
  color: var(--gray-600);
  transition: color var(--dur);
}

.faq-item.open .faq-icon svg {
  color: var(--white);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease);
}

.faq-item.open .faq-body {
  max-height: 300px;
}

.faq-body p {
  padding: 0 1.625rem 1.375rem;
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.8;
}

/* ── 23. CTA Section ────────────────────────────── */
.cta-section {
  background: var(--navy-darker, var(--navy-dark));
  padding: var(--section-v) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 50%);
}

.cta-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
  background-size: 200% 100%;
  animation: gradientSlide 4s linear infinite;
}

/* CTA geometric bg */
.cta-section .cta-geo {
  position: absolute;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(201, 168, 76, 0.05);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: rotateSlow 30s linear infinite;
}

.cta-section .cta-geo::before {
  content: '';
  position: absolute;
  inset: 60px;
  border: 1px solid rgba(201, 168, 76, 0.04);
  border-radius: 50%;
}

@keyframes rotateSlow {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1.125rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.125rem;
  margin-bottom: 2.75rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 1.125rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── 24. Footer ─────────────────────────────────── */
.site-footer {
  background: #050c18;
  color: rgba(255, 255, 255, 0.55);
  padding: 5.5rem 0 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
  background-size: 200% 100%;
  animation: gradientSlide 4s linear infinite;
}

/* Footer glow */
.site-footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 1;
}

.footer-brand-desc {
  font-size: 0.875rem;
  line-height: 1.85;
  margin: 1.125rem 0 1.75rem;
  color: rgba(255, 255, 255, 0.38);
}

.footer-logo img {
  height: 46px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity var(--dur);
}

.footer-logo:hover img {
  opacity: 1;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  transition: all var(--dur) var(--ease);
}

.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.625rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  transition: all var(--dur);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.footer-link::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--dur) var(--ease);
  display: inline-block;
}

.footer-link:hover {
  color: var(--gold-light);
}

.footer-link:hover::before {
  width: 12px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-contact-item svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--dur);
}

.footer-contact-item a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  padding: 1.875rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.22);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ── 25. Back to Top ────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.8);
  transition: opacity var(--dur) var(--ease),
    visibility var(--dur),
    transform var(--dur) var(--ease-spring),
    box-shadow var(--dur);
  cursor: pointer;
}

#back-to-top:hover {
  transform: translateY(0) scale(1.1);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.5);
}

#back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* ── 26. Animations / Scroll Reveal ────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal--left {
  transform: translateX(-36px) translateY(0);
}

.reveal--right {
  transform: translateX(36px) translateY(0);
}

.reveal--left.visible,
.reveal--right.visible {
  transform: none;
}

.reveal--scale {
  transform: scale(0.9) translateY(20px);
}

.reveal--scale.visible {
  transform: none;
}

/* stagger delay helpers */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.22s;
}

.delay-3 {
  transition-delay: 0.34s;
}

.delay-4 {
  transition-delay: 0.46s;
}

.delay-5 {
  transition-delay: 0.58s;
}

/* Page fade-in */
body {
  animation: pageFadeIn 0.5s var(--ease) both;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ── 27. Utility ────────────────────────────────── */
.text-gold {
  color: var(--gold);
}

.text-gold-lt {
  color: var(--gold-light);
}

.text-navy {
  color: var(--navy);
}

.text-muted {
  color: var(--gray-400);
}

.text-center {
  text-align: center;
}

.text-small {
  font-size: 0.875rem;
}

.bg-navy {
  background: var(--navy);
}

.bg-dark {
  background: var(--navy-dark);
}

.bg-light {
  background: var(--off-white);
}

.bg-gray {
  background: var(--gray-50);
}

.bg-white {
  background: var(--white);
}

.bg-gold {
  background: var(--gold);
}

.mt-auto {
  margin-top: auto;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.gap-1 {
  gap: 0.5rem;
}

.gap-2 {
  gap: 1rem;
}

.gap-3 {
  gap: 1.5rem;
}

.divider-h {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
  margin: 2rem 0;
}

/* Gold divider inline */
.divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-full);
}

/* ── 28. Page Hero BG/Overlay elements ─────────── */
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.08;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(4, 15, 30, 0.95) 0%, rgba(10, 38, 71, 0.82) 100%);
}

/* ── 29. btn extra variants ─────────────────────── */
.btn--block {
  width: 100%;
  justify-content: center;
}

/* ── 30. Check List ─────────────────────────────── */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' fill='none' stroke='%23C9A84C' stroke-width='2.5' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.check-list--light li {
  color: rgba(255, 255, 255, 0.75);
}

.check-list--light li::before {
  background-color: rgba(201, 168, 76, 0.2);
}

/* ── 31. Contact Info Card ──────────────────────── */
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: all var(--dur-slow) var(--ease);
  position: relative;
  overflow: hidden;
}

.contact-info-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--dur-slow) var(--ease);
}

.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 168, 76, 0.25);
}

.contact-info-card:hover::after {
  transform: scaleX(1);
}

.contact-info-card__icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-800));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.375rem;
  box-shadow: 0 8px 24px rgba(10, 38, 71, 0.2);
}

.contact-info-card__icon svg {
  color: var(--gold);
}

.contact-info-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.contact-info-card p {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 0.875rem;
}

.contact-info-card a,
.contact-info-card span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  display: block;
}

.contact-info-card a:hover {
  color: var(--gold-dark);
}

/* ── 32. Contact Grid (form + map) ──────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-form-box,
.contact-map-box {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.contact-form-box h3,
.contact-map-box h3 {
  font-size: 1.35rem;
  margin-bottom: 2rem;
}

/* ── 33. Contact Form fields ────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
}

.form-group label span {
  color: #e05c5c;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1.125rem;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--gray-700);
  transition: border-color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease),
    background var(--dur);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(10, 38, 71, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.7;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.form-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--navy);
  flex-shrink: 0;
  margin-top: 2px;
}

.form-checkbox a {
  color: var(--navy);
  text-decoration: underline;
}

/* ── 34. Map embed ──────────────────────────────── */
.map-embed {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  padding-top: 56.25%;
  margin-bottom: 1.375rem;
  box-shadow: var(--shadow-sm);
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.map-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.map-details li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.map-details li svg {
  color: var(--gold-dark);
  flex-shrink: 0;
}

.map-details li a {
  color: var(--gray-600);
  transition: color var(--dur);
}

.map-details li a:hover {
  color: var(--navy);
}

/* ── 35. FAQ accordion (is-open variant) ────────── */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.375rem 1.625rem;
  background: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  transition: background var(--dur);
}

.faq-question span {
  flex: 1;
}

.faq-item.is-open>.faq-question {
  background: var(--navy-50);
}

.faq-question:hover {
  background: var(--navy-50);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease);
}

.faq-item.is-open>.faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0.25rem 1.625rem 1.375rem;
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.8;
}

.faq-icon {
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease);
  color: var(--gray-400);
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
  color: var(--navy);
}

/* ── 36. Service Nav ────────────────────────────── */
.service-nav {
  display: flex;
  gap: 1.375rem;
  flex-wrap: wrap;
  justify-content: center;
}

.service-nav__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.125rem 1.625rem;
  transition: all var(--dur) var(--ease);
  text-decoration: none;
}

.service-nav__item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}

.service-nav__icon {
  width: 48px;
  height: 48px;
  background: var(--navy-50);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--dur);
}

.service-nav__item:hover .service-nav__icon {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.18), rgba(201, 168, 76, 0.05));
}

.service-nav__icon svg {
  color: var(--navy);
}

.service-nav__item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
  font-family: var(--font-body);
}

.service-nav__item span {
  display: block;
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 0.15rem;
}

/* ── 37. Process Panel (box wrapper) ────────────── */
.process-panel {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}

.process-panel h3 {
  font-size: 1.15rem;
  margin-bottom: 1.875rem;
}

/* ── 38. Fleet grid ─────────────────────────────── */
.fleet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.fleet-grid span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-600);
  padding: 0.375rem 0;
}

.fleet-grid span::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' fill='none' stroke='%23C9A84C' stroke-width='2.5' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

/* ── 39. Rental Why box ─────────────────────────── */
.rental-why {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.rental-why::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.rental-why h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 1.625rem;
}

.rental-why .check-list--light li strong {
  color: var(--white);
}

/* ── 40. Image caption overlay ──────────────────── */
.img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(4, 15, 30, 0.85) 0%, transparent 100%);
  padding: 2.5rem 2rem 1.75rem;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.img-caption strong {
  display: block;
  color: var(--white);
  font-size: 1.1rem;
  font-family: var(--font-display);
}

.img-caption span {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.25rem;
}

/* ── FLOATING ELEMENTS ──────────────────────────── */
/* Animated dots pattern */
.section-dots {
  position: absolute;
  width: 300px;
  height: 300px;
  background-image: radial-gradient(circle, rgba(201, 168, 76, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

/* Section gold accent line */
.section-accent {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-accent::before,
.section-accent::after {
  content: '';
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  flex: 1;
  max-width: 80px;
}

/* ── HOVER CARD GLOW EFFECT ─────────────────────── */
.glow-card {
  position: relative;
}

.glow-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold-dark));
  opacity: 0;
  transition: opacity var(--dur-slow);
  z-index: -1;
}

.glow-card:hover::before {
  opacity: 0.3;
}

/* ── HERO STAT PULSE ────────────────────────────── */
@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(201, 168, 76, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0);
  }
}

.pulse {
  animation: pulse-ring 3s ease infinite;
}

/* ── COUNTER ANIMATION ──────────────────────────── */
.counter-num {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* ── TYPED CURSOR ───────────────────────────────── */
.typed-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--gold-light);
  margin-left: 2px;
  animation: blink 0.8s step-end infinite;
  vertical-align: middle;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* ── SCROLL PROGRESS BAR ────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ── TOOLTIP ────────────────────────────────────── */
[data-tooltip] {
  position: relative;
  cursor: default;
}

[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  white-space: nowrap;
  background: var(--navy-dark);
  color: var(--white);
  font-size: 0.75rem;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
  opacity: 0;
  pointer-events: none;
  transition: all var(--dur);
  z-index: 100;
}

[data-tooltip]:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── 41. Responsive additions ───────────────────── */
@media (max-width: 1024px) {
  :root {
    --section-v: 5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .split__media img {
    height: 400px;
  }

  .split--reverse .split__media {
    order: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-v: 4rem;
  }

  h1 {
    font-size: 2.4rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.5rem;
  }

  .stat-item:nth-child(3),
  .stat-item:last-child {
    border-bottom: none;
  }

  .stat-number {
    font-size: 2.4rem;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .service-pills {
    flex-direction: column;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn--lg {
    padding: 1.05rem 2.25rem;
  }

  .contact-form-box,
  .contact-map-box {
    padding: 1.75rem;
  }
}

@media (max-width: 480px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}