/* ═══════════════════════════════════════════════════════════
   YOURBRAND — GLOBAL STYLESHEET
   Fonts: Syne (headings) + DM Sans (body)
   Palette: Deep navy, clean white, sharp blue accent
═══════════════════════════════════════════════════════════ */

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

:root {
  --navy: #0d1b2a;
  --navy-mid: #1a2e42;
  --navy-soft: #243b55;
  --white: #ffffff;
  --off-white: #b9b9b9;
  --blue: #1565c0;
  --blue-lt: #ffffff;
  --text: #1c1c1c;
  --text-muted: #6b7280;
  --border: #e0e0dc;

  --font-head: 'Outfit', sans-serif;
  --font-body: 'Outfit', sans-serif;

  --radius: 6px;
  --shadow: 0 4px 24px rgba(13, 27, 42, .12);
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--off-white);
  background: #0b0f14;
  font-size: 16px;
  line-height: 1.7;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY ────────────────────────────────────────── */
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
}

h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

h4 {
  font-size: 1rem;
  font-weight: 700;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 48px;
  color: var(--navy);
}

/* ── BUTTONS ───────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
  border: 2px solid var(--navy);
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--blue);
  transform: translateY(-2px);
  color: white;
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* ── NAVBAR ────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 68px;
  background: black;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 0.06em;
}

.logo span {
  color: var(--blue);
}

.logo img {
  height: 45px;
  width: auto;
  display: block;
}

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

.nav-links>li>a {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition);
  position: relative;
}

.nav-links>li>a:hover,
.nav-links>li>a.active {
  color: var(--blue);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  min-width: 180px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  font-size: 0.87rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: background var(--transition), color var(--transition);
}

.dropdown-menu li a:hover {
  background: var(--blue);
  color: var(--navy);
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ── HERO (HOME) ───────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Fallback background when no video is present */
.hero-video-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  z-index: 0;
}

