/* ================================================================
   MMC GROUP —
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Bebas+Neue&display=swap');

/* ── TOKENS ──────────────────────────────────────────────────── */
:root {
  --navy: #050E2B;
  --navy2: #071530;
  --navy3: #0a1e42;
  --blue: #0057A8;
  --blue2: #0066C4;
  --cyan: #00AACD;
  --gold: #E8A020;
  --gold2: #F5B843;
  --green: #5DB936;
  --red: #E31E52;
  --magenta: #C4007A;
  --purple: #4C4FA0;
  --white: #ffffff;
  --off-white: #F8F6F2;
  --gray: #6B7280;
  --light-gray: #E8ECF0;
  --trans: 0.38s cubic-bezier(.4, 0, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
  line-height: 1.7;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ── PRELOADER ──────────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 32px;
  transition: opacity .8s ease, visibility .8s ease;
  overflow: hidden;
}

#preloader::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(59,130,246,.08) 0%, transparent 70%);
  pointer-events: none;
}

#preloader.out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.pre-logo {
  width: 200px;
  animation: prePulse 2s ease-in-out infinite;
}

@keyframes prePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .7; transform: scale(.96); }
}

.pre-spinner { position: relative; width: 64px; height: 64px; }

.pre-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
}

.pre-ring-1 { border-top-color: var(--blue); animation: spin 1.2s linear infinite; }
.pre-ring-2 { inset: 8px; border-right-color: var(--gold); animation: spin 1.8s linear infinite reverse; }
.pre-ring-3 { inset: 16px; border-bottom-color: var(--blue); animation: spin 2.4s linear infinite; }

.pre-dot {
  position: absolute;
  top: 50%; left: 50%;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: dotPulse 1.2s ease-in-out infinite;
}

@keyframes spin     { to { transform: rotate(360deg); } }
@keyframes dotPulse {
  0%, 100% { transform: translate(-50%,-50%) scale(1);   opacity: 1; }
  50%      { transform: translate(-50%,-50%) scale(1.6); opacity: .5; }
}

.pre-bottom { display: flex; flex-direction: column; align-items: center; gap: 10px; }

.pre-track {
  width: 260px;
  height: 3px;
  background: rgb(0,0,0);
  border-radius: 2px;
  overflow: hidden;
}

.pre-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  border-radius: 2px;
  animation: preLoad 2.4s cubic-bezier(.4,0,.2,1) forwards;
}

@keyframes preLoad {
  0%   { width: 0%; }
  60%  { width: 75%; }
  85%  { width: 92%; }
  100% { width: 100%; }
}

