/* ============================================================
   DIKULI TRADE AND PROJECTS — Main Stylesheet
   dikulitradeprojects.co.za
   ============================================================ */

/* ── Google Fonts imported in HTML ── */

/* ── CSS Custom Properties ── */
:root {
  --navy:       #0B1F35;
  --navy-mid:   #122B48;
  --blue:       #1A5C9A;
  --blue-light: #2A7BC8;
  --gold:       #D4920A;
  --gold-light: #F0AC1A;
  --white:      #FFFFFF;
  --off-white:  #F5F7FA;
  --grey-100:   #EEF1F5;
  --grey-300:   #C2CAD6;
  --grey-500:   #7A8898;
  --grey-700:   #3E4F62;
  --text:       #12243A;

  --font-display: 'Bebas Neue', sans-serif;
  --font-ui:      'Barlow', sans-serif;
  --font-body:    'Source Sans 3', sans-serif;

  --shadow-sm:  0 2px 8px rgba(11,31,53,0.08);
  --shadow-md:  0 6px 24px rgba(11,31,53,0.13);
  --shadow-lg:  0 16px 48px rgba(11,31,53,0.18);

  --radius:     6px;
  --radius-lg:  14px;
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);

  --max-w: 1180px;
}

/* ── Reset ── */
*, *::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);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 { line-height: 1.15; }
h1 { font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 5.2rem); letter-spacing: 0.03em; }
h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: 0.04em; }
h3 { font-family: var(--font-ui); font-weight: 700; font-size: clamp(1.1rem, 2vw, 1.35rem); }
h4 { font-family: var(--font-ui); font-weight: 600; font-size: 1rem; }
p  { font-size: 1.05rem; color: var(--grey-700); }

/* ── Utilities ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 6rem 0; }
.section--dark { background: var(--navy); }
.section--grey { background: var(--off-white); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-header { margin-bottom: 3.5rem; }
.section-header h2 { color: var(--navy); }
.section-header h2.light { color: var(--white); }
.section-header p { margin-top: 0.85rem; max-width: 560px; font-size: 1.1rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212,146,10,0.35);
}
.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ── Divider accent ── */
.gold-bar {
  width: 52px;
  height: 4px;
  background: var(--gold);
  margin: 1rem 0 1.5rem;
  border-radius: 2px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.navbar-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.nav-logo span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 1rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--navy);
  padding: 1.5rem;
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-direction: column;
  gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--gold); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(11,31,53,0.92) 0%,
    rgba(26,92,154,0.55) 60%,
    rgba(11,31,53,0.40) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding-top: 72px;
}
.hero-content h1 { color: var(--white); margin-bottom: 0.5rem; }
.hero-content h1 span { color: var(--gold); }
.hero-tagline {
  font-family: var(--font-ui);
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.2rem;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  padding: 0.45rem 0.9rem;
  border-radius: 50px;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
.hero-badge i { color: var(--gold); font-size: 0.85rem; }

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  padding: 9rem 1.5rem 5rem;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,31,53,0.93) 0%, rgba(26,92,154,0.6) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
}
.page-hero-content h1 { color: var(--white); font-size: clamp(2.5rem, 5vw, 4rem); }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--gold-light); }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--gold);
  padding: 2rem 1.5rem;
}
.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat-item {
  text-align: center;
  padding: 0.75rem 1rem;
  border-right: 1px solid rgba(11,31,53,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--navy);
  line-height: 1;
  display: block;
}
.stat-label {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-mid);
  margin-top: 0.35rem;
}

/* ============================================================
   ABOUT SNIPPET (homepage)
   ============================================================ */
.about-snippet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-snippet-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-snippet-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-snippet-img:hover img { transform: scale(1.04); }
.about-snippet-img::before {
  content: '';
  position: absolute;
  bottom: -16px; left: -16px;
  width: 120px; height: 120px;
  background: var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}
