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

:root {
  /* Brand Colors */
  --navy-deep:  #0B1F3B;   /* hero, footer, dark sections */
  --navy-mid:   #1E3A5F;   /* secondary dark, hovers      */
  --navy-light: #EEF2F7;   /* tinted section backgrounds  */
  --gold:       #C8A96A;   /* primary accent, CTA         */
  --gold-light: #F5EDD8;   /* gold tint backgrounds       */
  --gold-dark:  #A88848;   /* gold hover                  */
  --white:      #FFFFFF;
  --gray-light: #D1D5DB;   /* borders, subtle text        */
  --gray-bg:    #F4F6F9;   /* alternating sections        */
  --text:       #0B1F3B;   /* headings                    */
  --body:       #374151;   /* body copy                   */
  --muted:      #6B7280;   /* captions, secondary         */

  --max-w:  1120px;
  --nav-h:  88px;
  --radius: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', Lato, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--body);
  background: var(--white);
}

img { max-width: 100%; display: block; }
a   { color: var(--navy-mid); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ─── Typography ───────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Avenir Next', Gotham, Arial, sans-serif;
  color: var(--text);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
h3 { font-size: 1.15rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ─── Layout Helpers ───────────────────────────────────────────────────────── */
.container  { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-alt  { background: var(--gray-bg); }
.section-navy { background: var(--navy-deep); }
.section-navy h1,
.section-navy h2,
.section-navy h3 { color: var(--white); }

.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-navy   { color: var(--navy-deep); }
.text-white  { color: var(--white) !important; }
.text-muted  { color: var(--muted); }

/* ─── Navigation ───────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-deep);
  border-bottom: 2px solid var(--gold);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}

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

.nav-logo img {
  height: 68px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy-deep) !important;
  padding: 0.5rem 1.3rem;
  border-radius: var(--radius);
  font-weight: 700 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-dark) !important; text-decoration: none !important; }

/* ─── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.8rem 1.9rem;
  border-radius: var(--radius);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  border: 2px solid transparent;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

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

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover { background: rgba(200,169,106,0.12); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

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

.btn-navy {
  background: var(--navy-deep);
  color: var(--white);
  border-color: var(--navy-deep);
}
.btn-navy:hover { background: var(--navy-mid); border-color: var(--navy-mid); }

.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ─── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  color: var(--white);
  padding: 130px 0 110px;
  overflow: hidden;
  background-color: var(--navy-deep);
}
/* Full-bleed background image */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/Picture1.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  opacity: 0.28;
  z-index: 0;
}
/* Navy gradient overlay for readability */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(11,31,59,0.92) 0%,
    rgba(11,31,59,0.78) 55%,
    rgba(11,31,59,0.45) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.hero h1 {
  color: var(--white);
  max-width: 720px;
  margin-bottom: 1.25rem;
}
.hero h1 span { color: var(--gold); }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  margin-bottom: 0.75rem;
  line-height: 1.8;
}
.hero-tagline {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
}

/* ─── Tagline Trio ─────────────────────────────────────────────────────────── */
.tagline-trio {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2rem;
}
.tagline-trio span { color: inherit; }
.tagline-trio span + span::before {
  content: '·';
  margin: 0 0.55rem;
  color: rgba(200,169,106,0.45);
  font-size: 1.1em;
}
/* Light variant for dark backgrounds (same as default) */
.tagline-trio.light { color: var(--gold); }
/* Dark variant for light backgrounds */
.tagline-trio.dark  { color: var(--navy-mid); }
.tagline-trio.dark span + span::before { color: rgba(30,58,95,0.35); }

/* ─── Page Hero (inner pages) ─────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(145deg, var(--navy-deep) 0%, #0d2d50 100%);
  padding: 64px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(200,169,106,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p  { color: rgba(255,255,255,0.8); max-width: 600px; font-size: 1.05rem; }

/* ─── Eyebrow Label ────────────────────────────────────────────────────────── */
.eyebrow {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
  display: block;
}
.eyebrow-light { color: rgba(200,169,106,0.8); }

/* ─── Section Headers ──────────────────────────────────────────────────────── */
.section-header { margin-bottom: 3rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p  { font-size: 1.05rem; color: var(--body); max-width: 640px; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

/* ─── Gold Divider ─────────────────────────────────────────────────────────── */
.gold-rule {
  width: 48px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.gold-rule.centered { margin: 0 auto 1.5rem; }

/* ─── Highlights Bar ───────────────────────────────────────────────────────── */
.highlights {
  background: var(--navy-mid);
  padding: 52px 0;
  border-top: 3px solid var(--gold);
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}
.highlight-item h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--gold);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}
.highlight-item p {
  color: rgba(255,255,255,0.72);
  font-size: 0.88rem;
  margin: 0;
}

/* ─── Cards ────────────────────────────────────────────────────────────────── */
.card-grid   { display: grid; gap: 1.5rem; }
.card-grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.card-grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 10px;
  padding: 2rem;
  transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover {
  box-shadow: 0 10px 36px rgba(11,31,59,0.1);
  transform: translateY(-3px);
}
.card-icon {
  width: 46px; height: 46px;
  background: var(--gold-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  font-size: 1.3rem;
}
.card h3 { color: var(--navy-deep); margin-bottom: 0.5rem; }
.card p  { font-size: 0.95rem; }
.card-link {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 1.1rem;
  display: inline-block;
}
.card-link:hover { color: var(--navy-mid); text-decoration: none; }

/* ─── Check / Bullet Lists ─────────────────────────────────────────────────── */
.check-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.check-list li {
  padding: 0.45rem 0 0.45rem 2rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--body);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
}

/* ─── Pain List ────────────────────────────────────────────────────────────── */
.pain-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.pain-list li {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--gray-light);
  margin-bottom: 0.75rem;
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.95rem;
  align-items: flex-start;
  transition: border-left-color 0.2s;
}
.pain-list li:hover { border-left-color: var(--gold); }
.pain-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 0.05rem; }

