/* ============================================================
   KHASIMBO INVESTMENT LIMITED — Global Trading Co.
   Luxury dark theme with gold accents
   ============================================================ */

:root {
  /* Deep navy palette */
  --navy-950: #060b1a;
  --navy-900: #0a1328;
  --navy-850: #0e1a34;
  --navy-800: #132244;
  --navy-700: #1a2d5a;
  --navy-600: #243d73;

  /* Gold accents */
  --gold-500: #C9A962;
  --gold-400: #d6bb7a;
  --gold-300: #e3cd93;
  --gold-600: #b3934e;
  --gold-700: #8f7439;

  /* Neutral / ink */
  --ink-100: #f5f2ea;
  --ink-200: #e8e3d6;
  --ink-300: #c9c2b0;
  --ink-400: #9a9280;
  --ink-500: #6b6455;
  --ink-600: #3d382e;

  /* Functional */
  --success: #4a9d78;
  --danger: #c96a5a;

  /* Type */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max-width: 1320px;
  --nav-h: 88px;
  --section-py: clamp(80px, 10vw, 140px);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-200);
  background: var(--navy-950);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ==================== NAVBAR ==================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: all 0.4s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(6, 11, 26, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(201, 169, 98, 0.15);
  height: 72px;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-monogram {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-500);
  color: var(--gold-500);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.5px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-monogram::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(201, 169, 98, 0.35);
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-brand-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink-100);
  letter-spacing: 0.5px;
}

.nav-brand-sub {
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 400;
  color: var(--gold-400);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-200);
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--gold-500);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--gold-400); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-family: var(--font-ui) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 2px !important;
  padding: 12px 24px !important;
  border: 1px solid var(--gold-500) !important;
  color: var(--gold-400) !important;
  transition: all 0.3s ease !important;
}

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

.nav-cta:hover {
  background: var(--gold-500) !important;
  color: var(--navy-950) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--ink-100);
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); background: var(--gold-400); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: var(--gold-400); }

.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(360px, 85vw);
  height: 100vh;
  background: var(--navy-900);
  border-left: 1px solid rgba(201, 169, 98, 0.2);
  padding: 100px 36px 36px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99;
  display: flex;
  flex-direction: column;
}

.mobile-menu.open { right: 0; }

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-menu li a {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(201, 169, 98, 0.12);
  color: var(--ink-200);
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-menu li a:hover {
  color: var(--gold-400);
  padding-left: 8px;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 11, 26, 0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 98;
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 11, 26, 0.55) 0%, rgba(6, 11, 26, 0.75) 50%, rgba(6, 11, 26, 0.95) 100%),
    linear-gradient(90deg, rgba(6, 11, 26, 0.8) 0%, rgba(6, 11, 26, 0.2) 60%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  padding-top: var(--nav-h);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.2s forwards;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold-500);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.5vw, 84px);
  font-weight: 500;
  line-height: 1.08;
  color: var(--ink-100);
  max-width: 12ch;
  letter-spacing: -1px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.4s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-400);
  font-weight: 400;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink-300);
  max-width: 620px;
  margin-top: 28px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-top: 44px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s ease 0.8s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 32px;
  transition: all 0.35s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--gold-500);
  color: var(--navy-950);
  border-color: var(--gold-500);
}

.btn-primary:hover {
  background: var(--gold-400);
  border-color: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 169, 98, 0.25);
}

.btn-outline {
  border-color: rgba(245, 242, 234, 0.4);
  color: var(--ink-100);
}

.btn-outline:hover {
  border-color: var(--gold-400);
  color: var(--gold-400);
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

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

.hero-stats {
  display: flex;
  gap: clamp(32px, 5vw, 64px);
  margin-top: 80px;
  padding-top: 36px;
  border-top: 1px solid rgba(201, 169, 98, 0.2);
  opacity: 0;
  animation: fadeInUp 1s ease 1s forwards;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 500;
  color: var(--gold-400);
  line-height: 1;
}

.hero-stat-num span {
  font-size: 0.5em;
  font-weight: 400;
  color: var(--gold-500);
  margin-left: 2px;
}

.hero-stat-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-400);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-400);
  opacity: 0;
  animation: fadeIn 1s ease 1.4s forwards;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--gold-500) 0%, transparent 100%);
  animation: scrollLine 2.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ==================== SECTION BASE ==================== */
.section {
  padding: var(--section-py) 0;
  position: relative;
}

.section-label {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-500);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold-500);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink-100);
  max-width: 20ch;
}

.section-title em {
  font-style: italic;
  color: var(--gold-400);
  font-weight: 400;
}

.section-header {
  margin-bottom: clamp(48px, 6vw, 80px);
}

.section-header.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header.center .section-label { justify-content: center; }
.section-header.center .section-title { margin: 0 auto; max-width: 22ch; }

