/* ═══════════════════════════════════════════════════════════
   Milestone Enterprises — Shared Stylesheet
   ═══════════════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --navy:       #1a2a5e;
  --navy2:      #243470;
  --navy-dark:  #0d1530;
  --navy-light: #2e3f7a;
  --gold:       #c9a227;
  --gold2:      #e2b93b;
  --gold-light: #f5e49a;
  --cream:      #f5f0e8;
  --light:      #f8f9fa;
  --white:      #ffffff;
  --text:       #2d2d2d;
  --muted:      #64748b;
  --border:     #e2e8f0;
  --shadow-sm:  0 2px 8px rgba(26,42,94,.07);
  --shadow:     0 4px 24px rgba(26,42,94,.11);
  --shadow-lg:  0 12px 48px rgba(26,42,94,.18);
  --radius:     14px;
  --radius-sm:  8px;
  --radius-lg:  24px;
  --transition: .25s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
  padding-top: 70px;
}
img { max-width: 100%; display: block; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Typography helpers ── */
.lbl {
  font-size: .72rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: .5rem;
}
.sec-title {
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  font-weight: 800; color: var(--navy);
  line-height: 1.15; margin-bottom: .9rem;
}
.sec-sub {
  font-size: 1rem; color: var(--muted);
  line-height: 1.75; max-width: 620px;
}
.text-center { text-align: center; }
.text-center .sec-sub { margin: 0 auto; }

/* ── Layout ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.sec { padding: 84px 0; }
.sec-alt { background: var(--light); }
.sec-dark { background: var(--navy); }
.sec-dark .lbl      { color: var(--gold2); }
.sec-dark .sec-title { color: var(--white); }
.sec-dark .sec-sub   { color: rgba(255,255,255,.65); }
.sec-navy-dark { background: var(--navy-dark); }

.gold-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold2) 55%, transparent 100%);
}

/* ════════════════════════════════
   NAVIGATION
   ════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  height: 70px;
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,.28);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.4); }
.nav-inner {
  max-width: 1160px; margin: 0 auto;
  height: 70px; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
/* Brand */
.nav-brand { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.nav-logo {
  width: 42px; height: 42px;
  background: var(--gold); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.2rem; color: var(--navy);
  flex-shrink: 0; letter-spacing: -.02em;
}
.nav-brand-name { color: var(--white); font-weight: 700; font-size: 1.05rem; line-height: 1.2; }
.nav-brand-name span { color: var(--gold); }
.nav-brand-sub { color: rgba(255,255,255,.45); font-size: .7rem; letter-spacing: .04em; }

/* Menu */
.nav-menu {
  display: flex; align-items: center; gap: .1rem; flex: 1; justify-content: flex-end;
}
.nav-menu a {
  color: rgba(255,255,255,.8); font-size: .88rem; font-weight: 500;
  padding: .45rem .9rem; border-radius: 7px;
  transition: all var(--transition); white-space: nowrap;
}
.nav-menu a:hover   { color: var(--white); background: rgba(255,255,255,.1); }
.nav-menu a.active  { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important; color: var(--navy) !important;
  font-weight: 700 !important; margin-left: .4rem;
}
.nav-cta:hover { background: var(--gold2) !important; }

/* Dropdown */
.nav-drop { position: relative; }
.nav-drop > a { display: flex; align-items: center; gap: .35rem; }
.nav-drop > a::after {
  content: '▾'; font-size: .62rem;
  opacity: .7; transition: transform .25s;
}
.nav-drop:hover > a::after { transform: rotate(180deg); opacity: 1; }

.drop-menu {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--navy-dark);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0,0,0,.45);
  min-width: 250px; padding: .6rem;
  opacity: 0; visibility: hidden;
  transition: all .25s ease;
  border: 1px solid rgba(201,162,39,.25);
}

/* gold top accent bar */
.drop-menu::before {
  content: ''; display: block;
  height: 3px; margin: -.6rem -.6rem .6rem;
  background: linear-gradient(90deg, var(--gold), var(--gold2) 60%, transparent);
  border-radius: var(--radius) var(--radius) 0 0;
}

.nav-drop:hover .drop-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* small arrow pointer */
.drop-menu::after {
  content: '';
  position: absolute; top: -7px; left: 50%; transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid var(--navy-dark);
}

