/* ============================================================
   AEGIS INTEGRATED SOLUTIONS v3
   Redesign: Bright, image-rich, large typography, corporate-professional
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0D1F3C;
  --navy-mid:   #1A3260;
  --gold:       #C8973A;
  --gold-light: #E8C47A;
  --gold-dark:  #9A6E1E;
  --white:      #FFFFFF;
  --off-white:  #F7F5F0;
  --light-bg:   #F2EFE8;
  --text:       #1A1A2E;
  --text-mid:   #3D4566;
  --text-muted: #6B7490;
  --border:     #E2DDD5;
  --red:        #C0392B;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── TYPOGRAPHY SCALE ──────────────────────────────────────── */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.section-title em { font-style: italic; color: var(--gold-dark); }
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--gold-light); }

.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--gold); flex-shrink: 0; }
.eyebrow.light { color: var(--gold-light); }
.eyebrow.light::before { background: var(--gold-light); }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 1rem 2.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-primary-sm {
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s;
  display: inline-block;
  margin-top: 1.5rem;
}
.btn-primary-sm:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  padding: 1rem 2.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 2px;
  transition: border-color 0.25s, background 0.25s;
  display: inline-block;
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  padding: 0.9rem 2.25rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s;
  display: inline-block;
  margin-top: 2rem;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-link {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-top: 1rem;
  transition: color 0.2s, gap 0.2s;
}
.btn-link:hover { color: var(--gold-dark); }

/* ── NAV ───────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 3rem;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s, box-shadow 0.3s;
}
nav.scrolled {
  padding: 0.75rem 3rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-logo-img { height: 40px; width: auto; display: block; object-fit: contain; }

.nav-wordmark {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}
.nav-wordmark small {
  display: block;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--gold-dark);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.5rem;
  border-radius: 2px;
  font-size: 0.82rem !important;
  letter-spacing: 0.1em !important;
  transition: background 0.25s !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--navy) !important; }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span { display: block; width: 26px; height: 2px; background: var(--navy); transition: all 0.3s; }

/* ── MOBILE NAV ────────────────────────────────────────────── */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 2rem;
  color: var(--gold);
  cursor: pointer;
  background: none;
  border: none;
}

/* ── REVEAL ANIMATION ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.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; }

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,31,60,0.88) 0%,
    rgba(13,31,60,0.65) 50%,
    rgba(13,31,60,0.4) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 4rem 5rem;
  max-width: 780px;
  margin-top: auto;
  padding-top: 9rem;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 2px; background: var(--gold); flex-shrink: 0; }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-title-accent {
  display: block;
  color: var(--gold-light);
  font-style: italic;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats-bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  background: var(--white);
  padding: 1.5rem 4rem;
  gap: 0;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  gap: 0.25rem;
}
.hero-stat-n {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
}
.hero-stat-l {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-stat-div {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── ABOUT ─────────────────────────────────────────────────── */
.about {
  padding: 7rem 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: 4px;
  overflow: hidden;
  height: 480px;
}
.about-img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.about-img-main:hover img { transform: scale(1.03); }

.about-img-badge {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--navy);
  border-radius: 4px;
  overflow: hidden;
  width: 220px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.about-img-badge img {
  width: 100%; height: 120px;
  object-fit: cover;
}
.about-badge-text {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.about-badge-text strong {
  font-size: 0.88rem;
  color: var(--white);
  font-weight: 700;
}
.about-badge-text span {
  font-size: 0.72rem;
  color: var(--gold-light);
  letter-spacing: 0.08em;
}

.about-body {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin: 1.5rem 0 2rem;
}
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.25rem;
  background: var(--off-white);
  border-radius: 4px;
  border-left: 3px solid var(--gold);
}
.pillar-icon { font-size: 1.4rem; flex-shrink: 0; }
.pillar-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pillar-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; }

