/* ============================================================
   AMR CONSTRUCTIONS — PREMIUM DESIGN SYSTEM
   ============================================================ */

/* Fonts loaded via <link> in HTML — no @import needed here */


/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --navy: #0A1628;
  --navy-mid: #0E2040;
  --navy-light: #152A52;
  --gold: #C9A84C;
  --gold-light: #E4C475;
  --gold-dark: #A07830;
  --cream: #F5F0E8;
  --white: #FFFFFF;
  --grey-100: #F8F8F6;
  --grey-200: #EDEDEA;
  --grey-400: #9A9A94;
  --grey-700: #4A4A44;
  --text-dark: #0A1628;
  --text-body: #3A3A34;

  --font-display: 'Outfit', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 2px 8px rgba(10, 22, 40, .08);
  --shadow-md: 0 8px 32px rgba(10, 22, 40, .14);
  --shadow-lg: 0 20px 60px rgba(10, 22, 40, .20);
  --shadow-gold: 0 8px 32px rgba(201, 168, 76, .30);

  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
}

/* ── Scroll Reveal Base ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

/* Staggered Delays */
.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;
}

/* Global Section Styles moved to their correct location below */



/* ============================================================
   LOADER / SPLASH SCREEN
   ============================================================ */
#loader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, var(--navy-mid) 0%, var(--navy) 100%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

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

.loader-img-box {
  background: var(--white);
  /* Solid, clean rounded white card */
  padding: 20px 60px;
  border-radius: var(--radius-xl);
  margin-bottom: 48px;
  max-width: 540px;
  width: 90%;
  animation:
    logoBloomReveal 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards,
    haloPulse 5s ease-in-out infinite 1.6s;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  /* Clips the shimmer */
  z-index: 1;
  /* For the ::before layering */

  /* Robust Layered Rim (The Glow & Border) */
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(201, 168, 76, 0.1);
}

/* The "Solid Rim" Frame - Decoupled from card background */
.loader-img-box::before {
  content: '';
  position: absolute;
  inset: 0px;
  /* Aligned exactly to the border edge */
  padding: 2.5px;
  /* The thickness of the gold frame */
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}

/* The "Full Sweep" Glass Shimmer */
.loader-img-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) 40%,
      rgba(255, 255, 255, 0.6) 50%,
      rgba(255, 255, 255, 0) 60%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  animation: fullGlassSweep 4s infinite ease-in-out;
  pointer-events: none;
  z-index: 3;
}

.loader-img-box img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.05));
  position: relative;
  z-index: 1;
}

@keyframes logoBloomReveal {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.88);
    filter: blur(12px);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* Fixed "Full Sweep" Shimmer Animation */
@keyframes fullGlassSweep {
  0% {
    left: -150%;
  }

  35%,
  100% {
    left: 150%;
  }

  /* Completes sweep then waits */
}

.loader-bar-wrap {
  width: 540px;
  max-width: 90%;
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
  margin-top: 24px;
  overflow: visible;
  animation: fadeUpIn 1s 0.8s ease forwards;
  opacity: 0;
  position: relative;
}

.loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light));
  box-shadow: 0 0 15px var(--gold);
  animation: loadProgress 2.2s 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes haloPulse {

  0%,
  100% {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(201, 168, 76, 0.1);
  }

  50% {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45), 0 0 60px rgba(201, 168, 76, 0.25);
  }
}

@keyframes statusGlow {

  0%,
  100% {
    opacity: 0.7;
  }

  50% {
    opacity: 1;
    text-shadow: 0 0 8px rgba(201, 168, 76, 0.4);
  }
}

@keyframes loadProgress {
  to {
    width: 100%;
  }
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

/* Scrolled state — solid opaque navy background */
#navbar.scrolled {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 12px 0;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.45), 0 1px 0 rgba(201, 168, 76, .12);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-mark {
  width: 55px;
  background: var(--white);
  /* Removes blue gaps */
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 0px;
  /* Keeps image at approx 48-50px visually */
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* Luxury Metallic Frame for Navbar/Footer Logos */
.nav-logo-mark::before {
  content: '';
  position: absolute;
  inset: 0px;
  padding: 1.5px;
  /* Delicate gold border thickness */
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}

.nav-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.nav-logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.25s ease;
  position: relative;
  padding-bottom: 9px;
}

/* Hover underline */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
  width: 100%;
}

/* ── Active nav link — section in view ─────────────────── */
.nav-links a.nav-active {
  color: var(--gold) !important;
  font-weight: 700;
}