.pre-pct {
  font-size: 11px;
  color: rgb(0,0,0);
  letter-spacing: .15em;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.pre-text {
  font-size: 9px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgb(0,0,0);
  font-family: 'Plus Jakarta Sans', sans-serif;
  animation: fadeUp 1s ease .4s both;
}

.pre-dots span { display: inline-block; animation: blink 1.4s ease-in-out infinite; }
.pre-dots span:nth-child(2) { animation-delay: .2s; }
.pre-dots span:nth-child(3) { animation-delay: .4s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}

@keyframes blink {
  0%, 80%, 100% { opacity: .25; }
  40%           { opacity: 1; }
}

.pre-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.pre-particle {
  position: absolute;
  width: 2px; height: 2px;
  border-radius: 50%;
  opacity: 0;
  animation: floatUp var(--d, 6s) ease-in-out var(--delay, 0s) infinite;
}

@keyframes floatUp {
  0%   { opacity: 0; transform: translateY(0) scale(1); }
  20%  { opacity: .6; }
  80%  { opacity: .3; }
  100% { opacity: 0; transform: translateY(-120px) scale(.4); }
}

/* ── NAVBAR ─────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 18px 0;
  transition: all var(--trans);
}

#navbar.solid {
  background: #ffffff;
  backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 2px 40px rgba(0,0,0,0.12);
  border-bottom: 1px solid rgba(232,160,32,0.15);
}

.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
  flex-shrink: 0;
}

.nav-logo {
  height: 100px;
  width: 180px;
  object-fit: contain;
  object-position: left center;
  display: block;
  transition: height 0.3s ease, width 0.3s ease;
}

#navbar.solid .nav-logo { height: 38px; width: 120px; }

.nav-link {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.90) !important;
  padding: 8px 14px !important;
  position: relative;
  transition: color var(--trans);
  white-space: nowrap;
}

#navbar.solid .nav-link { color: #050E2B !important; }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  transition: left var(--trans), right var(--trans);
}

.nav-link:hover { color: var(--gold) !important; }

.nav-link:hover::after,
.nav-link.active-nav::after { left: 14px; right: 14px; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  border-radius: 3px;
  padding: 10px 22px !important;
  font-weight: 700 !important;
  font-size: .82rem !important;
  letter-spacing: .08em;
  white-space: nowrap;
}

#navbar.solid .nav-cta { color: var(--navy) !important; }

.nav-cta:hover {
  background: var(--gold2) !important;
  color: var(--navy) !important;
  transform: translateY(-1px);
}

.nav-cta::after { display: none !important; }

.navbar-toggler {
  border: 1px solid rgba(255,255,255,.3) !important;
  padding: 7px 11px;
}

#navbar.solid .navbar-toggler { border: 1px solid rgba(5,14,43,.2) !important; }

.navbar-toggler-icon { filter: invert(1); width: 20px; height: 20px; }
#navbar.solid .navbar-toggler-icon { filter: invert(0); }

@media (max-width: 1200px) {
  .nav-link { font-size: .76rem; padding: 8px 10px !important; }
}

@media (max-width: 991px) {
  .nav-logo { height: 50px; width: 150px; }
  #navbar.solid .nav-logo { height: 42px; width: 130px; }

  .navbar-collapse {
    background: #050E2B;
    border-radius: 8px;
    padding: 16px;
    margin-top: 12px;
    border: 1px solid rgba(232,160,32,.15);
  }

  #navbar.solid .navbar-collapse {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,.08);
  }

  .nav-link {
    color: rgba(255,255,255,0.90) !important;
    padding: 10px 14px !important;
    border-radius: 4px;
  }

  #navbar.solid .navbar-collapse .nav-link { color: #050E2B !important; }
  .nav-link:hover { background: rgba(232,160,32,.1); color: var(--gold) !important; }

  .nav-cta { display: inline-block; margin-top: 8px; text-align: center; }
}

@media (max-width: 576px) {
  .nav-logo { height: 44px; width: 130px; }
  #navbar.solid .nav-logo { height: 36px; width: 110px; }
  #navbar { padding: 14px 0; }
}

/* ── HERO ───────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,14,43,0.575) 0%, rgba(5,14,43,.75) 50%, rgba(0,87,168,.3) 100%);
}

.hero-diagonal {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  z-index: 2;
  overflow: hidden;
  line-height: 0;
}

.hero-diagonal svg { display: block; width: 100%; height: 80px; }

.hero-content { position: relative; z-index: 3; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(232,160,32,.4);
  border-radius: 2px;
  padding: 7px 20px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  background: rgba(232,160,32,.08);
}

.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: blink 1.5s infinite;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 28px;
}

.hero-title .gold  { color: var(--gold); }
.hero-title .stroke { -webkit-text-stroke: 1.5px rgba(255,255,255,.6); color: transparent; }

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  max-width: 500px;
  margin-bottom: 48px;
  font-weight: 300;
  line-height: 1.85;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 2px;
  transition: all var(--trans);
  box-shadow: 0 8px 32px rgba(232,160,32,.35);
}

.btn-gold:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(232,160,32,.45);
  color: var(--navy);
}

.btn-gold svg { transition: transform var(--trans); }
.btn-gold:hover svg { transform: translateX(4px); }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid rgba(255,255,255,.35);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 2px;
  transition: all var(--trans);
}

.btn-outline-white:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(232,160,32,.08);
}

/* ── HERO CAROUSEL ──────────────────────────────────────────── */
.hero-carousel { position: absolute; inset: 0; overflow: hidden; }

.hero-carousel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s ease, transform 8s ease;
}

.hero-carousel-slide.active { opacity: 1; transform: scale(1); }