.section-desc {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.75;
  color: var(--ink-300);
  max-width: 580px;
  margin-top: 20px;
}

.section-header.center .section-desc { margin-left: auto; margin-right: auto; }

/* ==================== ABOUT SECTION ==================== */
.about {
  background: var(--navy-950);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-500) 50%, transparent 100%);
  opacity: 0.3;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.05);
}

.about-image-frame {
  position: absolute;
  inset: 20px -20px -20px 20px;
  border: 1px solid var(--gold-500);
  z-index: -1;
  opacity: 0.5;
}

.about-content p {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.8;
  color: var(--ink-300);
  margin-bottom: 20px;
}

.about-content p strong {
  color: var(--ink-100);
  font-weight: 600;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(201, 169, 98, 0.2);
}

.mv-item {
  padding: 24px;
  border: 1px solid rgba(201, 169, 98, 0.15);
  background: rgba(201, 169, 98, 0.03);
  transition: all 0.3s ease;
}

.mv-item:hover {
  border-color: rgba(201, 169, 98, 0.4);
  background: rgba(201, 169, 98, 0.06);
}

.mv-icon {
  width: 36px;
  height: 36px;
  color: var(--gold-500);
  margin-bottom: 16px;
}

.mv-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink-100);
  margin-bottom: 8px;
}

.mv-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-400);
}

/* ==================== BUSINESS / PRODUCTS ==================== */
.business {
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
}

.business::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.06) 0%, transparent 70%);
  transform: translateY(-50%);
  pointer-events: none;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.business-card {
  position: relative;
  background: var(--navy-850);
  border: 1px solid rgba(201, 169, 98, 0.12);
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

.business-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 169, 98, 0.4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(201, 169, 98, 0.2);
}

.business-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.business-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.75) saturate(0.9);
}

.business-card:hover .business-card-image img {
  transform: scale(1.08);
  filter: brightness(0.85) saturate(1);
}

.business-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 19, 40, 0.85) 100%);
}

.business-card-body {
  padding: 28px 28px 32px;
  position: relative;
}

.business-card-num {
  position: absolute;
  top: -1px;
  right: 28px;
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 400;
  color: rgba(201, 169, 98, 0.1);
  line-height: 1;
  font-style: italic;
  pointer-events: none;
}

.business-card-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink-100);
  margin-bottom: 10px;
  position: relative;
}

.business-card-desc {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-400);
  margin-bottom: 18px;
}

.business-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-400);
  padding: 6px 12px;
  border: 1px solid rgba(201, 169, 98, 0.3);
}

.business-card-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold-500);
  border-radius: 50%;
}

/* ==================== WHY CHOOSE US ==================== */
.why-choose {
  background: var(--navy-950);
  position: relative;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(201, 169, 98, 0.12);
  border: 1px solid rgba(201, 169, 98, 0.12);
}

.why-item {
  background: var(--navy-900);
  padding: clamp(32px, 4vw, 56px);
  transition: background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.why-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  transition: width 0.4s ease;
}

.why-item:hover { background: var(--navy-850); }
.why-item:hover::before { width: 100%; }

.why-icon {
  width: 48px;
  height: 48px;
  color: var(--gold-500);
  margin-bottom: 24px;
}

.why-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink-100);
  margin-bottom: 12px;
}

.why-desc {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-400);
}

/* ==================== GLOBAL REACH ==================== */
.global {
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
}

.global-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.global-stat {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid rgba(201, 169, 98, 0.15);
  background: rgba(6, 11, 26, 0.4);
  transition: all 0.3s ease;
}

.global-stat:hover {
  border-color: rgba(201, 169, 98, 0.4);
  transform: translateY(-4px);
}

.global-stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: 10px;
}

.global-stat-num span {
  font-size: 0.5em;
  color: var(--gold-600);
}

.global-stat-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-400);
}

.global-map-wrap {
  position: relative;
  padding: 40px;
  border: 1px solid rgba(201, 169, 98, 0.2);
  background: rgba(6, 11, 26, 0.5);
}

.world-map-svg {
  width: 100%;
  height: auto;
  display: block;
}

.map-dot {
  fill: var(--gold-500);
  animation: pulse 2.5s ease-in-out infinite;
}

.map-dot:nth-child(2) { animation-delay: 0.3s; }
.map-dot:nth-child(3) { animation-delay: 0.6s; }
.map-dot:nth-child(4) { animation-delay: 0.9s; }
.map-dot:nth-child(5) { animation-delay: 1.2s; }
.map-dot:nth-child(6) { animation-delay: 1.5s; }

@keyframes pulse {
  0%, 100% { r: 5; opacity: 1; }
  50% { r: 8; opacity: 0.6; }
}

.map-pulse-ring {
  fill: none;
  stroke: var(--gold-500);
  stroke-width: 1;
  opacity: 0;
  animation: pulseRing 2.5s ease-out infinite;
}