.hero-video {
  position: relative;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(13, 27, 42, 0.82) 40%,
      rgba(13, 27, 42, 0.35) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 640px;
  padding: 0 60px;
  animation: fadeUp 0.8s ease both;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.hero-title {
  color: var(--white);
  margin-bottom: 20px;
}

.hero-title em {
  font-style: normal;
  color: var(--blue);
}

.hero-sub {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  font-weight: 300;
  margin-bottom: 36px;
  max-width: 480px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

/* ── SERVICES ROW ──────────────────────────────────────── */
.services-row {
  padding: 96px 0;
  background: var(--off-white);
}

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

.service-card {
  background: var(--navy);
  border-radius: 10px;
  padding: 36px 28px 28px;
  border: 1px solid var(--blue);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.service-card h3 {
  color: rgba(245, 245, 245, 0.9);
}

.service-card p {
  color: rgba(196, 205, 213, 0.75);
}

.service-icon {
  font-size: 2rem;
  line-height: 1;
}

.service-img-wrap {
  height: 180px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--off-white);
  margin-top: auto;
  /* Placeholder styling when no image */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.service-img-wrap img {
  height: 100%;
  object-fit: cover;
}

.card-link {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.04em;
  margin-top: 8px;
  transition: opacity var(--transition);
}

.card-link:hover {
  opacity: 0.75;
}

/* ── REVIEWS ───────────────────────────────────────────── */
.reviews {
  padding: 96px 0;
  background: var(--white);
}

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

.review-card {
  background: var(--off-white);
  border-radius: 10px;
  padding: 32px 28px;
  border-left: 3px solid var(--blue);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stars {
  color: var(--blue);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-card p {
  font-size: 0.95rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.7;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--blue);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  object-position: center 10%;
}

.reviewer strong {
  display: block;
  font-size: 0.9rem;
  color: black;
}

.reviewer span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── PAGE HERO (inner pages) ───────────────────────────── */
.page-hero {
  position: relative;
  height: 240px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 40px;
  overflow: hidden;
  margin-top: 68px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--navy-soft);
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 27, 42, 0.88) 0%, rgba(13, 27, 42, 0.45) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  color: var(--white);
  max-width: 900px;
  animation: fadeUp 0.7s ease both;
}

.page-hero-content h1 {
  margin: 8px 0 0;
}

.page-hero-content p {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 12px;
  font-size: 1rem;
}

/* ── ABOUT PAGE ────────────────────────────────────────── */
.about-mission {
  padding: 96px 0;
  background: var(--white);
}

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

.about-text h2 {
  margin-bottom: 20px;
  color: var(--navy);
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.about-text .btn-primary {
  margin-top: 12px;
}

.about-img {
  height: 460px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--off-white);
}

/* Stats */
.stats-bar {
  background: var(--navy);
  padding: 56px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 24px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-number {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--blue);
}

.stat-label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}

/* Team */
.team-section {
  padding: 96px 0;
  background: var(--off-white);
}

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

.team-card {
  background: var(--white);
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.team-card:hover {
  box-shadow: var(--shadow);
}

.team-photo {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--off-white);
  margin-bottom: 16px;
}

.team-card h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-card span {
  font-size: 0.78rem;
  color: var(--blue);
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.team-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Values */
.values-section {
  padding: 96px 0;
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.value-item {
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: 10px;
  text-align: center;
}

.value-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 14px;
}

.value-item h4 {
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.value-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ── INDUSTRIES ────────────────────────────────────────── */
.industries-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: repeat(4, 180px);
  gap: 16px;
}

.industry-tile:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.industry-tile:nth-child(2) {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.industry-tile:nth-child(3) {
  grid-column: 1;
  grid-row: 3 / span 2;
}

.industry-tile:nth-child(4) {
  grid-column: 2;
  grid-row: 3;
}

.industry-tile:nth-child(5) {
  grid-column: 2;
  grid-row: 4;
}

.tile-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(13, 27, 42, 0.92) 0%, transparent 100%);
  padding: 24px 20px 20px;
  color: var(--white);
  transform: translateY(35px);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.industry-tile:hover .tile-label {
  transform: translateY(0);
  opacity: 1;
}

.industry-tile img {
  transition: transform 0.6s ease;
}

.industry-tile:hover img {
  transform: scale(1.08);
}

/* ── SERVICE DETAIL ────────────────────────────────────── */
.service-detail {
  padding: 96px 0;
  background: var(--white);
}

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

.service-detail-text h2 {
  color: var(--navy);
  margin-bottom: 20px;
}

.service-detail-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.feature-list {
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  font-size: 0.92rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-detail-img {
  height: 480px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--off-white);
}

/* Showcase */
.showcase-section {
  padding: 80px 0;
  background: var(--off-white);
  color: black;
}

.showcase-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

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

.showcase-row.reverse .showcase-media {
  order: 2;
}

.showcase-row.reverse .showcase-text {
  order: 1;
}

/* ── PRODUCT GALLERY (Components page) ─────────────────── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.filter-btn {
  padding: 10px 22px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

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

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

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}

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

/* ── Card Slideshow ── */
.product-slideshow {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #f0f0f0;
  cursor: zoom-in;
}

.slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease;
  display: block;
}

.slide-img.active {
  opacity: 1;
}

.slide-prev,
.slide-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(13, 27, 42, 0.55);
  border: none;
  color: var(--white);
  font-size: 1.1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition), background var(--transition);
  z-index: 2;
}

.slide-prev {
  left: 10px;
}

.slide-next {
  right: 10px;
}

.product-slideshow:hover .slide-prev,
.product-slideshow:hover .slide-next {
  opacity: 1;
}

.slide-prev:hover,
.slide-next:hover {
  background: var(--blue);
}

.slide-counter {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(13, 27, 42, 0.6);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 20px;
  z-index: 2;
  pointer-events: none;
}

