/* ==========================================================================
   FIRST NATION STEEL - MODERN INDUSTRIAL PREMIUM STYLING
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Variables & Design Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand Colors */
  --color-primary: #b74d12;
  --color-primary-hover: #cb5917;
  --color-primary-active: #9c3f0c;
  --color-primary-glow: rgba(183, 77, 18, 0.45);
  --color-ochre-light: #e56c27;
  --color-ochre-dark: #7a2f07;

  /* Neutrals */
  --color-black: #0c0a09;
  --color-charcoal: #181514;
  --color-dark-surface: #1e1a17;
  --color-gray-900: #212121;
  --color-gray-700: #424242;
  --color-gray-500: #757575;
  --color-gray-300: #e0e0e0;
  --color-gray-100: #f5f5f5;
  --color-white: #ffffff;

  /* Typography */
  --font-heading: 'Anton', 'Montserrat', sans-serif;
  --font-subheading: 'Montserrat', sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Montserrat', sans-serif;

  /* Transitions & Shadows */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.16);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.28);
  --shadow-btn-glow: 0 6px 20px rgba(183, 77, 18, 0.4);

  /* Layout */
  --nav-height: 86px;
  --max-content-width: 1440px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-black);
  color: var(--color-white);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

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

ul {
  list-style: none;
}

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

img {
  max-width: 100%;
  display: block;
  user-select: none;
}

/* --------------------------------------------------------------------------
   3. Ambient Particles Canvas (Golden Sunset Embers & Dust)
   -------------------------------------------------------------------------- */
#sparks-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
  opacity: 0.75;
}

/* --------------------------------------------------------------------------
   4. Navbar Header
   -------------------------------------------------------------------------- */
.navbar-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background-color: var(--color-white);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.12);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: all var(--transition-normal);
}

.navbar-header.scrolled {
  height: 76px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.nav-container {
  width: 100%;
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.logo-link:hover {
  transform: scale(1.02);
}

.brand-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}

/* Desktop Navigation List */
.desktop-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-subheading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-gray-900);
  padding: 0.5rem 0.1rem;
  position: relative;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 0;
  height: 2.5px;
  background-color: var(--color-primary);
  border-radius: 2px;
  transition: width var(--transition-normal);
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--color-primary);
}

/* Header CTA & Hamburger */
.nav-cta-wrap {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* Standard Pill Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.75rem 1.65rem;
  border-radius: 9999px;
  font-family: var(--font-subheading);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn-icon {
  font-size: 0.78rem;
  transition: transform var(--transition-fast);
}

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

/* Primary Button (Orange Ochre Fill) */
.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(183, 77, 18, 0.35);
  border: 1.5px solid transparent;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  box-shadow: var(--shadow-btn-glow);
  transform: translateY(-2px);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:active {
  background-color: var(--color-primary-active);
  transform: translateY(0);
}

/* Nav specific CTA */
.btn-nav {
  padding: 0.72rem 1.5rem;
  font-size: 0.82rem;
}

/* Outline Button (Hero Secondary) */
.btn-outline {
  background-color: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
  border: 1.8px solid rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background-color: var(--color-white);
  color: var(--color-charcoal);
  border-color: var(--color-white);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-outline:active {
  transform: translateY(0);
}

/* Hamburger Menu Toggle (Mobile) */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 6px;
  border-radius: 8px;
  background: var(--color-gray-100);
}

.hamburger-btn .bar {
  width: 100%;
  height: 2.5px;
  background-color: var(--color-gray-900);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.hamburger-btn.active .bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger-btn.active .bar:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.active .bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
  position: absolute;
  top: var(--nav-height);
  left: 0;
  width: 100%;
  background-color: var(--color-white);
  padding: 1.5rem 2rem 2.5rem;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateY(-120%);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 999;
}

.mobile-drawer.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  font-family: var(--font-subheading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-gray-900);
  padding: 0.5rem 0;
  display: block;
  border-bottom: 1px solid var(--color-gray-100);
}

.mobile-nav-link.active,
.mobile-nav-link:hover {
  color: var(--color-primary);
  padding-left: 0.5rem;
}

.btn-mobile-quote {
  width: 100%;
  padding: 0.9rem 1.5rem;
}

/* --------------------------------------------------------------------------
   5. Hero Main Section
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  margin-top: var(--nav-height);
  height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  background-color: var(--color-black);
}

/* Background Image Layer */
.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.03);
  transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
  filter: contrast(1.08) brightness(0.95) saturate(1.05);
}

/* Gradient Overlay for Text Legibility and Warm Sunset Tone */
.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(12, 10, 9, 0.35) 0%,
    rgba(12, 10, 9, 0.15) 30%,
    rgba(12, 10, 9, 0.35) 55%,
    rgba(12, 10, 9, 0.65) 80%,
    rgba(12, 10, 9, 0.78) 100%
  );
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero-vignette-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 75% 50%,
    rgba(0, 0, 0, 0) 30%,
    rgba(12, 10, 9, 0.45) 80%,
    rgba(12, 10, 9, 0.75) 100%
  );
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   6. Indigenous Art Dot Motif Overlay
   -------------------------------------------------------------------------- */