.nav-links a.nav-active::after {
  width: 100% !important;
  background: var(--gold);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy) !important;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: var(--transition) !important;
  letter-spacing: 0.08em !important;
  box-shadow: var(--shadow-gold);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, .45) !important;
}

/* CTA button — always gold, never inherits active/hover link styles */
.nav-cta,
.nav-cta:hover,
.nav-cta:focus,
.nav-cta.nav-active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
}

.nav-cta::after,
.nav-cta.nav-active::after {
  display: none !important;
  width: 0 !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   MOBILE NAV (DRAWER PORTAL)
   ============================================================ */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  z-index: 2000;
  visibility: hidden;
  pointer-events: none;
  transition: background 0.5s ease, backdrop-filter 0.5s ease, visibility 0.5s ease;
}

.mobile-nav.open {
  visibility: visible;
  pointer-events: all;
  background: rgba(10, 22, 40, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.mobile-nav-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  height: 100%;
  background: var(--navy);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
}

.mobile-nav.open .mobile-nav-drawer {
  transform: translateX(0);
}

/* Menu Header */
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  /* Reduced from 60px */
}

.menu-close {
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-close:active {
  transform: scale(0.9);
  background: rgba(255, 255, 255, 0.1);
}

/* Menu Links */
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* Reduced from 24px */
  flex-grow: 1;
}

.mobile-nav-links a {
  font-family: var(--font-display);
  font-size: 1.45rem;
  /* Reduced from 1.7rem */
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(0.05s * var(--i));
  padding: 4px 0;
}

.mobile-nav.open .mobile-nav-links a {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav-links a:active {
  color: var(--gold);
}

.mobile-nav-cta {
  font-size: 1.55rem !important;
  /* Reduced from 1.8rem */
  color: var(--gold) !important;
  margin-top: 8px;
}

/* Menu Footer */
.mobile-nav-footer {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  /* Reduced from 40px */
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* Reduced from 30px */
}

.mobile-contact-info p {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 4px;
}

.mobile-contact-info a {
  font-size: 1.2rem;
  /* Reduced from 1.4rem */
  font-weight: 600;
  color: var(--white);
}

.mobile-socials {
  display: flex;
  gap: 16px;
}

.mobile-socials a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: all 0.3s ease;
}



/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  height: auto;
  padding: 120px 0 80px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s ease, transform 6s ease;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(10, 22, 40, .85) 0%,
      rgba(10, 22, 40, .6) 50%,
      rgba(10, 22, 40, .3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

body.page-loaded .hero-eyebrow {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.05;
  max-width: 700px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

body.page-loaded .hero-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.hero-title .gold-highlight {
  color: var(--gold);
}

.hero-title .line-2 {
  display: block;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
  line-height: 1.8;
  margin-top: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

body.page-loaded .hero-desc {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-top: 44px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

body.page-loaded .hero-actions {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(201, 168, 76, .5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

body.page-loaded .hero-stats {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

/* Staggered items inside the stats bar */
.hero-stat-item {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

body.page-loaded .hero-stat-item.stagger-1 { opacity: 1; transform: translateY(0); transition-delay: 0.6s; }
body.page-loaded .hero-stat-item.stagger-2 { opacity: 1; transform: translateY(0); transition-delay: 0.7s; }
body.page-loaded .hero-stat-item.stagger-3 { opacity: 1; transform: translateY(0); transition-delay: 0.8s; }
body.page-loaded .hero-stat-item.stagger-4 { opacity: 1; transform: translateY(0); transition-delay: 0.9s; }

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeUpIn 1s 1.2s ease forwards;
  opacity: 0;
  cursor: pointer;
}

.scroll-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, .4);
  border-radius: 13px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}

.scroll-text {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, .4);
  text-transform: uppercase;
}

@keyframes scrollWheel {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}

/* Slide dots */
.hero-dots {
  position: absolute;
  right: 40px;
  bottom: 50%;
  transform: translateY(50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 3;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .3);
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ============================================================
   TICKER BAR
   ============================================================ */
.ticker-bar {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  padding: 14px 0;
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: tickerScroll 25s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--navy);
}

.ticker-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--navy);
  opacity: 0.5;
  flex-shrink: 0;
}

@keyframes tickerScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── Global section rhythm ── */
section {
  padding: 70px 0 80px 0px;
}

/* Hero and ticker have no standard padding */
#hero {
  padding: 0;
}

.ticker-bar {
  padding: 14px 0;
}


.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

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

.section-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.15;
}

.section-title.light {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--grey-400);
  line-height: 1.8;
  max-width: 650px;
  margin: 16px auto 0;
  text-align: center;
}