.drop-menu a {
  display: flex; align-items: center; gap: .75rem;
  color: rgba(255,255,255,.78) !important;
  font-size: .87rem !important; font-weight: 500 !important;
  padding: .65rem 1rem !important;
  border-radius: var(--radius-sm);
  background: transparent !important;
  white-space: nowrap;
  transition: all .18s;
  border-left: 2px solid transparent;
}
.drop-menu a:hover {
  background: rgba(201,162,39,.12) !important;
  color: var(--gold2) !important;
  border-left-color: var(--gold) !important;
  padding-left: 1.2rem !important;
}
.di {
  font-size: .95rem; flex-shrink: 0;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,162,39,.15); border-radius: 6px;
}

/* Toggle (mobile) */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 5px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: .3s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ════════════════════════════════
   BUTTONS
   ════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 700; font-size: .95rem; padding: .75rem 1.8rem;
  border-radius: var(--radius-sm); border: 2px solid transparent;
  transition: all var(--transition); cursor: pointer; white-space: nowrap;
}
.btn-gold  { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover  { background: var(--gold2); border-color: var(--gold2); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,162,39,.35); }
.btn-white { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-white:hover { background: #f0f4ff; }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.45); }
.btn-outline-white:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-gold  { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline-gold:hover  { background: var(--gold); color: var(--navy); }
.btn-outline-navy  { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover  { background: var(--navy); color: var(--white); }
.btn-sm { padding: .5rem 1.25rem; font-size: .88rem; }
.btn-lg { padding: .9rem 2.2rem; font-size: 1.05rem; }

/* ════════════════════════════════
   HERO SLIDER (Home page)
   ════════════════════════════════ */
.hero-slider {
  position: relative; height: calc(100vh - 70px); min-height: 560px;
  overflow: hidden; background: var(--navy-dark);
}
.slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity .9s ease; display: flex; align-items: center;
}
.slide.active { opacity: 1; z-index: 1; }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10,17,42,.9) 0%, rgba(26,42,94,.78) 55%, rgba(26,42,94,.55) 100%);
}
.slide-content {
  position: relative; z-index: 2;
  max-width: 700px; padding: 0 1.5rem; margin-left: calc((100vw - 1160px) / 2 + 1.5rem);
}
@media (max-width: 1200px) { .slide-content { margin-left: 1.5rem; } }
.slide-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(201,162,39,.18); border: 1px solid rgba(201,162,39,.4);
  color: var(--gold2); font-size: .78rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  padding: .35rem .9rem; border-radius: 20px; margin-bottom: 1.2rem;
}
.slide h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900; color: var(--white);
  line-height: 1.08; margin-bottom: .9rem;
}
.slide h1 span { color: var(--gold); }
.slide p {
  font-size: clamp(.95rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.78); margin-bottom: 2rem; max-width: 560px;
}
.slide-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.slide-badges {
  display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem;
}
.s-badge {
  display: flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.1); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px; padding: .5rem 1rem;
  color: rgba(255,255,255,.85); font-size: .85rem;
}
.s-badge strong { color: var(--gold2); }

/* Slider Controls */
.slider-arrow {
  position: absolute; top: 50%; z-index: 10;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,.12); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.2); border-radius: 50%;
  color: var(--white); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s; cursor: pointer;
}
.slider-arrow:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.slider-prev { left: 1.5rem; }
.slider-next { right: 1.5rem; }
.slider-dots {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; gap: .55rem;
}
.dot {
  width: 28px; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,.3); border: none; transition: all .3s; cursor: pointer;
}
.dot.active { background: var(--gold); width: 44px; }

/* ════════════════════════════════
   SERVICES QUICK STRIP
   ════════════════════════════════ */
.svc-strip { background: var(--navy); padding: 0; }
.svc-strip-inner {
  display: grid; grid-template-columns: repeat(6, 1fr);
  border-top: 3px solid var(--gold);
}
.svc-strip-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 1.4rem 1rem; gap: .45rem;
  border-right: 1px solid rgba(255,255,255,.1);
  transition: background var(--transition);
  text-decoration: none;
}
.svc-strip-item:last-child { border-right: none; }
.svc-strip-item:hover { background: rgba(255,255,255,.08); }
.svc-strip-icon { font-size: 1.6rem; }
.svc-strip-name { color: rgba(255,255,255,.8); font-size: .8rem; font-weight: 600; text-align: center; }

/* ════════════════════════════════
   STATS BAND
   ════════════════════════════════ */