.indigenous-art-overlay {
  position: absolute;
  left: -105%;
  top: 50%;
  transform: translateY(-50%);
  width: 540px;
  max-width: 44vw;
  height: auto;
  z-index: 3;
  pointer-events: none;
  opacity: 0.95;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.6));
  animation: subtleFloat 8s ease-in-out infinite alternate;
}

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

.sacred-circle {
  transform-origin: center;
  animation: slowSacredRotate 60s linear infinite;
}

@keyframes slowSacredRotate {
  0% { transform: translate(300px, 180px) rotate(0deg); }
  100% { transform: translate(300px, 180px) rotate(360deg); }
}

@keyframes subtleFloat {
  0% {
    transform: translateY(-50%) translateX(0px) scale(1);
  }
  100% {
    transform: translateY(-52%) translateX(8px) scale(1.015);
  }
}

/* --------------------------------------------------------------------------
   7. Hero Content (Right aligned headline & text)
   -------------------------------------------------------------------------- */
.hero-container {
  position: relative;
  width: 100%;
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 0 4rem;
  z-index: 4;
  display: flex;
  justify-content: flex-end;
}

.hero-content {
  position: relative;
  max-width: 680px;
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Main Impact Headline */
.hero-title {
  font-family: var(--font-heading);
  font-size: 5.2rem;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0.015em;
  color: var(--color-white);
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.85), 0 2px 6px rgba(0, 0, 0, 0.9);
}

.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: heroTextReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-line.line-1 {
  animation-delay: 0.2s;
}

.hero-line.line-2 {
  animation-delay: 0.38s;
}

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

/* Subtitle & Mission Statement */
.hero-description {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.96);
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
  opacity: 0;
  transform: translateY(25px);
  animation: heroDescReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.55s;
}

.desc-line {
  display: block;
}

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

/* Hero Action Buttons */
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroActionsReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.72s;
}

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

.btn-hero {
  padding: 0.95rem 2.2rem;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

/* --------------------------------------------------------------------------
   8. Scroll Indicator
   -------------------------------------------------------------------------- */
.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
  cursor: pointer;
}

.scroll-indicator:hover {
  opacity: 1;
}

.scroll-text {
  font-family: var(--font-subheading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  position: relative;
}

.scroll-wheel {
  width: 4px;
  height: 7px;
  background-color: var(--color-primary);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheelPulse 2s ease-in-out infinite;
}

@keyframes scrollWheelPulse {
  0% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  75% {
    opacity: 0;
    transform: translate(-50%, 12px);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
}

/* --------------------------------------------------------------------------
   8.5. About Us Section
   -------------------------------------------------------------------------- */
.about-section {
  position: relative;
  background-color: var(--color-white);
  color: var(--color-gray-900);
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.about-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
  width: 100%;
}

/* Left Column: Content */
.about-content-col {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 5.5rem 4rem 5.5rem 3rem;
}

.about-text-container {
  max-width: 590px;
  width: 100%;
}

/* Section Tag */
.section-tag-wrap {
  margin-bottom: 1.25rem;
}

.section-tag {
  font-family: var(--font-subheading);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  display: inline-block;
}

/* Main Heading */
.about-heading {
  font-family: var(--font-subheading);
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: #161210;
  margin-bottom: 1.6rem;
}

/* Orange Accent Line */
.about-accent-line {
  width: 52px;
  height: 3.5px;
  background-color: var(--color-primary);
  border-radius: 2px;
  margin-bottom: 2rem;
}

/* Paragraphs */
.about-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  margin-bottom: 2.25rem;
}

.about-p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.68;
  color: #383432;
}

.about-p strong {
  color: #161210;
  font-weight: 700;
}

/* Feature Badges */
.about-features-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1.1rem;
  border-radius: 9999px;
  background-color: #f6f3f0;
  border: 1px solid #e7ded8;
  color: #4a3f39;
  font-family: var(--font-subheading);
  font-size: 0.82rem;
  font-weight: 700;
  transition: all var(--transition-fast);
}

.feature-badge i {
  color: var(--color-primary);
  font-size: 0.92rem;
}

.feature-badge:hover {
  background-color: #ede5df;
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

/* Right Column: Visual & Business Snapshot */
.about-visual-col {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 600px;
  overflow: hidden;
}

.about-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.about-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.06) brightness(0.92);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-visual-col:hover .about-img {
  transform: scale(1.04);
}

.about-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(12, 10, 9, 0.2) 0%,
    rgba(12, 10, 9, 0.4) 100%
  );
  pointer-events: none;
}

/* Business Snapshot Card */
.business-snapshot-card {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 400px;
  background: rgba(14, 11, 10, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(229, 108, 39, 0.3);
  border-radius: 24px;
  padding: 2.5rem 2.2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(183, 77, 18, 0.15);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.business-snapshot-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.7), 0 0 45px rgba(183, 77, 18, 0.25);
  border-color: rgba(229, 108, 39, 0.55);
}