@keyframes pulseRing {
  0% { r: 5; opacity: 0.6; }
  100% { r: 18; opacity: 0; }
}

.regions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.region-card {
  padding: 20px;
  border: 1px solid rgba(201, 169, 98, 0.15);
  text-align: center;
  transition: all 0.3s ease;
}

.region-card:hover {
  border-color: rgba(201, 169, 98, 0.4);
  background: rgba(201, 169, 98, 0.04);
}

.region-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink-100);
  margin-bottom: 6px;
}

.region-countries {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--ink-400);
}

/* ==================== CONTACT ==================== */
.contact {
  background: var(--navy-950);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 5vw, 80px);
}

.contact-info-blocks {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 36px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  border: 1px solid rgba(201, 169, 98, 0.15);
  background: rgba(201, 169, 98, 0.02);
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  border-color: rgba(201, 169, 98, 0.35);
  background: rgba(201, 169, 98, 0.05);
}

.contact-info-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--gold-500);
  margin-top: 2px;
}

.contact-info-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 6px;
}

.contact-info-value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink-100);
  line-height: 1.5;
}

.contact-info-value a { transition: color 0.3s ease; }
.contact-info-value a:hover { color: var(--gold-400); }

.contact-form-wrap {
  padding: clamp(32px, 4vw, 48px);
  border: 1px solid rgba(201, 169, 98, 0.2);
  background: var(--navy-900);
  position: relative;
}

.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: -1px; left: 32px;
  width: 80px;
  height: 2px;
  background: var(--gold-500);
}

.contact-form-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--ink-100);
  margin-bottom: 8px;
}

.contact-form-sub {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--ink-400);
  margin-bottom: 32px;
  font-style: italic;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--ink-100);
  background: var(--navy-850);
  border: 1px solid rgba(201, 169, 98, 0.15);
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--gold-500);
  background: var(--navy-800);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 18px 32px;
  margin-top: 10px;
}

.form-success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  background: rgba(74, 157, 120, 0.1);
  border: 1px solid rgba(74, 157, 120, 0.3);
  color: var(--success);
  font-family: var(--font-ui);
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

/* Google Map */
.map-embed-wrap {
  margin-top: 40px;
  border: 1px solid rgba(201, 169, 98, 0.2);
  overflow: hidden;
  position: relative;
}

.map-embed-wrap iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
  filter: grayscale(0.3) contrast(1.05);
}

.map-open-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--navy-900);
  border-top: 1px solid rgba(201, 169, 98, 0.2);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-400);
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
}

.map-open-link:hover {
  color: var(--gold-300);
  background: var(--navy-850);
}

/* ==================== FOOTER ==================== */
.footer {
  background: #04080f;
  border-top: 1px solid rgba(201, 169, 98, 0.15);
  padding-top: 80px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-500) 50%, transparent 100%);
  opacity: 0.4;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(201, 169, 98, 0.12);
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink-100);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.footer-brand-tag {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 20px;
}

.footer-brand-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-400);
  max-width: 340px;
  font-style: italic;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink-100);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px;
  height: 1px;
  background: var(--gold-500);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col li a {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink-400);
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-col li a::before {
  content: '';
  width: 6px;
  height: 1px;
  background: var(--gold-500);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-col li a:hover {
  color: var(--gold-400);
  padding-left: 4px;
}

.footer-col li a:hover::before { opacity: 1; }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--gold-500);
  margin-top: 4px;
}

.footer-contact-text {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-400);
}

.footer-contact-text a { transition: color 0.3s ease; }
.footer-contact-text a:hover { color: var(--gold-400); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-family: var(--font-ui);
  font-size: 12.5px;
  font-weight: 300;
  letter-spacing: 0.5px;
  color: var(--ink-500);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 300;
  color: var(--ink-500);
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover { color: var(--gold-400); }

/* ==================== SCROLL REVEAL ==================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .business-grid { grid-template-columns: repeat(2, 1fr); }
  .why-choose-grid { grid-template-columns: 1fr; }
  .global-stats { grid-template-columns: repeat(2, 1fr); }
  .regions-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-title { font-size: clamp(32px, 9vw, 48px); }
  .hero-stats { gap: 24px; margin-top: 48px; }

  .about-grid { grid-template-columns: 1fr; }
  .about-image-frame { display: none; }
  .mission-vision { grid-template-columns: 1fr; }

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

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  .global-map-wrap { padding: 20px; }
}

@media (max-width: 480px) {
  :root { --nav-h: 72px; }
  .nav-monogram { width: 40px; height: 40px; font-size: 17px; }
  .nav-brand-name { font-size: 14px; }
  .nav-brand-sub { font-size: 9px; letter-spacing: 1.5px; }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }

  .global-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .global-stat { padding: 20px 12px; }
}