/* ─── Two-Column Grid ──────────────────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.two-col.center { align-items: center; }

/* ─── Service Blocks ───────────────────────────────────────────────────────── */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--gray-light);
}
.service-block:last-child { border-bottom: none; }
.service-number {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.service-block h2 { color: var(--navy-deep); margin-bottom: 0.4rem; }
.service-tag {
  display: inline-block;
  background: var(--gold-light);
  color: var(--gold-dark);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.28rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ─── What You Get Box ─────────────────────────────────────────────────────── */
.get-box {
  background: var(--navy-light);
  border-radius: 10px;
  padding: 2rem;
  border-left: 4px solid var(--gold);
}
.get-box h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  margin-bottom: 1.25rem;
}

/* ─── Callout Box ──────────────────────────────────────────────────────────── */
.callout-box {
  background: var(--gold-light);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.4rem 1.75rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-style: italic;
  font-weight: 600;
  color: var(--navy-deep);
  margin: 2rem 0;
}

/* ─── Industries ───────────────────────────────────────────────────────────── */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.industry-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 10px;
  padding: 2rem;
  border-top: 4px solid var(--gold);
  transition: box-shadow 0.25s, transform 0.25s;
}
.industry-card:hover {
  box-shadow: 0 8px 28px rgba(11,31,59,0.1);
  transform: translateY(-2px);
}
.industry-card h3 { color: var(--navy-deep); margin-bottom: 0.4rem; font-size: 1.05rem; }
.industry-card p  { font-size: 0.9rem; color: var(--body); margin: 0; }

/* ─── Stats pair ───────────────────────────────────────────────────────────── */
.stat-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.25rem;
}
.stat-box {
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
}
.stat-box.navy { background: var(--navy-deep); }
.stat-box.gold { background: var(--gold); }
.stat-box .stat-num {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-box.navy .stat-num { color: var(--gold); }
.stat-box.gold .stat-num { color: var(--navy-deep); }
.stat-box .stat-label { font-size: 0.82rem; }
.stat-box.navy .stat-label { color: rgba(255,255,255,0.7); }
.stat-box.gold .stat-label { color: rgba(11,31,59,0.75); }

/* ─── Approach Steps ───────────────────────────────────────────────────────── */
.step-list { display: flex; flex-direction: column; gap: 1rem; }
.step-item { display: flex; gap: 1rem; align-items: flex-start; }
.step-num {
  background: var(--gold);
  color: var(--navy-deep);
  border-radius: 50%;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 3px;
}
.step-text { font-size: 0.92rem; padding-top: 4px; }

/* ─── CTA Banner ───────────────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(200,169,106,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p  {
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 2.25rem;
  font-size: 1.05rem;
}
.cta-banner .eyebrow { color: var(--gold); }

/* ─── Contact Form ─────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-detail {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}
.contact-detail-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 0.1rem; }

.form-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 28px rgba(11,31,59,0.07);
}
.form-card h3 {
  color: var(--navy-deep);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy-deep);
  margin-bottom: 0.45rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,106,0.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ─── Footer ───────────────────────────────────────────────────────────────── */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.65);
  padding: 56px 0 24px;
  border-top: 3px solid var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
}
.footer-brand img { height: 38px; width: auto; margin-bottom: 1rem; }
.footer-brand p   { font-size: 0.88rem; line-height: 1.7; max-width: 320px; }
.footer-tagline {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.75rem;
}
.footer-col h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
}