.about-snippet-img::after {
  content: '';
  position: absolute;
  top: -16px; right: -16px;
  width: 80px; height: 80px;
  border: 3px solid var(--blue-light);
  border-radius: var(--radius);
  z-index: -1;
}
.reg-badge {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1.2rem;
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-left: 3px solid var(--gold);
}
.reg-badge span { display: block; color: var(--gold); font-size: 0.68rem; }

/* ============================================================
   SERVICES GRID (homepage)
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--grey-100);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  height: 180px;
  overflow: hidden;
  position: relative;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-body {
  padding: 1.4rem;
}
.service-icon {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.85rem;
  margin-top: -2.2rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(212,146,10,0.3);
}
.service-icon i { color: var(--navy); font-size: 1.1rem; }
.service-card h3 { color: var(--navy); margin-bottom: 0.4rem; }
.service-card p { font-size: 0.9rem; }

/* Full service page cards */
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.service-full-card {
  display: flex;
  gap: 1.5rem;
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-100);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.service-full-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-full-icon {
  flex-shrink: 0;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.service-full-icon i { color: var(--gold); font-size: 1.4rem; }
.service-full-text h3 { color: var(--navy); margin-bottom: 0.5rem; }
.service-full-text ul {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.service-full-text ul li {
  font-size: 0.9rem;
  color: var(--grey-700);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.service-full-text ul li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.5rem;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}
.why-icon {
  width: 56px; height: 56px;
  background: var(--gold);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
}
.why-icon i { font-size: 1.4rem; color: var(--navy); }
.why-card h3 { color: var(--white); margin-bottom: 0.5rem; }
.why-card p { color: rgba(255,255,255,0.65); font-size: 0.92rem; }

/* ============================================================
   PROJECTS / CARDS
   ============================================================ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.project-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-100);
  transition: all var(--transition);
}
.project-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.project-card-header {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}
.project-card-header::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.project-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(255,255,255,0.1);
  position: absolute;
  bottom: -0.5rem; right: 1rem;
  line-height: 1;
}
.project-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}
.project-card-header h3 { color: var(--white); font-size: 1.05rem; }
.project-card-body { padding: 1.25rem 1.5rem; }
.project-client {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}
.project-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--navy);
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.project-value small {
  font-size: 0.9rem;
  font-family: var(--font-ui);
  color: var(--grey-500);
  font-weight: 400;
}

/* ============================================================
   REFERENCES
   ============================================================ */
.refs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.ref-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--grey-100);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.ref-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ref-avatar i { color: var(--gold); font-size: 1rem; }
.ref-name { font-family: var(--font-ui); font-weight: 700; color: var(--navy); font-size: 0.95rem; }
.ref-dept { font-size: 0.82rem; color: var(--blue); font-weight: 600; }
.ref-phone { font-size: 0.82rem; color: var(--grey-500); margin-top: 0.25rem; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.story-text p + p { margin-top: 1.1rem; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-card i { font-size: 2rem; color: var(--gold); margin-bottom: 1rem; }
.value-card h3 { color: var(--navy); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.9rem; }

.mvp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.mvp-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.mvp-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}
.mvp-label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.mvp-card h3 { color: var(--white); margin-bottom: 0.75rem; font-size: 1.2rem; }
.mvp-card p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

.leadership-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 560px;
  border-left: 4px solid var(--gold);
}
.leader-avatar {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.leader-avatar i { font-size: 2.2rem; color: var(--white); }
.leader-info h3 { color: var(--navy); font-size: 1.3rem; margin-bottom: 0.2rem; }
.leader-title { font-family: var(--font-ui); font-size: 0.82rem; font-weight: 700; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.75rem; }
.leader-contact a { display: flex; align-items: center; gap: 0.4rem; font-size: 0.9rem; color: var(--grey-700); margin-bottom: 0.3rem; transition: color var(--transition); }
.leader-contact a:hover { color: var(--blue); }
.leader-contact i { color: var(--blue); width: 16px; }

.goals-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.goal-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--grey-100);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.goal-item:hover { border-color: var(--gold); transform: translateX(4px); }
.goal-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  width: 32px;
}
.goal-item h4 { color: var(--navy); margin-bottom: 0.2rem; }
.goal-item p { font-size: 0.88rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-card {
  background: linear-gradient(160deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
}
.contact-info-card h3 { color: var(--white); margin-bottom: 0.5rem; }
.contact-info-card > p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; font-size: 0.95rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-detail:last-of-type { border-bottom: none; }
.contact-detail-icon {
  width: 38px; height: 38px;
  background: var(--gold);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon i { color: var(--navy); font-size: 0.95rem; }
.contact-detail-text label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.contact-detail-text span,
.contact-detail-text a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
}
.contact-detail-text a:hover { color: var(--gold-light); }
.map-embed {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.1);
}
.map-embed iframe { display: block; }

/* Form */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey-100);
}
.contact-form-card h3 { color: var(--navy); margin-bottom: 0.4rem; }
.contact-form-card > p { color: var(--grey-500); font-size: 0.9rem; margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-700);
  margin-bottom: 0.45rem;
}
.form-group label .req { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--grey-300);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--off-white);
  transition: all var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,92,154,0.12);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e74c3c;
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237A8898' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; cursor: pointer; }
.form-error { display: block; font-size: 0.78rem; color: #e74c3c; margin-top: 0.35rem; font-family: var(--font-ui); }
.form-submit { width: 100%; justify-content: center; padding: 1rem; font-size: 1rem; margin-top: 0.5rem; }
.form-message {
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 1rem;
  display: none;
}
.form-message.success { background: #e8f8f0; color: #1a7a4a; border: 1px solid #a7e0c4; display: block; }
.form-message.error   { background: #fdf0ee; color: #c0392b; border: 1px solid #f5c6c1; display: block; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(120deg, var(--navy) 0%, var(--blue) 100%);
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(212,146,10,0.1);
}
.cta-banner h2 { color: var(--white); position: relative; z-index: 1; }
.cta-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0.75rem auto 2rem;
  position: relative;
  z-index: 1;
}
.cta-banner .btn { position: relative; z-index: 1; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 4rem 1.5rem 2rem;
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 48px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; max-width: 280px; line-height: 1.7; }
.footer-reg {
  margin-top: 1.2rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-ui);
}
.footer-col h4 {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-col ul li a::before { content: '—'; font-size: 0.7rem; color: var(--gold); }
.footer-contact li { margin-bottom: 0.75rem; }
.footer-contact li a {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-contact li a:hover { color: var(--white); }
.footer-contact li a i { color: var(--gold); width: 16px; flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
  max-width: var(--max-w);
  margin: 1.5rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid       { grid-template-columns: repeat(2, 1fr); }
  .why-grid            { grid-template-columns: repeat(2, 1fr); }
  .projects-grid       { grid-template-columns: repeat(2, 1fr); }
  .refs-grid           { grid-template-columns: repeat(2, 1fr); }
  .stats-inner         { grid-template-columns: repeat(2, 1fr); }
  .footer-grid         { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .services-page-grid  { grid-template-columns: 1fr; }
  .about-snippet       { grid-template-columns: 1fr; }
  .story-grid          { grid-template-columns: 1fr; }
  .mvp-grid            { grid-template-columns: 1fr; }
  .contact-grid        { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .refs-grid     { grid-template-columns: 1fr; }
  .values-grid   { grid-template-columns: 1fr; }
  .why-grid      { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; gap: 2rem; }
  .stat-item     { border-right: none; border-bottom: 1px solid rgba(11,31,53,0.15); }
  .form-row      { grid-template-columns: 1fr; }
  .hero-actions  { flex-direction: column; }
  .leadership-card { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