/* ── SERVICES ──────────────────────────────────────────────── */
.services {
  padding: 7rem 0;
  background: var(--off-white);
}
.section-header {
  text-align: center;
  margin-bottom: 5rem;
}
.section-header .eyebrow { justify-content: center; }
.section-intro {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Alternating service rows */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}
.service-row-reverse { direction: rtl; }
.service-row-reverse > * { direction: ltr; }

.service-row-img {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.service-row-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-row:hover .service-row-img img { transform: scale(1.04); }

.service-img-tag {
  position: absolute;
  top: 1.25rem; left: 1.25rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 2px;
}

.service-row-content {
  padding: 3rem 3rem 3rem 0;
}
.service-row-reverse .service-row-content { padding: 3rem 0 3rem 3rem; }

.service-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.service-num.light { color: var(--gold-light); opacity: 0.4; }

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.service-title.light { color: var(--white); }

.service-desc {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.service-desc.light { color: rgba(255,255,255,0.8); }

.service-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-points li {
  font-size: 0.9rem;
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.service-points li::before { content: '✓'; color: var(--gold-dark); font-weight: 700; flex-shrink: 0; }
.service-points.light li { color: rgba(255,255,255,0.8); }
.service-points.light li::before { color: var(--gold-light); }

/* Featured service (RBA) */
.service-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 2rem;
  border-radius: 8px;
  overflow: hidden;
  min-height: 520px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}
.service-featured-img {
  position: relative;
  overflow: hidden;
}
.service-featured-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.7);
}
.service-featured:hover .service-featured-img img { transform: scale(1.04); }
.service-featured-content {
  background: var(--navy);
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-featured-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1rem;
  align-self: flex-start;
}

/* Service cards grid (3 col) */
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.service-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.service-card-img {
  height: 200px;
  overflow: hidden;
}
.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.05); }
.service-card-body { padding: 1.75rem; position: relative; }
.service-num-sm {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.service-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.service-card-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.service-card-ai { border-top: 3px solid var(--gold); }
.service-card-ai-badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
}

/* ── WHY US ────────────────────────────────────────────────── */
.why-us {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
.why-us-bg {
  position: absolute;
  inset: 0;
}
.why-us-bg img { width: 100%; height: 100%; object-fit: cover; }
.why-us-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,31,60,0.93) 0%, rgba(13,31,60,0.85) 100%);
}
.why-us .container { position: relative; z-index: 2; }
.why-us-header { text-align: center; margin-bottom: 4rem; }
.why-us-header .eyebrow { justify-content: center; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.why-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: background 0.3s, transform 0.3s;
}
.why-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}
.why-icon { font-size: 2.5rem; margin-bottom: 1.25rem; }
.why-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.why-desc { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.7; }

/* ── VISION ────────────────────────────────────────────────── */
.vision {
  padding: 7rem 0;
  background: var(--light-bg);
}
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2rem;
}
.vision-panel {
  background: var(--navy);
  border-radius: 8px;
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.vision-panel-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.vision-big-label {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}
.vision-big-label::after {
  content: '';
  display: block;
  width: 64px;
  height: 4px;
  background: var(--gold);
  margin-top: 0.75rem;
  border-radius: 2px;
}
.vision-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 1.25rem;
}
.vision-text { font-size: 1rem; color: rgba(255,255,255,0.8); line-height: 1.8; }
.vision-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.vision-list li {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.6;
}
.vision-list li::before { content: '→'; color: var(--gold-light); flex-shrink: 0; }

.vision-img {
  border-radius: 8px;
  overflow: hidden;
  height: 300px;
}
.vision-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.vision-img:hover img { transform: scale(1.04); }

/* ── COMMITMENT ────────────────────────────────────────────── */
.commitment {
  padding: 7rem 0;
  background: var(--navy);
}
.commitment-inner {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 5rem;
}
.commitment-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 1rem;
}
.commitment-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  font-style: italic;
  color: var(--white);
  line-height: 1.55;
}
.commitment-quote em { font-style: normal; color: var(--gold-light); }
.commitment-author {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 1.5rem;
  letter-spacing: 0.1em;
}