.snapshot-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1.25rem;
  margin-bottom: 1.75rem;
}

.snapshot-title {
  font-family: var(--font-subheading);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-ochre-light);
}

.snapshot-dots {
  display: flex;
  gap: 5px;
}

.snapshot-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-primary);
  opacity: 0.6;
}

.snapshot-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.snapshot-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: transform var(--transition-fast);
}

.snapshot-item:hover {
  transform: translateX(4px);
}

.snapshot-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(183, 77, 18, 0.15);
  border: 1px solid rgba(229, 108, 39, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ochre-light);
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.snapshot-item:hover .snapshot-icon-box {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(183, 77, 18, 0.5);
  transform: scale(1.06);
}

.snapshot-details {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: left;
}

.snapshot-label {
  font-family: var(--font-subheading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-ochre-light);
  text-transform: uppercase;
}

.snapshot-val {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.01em;
}

.snapshot-link {
  color: var(--color-white);
  transition: color var(--transition-fast);
}

.snapshot-link:hover {
  color: var(--color-ochre-light);
  text-decoration: underline;
}

/* Bottom subtle glow accent */
.snapshot-glow-accent {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-ochre-light), transparent);
  border-radius: 2px;
}

/* --------------------------------------------------------------------------
   8.7. What We Do / Core Capabilities Section
   -------------------------------------------------------------------------- */
.what-we-do-section {
  position: relative;
  background: radial-gradient(circle at 85% 50%, #1e1815 0%, #120f0e 60%, #0b0908 100%);
  color: var(--color-white);
  padding: 6rem 2rem;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Background Indigenous Dot Art Texture */
.capabilities-bg-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: 
    radial-gradient(circle, rgba(229, 108, 39, 0.07) 1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 32px 32px, 16px 16px;
  background-position: 0 0, 16px 16px;
  opacity: 0.65;
  pointer-events: none;
}

.capabilities-container {
  max-width: var(--max-content-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Section Header (Centered) */
.section-header-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 4.5rem;
}

.section-title-white {
  font-family: var(--font-subheading);
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--color-white);
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
}

.title-accent-line {
  width: 46px;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 2px;
}

/* Capabilities Horizontal Strip (7 items) */
.capabilities-strip {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  width: 100%;
  align-items: stretch;
}

.cap-column-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
  transition: transform var(--transition-normal);
  cursor: pointer;
}

/* Vertical divider lines between items (matching design) */
.cap-column-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.cap-column-item:hover {
  transform: translateY(-8px);
}

/* Icon Wrapper */
.cap-icon-svg-wrap {
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all var(--transition-fast);
  position: relative;
}

.cap-svg {
  width: 58px;
  height: 58px;
  transition: all var(--transition-normal);
  filter: drop-shadow(0 2px 8px rgba(229, 108, 39, 0.2));
}

.cap-column-item:hover .cap-svg {
  transform: scale(1.12);
  filter: drop-shadow(0 0 14px rgba(229, 108, 39, 0.7));
}

.cap-column-item:hover .cap-svg path,
.cap-column-item:hover .cap-svg rect,
.cap-column-item:hover .cap-svg circle,
.cap-column-item:hover .cap-svg polygon,
.cap-column-item:hover .cap-svg line {
  stroke: #ff7e33;
}

/* Item Title */
.cap-item-title {
  font-family: var(--font-subheading);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-white);
  letter-spacing: 0.01em;
  transition: color var(--transition-fast);
}

.cap-column-item:hover .cap-item-title {
  color: var(--color-ochre-light);
}

/* --------------------------------------------------------------------------
   8.8. Why Partner With Us Section
   -------------------------------------------------------------------------- */
.why-partner-section {
  position: relative;
  background-color: #faf8f5;
  color: var(--color-gray-900);
  padding: 6.5rem 2rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.why-partner-container {
  max-width: var(--max-content-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-title-dark {
  font-family: var(--font-subheading);
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #161210;
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
}

/* 4 Procurement Cards Grid */
.procurement-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.procurement-card {
  background: var(--color-white);
  border: 1px solid #ede5df;
  border-radius: 20px;
  padding: 3.5rem 1.85rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all var(--transition-normal);
  cursor: default;
}

.procurement-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(183, 77, 18, 0.12), 0 8px 16px rgba(0, 0, 0, 0.04);
  border-color: rgba(229, 108, 39, 0.45);
}

/* Floating Circular Badge Icon */
.card-circle-icon {
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary-hover) 0%, var(--color-primary) 100%);
  border: 4px solid var(--color-white);
  box-shadow: 0 6px 18px rgba(183, 77, 18, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.65rem;
  transition: all var(--transition-normal);
}

.procurement-card:hover .card-circle-icon {
  transform: translateX(-50%) scale(1.1) rotate(5deg);
  box-shadow: 0 10px 24px rgba(183, 77, 18, 0.5);
  background: linear-gradient(135deg, #e56c27 0%, var(--color-primary-hover) 100%);
}

.card-text-content {
  margin-top: 0.5rem;
}

.procurement-card-text {
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.58;
  color: #4a4542;
}

.procurement-card-text strong {
  color: #181412;
  font-weight: 700;
}

/* Stagger delay for Why Partner cards */
.procurement-cards-grid .animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.procurement-cards-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.22s; }
.procurement-cards-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.34s; }
.procurement-cards-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.46s; }