.section-subtitle.light {
  color: rgba(255, 255, 255, 0.65);
}

.divider-gold {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin-top: 20px;
}

/* Reveal animation */
.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;
}

/* Safety fallback: if JS never fires, force reveal after 5s via CSS */
@keyframes forceReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  animation: forceReveal 0s 5s forwards;
}



/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about {
  background: var(--grey-100);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

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

.about-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 560px;
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 160px;
}

.about-badge-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.about-badge-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
}

.about-text .section-eyebrow {
  margin-bottom: 20px;
}

.about-body {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--grey-700);
  margin-top: 20px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  font-size: 1.4rem;
  margin-bottom: 0;
  width: 44px;
  height: 44px;
  background: var(--cream);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.value-content {
  display: flex;
  flex-direction: column;
}

.value-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}

.value-desc {
  font-size: 0.82rem;
  color: var(--grey-700);
  line-height: 1.6;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
#services {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

#services::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, .06) 0%, transparent 70%);
  pointer-events: none;
}

/* Services section header — centered, full-width */
.services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 36px;
}

.services-header .section-eyebrow {
  justify-content: center;
}

.services-header .divider-gold {
  margin: 20px auto 0;
}

.services-header .section-subtitle {
  margin: 24px auto 0;
  text-align: center;
}

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

.service-card {
  border-radius: var(--radius-lg);
  padding: 0;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
  border-color: rgba(201, 168, 76, .5);
}

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

.service-img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.service-img-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.98) 0%, rgba(10, 22, 40, 0.6) 60%, rgba(10, 22, 40, 0.1) 100%);
  z-index: 2;
  transition: background 0.4s ease;
}

.service-card:hover .service-img-wrap::after {
  background: linear-gradient(to top, rgba(10, 22, 40, 0.95) 0%, rgba(10, 22, 40, 0.4) 70%, rgba(10, 22, 40, 0) 100%);
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.08);
}

.service-content {
  position: relative;
  z-index: 3;
  padding: 40px 32px 32px 32px;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.2s ease;
}

.service-link:hover {
  gap: 12px;
}

/* ============================================================
   PROJECTS / PORTFOLIO
   ============================================================ */
#projects {
  background: var(--white);
}

.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  border: 1.5px solid var(--grey-200);
  color: var(--grey-700);
  background: transparent;
  transition: var(--transition-fast);
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

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

.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  group: true;
}

.project-card.featured {
  grid-column: span 2;
}

.project-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}

.project-card.featured .project-img {
  height: 460px;
}

.project-card:hover .project-img {
  transform: scale(1.06);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, .92) 0%, rgba(10, 22, 40, .2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transform: translateY(0);
  transition: var(--transition);
}

.project-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
  align-self: flex-start;
}

.project-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.25;
}

.project-meta {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, .55);
  margin-top: 8px;
}

.project-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition);
}

.project-card:hover .project-arrow {
  opacity: 1;
  transform: scale(1);
}

/* ============================================================
   WHY CHOOSE US — METRICS
   ============================================================ */
#why-us {
  background: var(--navy);
  position: relative;
}

/* Unified header centered at top of why-us */
.why-unified-header {
  text-align: center;
  margin-bottom: 36px;
}

.why-unified-header .section-eyebrow {
  justify-content: center;
}

/* Navy context — override light-background text colors */
#why-us .feature-text h4 {
  color: var(--white);
}

#why-us .feature-text p {
  color: rgba(255, 255, 255, 0.6);
}

#why-us .feature-icon {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Process separator inside why-us */
.why-process-sep {
  text-align: center;
  padding: 52px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 60px;
}

.why-process-sep .section-eyebrow {
  justify-content: center;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Staggered Images Assembly */
.why-images-wrap {
  position: relative;
  padding-bottom: 40px;
  padding-right: 40px;
}

.why-img-main {
  position: relative;
  z-index: 2;
  height: 480px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.why-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-img-sub {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
  width: 60%;
  height: 280px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 8px solid var(--cream);
  box-shadow: var(--shadow-md);
}

.why-img-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-badge-card {
  position: absolute;
  top: 40px;
  left: -24px;
  z-index: 4;
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}

.why-badge-card .badge-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.why-badge-card .badge-text {
  font-size: 0.70rem;
  letter-spacing: 0.1em;
  color: var(--navy);
  font-weight: 700;
  text-transform: uppercase;
}

.metrics-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.metric-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.metric-icon {
  width: 52px;
  height: 52px;
  background: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.metric-label {
  font-size: 0.82rem;
  color: var(--grey-400);
  margin-bottom: 4px;
}

.metric-value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
}

/* Core Pillars / Features */
.why-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-right .section-subtitle {
  margin-bottom: 40px;
}

.why-features-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-feature-item {
  display: flex;
  gap: 20px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.feature-text p {
  font-size: 0.95rem;
  color: var(--grey-700);
  line-height: 1.6;
}

.achievement-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.achievement-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.ach-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1;
}

.ach-label {
  font-size: 0.82rem;
  color: var(--grey-700);
  margin-top: 6px;
  font-weight: 500;
}


/* Process steps are now inside #why-us — no separate band needed */

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 70px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, .3) 20%, rgba(201, 168, 76, .3) 80%, transparent);
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  transition: var(--transition);
  flex-shrink: 0;
}