.hero-carousel-dots {
  position: absolute;
  bottom: 100px; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: 1.5px solid rgba(255,255,255,.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active {
  background: #E8A020;
  border-color: #E8A020;
  width: 24px;
  border-radius: 4px;
}

/* ── MARQUEE ────────────────────────────────────────────────── */
.marquee-wrap {
  background: var(--navy);
  border-bottom: 1px solid rgba(232,160,32,.2);
  overflow: hidden;
  padding: 13px 0;
}

.marquee-track {
  display: flex;
  animation: marquee 35s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  padding: 0 36px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

.marquee-bullet { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SECTION COMMONS ────────────────────────────────────────── */
.section-py    { padding: 100px 0; }
.section-py-sm { padding: 70px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--gold); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
}

.section-title.light { color: #fff; }
.section-title em { color: var(--gold); font-style: italic; }

.section-body { font-size: .95rem; color: var(--gray); line-height: 1.85; max-width: 540px; }

/* ── ABOUT ──────────────────────────────────────────────────── */
#about { background: var(--off-white); overflow: hidden; }

.about-img-col { position: relative; }

.about-img-main { width: 100%; height: 580px; object-fit: cover; border-radius: 4px; }

.about-img-accent {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 200px; height: 200px;
  object-fit: cover;
  border-radius: 4px;
  border: 6px solid var(--off-white);
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
}

.about-badge-block {
  position: absolute;
  top: 40px; left: -20px;
  background: var(--gold);
  color: var(--navy);
  padding: 24px 28px;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 16px 48px rgba(232,160,32,.4);
}

.about-badge-block .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  line-height: 1;
  display: block;
}

.about-badge-block .lbl {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .8;
}

.value-row { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }

.val-icon {
  width: 48px; height: 48px;
  border-radius: 3px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.val-title { font-weight: 700; font-size: .95rem; color: var(--navy); margin-bottom: 4px; }
.val-desc  { font-size: .84rem; color: var(--gray); line-height: 1.7; }

/* ── TRUST STRIP ────────────────────────────────────────────── */
.trust-strip { border-top: 1px solid rgba(5,14,43,.1); margin-top: 56px; padding-top: 40px; }

.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

@media (max-width: 576px) { .trust-grid { grid-template-columns: 1fr; gap: 24px; } }

.trust-label {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #E8A020;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-label::after { content: ''; flex: 1; height: 1px; background: rgba(232,160,32,.25); }

.trust-badges { display: flex; flex-wrap: wrap; gap: 8px; }

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border: 1px solid rgba(5,14,43,.15);
  border-radius: 2px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #374151;
  background: #ffffff;
  transition: border-color .25s, background .25s, color .25s;
}

.trust-badge:hover {
  border-color: rgba(232,160,32,.6);
  background: rgba(232,160,32,.06);
  color: #050E2B;
}

.trust-badge i { color: #E8A020; font-size: .9rem; }

/* ── BUSINESSES ─────────────────────────────────────────────── */
#businesses { background: var(--navy); position: relative; overflow: hidden; }

.biz-card {
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: #0a1628;
  transition: transform var(--trans), box-shadow var(--trans);
}

.biz-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,.5); }

.biz-img-wrap { width: 100%; aspect-ratio: 16/9; overflow: hidden; }

.biz-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .7s ease;
}

.biz-card:hover .biz-img-wrap img { transform: scale(1.07); }

.biz-body { padding: 22px 24px 26px; }

.biz-tag {
  font-size: .65rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 2px;
  display: inline-block; margin-bottom: 10px;
  color: #fff;
}

.biz-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 700;
  color: #fff; margin-bottom: 8px; line-height: 1.2;
}

.biz-desc { font-size: .8rem; color: rgba(255,255,255,.55); line-height: 1.65; margin-bottom: 16px; }

.biz-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold);
  transform: translateX(-10px);
  opacity: 0;
  transition: all var(--trans);
}

.biz-card:hover .biz-arrow { transform: translateX(0); opacity: 1; }

/* ── STATS ──────────────────────────────────────────────────── */
#stats { position: relative; overflow: hidden; }