/* --------------------------------------------------------------------------
   8.9. Markets Served Section
   -------------------------------------------------------------------------- */
.markets-served-section {
  position: relative;
  background: #110e0d;
  background: radial-gradient(circle at 50% 30%, #1e1917 0%, #110e0d 70%, #0a0807 100%);
  color: var(--color-white);
  padding: 6.5rem 2rem 7rem;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.markets-container {
  max-width: var(--max-content-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* 6 Markets Grid */
.markets-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.market-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: transform var(--transition-normal);
}

.market-card:hover {
  transform: translateY(-8px);
}

/* Image Wrapper with Rounded Corners */
.market-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: visible;
  margin-bottom: 2.2rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

.market-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter var(--transition-fast);
  filter: brightness(0.92) contrast(1.05);
}

.market-card:hover .market-img {
  transform: scale(1.05);
  filter: brightness(1) contrast(1.08);
}

.market-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 8, 7, 0.6) 100%);
  pointer-events: none;
}

/* Overlapping Circular Badge Icon */
.market-circle-icon {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d25d1c 0%, #b74d12 100%);
  border: 3.5px solid #14100e;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5), 0 0 16px rgba(183, 77, 18, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.2rem;
  z-index: 5;
  transition: all var(--transition-fast);
}

.market-card:hover .market-circle-icon {
  transform: translateX(-50%) scale(1.12);
  background: linear-gradient(135deg, #e86c25 0%, #c85316 100%);
  box-shadow: 0 6px 20px rgba(229, 108, 39, 0.65);
}

/* Market Title */
.market-title {
  font-family: var(--font-subheading);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-white);
  letter-spacing: 0.01em;
  transition: color var(--transition-fast);
}

.market-card:hover .market-title {
  color: var(--color-ochre-light);
}

/* Stagger delays for 6 markets cards */
.markets-grid .animate-on-scroll:nth-child(1) { transition-delay: 0.08s; }
.markets-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.16s; }
.markets-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.24s; }
.markets-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.32s; }
.markets-grid .animate-on-scroll:nth-child(5) { transition-delay: 0.40s; }
.markets-grid .animate-on-scroll:nth-child(6) { transition-delay: 0.48s; }

/* --------------------------------------------------------------------------
   8.92. Our Projects Section
   -------------------------------------------------------------------------- */
.projects-section {
  position: relative;
  background-color: #ffffff;
  color: var(--color-gray-900);
  padding: 6.5rem 2rem 7rem;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.projects-container {
  max-width: var(--max-content-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* 6 Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 3.5rem;
}

.project-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: transform var(--transition-normal);
}

.project-card:hover {
  transform: translateY(-8px);
}

/* Image Wrapper with Rounded Corners */
.project-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.15rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid #eae2dc;
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter var(--transition-fast);
  filter: brightness(0.96) contrast(1.04);
}

.project-card:hover .project-img {
  transform: scale(1.08);
  filter: brightness(1) contrast(1.08);
}

.project-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 10, 8, 0.4);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition-normal);
  border-radius: 16px;
}

.project-card:hover .project-img-overlay {
  opacity: 1;
}

.project-badge {
  font-family: var(--font-subheading);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-primary);
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transform: translateY(10px);
  transition: transform var(--transition-normal);
}

.project-card:hover .project-badge {
  transform: translateY(0);
}

/* Project Text Info */
.project-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 100%;
}

.project-title {
  font-family: var(--font-subheading);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
  color: #1a1614;
  transition: color var(--transition-fast);
}

.project-card:hover .project-title {
  color: var(--color-primary);
}

.project-location {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: #6e655f;
}

/* Bottom Action Center */
.projects-action-center {
  display: flex;
  justify-content: center;
}

.btn-projects-cta {
  padding: 0.95rem 2.8rem;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

/* Stagger delays for 6 project cards */
.projects-grid .animate-on-scroll:nth-child(1) { transition-delay: 0.08s; }
.projects-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.16s; }
.projects-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.24s; }
.projects-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.32s; }
.projects-grid .animate-on-scroll:nth-child(5) { transition-delay: 0.40s; }
.projects-grid .animate-on-scroll:nth-child(6) { transition-delay: 0.48s; }

/* --------------------------------------------------------------------------
   8.95. Testimonials Section
   -------------------------------------------------------------------------- */