.process-step:hover .step-number {
  background: var(--gold);
  color: var(--navy);
}

.step-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
  background: var(--white);
}

.testimonials-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.testimonials-track {
  display: flex;
  gap: 28px;
  animation: testimonialsScroll 30s linear infinite;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

.testimonial-card {
  flex-shrink: 0;
  width: 400px;
  background: var(--grey-100);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--grey-200);
  transition: var(--transition);
}

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

.test-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.test-stars span {
  color: var(--gold);
  font-size: 0.9rem;
}

.test-quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.7;
  font-style: italic;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--grey-200);
}

.test-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.test-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
}

.test-role {
  font-size: 0.75rem;
  color: var(--grey-400);
  margin-top: 2px;
}

@keyframes testimonialsScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 14px));
  }
}

/* ============================================================
   TEAM SECTION
   ============================================================ */
#team {
  background: var(--grey-100);
}

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

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.team-photo-wrap {
  aspect-ratio: 4/4;
  overflow: hidden;
  position: relative;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-photo {
  transform: scale(1.05);
}


.team-initials {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.5;
}

.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, .8), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  gap: 12px;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  transition: background 0.2s;
}

.team-social-btn:hover {
  background: var(--gold);
  color: var(--navy);
}

.team-info {
  padding: 24px;
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}

.team-role {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

.team-exp {
  font-size: 0.78rem;
  color: var(--grey-400);
  margin-top: 10px;
}


/* ============================================================
   CTA BANNER
   ============================================================ */
#cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

#cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  max-width: 700px;
  margin: 0 auto 24px;
}

.cta-title .gold {
  color: var(--gold);
}

.cta-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 44px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}


/* ============================================================
   CONTACT SECTION
   ============================================================ */
#contact {
  background: var(--white);
}

/* Contact section header — centered above the grid */
.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.client-logos-block {
  display: flex;
  flex-direction: column;
}

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

.client-logo-box {
  background: var(--white);
  border-radius: var(--radius-sm);
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  font-size: 3rem;
  transition: var(--transition);
  cursor: pointer;
}

.client-logo-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-header .section-eyebrow {
  justify-content: center;
}

.contact-header .divider-gold {
  margin-left: auto;
  margin-right: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 52px;
  height: 52px;
  background: var(--navy);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-info-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.5;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

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

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

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition-fast);
  outline: none;
  resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, .12);
}

.form-group textarea {
  height: 130px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.form-submit:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}


/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
  gap: 40px 56px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  align-items: start;
}

.footer-brand-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, .45);
  line-height: 1.8;
  margin-top: 20px;
  max-width: 280px;
}

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

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .5);
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, .08);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 14px;
  padding-left: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, .45);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '›';
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

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

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

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, .3);
}

.footer-copy span {
  color: var(--gold);
}

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

.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, .3);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--white);
}

/* Back to top */
#back-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 800;
  border: none;
}

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

#back-top:hover {
  transform: translateY(-4px) scale(1.05);
}

/* WhatsApp FAB */
.whatsapp-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 800;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}