.stats-band { background: var(--navy); padding: 56px 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; text-align: center;
}
.stat-item { padding: 1rem; }
.stat-num {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
  color: var(--gold); line-height: 1; display: block;
}
.stat-label { color: var(--white); font-weight: 700; margin-top: .4rem; font-size: .98rem; }
.stat-desc  { color: rgba(255,255,255,.5); font-size: .8rem; margin-top: .2rem; }

/* ════════════════════════════════
   SERVICE CARDS (with image)
   ════════════════════════════════ */
.svc-cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem;
}
.svc-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  border: 1px solid var(--border); transition: all var(--transition);
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.svc-card-img { width: 100%; height: 210px; object-fit: cover; }
.svc-card-img-placeholder {
  width: 100%; height: 210px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; background: var(--cream);
}
.svc-card-body { padding: 1.5rem; }
.svc-card-num {
  font-size: .75rem; font-weight: 800; color: var(--gold);
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: .4rem;
}
.svc-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: .5rem; }
.svc-card p  { font-size: .9rem; color: var(--muted); line-height: 1.65; }
.svc-card-link {
  display: inline-flex; align-items: center; gap: .35rem;
  color: var(--gold); font-weight: 700; font-size: .87rem; margin-top: .9rem;
  transition: gap .2s;
}
.svc-card-link:hover { gap: .55rem; }

/* ════════════════════════════════
   PAGE HERO (inner pages)
   ════════════════════════════════ */
.page-hero {
  background: linear-gradient(130deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy2) 100%);
  padding: 56px 0 60px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute;
  top: -80px; right: -80px; width: 420px; height: 420px;
  border-radius: 50%; background: rgba(255,255,255,.03);
  pointer-events: none;
}
.page-hero::after {
  content: ''; position: absolute;
  bottom: -60px; left: 30%; width: 220px; height: 220px;
  border-radius: 50%; background: rgba(201,162,39,.06);
  pointer-events: none;
}
.breadcrumb {
  display: flex; align-items: center; gap: .4rem; margin-bottom: 1rem; flex-wrap: wrap;
}
.breadcrumb a, .breadcrumb span { font-size: .82rem; color: rgba(255,255,255,.5); }
.breadcrumb .sep { color: rgba(255,255,255,.25); }
.breadcrumb .cur { color: var(--gold); font-weight: 600; }
.breadcrumb a:hover { color: var(--gold2); }
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900; color: var(--white); margin-bottom: .6rem;
}
.page-hero p { color: rgba(255,255,255,.65); font-size: 1.05rem; max-width: 600px; }
.page-hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 1.2rem;
  background: rgba(201,162,39,.18); border: 1px solid rgba(201,162,39,.35);
  color: var(--gold2); font-size: .82rem; font-weight: 700;
  padding: .4rem 1rem; border-radius: 20px;
}

/* ════════════════════════════════
   ALTERNATING SECTION (image + text)
   ════════════════════════════════ */
.alt-sec {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; align-items: stretch; overflow: hidden;
}
.alt-sec.rev { direction: rtl; }
.alt-sec.rev > * { direction: ltr; }
.alt-img { height: 420px; width: 100%; object-fit: cover; }
.alt-img-placeholder {
  height: 420px; background: var(--cream);
  display: flex; align-items: center; justify-content: center; font-size: 5rem;
}
.alt-body {
  padding: 3rem 3.5rem; display: flex; flex-direction: column; justify-content: center;
  background: var(--white);
}
.alt-sec-alt .alt-body { background: var(--light); }
.alt-body .lbl { margin-bottom: .4rem; }
.alt-body h2 { font-size: 1.75rem; font-weight: 800; color: var(--navy); margin-bottom: .75rem; }
.alt-body p  { color: var(--muted); font-size: .97rem; margin-bottom: 1.25rem; }
.alt-list { display: flex; flex-direction: column; gap: .55rem; margin-bottom: 1.5rem; }
.alt-list li {
  display: flex; align-items: flex-start; gap: .65rem;
  color: var(--text); font-size: .92rem;
}
.alt-list li::before {
  content: ''; display: inline-block; flex-shrink: 0;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); margin-top: .48rem;
}

/* ════════════════════════════════
   ABOUT SECTION
   ════════════════════════════════ */