.testimonials-section {
  position: relative;
  background-color: #0e0b0a;
  background: radial-gradient(circle at 80% 50%, #1c1715 0%, #0e0b0a 70%, #080605 100%);
  color: var(--color-white);
  padding: 6.5rem 2rem 6.5rem;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonials-container {
  max-width: var(--max-content-width);
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

/* Right Indigenous Motif */
.testimonials-motif-overlay {
  position: absolute;
  right: -2%;
  bottom: -5%;
  width: 380px;
  height: 380px;
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
}

.testimonials-svg {
  width: 100%;
  height: 100%;
  animation: subtleFloat 10s ease-in-out infinite alternate;
}

/* 3 Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.testimonial-card {
  background: rgba(24, 19, 18, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  padding: 2.75rem 2.2rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
  transition: all var(--transition-normal);
  position: relative;
  min-height: 280px;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(229, 108, 39, 0.45);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.6), 0 0 25px rgba(183, 77, 18, 0.18);
  background: rgba(30, 24, 22, 0.95);
}

/* Quote Icon */
.quote-mark-icon {
  font-size: 2.2rem;
  line-height: 1;
  color: var(--color-ochre-light);
  margin-bottom: 1.25rem;
  opacity: 0.95;
  transition: transform var(--transition-fast);
}

.testimonial-card:hover .quote-mark-icon {
  transform: scale(1.1);
  color: #ff853c;
}

/* Testimonial Quote Text */
.testimonial-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  flex-grow: 1;
}

/* Author info */
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
}

.author-name {
  font-family: var(--font-subheading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.01em;
}

.author-role {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-ochre-light);
}

/* Pagination Dots */
.testimonials-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 2.75rem;
}

.testimonials-pagination .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.testimonials-pagination .dot.active,
.testimonials-pagination .dot:hover {
  width: 24px;
  border-radius: 6px;
  background: var(--color-primary);
  box-shadow: 0 0 10px rgba(183, 77, 18, 0.6);
}

/* Stagger delays */
.testimonials-grid .animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.testimonials-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.25s; }
.testimonials-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.4s; }

/* --------------------------------------------------------------------------
   8.10. Contact Us / Get In Touch Section
   -------------------------------------------------------------------------- */
.contact-section {
  position: relative;
  background-color: var(--color-white);
  color: var(--color-gray-900);
  padding: 6.5rem 2rem 7rem;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-container {
  max-width: var(--max-content-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-grid {
  display: grid;
  grid-template-columns: 340px 1fr 240px;
  align-items: center;
  gap: 3.5rem;
}

/* Left Column: Info */
.contact-info-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-heading {
  font-family: var(--font-subheading);
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1.2;
  color: #161210;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  color: #2b2523;
  transition: transform var(--transition-fast);
}

a.contact-detail-item:hover {
  transform: translateX(5px);
}

a.contact-detail-item:hover .contact-detail-text {
  color: var(--color-primary);
}

.contact-circle-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #b74d12;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.05rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(183, 77, 18, 0.25);
  transition: all var(--transition-fast);
}

.contact-detail-item:hover .contact-circle-icon {
  background: var(--color-primary-hover);
  transform: scale(1.08);
}

.contact-detail-text {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 600;
  color: #2b2523;
  transition: color var(--transition-fast);
}

/* Center Column: Form Card */
.contact-form-col {
  width: 100%;
}

.contact-form-card {
  background: var(--color-white);
  border: 1.5px solid #eae2dc;
  border-radius: 20px;
  padding: 2.5rem 2.2rem 2.75rem;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.05);
}

.main-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.input-field-wrap input,
.input-field-wrap textarea {
  width: 100%;
  background: #ffffff;
  border: 1.4px solid #ded6cf;
  border-radius: 12px;
  padding: 0.95rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #1a1614;
  transition: all var(--transition-fast);
}

/* Date and Time Custom Field Styles */
.datetime-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field-mini-label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-subheading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6e655f;
  margin-left: 0.25rem;
}

.field-icon-accent {
  color: var(--color-primary);
  font-size: 0.88rem;
}

.datetime-field input[type="date"],
.datetime-field input[type="time"] {
  cursor: pointer;
  color: #2b2523;
  padding: 0.82rem 1.1rem;
}

.datetime-field input[type="date"]::-webkit-calendar-picker-indicator,
.datetime-field input[type="time"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: invert(0.35) sepia(1) saturate(5) hue-rotate(345deg);
  opacity: 0.85;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.datetime-field input[type="date"]::-webkit-calendar-picker-indicator:hover,
.datetime-field input[type="time"]::-webkit-calendar-picker-indicator:hover {
  transform: scale(1.15);
  opacity: 1;
}

/* Slot Availability Status */
.slot-status-msg {
  padding: 0.65rem 1rem;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-normal);
  animation: fadeIn 0.3s ease;
}

.slot-status-msg.error {
  background: #fdf2f2;
  border: 1.5px solid #f98080;
  color: #c81e1e;
}