.whatsapp-fab:hover {
  transform: translateY(-6px) scale(1.1);
  color: #fff;
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeUpIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .process-steps::before {
    display: none;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  section {
    padding: 70px 0;
  }


  .container {
    padding: 0 24px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-stats {
    gap: 28px;
    flex-wrap: wrap;
  }

  .about-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-badge {
    right: 0;
  }

  .about-img-main {
    height: 360px;
  }

  .services-header {
    grid-template-columns: 1fr;
  }

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

  .projects-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

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

  .project-card.featured {
    grid-column: span 1;
  }

  .project-img,
  .project-card.featured .project-img {
    height: 280px;
  }

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

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

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

  .contact-form {
    padding: 32px 24px;
  }

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

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

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

  .hero-dots {
    display: none;
  }
}

@media (max-width: 600px) {
  /* Subtler appearance on mobile to prevent layout jumps */
  .reveal {
    transform: translateY(20px);
  }

  #hero {
    padding: 100px 0 40px 0;
  }

  .hero-eyebrow {
    display: none;
  }

  section {
    padding: 60px 0;
  }

  .hamburger {
    background: transparent;
    border: none;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-eyebrow {
    font-size: 0.6rem;
    margin-bottom: 12px;
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-top: 12px;
  }

  /* Compact content cards */
  .metric-item {
    gap: 16px;
  }

  .metric-icon {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .metric-value {
    font-size: 1.15rem;
  }

  .achievement-card {
    padding: 16px 20px;
  }

  .ach-num {
    font-size: 2rem;
  }

  .why-images-wrap {
    padding-bottom: 20px;
    padding-right: 20px;
    margin-bottom: 24px;
    margin-left: 20px;
  }

  .why-img-main {
    height: 320px;
  }

  .why-img-sub {
    height: 180px;
  }

  .why-badge-card {
    left: -20px;
    padding: 16px;
  }

  .why-badge-card .badge-num {
    font-size: 1.8rem;
  }

  .service-card {
    padding: 24px 20px;
  }

  .project-img,
  .project-card.featured .project-img {
    height: 240px;
  }

  .project-content {
    padding: 20px;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

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

  .process-steps {
    grid-template-columns: 1fr;
  }

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

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

  .hero-desc {
    font-size: 0.88rem;
    margin-top: 16px;
    line-height: 1.5;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
    margin-top: 36px;
    padding-top: 24px;
  }

  .hero-stat-num {
    font-size: 1.8rem;
  }

  .hero-stat-label {
    font-size: 0.62rem;
    letter-spacing: 0.15em;
  }


  .loader-img-box {
    padding: 20px 32px;
    max-width: 85%;
  }

  .nav-container {
    padding: 0 20px;
  }
}

/* ============================================================
   PRODUCTION THEME & SECTION OVERRIDES
   ============================================================ */

/* White / Navy Blue Alternation */
/* Individual Section BG overrides */
#about {
  background-color: var(--grey-100) !important;
  color: #0A1628 !important;
}

#projects,
#testimonials,
#contact {
  background-color: #FFFFFF !important;
  color: #0A1628 !important;
}

/* Force text inside light white sections to be dark */
#about .section-title,
#about .about-body,
#about .value-title,
#about .value-desc,
#projects .section-title,
#projects .section-eyebrow,
#about .section-eyebrow,
#testimonials .section-eyebrow,
#testimonials .section-title,
#contact .section-eyebrow,
#contact .section-title,
#contact .section-subtitle,
#contact .client-logos-block h3,
#contact h3,
#contact label,
#contact .form-submit {
  color: #0A1628 !important;
}

#projects .filter-tab {
  color: #0A1628;
  border-color: rgba(10, 22, 40, 0.2);
}

#projects .filter-tab:hover,
#projects .filter-tab.active {
  background: #0A1628 !important;
  color: #fff !important;
}

/* Keep project cards inside white section looking good */
#projects .project-title,
#projects .project-tag,
#projects .project-meta,
#projects .project-meta i {
  color: #FFFFFF !important;
  /* inside dark image overlay */
}

/* Testimonials padding & contrast */
#testimonials .testimonial-card {
  background-color: var(--grey-100) !important;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

#testimonials .test-quote,
#testimonials .test-name,
#testimonials .test-role {
  color: #0A1628 !important;
}

#testimonials .test-avatar {
  background: rgba(10, 22, 40, 0.1);
  color: #0A1628;
}

/* Contact form refined production styles */
#contact form,
#contact .contact-form,
#contact input,
#contact select,
#contact textarea {
  background-color: #F8FAFC !important;
  border-color: #E2E8F0 !important;
  color: #0A1628 !important;
}

#contact .form-submit {
  background: #C9A84C !important;
}

#contact .client-logo-box {
  border: 1px solid #E2E8F0;
  background: #FFFFFF;
}

/* Team Section - Force Navy Branding */
#team {
  background-color: #0A1628 !important;
  color: #FFFFFF !important;
}

#team .section-title,
#team .section-subtitle {
  color: #FFFFFF !important;
}

#team .section-eyebrow {
  color: #C9A84C !important;
}

#team .team-card {
  background-color: #0D1C33 !important;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

#team .team-name {
  color: #FFFFFF !important;
}

#team .team-exp {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Standardized Layout Tightening */
.services-header,
.why-unified-header,
.contact-header {
  margin-bottom: 28px !important;
}

.team-grid {
  margin-top: 28px !important;
}