.about-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img {
  width: 100%; height: 480px; border-radius: var(--radius); object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--navy); border-radius: var(--radius);
  padding: 1.25rem 1.5rem; box-shadow: var(--shadow-lg);
  text-align: center; border: 3px solid var(--gold);
}
.about-badge .big { font-size: 2rem; font-weight: 900; color: var(--gold); line-height: 1; }
.about-badge small { color: rgba(255,255,255,.8); font-size: .82rem; display: block; margin-top: .2rem; }
.about-content h2 { font-size: 2rem; font-weight: 800; color: var(--navy); margin-bottom: 1rem; }
.about-content p  { color: var(--muted); margin-bottom: .9rem; line-height: 1.75; }
.about-content h4 { color: var(--gold); font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin: 1.2rem 0 .4rem; }
.about-metrics {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; margin-top: 1.5rem;
}
.metric-card {
  padding: 1.25rem 1.5rem; border-radius: var(--radius-sm);
  border: 1px solid var(--border); background: var(--light);
}
.metric-card.dark { background: var(--navy); border-color: var(--navy); }
.metric-card .num { font-size: 2rem; font-weight: 900; color: var(--gold); line-height: 1; }
.metric-card .lbl2 { font-weight: 700; color: var(--navy); font-size: .88rem; margin: .2rem 0; }
.metric-card.dark .lbl2 { color: var(--white); }
.metric-card .sub { font-size: .78rem; color: var(--muted); }
.metric-card.dark .sub { color: rgba(255,255,255,.5); }

/* ════════════════════════════════
   PRODUCT TABS
   ════════════════════════════════ */
.tab-bar {
  display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2.5rem;
}
.tab-btn {
  padding: .55rem 1.3rem; border-radius: 30px;
  border: 2px solid var(--border); background: transparent;
  color: var(--muted); font-size: .88rem; font-weight: 600;
  transition: all .2s; cursor: pointer;
}
.tab-btn:hover { border-color: var(--navy); color: var(--navy); }
.tab-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }
.product-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start;
}
.product-img {
  width: 100%; height: 340px; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.product-img-placeholder {
  width: 100%; height: 340px; border-radius: var(--radius);
  background: var(--cream); display: flex; align-items: center;
  justify-content: center; font-size: 5rem;
}
.product-body h3 { font-size: 1.6rem; font-weight: 800; color: var(--navy); margin-bottom: .75rem; }
.product-body p  { color: var(--muted); margin-bottom: 1.25rem; line-height: 1.75; }
.product-items {
  display: grid; grid-template-columns: 1fr 1fr; gap: .65rem;
}
.prod-item {
  display: flex; align-items: center; gap: .6rem;
  background: var(--cream); border-left: 3px solid var(--gold);
  padding: .6rem .9rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: .88rem; font-weight: 600; color: var(--navy);
}
.prod-sub-cards { display: flex; flex-direction: column; gap: .85rem; margin-top: 1.25rem; }
.prod-sub-card {
  border-radius: var(--radius-sm); padding: 1.2rem 1.4rem; border: 1px solid var(--border);
}
.prod-sub-card.dark { background: var(--navy); border-color: var(--navy); }
.prod-sub-card h4 { font-size: .95rem; font-weight: 700; margin-bottom: .3rem; color: var(--navy); }
.prod-sub-card.dark h4 { color: var(--gold); }
.prod-sub-card p { font-size: .84rem; color: var(--muted); }
.prod-sub-card.dark p { color: rgba(255,255,255,.65); }

/* ════════════════════════════════
   PROJECT CARDS
   ════════════════════════════════ */
.project-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem;
  margin-top: 2.5rem;
}
.project-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 2rem; transition: all .22s;
}
.project-card:hover { background: rgba(255,255,255,.11); border-color: rgba(201,162,39,.4); }
.proj-state {
  display: inline-block; background: var(--gold); color: var(--navy);
  font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: .2rem .75rem; border-radius: 20px; margin-bottom: .75rem;
}
.project-card h3 { color: var(--white); font-size: 1.25rem; font-weight: 800; margin-bottom: .35rem; }
.proj-status {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(76,175,80,.2); color: #81c784;
  font-size: .78rem; font-weight: 700; padding: .15rem .65rem; border-radius: 12px;
  margin-bottom: 1.1rem;
}
.proj-status::before { content: '●'; font-size: .5rem; }
.project-card h4 {
  color: rgba(255,255,255,.55); font-size: .75rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: .6rem;
}
.scope-list { display: flex; flex-direction: column; gap: .45rem; }
.scope-list li {
  color: rgba(255,255,255,.68); font-size: .9rem;
  display: flex; align-items: flex-start; gap: .5rem;
}
.scope-list li::before { content: '—'; color: var(--gold); flex-shrink: 0; }
.proj-expand {
  grid-column: 1/-1;
  background: rgba(201,162,39,.1); border: 1px solid rgba(201,162,39,.25);
  border-radius: var(--radius); padding: 1.75rem 2rem;
  display: flex; align-items: center; gap: 1.5rem;
}
.proj-expand-icon { font-size: 2.5rem; flex-shrink: 0; }
.proj-expand h3 { color: var(--white); font-size: 1.15rem; font-weight: 800; margin-bottom: .35rem; }
.proj-expand p  { color: rgba(255,255,255,.65); font-size: .93rem; }