.stats-bg {
  position: absolute; inset: 0;
  background: url('images/hero-two.jpg') center/cover no-repeat;
}

.stats-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(5,14,43,.96) 0%, rgba(0,87,168,.85) 100%);
}

.stat-card {
  position: relative; z-index: 2;
  text-align: center; padding: 50px 20px;
  border-right: 1px solid rgba(255,255,255,.08);
}

.stat-card:last-child { border-right: none; }
.stat-icon { font-size: 2rem; margin-bottom: 16px; opacity: .8; }

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.8rem; line-height: 1;
  color: var(--gold); letter-spacing: .02em;
}

.stat-divider { width: 32px; height: 2px; background: var(--gold); margin: 12px auto; opacity: .4; }
.stat-label { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); }

/* ── LEADERSHIP SECTION ─────────────────────────────────────── */
#management { background: #F8F6F2; }

.leader-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.07);
  padding: 36px 32px 28px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.leader-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(5,14,43,.12); }

.leader-img-wrap { position: relative; display: inline-block; margin-bottom: 20px; }

.leader-img { display: block; border-radius: 50%; object-fit: cover; position: relative; z-index: 1; }

.ceo-card {
  max-width: 600px; width: 100%;
  padding: 48px 48px 36px;
  border-top: 4px solid #E8A020;
}

.ceo-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(135deg, rgba(5,14,43,.04), rgba(232,160,32,.06));
  border-radius: 12px 12px 0 0;
}

.ceo-img-wrap .leader-img {
  width: 150px; height: 150px;
  border: 4px solid #fff;
  box-shadow: 0 0 0 3px #E8A020, 0 12px 40px rgba(232,160,32,.25);
}

.leader-img-border {
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px dashed rgba(232,160,32,.4);
  animation: rotateDash 12s linear infinite;
  z-index: 0;
}

@keyframes rotateDash { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.ceo-badge {
  display: inline-block;
  background: rgba(232,160,32,.1);
  color: #b87a10;
  border: 1px solid rgba(232,160,32,.35);
  border-radius: 2px;
  font-size: .65rem; font-weight: 800;
  letter-spacing: .15em; text-transform: uppercase;
  padding: 5px 16px; margin-bottom: 14px;
}

.leader-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem; font-weight: 700;
  color: #050E2B; margin-bottom: 14px;
}

.leader-about {
  color: #555; font-size: .95rem;
  line-height: 1.85; font-weight: 300;
  margin-bottom: 20px;
  max-width: 460px; margin-left: auto; margin-right: auto;
}

.leader-divider { width: 40px; height: 2px; background: #E8A020; margin: 0 auto 20px; border-radius: 2px; }

.ceo-stats {
  display: flex; justify-content: center; align-items: center;
  gap: 0; margin-bottom: 24px;
  background: #F8F6F2; border-radius: 8px; padding: 16px 0;
}

.ceo-stat { flex: 1; text-align: center; }

.ceo-stat-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; color: #050E2B;
  letter-spacing: .04em; line-height: 1;
}

.ceo-stat-label {
  display: block; font-size: .62rem;
  color: #888; letter-spacing: .1em;
  text-transform: uppercase; margin-top: 4px;
}

.ceo-stat-divider { width: 1px; height: 36px; background: rgba(0,0,0,.1); }

.leader-social { display: flex; justify-content: center; gap: 10px; }

.social-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(5,14,43,.15);
  color: #050E2B;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: #050E2B; border-color: #050E2B;
  color: #E8A020; transform: translateY(-2px);
}

.executives-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

.exec-card { padding: 32px 24px 24px; }

.exec-img-wrap { position: relative; margin-bottom: 20px; }

.exec-img-wrap .leader-img {
  width: 110px; height: 110px;
  border: 3px solid #fff;
  box-shadow: 0 6px 24px rgba(0,0,0,.1);
}

.exec-accent {
  position: absolute;
  bottom: 6px; right: calc(50% - 55px - 2px);
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 3px solid #fff;
  z-index: 2;
}

.exec-badge {
  display: inline-block; border: 1px solid; border-radius: 2px;
  font-size: .6rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 12px; margin-bottom: 12px;
}