.commitment-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.commitment-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: background 0.3s;
}
.commitment-card:hover { background: rgba(255,255,255,0.1); }
.commitment-card-icon { font-size: 2.25rem; margin-bottom: 1rem; }
.commitment-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.commitment-card p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* ── CONTACT ───────────────────────────────────────────────── */
.contact {
  padding: 7rem 0;
  background: var(--off-white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.contact-left .section-title { color: var(--navy); margin-bottom: 1rem; }
.contact-body {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 2rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; }
.contact-detail-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.contact-detail-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.contact-detail-value { font-size: 1rem; color: var(--navy); font-weight: 500; margin-top: 0.15rem; }
.contact-detail-value a { color: var(--navy); text-decoration: none; transition: color 0.2s; }
.contact-detail-value a:hover { color: var(--gold-dark); }

.contact-img {
  border-radius: 8px;
  overflow: hidden;
  height: 240px;
}
.contact-img img { width: 100%; height: 100%; object-fit: cover; }

/* Contact Form Card */
.contact-form-card {
  background: var(--white);
  border-radius: 8px;
  padding: 3rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
.contact-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 0.1rem; }
.form-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.form-input, .form-select, .form-textarea {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--navy);
  outline: none;
  border-radius: 4px;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-select { appearance: none; cursor: pointer; }

.btn-submit {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  border: none;
  cursor: pointer;
  padding: 1.1rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Plus Jakarta Sans', sans-serif;
  border-radius: 4px;
  margin-top: 1.25rem;
  transition: background 0.25s;
}
.btn-submit:hover { background: var(--gold); color: var(--navy); }

.field-error {
  color: var(--red);
  font-size: 0.72rem;
  margin-top: 0.3rem;
  display: block;
  font-weight: 600;
}

/* ── FOOTER ────────────────────────────────────────────────── */
.footer-top {
  background: var(--navy);
  padding: 5rem 0 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-logo { height: 38px; }
.footer-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 280px;
  margin-top: 1.25rem;
}
.footer-col-title {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }

.footer-bottom { background: rgba(0,0,0,0.25); padding: 1.25rem 0; }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-reg { font-size: 0.75rem; color: rgba(255,255,255,0.25); }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  nav { padding: 1rem 2rem; }
  nav.scrolled { padding: 0.75rem 2rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 0 2rem 4rem; }
  .hero-stats-bar { padding: 1.25rem 2rem; flex-wrap: wrap; gap: 1rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-badge { right: 1rem; }
  .service-row, .service-featured { grid-template-columns: 1fr; }
  .service-row-reverse { direction: ltr; }
  .service-row-img { height: 280px; }
  .service-row-content { padding: 2rem; }
  .service-row-reverse .service-row-content { padding: 2rem; }
  .service-featured { min-height: auto; }
  .service-featured-img { height: 300px; }
  .service-featured-content { padding: 3rem 2rem; }
  .service-cards-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .vision-grid { grid-template-columns: 1fr; }
  .commitment-cards { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
  nav { padding: 0.9rem 1.25rem; }
  .hero-content { padding: 0 1.5rem 3rem; }
  .hero-stats-bar { display: none; }
  .about { padding: 4rem 0; }
  .about-img-badge { display: none; }
  .services { padding: 4rem 0; }
  .service-cards-grid { grid-template-columns: 1fr; }
  .why-us { padding: 4rem 0; }
  .why-grid { grid-template-columns: 1fr; }
  .vision { padding: 4rem 0; }
  .vision-panel { padding: 2.25rem; }
  .commitment { padding: 4rem 0; }
  .commitment-cards { grid-template-columns: 1fr; }
  .contact { padding: 4rem 0; }
  .contact-form-card { padding: 2rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
  .container { padding: 0 1.25rem; }
}