/* ════════════════════════════════
   WHY CHOOSE US
   ════════════════════════════════ */
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.why-card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.75rem 1.5rem; box-shadow: var(--shadow);
  border-bottom: 4px solid var(--gold);
  text-align: center; transition: all var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-icon { font-size: 2.2rem; margin-bottom: .8rem; }
.why-card h3 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: .45rem; }
.why-card p  { font-size: .87rem; color: var(--muted); }

/* ════════════════════════════════
   CTA BANNER
   ════════════════════════════════ */
.cta-band {
  background: linear-gradient(130deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy2) 100%);
  padding: 72px 0; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(201,162,39,.08); pointer-events: none;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap; position: relative; z-index: 1;
}
.cta-text h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: .5rem; }
.cta-text p  { color: rgba(255,255,255,.65); font-size: 1rem; }
.cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* ════════════════════════════════
   CONTACT
   ════════════════════════════════ */
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 3rem; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: .9rem; }
.contact-card {
  display: flex; align-items: flex-start; gap: 1rem;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 1.2rem 1.5rem;
}
.c-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--gold); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.c-lbl { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); margin-bottom: .15rem; }
.c-val { color: var(--white); font-size: .97rem; }
.c-val a { color: var(--white); transition: color .2s; }
.c-val a:hover { color: var(--gold); }
.contact-form-box {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 2rem 2.25rem;
}
.contact-form-box h3 { color: var(--white); font-size: 1.3rem; font-weight: 800; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1rem; }
.fg label { color: rgba(255,255,255,.7); font-size: .84rem; font-weight: 600; }
.fg input, .fg textarea, .fg select {
  background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.18);
  border-radius: var(--radius-sm); padding: .7rem 1rem;
  color: var(--white); font-size: .95rem; font-family: inherit; outline: none;
  transition: border-color .2s; width: 100%;
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,.3); }
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--gold); }
.fg textarea { resize: vertical; min-height: 110px; }
.fg select option { background: var(--navy); color: var(--white); }
.btn-submit {
  width: 100%; background: var(--gold); color: var(--navy);
  border: none; font-weight: 800; font-size: 1rem;
  padding: .9rem; border-radius: var(--radius-sm);
  cursor: pointer; transition: all .22s;
}
.btn-submit:hover { background: var(--gold2); transform: translateY(-1px); }

/* ════════════════════════════════
   FOOTER
   ════════════════════════════════ */
.footer { background: var(--navy-dark); }
.footer-main {
  padding: 60px 0 44px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr; gap: 3rem;
}
.footer-brand-nm { color: var(--white); font-weight: 800; font-size: 1.1rem; margin: .6rem 0 .5rem; }
.footer-brand-nm span { color: var(--gold); }
.footer-brand p { color: rgba(255,255,255,.5); font-size: .88rem; max-width: 260px; line-height: 1.65; }
.footer-col h4 { color: var(--white); font-weight: 700; font-size: .95rem; margin-bottom: 1rem; }
.footer-col ul  { display: flex; flex-direction: column; gap: .5rem; }
.footer-col a   { color: rgba(255,255,255,.55); font-size: .88rem; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.fc-item { display: flex; gap: .6rem; margin-bottom: .7rem; }
.fc-item span:first-child { color: var(--gold); flex-shrink: 0; margin-top: .1rem; }
.fc-item a, .fc-item span:last-child { color: rgba(255,255,255,.55); font-size: .88rem; }
.fc-item a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .75rem;
}
.footer-bottom p { color: rgba(255,255,255,.35); font-size: .82rem; }
.footer-bottom strong { color: var(--gold); }
.dev-credit { color: rgba(255,255,255,.35); font-size: .78rem; }
.dev-credit a { color: var(--gold2); font-weight: 600; transition: color .2s; }
.dev-credit a:hover { color: var(--white); }
.gem-badge {
  display: flex; align-items: center; gap: .5rem;
  background: rgba(201,162,39,.12); border: 1px solid rgba(201,162,39,.25);
  border-radius: 20px; padding: .3rem 1rem;
  color: var(--gold2); font-size: .8rem; font-weight: 700;
}