.zoom-hint {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0.85rem;
  background: rgba(13, 27, 42, 0.5);
  padding: 3px 7px;
  border-radius: 4px;
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 2;
  pointer-events: none;
}

.product-slideshow:hover .zoom-hint {
  opacity: 1;
}

.product-info {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(21, 101, 192, 0.1);
  padding: 3px 10px;
  border-radius: 20px;
  width: fit-content;
}

.product-info h3 {
  font-size: 0.95rem;
  color: var(--navy);
  margin: 0;
}

.product-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

/* ── Lightbox Modal ── */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  cursor: zoom-out;
}

.modal img {
  max-width: 75%;
  max-height: 82vh;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  object-fit: contain;
  cursor: default;
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 1.4rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  z-index: 10000;
}

.modal-nav:hover {
  background: var(--blue);
  border-color: var(--blue);
}

.modal-prev {
  left: 24px;
}

.modal-next {
  right: 24px;
}

.modal-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  pointer-events: none;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  z-index: 10000;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .modal img {
    max-width: 92%;
  }

  .modal-prev {
    left: 8px;
  }

  .modal-next {
    right: 8px;
  }
}

/* ── CTA BAND ──────────────────────────────────────────── */
.cta-band {
  background: var(--blue);
  padding: 72px 0;
}

.cta-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-inner h2 {
  color: var(--navy);
  margin-bottom: 12px;
}

.cta-inner p {
  color: var(--navy);
  opacity: 0.75;
  margin-bottom: 28px;
}

.cta-inner .btn-primary {
  background: var(--navy);
  color: var(--white);
}

.cta-inner .btn-primary:hover {
  background: var(--navy-mid);
}

/* ── CONTACT PAGE ──────────────────────────────────────── */
.contact-hero {
  background: var(--navy);
  padding: 175px 0 50px;
  text-align: center;
}

.contact-hero-inner {
  max-width: 640px;
}

.contact-hero h1 {
  color: var(--white);
  margin: 8px 0 16px;
}

.contact-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.contact-section {
  padding: 140px 0 96px;
  background: #b9b9b9;
}

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

.contact-form-wrap h2 {
  color: var(--navy);
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  background: var(--navy);
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: var(--navy);
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

/* Contact about card */
.contact-about-card {
  background: var(--navy);
  border-radius: 12px;
  padding: 40px 36px;
  color: var(--white);
  height: 100%;
}

.contact-about-card h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.contact-about-card>p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 14px;
  font-size: 0.93rem;
}

.contact-details {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cd-icon {
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail-item strong {
  font-size: 0.85rem;
  color: var(--blue);
  display: block;
  margin-bottom: 3px;
}

.contact-detail-item p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Map */
.map-section {
  padding: 40px 0 96px;
}

.map-section .section-title {
  text-align: center;
  margin-bottom: 32px;
  color: var(--off-white)
}

.map-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

/* ── FOOTER ────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  padding-top: 64px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  margin-top: 12px;
}

.footer-brand .logo {
  margin-bottom: 0;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--blue);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

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

.footer-links ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer-links ul li a:hover {
  color: var(--blue);
}

.footer-contact p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {

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

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

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

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

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 24px;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: transparent;
    padding-left: 16px;
  }

  .dropdown-menu li a {
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 0;
  }

  .hero-content {
    padding: 0 24px;
  }

  .page-hero-content {
    padding: 0 24px;
  }

  .component-hero {
    align-items: center;
    padding-bottom: 0;
  }

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

  .about-split,
  .service-split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-img,
  .service-detail-img {
    height: 300px;
  }

  .industries-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .tile-large,
  .tile-wide {
    grid-column: span 1;
  }

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

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

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

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

  .footer-brand {
    grid-column: span 1;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 0 20px;
  }

  .industries-gallery {
    grid-template-columns: 1fr;
  }

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

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

  .contact-about-card {
    padding: 28px 20px;
  }
}