.exec-name { font-size: 1.25rem; margin-bottom: 10px; }

.exec-about { color: #666; font-size: .85rem; line-height: 1.75; font-weight: 300; margin-bottom: 16px; }

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

@media (max-width: 600px) {
  .executives-grid { grid-template-columns: 1fr; }
  .ceo-card { padding: 36px 24px 28px; }
  .leader-name { font-size: 1.5rem; }
}

/* ── CONTACT ────────────────────────────────────────────────── */
#contact { background: var(--off-white); }

.contact-box {
  background: #fff; border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0,0,0,.08);
}

.contact-left { background: var(--navy); padding: 52px 44px; }

.contact-left h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700;
  color: #fff; margin-bottom: 14px; line-height: 1.2;
}

.contact-left p { font-size: .88rem; color: rgba(255,255,255,.5); margin-bottom: 36px; line-height: 1.8; }

.cinfo-row { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }

.cinfo-icon {
  width: 42px; height: 42px; border-radius: 3px;
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.cinfo-lbl { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 3px; }
.cinfo-val { font-size: .88rem; color: rgba(255,255,255,.8); }

.contact-right { padding: 52px 44px; }

.flabel {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--gray); margin-bottom: 7px; display: block;
}

.finput {
  width: 100%;
  border: 1.5px solid #e5e7eb;
  border-radius: 3px;
  padding: 12px 16px;
  font-size: .88rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--navy);
  transition: border-color var(--trans), box-shadow var(--trans);
  background: #fff;
  outline: none;
}

.finput:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,87,168,.1); }
textarea.finput { min-height: 120px; resize: vertical; }

.btn-submit {
  width: 100%;
  background: var(--navy);
  color: #fff; border: none; border-radius: 3px;
  padding: 15px;
  font-size: .82rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer;
  transition: all var(--trans);
}

.btn-submit:hover { background: var(--blue); transform: translateY(-1px); }

/* ── FOOTER ─────────────────────────────────────────────────── */
#footer { background: var(--navy2); color: rgba(255,255,255,.55); padding: 70px 0 0; }

.footer-divider {
  margin-top: 50px; padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}

.footer-tagline { font-style: italic; font-size: .85rem; color: rgba(255,255,255,.35); margin-bottom: 22px; }

.footer-social { display: flex; gap: 10px; }

.soc-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55);
  text-decoration: none; font-size: .85rem;
  transition: all var(--trans);
}

.soc-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

.footer-heading {
  font-size: .68rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: 18px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }

.footer-links a { font-size: .85rem; color: rgba(255,255,255,.5); text-decoration: none; transition: color var(--trans); }
.footer-links a:hover { color: var(--gold); }

.footer-copy { font-size: .78rem; }

.footer-policy { display: flex; gap: 20px; }
.footer-policy a { font-size: .78rem; color: rgba(255,255,255,.35); }
.footer-policy a:hover { color: var(--gold); }

.gold-divider { color: rgba(232,160,32,.4); }

/* ── SCROLL TOP ─────────────────────────────────────────────── */
#scroll-top {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 700;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  border: none; cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(232,160,32,.4);
  opacity: 0;
  transform: translateY(15px);
  transition: all var(--trans);
}

#scroll-top.vis { opacity: 1; transform: translateY(0); }
#scroll-top:hover { transform: translateY(-3px); }

/* ── FADE-UP ANIMATION ──────────────────────────────────────── */
.fu {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}

.fu.vis { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 991px) {
  .about-img-accent { display: none; }
  .about-badge-block { left: 10px; top: 20px; }
  .stat-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .stat-card:last-child { border-bottom: none; }
}

@media (max-width: 767px) {
  .hero-title { font-size: 2.6rem; }
  .contact-left, .contact-right { padding: 36px 24px; }
}


/* ── TRUST STRIP ── */
.trust-strip {
  padding: 50px 40px;
  background: #f9f9f9;
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.trust-label {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #333;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.badge-logo {
  width: 200px;
  height: 200px;
  object-fit: contain;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.badge-name {
  font-size: 13px;
  font-weight: 600;
  color: #555;
  max-width: 200px;
  word-break: break-word;
}