/* ════════════════════════════════
   MISC COMPONENTS
   ════════════════════════════════ */
/* Info cards (used on about/home) */
.info-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.info-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 1.75rem;
  border-top: 4px solid var(--gold);
}
.info-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin: .6rem 0 .5rem; }
.info-card p  { font-size: .88rem; color: var(--muted); }
.info-card .ic-icon { font-size: 1.75rem; }

/* Map placeholder */
.map-placeholder {
  width: 100%; height: 340px; background: var(--cream);
  border-radius: var(--radius); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
  border: 2px dashed var(--border); margin-top: 2rem;
}
.map-placeholder span { font-size: 3rem; }
.map-placeholder p { color: var(--muted); font-weight: 600; font-size: .95rem; }

/* Timeline */
.timeline { display: flex; flex-direction: column; gap: 0; position: relative; }
.timeline::before {
  content: ''; position: absolute; left: 19px; top: 0; bottom: 0;
  width: 2px; background: var(--border);
}
.tl-item { display: flex; gap: 1.5rem; padding: 0 0 2rem; }
.tl-dot {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: .82rem; color: var(--navy);
  position: relative; z-index: 1;
}
.tl-body h4 { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: .3rem; }
.tl-body span { font-size: .78rem; font-weight: 700; color: var(--gold); letter-spacing: .08em; text-transform: uppercase; }
.tl-body p { font-size: .9rem; color: var(--muted); margin-top: .4rem; }

/* Section divider */
.sec-divider { border: none; height: 1px; background: var(--border); margin: 0; }

/* ════════════════════════════════
   RESPONSIVE
   ════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img { height: 340px; }
  .about-badge { right: 0; }
}
@media (max-width: 768px) {
  body { padding-top: 64px; }
  .navbar { height: 64px; }
  .nav-inner { height: 64px; }
  .nav-menu {
    display: none; flex-direction: column; align-items: stretch; gap: .15rem;
    position: fixed; top: 64px; left: 0; right: 0;
    background: var(--navy); padding: 1rem 1.5rem 1.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,.3); z-index: 9998;
    max-height: calc(100vh - 64px); overflow-y: auto;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: .75rem 1rem; border-radius: var(--radius-sm); }
  .nav-cta { margin-left: 0 !important; margin-top: .5rem; text-align: center; justify-content: center; }
  .nav-drop > a::after { display: none; }
  .drop-menu {
    position: static; transform: none; opacity: 1; visibility: visible;
    box-shadow: none;
    background: rgba(201,162,39,.06);
    border: 1px solid rgba(201,162,39,.15);
    border-radius: var(--radius-sm);
    margin-top: .35rem; padding: .35rem .5rem;
  }
  .drop-menu::before { display: none; }
  .drop-menu::after  { display: none; }
  .drop-menu a { color: rgba(255,255,255,.75) !important; border-left-color: transparent !important; }
  .drop-menu a:hover { background: rgba(201,162,39,.15) !important; color: var(--gold2) !important; border-left-color: var(--gold) !important; }
  .nav-toggle { display: flex; }
  .sec { padding: 56px 0; }
  .hero-slider { height: 88vh; }
  .svc-strip-inner { grid-template-columns: repeat(3, 1fr); }
  .svc-strip-item:nth-child(3) { border-right: none; }
  .svc-strip-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.1); }
  .alt-sec { grid-template-columns: 1fr; }
  .alt-sec.rev { direction: ltr; }
  .alt-img, .alt-img-placeholder { height: 280px; }
  .alt-body { padding: 2rem 1.5rem; }
  .contact-wrap { grid-template-columns: 1fr; }
  .project-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-btns { justify-content: center; }
  .product-detail { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .svc-cards-grid { grid-template-columns: 1fr; }
  .svc-strip-inner { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .info-cards { grid-template-columns: 1fr; }
  .product-items { grid-template-columns: 1fr; }
  .about-metrics { grid-template-columns: 1fr 1fr; }
  .proj-expand { flex-direction: column; text-align: center; }
}