/* ─── Hero Layout ──────────────────────────────────────────────────────────── */
.hero .container { position: relative; z-index: 2; }

/* Single-column hero with background image */
.hero-inner {
  max-width: 760px;
}
.hero-logo-panel { display: none; }

/* ─── Calendly Embed ───────────────────────────────────────────────────────── */
.calendly-section {
  background: var(--navy-light);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--gray-light);
}
.calendly-section h3 {
  color: var(--navy-deep);
  margin-bottom: 0.4rem;
}
.calendly-section p {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.calendly-inline-widget {
  border-radius: 8px;
  overflow: hidden;
}

/* ─── Form / Calendly Tabs ─────────────────────────────────────────────────── */
.contact-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--gray-light);
}
.contact-tab {
  flex: 1;
  padding: 0.7rem 1rem;
  text-align: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  background: var(--white);
  color: var(--muted);
  transition: background 0.2s, color 0.2s;
}
.contact-tab.active {
  background: var(--navy-deep);
  color: var(--white);
}
.contact-tab-panel { display: none; }
.contact-tab-panel.active { display: block; }

/* ─── Page Hero with Background Image ────────────────────────────────────── */
.page-hero { position: relative; overflow: hidden; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,31,59,0.90) 0%,
    rgba(11,31,59,0.75) 100%
  );
}

/* ─── Image Panel (full-bleed section with image on one side) ─────────────── */
.img-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
.img-panel-content {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.img-panel-photo {
  background-size: cover;
  background-position: center;
  position: relative;
}
.img-panel-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy-deep) 0%, transparent 30%);
}

/* ─── Industrial Image Cards (services) ───────────────────────────────────── */
.img-card {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  height: 240px;
  margin-bottom: 1.5rem;
}
.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.img-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,31,59,0.6) 0%, transparent 60%);
}

/* ─── About Image ─────────────────────────────────────────────────────────── */
.about-img {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.about-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}
.about-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

/* ─── Hamburger Menu ───────────────────────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile slide-down menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--navy-deep);
  border-bottom: 2px solid var(--gold);
  z-index: 99;
  padding: 1rem 1.5rem 1.5rem;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.2s ease;
  pointer-events: none;
}
.nav-mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.nav-mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav-mobile ul li a {
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-mobile ul li:last-child a { border-bottom: none; }
.nav-mobile ul li a:hover,
.nav-mobile ul li a.active { color: var(--gold); }
.nav-mobile ul li a.nav-cta {
  background: var(--gold);
  color: var(--navy-deep) !important;
  text-align: center;
  border-radius: var(--radius);
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  border-bottom: none;
}

/* ─── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links    { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile   { display: block; }

  .two-col,
  .service-block,
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid  { grid-template-columns: 1fr; gap: 2rem; }
  .form-row     { grid-template-columns: 1fr; }
  .stat-pair    { grid-template-columns: 1fr 1fr; }

  /* Reverse column order on two-col so text comes first */
  .two-col.center > div:first-child { order: 1; }
  .two-col.center > div:last-child  { order: 2; }

  .industry-grid { grid-template-columns: 1fr 1fr; }
  .card-grid-3   { grid-template-columns: 1fr 1fr; }

  .highlights-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  .page-hero { padding: 48px 0; }
  .about-img { display: none; }
}

@media (max-width: 600px) {
  :root { --nav-h: 72px; }

  .nav-logo img { height: 52px; }

  .hero        { padding: 64px 0 56px; }
  .section     { padding: 52px 0; }
  .section-sm  { padding: 36px 0; }
  .cta-banner  { padding: 52px 0; }
  .page-hero   { padding: 40px 0; }

  h1           { font-size: 1.75rem; line-height: 1.25; }
  h2           { font-size: 1.35rem; }

  .btn-group   { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .btn-group .btn { text-align: center; }

  .card-grid-3,
  .card-grid-2   { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .stat-pair     { grid-template-columns: 1fr 1fr; }

  .contact-tabs  { flex-direction: column; }
  .contact-tab   { width: 100%; text-align: center; }

  .service-number { font-size: 3rem; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand img { max-width: 140px; }
}