.slot-status-msg.success {
  background: #f3faf7;
  border: 1.5px solid #31c48d;
  color: #0e9f6e;
}

.input-field-wrap.input-error input {
  border-color: #e02424 !important;
  background-color: #fff8f8 !important;
  box-shadow: 0 0 0 3px rgba(224, 36, 36, 0.15) !important;
}

.input-field-wrap input::placeholder,
.input-field-wrap textarea::placeholder {
  color: #9e948e;
}

.input-field-wrap input:focus,
.input-field-wrap textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(183, 77, 18, 0.15);
  background: #fffdfc;
}

.input-field-wrap textarea {
  resize: vertical;
}

.form-submit-wrap {
  display: flex;
  justify-content: center;
  margin-top: 0.75rem;
}

.btn-contact-submit {
  padding: 0.95rem 2.8rem;
  font-size: 0.95rem;
}

/* Right Column: Artwork Motif */
.contact-motif-col {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  filter: drop-shadow(0 4px 12px rgba(183, 77, 18, 0.15));
}

.contact-indigenous-svg {
  width: 220px;
  height: 220px;
  animation: subtleFloat 9s ease-in-out infinite alternate;
}

/* --------------------------------------------------------------------------
   8.11. Footer Section
   -------------------------------------------------------------------------- */
.site-footer {
  position: relative;
  background-color: #0c0a09;
  color: var(--color-white);
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-main {
  padding: 5.5rem 2rem 4.5rem;
}

.footer-container {
  max-width: var(--max-content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
  gap: 3rem;
  position: relative;
}

.footer-col {
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Subtle vertical divider lines between footer columns */
.footer-col:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1.5rem;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

/* Col 1: Brand */
.footer-logo-link {
  display: inline-block;
  margin-bottom: 1.75rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 16px;
  border-radius: 12px;
  width: fit-content;
  transition: transform var(--transition-fast);
}

.footer-logo-link:hover {
  transform: scale(1.03);
}

.footer-brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.footer-bio-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.78);
  max-width: 320px;
}

/* Headings */
.footer-heading {
  font-family: var(--font-subheading);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

/* Links List */
.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-list li a {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
}

.footer-links-list li a:hover {
  color: var(--color-ochre-light);
  transform: translateX(4px);
}

/* Contact List */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  margin-bottom: 1.5rem;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact-list li i {
  color: var(--color-primary);
  font-size: 1rem;
  width: 18px;
  text-align: center;
}

.footer-contact-list li a {
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition-fast);
}

.footer-contact-list li a:hover {
  color: var(--color-ochre-light);
  text-decoration: underline;
}

/* Social Icons */
.footer-social-icons {
  display: flex;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-primary);
  color: var(--color-ochre-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.social-icon-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 4px 12px rgba(183, 77, 18, 0.4);
}

/* Bottom Sub-Footer Bar */
.footer-bottom-bar {
  background-color: #8c350a;
  background: linear-gradient(90deg, #7a2d07 0%, #94390b 50%, #7a2d07 100%);
  color: var(--color-white);
  padding: 1.25rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-container {
  max-width: var(--max-content-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.footer-copy {
  opacity: 0.92;
}

.footer-tagline {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.footer-supply-nation {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.supply-nation-logo-svg {
  width: 22px;
  height: 22px;
}

/* --------------------------------------------------------------------------
   8.12. Scroll Animation Utilities
   -------------------------------------------------------------------------- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.about-text-container .animate-on-scroll:nth-child(1) { transition-delay: 0.05s; }
.about-text-container .animate-on-scroll:nth-child(2) { transition-delay: 0.15s; }
.about-text-container .animate-on-scroll:nth-child(3) { transition-delay: 0.25s; }
.about-paragraphs .animate-on-scroll:nth-child(1) { transition-delay: 0.35s; }
.about-paragraphs .animate-on-scroll:nth-child(2) { transition-delay: 0.45s; }
.about-paragraphs .animate-on-scroll:nth-child(3) { transition-delay: 0.55s; }
.about-features-row.animate-on-scroll { transition-delay: 0.65s; }
.about-visual-col.animate-on-scroll { transition-delay: 0.25s; }

/* --------------------------------------------------------------------------
   9. Modals (Interactive Quote & Capabilities)
   -------------------------------------------------------------------------- */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(8, 6, 5, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #171412;
  border: 1px solid rgba(229, 108, 39, 0.25);
  border-radius: 20px;
  padding: 2.75rem 2.5rem;
  max-width: 640px;
  width: 100%;
  box-shadow: var(--shadow-lg), 0 0 50px rgba(183, 77, 18, 0.15);
  position: relative;
  transform: scale(0.92) translateY(20px);
  transition: all var(--transition-normal);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-card-wide {
  max-width: 820px;
}

.modal-backdrop.active .modal-card {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 2rem;
  line-height: 1;
  color: var(--color-gray-500);
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.modal-close-btn:hover {
  color: var(--color-white);
  transform: rotate(90deg);
}

.modal-badge {
  display: inline-block;
  font-family: var(--font-subheading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-ochre-light);
  background: rgba(229, 108, 39, 0.12);
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  border: 1px solid rgba(229, 108, 39, 0.3);
  margin-bottom: 0.75rem;
}

.modal-title {
  font-family: var(--font-subheading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.modal-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.75rem;
  line-height: 1.5;
}

/* Quote Form */
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

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

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #231f1c;
  border: 1.2px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  color: var(--color-white);
  font-family: inherit;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-ochre-light);
  box-shadow: 0 0 0 3px rgba(229, 108, 39, 0.2);
  background: #2b2622;
}

.btn-submit {
  margin-top: 0.75rem;
  padding: 1rem 1.75rem;
  font-size: 0.95rem;
}

/* Capabilities Grid */
.capabilities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.cap-item {
  background: #231f1c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.5rem;
  transition: all var(--transition-fast);
  text-align: left;
}

.cap-item:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 108, 39, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.cap-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(183, 77, 18, 0.2);
  color: var(--color-ochre-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 0.9rem;
}

.cap-item h3 {
  font-family: var(--font-subheading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.4rem;
}

.cap-item p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.modal-footer-action {
  text-align: center;
}

/* --------------------------------------------------------------------------
   10. Toast Notification System
   -------------------------------------------------------------------------- */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast-msg {
  background: #211c19;
  border: 1px solid var(--color-primary);
  border-left: 5px solid var(--color-ochre-light);
  color: var(--color-white);
  padding: 1rem 1.4rem;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  transform: translateX(120%);
  transition: transform var(--transition-normal);
  pointer-events: auto;
}

.toast-msg.show {
  transform: translateX(0);
}

/* --------------------------------------------------------------------------
   11. Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 4.2rem;
  }
  
  .hero-content {
    max-width: 580px;
  }

  .nav-list {
    gap: 1.25rem;
  }
  
  .nav-link {
    font-size: 0.82rem;
  }

  .indigenous-art-overlay {
    width: 440px;
    left: 2%;
  }
}

@media (max-width: 992px) {
  .desktop-nav {
    display: none;
  }

  #nav-quote-btn {
    display: none;
  }

  .hamburger-btn {
    display: flex;
    background: transparent;
    border: none;
  }

  /* Compact Hero Section Mobile/Tablet Layout */
  .hero-section {
    min-height: auto;
    height: calc(100svh - var(--nav-height));
    max-height: 850px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 1.85rem;
    padding-top: 0.5rem;
  }

  .hero-bg-img {
    object-position: center 15%;
    transform: scale(1.02);
  }

  .hero-gradient-overlay {
    background: linear-gradient(
      180deg,
      rgba(12, 10, 9, 0.05) 0%,
      rgba(12, 10, 9, 0.15) 20%,
      rgba(12, 10, 9, 0.62) 42%,
      rgba(12, 10, 9, 0.94) 62%,
      rgba(12, 10, 9, 0.98) 100%
    );
  }

  .hero-vignette-overlay {
    background: radial-gradient(
      circle at 50% 25%,
      rgba(0, 0, 0, 0) 20%,
      rgba(12, 10, 9, 0.5) 70%,
      rgba(12, 10, 9, 0.92) 100%
    );
  }

  .hero-container {
    padding: 0 1.25rem;
    justify-content: center;
    width: 100%;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .indigenous-art-overlay {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 240px;
    max-width: 80vw;
    margin: 0 auto 0.75rem;
    opacity: 1;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.8));
    animation: subtleFloat 8s ease-in-out infinite alternate;
  }

  .hero-title {
    font-size: 2.65rem;
    line-height: 1.04;
    text-align: center;
    margin-bottom: 0.65rem;
  }

  .hero-description {
    font-size: 0.92rem;
    line-height: 1.45;
    text-align: center;
    margin-bottom: 1.35rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 340px;
  }

  .hero-actions {
    width: 100%;
    max-width: 340px;
    flex-direction: column;
    gap: 0.65rem;
    align-items: stretch;
    margin: 0 auto;
  }

  .btn-hero {
    width: 100%;
    padding: 0.82rem 1.4rem;
    border-radius: 9999px;
    justify-content: center;
    font-size: 0.88rem;
    font-weight: 800;
  }

  .btn-outline.btn-hero {
    background: #000000;
    border: 1.6px solid #ffffff;
    color: #ffffff;
  }

  .btn-outline.btn-hero:hover {
    background: #ffffff;
    color: #000000;
  }

  /* About section responsive stacking */
  .about-grid-wrapper {
    grid-template-columns: 1fr;
  }

  .about-content-col {
    padding: 4.5rem 2.5rem 3rem;
    justify-content: center;
  }

  .about-text-container {
    max-width: 100%;
  }

  .about-visual-col {
    min-height: 520px;
  }

  .business-snapshot-card {
    max-width: 440px;
  }

  /* What we do responsive grid */
  .capabilities-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1rem;
  }

  .cap-column-item::after {
    display: none !important;
  }

  .cap-column-item {
    padding: 1rem 0.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
  }

  /* Why partner with us responsive grid */
  .procurement-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem 1.5rem;
  }

  /* Markets served tablet grid */
  .markets-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 1.5rem;
  }

  /* Contact section tablet stacking */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-info-col {
    align-items: center;
    text-align: center;
  }

  .contact-details-list {
    align-items: center;
  }

  .contact-motif-col {
    display: none;
  }

  /* Footer tablet layout */
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }

  .footer-col::after {
    display: none !important;
  }

  /* Projects tablet grid */
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1.25rem;
    margin-bottom: 2.5rem;
  }

  /* Testimonials tablet */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .testimonials-motif-overlay {
    opacity: 0.25;
    right: -20%;
  }

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

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

@media (max-width: 640px) {
  :root {
    --nav-height: 68px;
  }

  .nav-container {
    padding: 0 1rem;
  }

  .brand-logo {
    height: 38px;
  }

  .hero-section {
    min-height: auto;
    height: calc(100svh - var(--nav-height));
    max-height: 760px;
    padding-bottom: 1.5rem;
    padding-top: 0.25rem;
  }

  .hero-bg-img {
    object-position: center 12%;
  }

  .hero-container {
    padding: 0 1rem;
  }

  .indigenous-art-overlay {
    width: 200px;
    max-width: 78vw;
    margin: 0 auto 0.5rem;
  }

  .hero-title {
    font-size: 2.35rem;
    line-height: 1.05;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.95), 0 2px 4px rgba(0, 0, 0, 1);
  }

  .hero-description {
    font-size: 0.86rem;
    line-height: 1.4;
    margin-bottom: 1.15rem;
    max-width: 290px;
  }

  .hero-actions {
    width: 100%;
    max-width: 320px;
    flex-direction: column;
    gap: 0.55rem;
  }

  .btn-hero {
    width: 100%;
    padding: 0.72rem 1.25rem;
    font-size: 0.84rem;
  }

  /* About section mobile */
  .about-content-col {
    padding: 3.5rem 1.5rem 2.5rem;
  }

  .about-heading {
    font-size: 2.2rem;
  }

  .about-p {
    font-size: 0.98rem;
  }

  .about-image-wrap {
    padding: 1.5rem;
  }

  .business-snapshot-card {
    padding: 2rem 1.4rem;
    border-radius: 18px;
  }

  .snapshot-title {
    font-size: 1.05rem;
  }

  .snapshot-val {
    font-size: 0.96rem;
  }

  /* What we do mobile */
  .what-we-do-section {
    padding: 4rem 1.25rem;
  }

  .section-title-white {
    font-size: 2.1rem;
  }

  .capabilities-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 0.75rem;
  }

  .cap-icon-svg-wrap {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }

  .cap-svg {
    width: 46px;
    height: 46px;
  }

  .cap-item-title {
    font-size: 0.85rem;
  }

  /* Why partner mobile */
  .why-partner-section {
    padding: 4.5rem 1.25rem;
  }

  .section-title-dark {
    font-size: 2.1rem;
  }

  .procurement-cards-grid {
    grid-template-columns: 1fr;
    gap: 3.25rem;
  }

  .procurement-card {
    padding: 3.25rem 1.5rem 2rem;
  }

  /* Markets served mobile */
  .markets-served-section {
    padding: 4.5rem 1.25rem 5rem;
  }

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

  .market-title {
    font-size: 0.92rem;
  }

  .market-circle-icon {
    width: 42px;
    height: 42px;
    font-size: 1rem;
    bottom: -18px;
  }

  /* Contact section mobile */
  .contact-section {
    padding: 4.5rem 1.25rem;
  }

  .contact-heading {
    font-size: 1.95rem;
  }

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

  .contact-form-card {
    padding: 1.75rem 1.25rem 2rem;
    border-radius: 16px;
  }

  .btn-contact-submit {
    width: 100%;
  }

  /* Footer mobile layout */
  .footer-main {
    padding: 4rem 1.25rem 3rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: left;
  }

  .footer-bottom-container {
    flex-direction: column;
    gap: 0.85rem;
    text-align: center;
  }

  /* Projects mobile */
  .projects-section {
    padding: 4.5rem 1.25rem;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem 1rem;
    margin-bottom: 2.25rem;
  }

  .project-title {
    font-size: 0.92rem;
  }

  .project-location {
    font-size: 0.8rem;
  }

  .btn-projects-cta {
    width: 100%;
  }

  /* Testimonials mobile */
  .testimonials-section {
    padding: 4.5rem 1.25rem;
  }

  .testimonial-card {
    padding: 2rem 1.4rem 1.75rem;
    border-radius: 18px;
  }

  .testimonial-text {
    font-size: 0.96rem;
  }

  .modal-card {
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }

  .modal-title {
    font-size: 1.5rem;
  }

  .scroll-indicator {
    display: none;
  }
}
