:root {
  --color-primary: #000810;
  --color-secondary: #0da574;
  --color-text: #2b3742;
  --color-accent: #ffc631;
  --color-white: #ffffff;
  --color-muted: #e9e6e6;
  --color-navy: #001f3f;
  --color-navy-60: #001f3f8f;
  --color-light: #f4f4f4;
  --color-border: #c8c8c8;
  --container: 1140px;
  --font: "Montserrat", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-white);
}

.hl { color: var(--color-secondary); }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
button, input, textarea { font-family: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-accent);
  color: var(--color-primary);
  padding: 10px 16px;
  z-index: 10000;
}
.skip-link:focus { left: 12px; top: 12px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0;
}

/* Header */
.site-header {
  background: var(--color-navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 86px;
  overflow: hidden;
}
.header-inner {
  display: flex;
  align-items: center;
  padding: 0;
  height: 86px;
  min-height: 86px;
  max-height: 86px;
}
.logo {
  width: 25%;
  flex: 0 0 25%;
  display: flex;
  align-items: center;
}
.logo img {
  width: 40%;
  height: auto;
  display: block;
}
.nav {
  width: 83%;
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
}
.nav a {
  display: block;
  color: var(--color-white);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  padding: 13px 20px;
  transition: color 0.3s;
}
.nav a:hover,
.nav a.active { color: var(--color-accent); }

.menu-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  color: var(--color-white);
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
}
.menu-toggle svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1100;
  display: none;
  justify-content: flex-start;
  align-items: stretch;
}
.nav-overlay.open { display: flex; }
.nav-drawer {
  width: 400px;
  max-width: 90vw;
  background: var(--color-white);
  padding: 50px;
  height: 100vh;
  overflow: auto;
}
.nav-drawer a {
  display: block;
  font-size: 22px;
  font-weight: 600;
  color: var(--color-primary);
  padding: 12px 0;
}
.nav-drawer a:hover,
.nav-drawer a.active { color: var(--color-accent); }
.nav-close {
  background: none;
  border: 0;
  font-size: 28px;
  cursor: pointer;
  color: var(--color-primary);
  float: right;
}

/* Buttons — Elementor size-sm + gold fill, dark text */
.btn {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  padding: 10px 20px;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  transition: color 0.3s;
  text-align: center;
}
.btn:hover { color: var(--color-white); }

/* Divider / eyebrow: gold line then text (Elementor line_text, align-right) */
.eyebrow {
  display: flex;
  align-items: center;
  padding: 15px 0;
  width: 23%;
  min-width: 220px;
}
.eyebrow .line {
  flex: 1 1 auto;
  height: 3px;
  background: var(--color-accent);
  min-width: 42.5px;
}
.eyebrow .txt {
  flex: 0 0 auto;
  padding-left: 12px;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.2;
}
.eyebrow.light .txt { color: var(--color-white); }
.eyebrow.dark .txt { color: var(--color-primary); }
.eyebrow.w30 { width: 30%; }
.eyebrow.w32 { width: 32%; }
.eyebrow.w45 { width: 45%; }
.eyebrow.w60 { width: 60%; }
.eyebrow.w62 { width: 62%; }
.eyebrow.w63 { width: 63%; }
.eyebrow.w75 { width: 75%; }
.eyebrow.bleed {
  margin: 0;
  padding-left: 0;
  padding-right: 15px;
  max-width: none;
}

/* Hero */
.hero {
  background: var(--color-navy);
  color: var(--color-white);
  padding-top: 100px;
}
.hero-grid {
  display: flex;
  align-items: flex-end;
  gap: 0;
}
.hero-copy {
  width: 50%;
  padding-bottom: 100px;
  padding-right: 20px;
}
.hero-copy h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 50px;
  color: var(--color-white);
  margin-bottom: 20px;
}
.hero-copy p {
  color: var(--color-white);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 24px;
}
.hero-art {
  width: 50%;
  align-self: flex-end;
}
.hero-art img { width: 85%; margin-left: auto; }

/* Inner page hero */
.page-hero {
  background: var(--color-navy);
  color: var(--color-white);
  padding-top: 100px;
  padding-bottom: 0;
  overflow: hidden;
}
.page-hero-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
}
.page-hero-copy {
  width: 50%;
  padding-bottom: 100px;
}
.page-hero h1 {
  font-size: 42px;
  font-weight: 600;
  line-height: 50px;
  color: var(--color-white);
}
.page-hero-logo {
  width: 50%;
  padding-bottom: 0;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
.page-hero-logo img {
  width: 100%;
  display: block;
  vertical-align: bottom;
}

/* Sections */
.section { padding: 100px 0; }
.section-navy { background: var(--color-navy); color: var(--color-white); }
.section-light { background: var(--color-light); }
.section-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-primary);
  margin: 0 0 20px;
}
.lead {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}
.section-navy .section-title { color: var(--color-white); }
.lead { margin-bottom: 20px; }

/* Home services 3x3 */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.services-intro h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-primary);
  max-width: 85%;
  margin-bottom: 16px;
}
.service-card {
  border: 1px solid var(--color-border);
  background: var(--color-white);
  display: flex;
  flex-direction: column;
}
.service-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.service-card-body {
  padding: 15px 15px 20px;
  text-align: center;
}
.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-primary);
  margin-bottom: 14px;
}
.service-card .btn { margin: 0 auto; }

/* Divisions */
.divisions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.divisions-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.divisions-intro h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 50px;
  color: var(--color-white);
}
.icon-box {
  background: var(--color-navy);
  padding: 30px;
  border: 1px solid #ffffff;
}
.icon-box .icon {
  width: 50px;
  height: 50px;
  color: var(--color-accent);
  margin-bottom: 15px;
}
.icon-box .icon svg {
  width: 50px;
  height: 50px;
  fill: currentColor;
  display: block;
}
.icon-box h3 {
  font-size: 26px;
  font-weight: 600;
  color: var(--color-white);
  margin: 0 0 10px;
}
.icon-box p {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-white);
}

/* Image/copy rows: tops and bottoms align on desktop */
.split {
  display: flex;
  align-items: stretch;
  gap: 50px;
}
.split > * { flex: 1; width: 50%; }
.split.reverse { flex-direction: row-reverse; }
.split-media {
  display: flex;
  flex-direction: column;
  align-self: stretch;
}
.split-media img {
  width: 100%;
  height: auto;
  flex: 1 0 auto;
  object-fit: cover;
  align-self: stretch;
  max-width: none;
}
.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.split-copy .btn {
  align-self: flex-start;
  width: auto;
}
.split h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-primary);
  margin-bottom: 16px;
}
.split .lead {
  color: var(--color-text);
  font-weight: 400;
}

.check-list { margin: 20px 0 28px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 6px 0;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-primary);
}
.check-list li span { font-weight: 400; }
.check-list svg {
  width: 22px;
  height: 22px;
  color: var(--color-secondary);
  fill: var(--color-secondary);
  flex: 0 0 22px;
  margin-top: 4px;
}
.check-list svg path { fill: var(--color-secondary); }

/* Counters */
.counters {
  background: url("../images/Untitled.jpg") center / cover no-repeat;
  padding: 50px 0;
}
.counters-inner {
  display: flex;
  justify-content: space-evenly;
  gap: 40px;
  text-align: center;
}
.counter { color: var(--color-white); }
.counter .num {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--color-white);
}
.counter .label {
  font-size: 22px;
  font-weight: 600;
  line-height: 26px;
  margin-top: 20px;
  text-align: center;
}

/* Clients carousel */
.clients-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.clients-head h2 {
  font-size: 40px;
  font-weight: 600;
  color: var(--color-primary);
}
.carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.carousel-full {
  width: 100%;
  overflow: hidden;
  margin-top: 20px;
  padding-bottom: 50px;
}
.carousel-full .carousel { width: 100%; }
.carousel-track {
  display: flex;
  gap: 10px;
  transition: transform 1s ease;
}
.carousel-slide {
  flex: 0 0 calc((100% - 30px) / 4);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 10px 16px;
}
.carousel-slide img {
  max-height: 90px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: var(--color-border);
  padding: 0;
  cursor: pointer;
}
.carousel-dots button.active { background: var(--color-accent); }

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.clients-grid a {
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.clients-grid img {
  max-height: 100px;
  width: auto;
  max-width: 80%;
  object-fit: contain;
}

/* Contact band */
.contact-band {
  padding: 100px 0;
}
.contact-grid {
  display: flex;
  gap: 50px;
  align-items: flex-end;
}
.contact-grid > * { flex: 1; }
.contact-grid h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.form {
  padding-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 30px;
  row-gap: 30px;
}
.form .full { grid-column: 1 / -1; }
.form input,
.form textarea {
  width: 100%;
  background: var(--color-white);
  border: 1px solid var(--color-primary);
  border-radius: 0;
  color: var(--color-primary);
  font-size: 18px;
  padding: 10px 14px;
  outline: none;
}
.form textarea { min-height: 96px; resize: vertical; }
.form input:focus,
.form textarea:focus { border-color: var(--color-accent); }
.contact-details .label {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 18px;
}
.contact-details p,
.contact-details a { font-size: 18px; color: var(--color-text); }
.form-message {
  display: none;
  grid-column: 1 / -1;
  padding: 12px 16px;
  background: var(--color-secondary);
  color: var(--color-white);
  font-size: 16px;
}
.form-message.show { display: block; }

/* Footer */
.site-footer {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 50px 0 0;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.footer-brand { width: 25%; flex: 0 0 25%; }
.footer-brand img {
  width: 100%;
  max-width: 100%;
  margin-bottom: 16px;
}
.footer-brand p { color: var(--color-white); font-size: 18px; }
.footer-col { width: 35%; flex: 0 0 35%; }
.footer-col.right {
  width: 25%;
  flex: 0 0 25%;
  text-align: right;
}
.footer-col h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 16px;
}
.footer-list li { padding-block: 10px; }
.footer-list a,
.footer-list span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 18px;
  font-weight: 500;
  color: var(--color-white);
}
.footer-col.right .footer-list a { justify-content: flex-end; }
.footer-list .elementor-icon-list-icon,
.footer-list svg {
  width: 19px;
  height: 19px;
  fill: var(--color-accent);
  flex: 0 0 19px;
  margin-top: 2px;
}
.footer-list svg {
  display: block;
  width: 19px;
  height: 19px;
}
.footer-line {
  height: 1px;
  background: var(--color-white);
  width: 100%;
  margin: 15px 0 0;
}
.footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 400;
  min-height: 70px;
}
.social {
  display: flex;
  align-items: center;
  gap: 5px;
}
.social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  width: 50px;
  height: 50px;
  animation: float 2s ease-in-out infinite;
}
.social a svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* About */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}
.mv-card {
  padding: 30px;
  border: 1px solid var(--color-border);
  border-radius: 5px;
}
.mv-card .icon {
  width: 42px;
  height: 42px;
  color: var(--color-accent);
  margin-bottom: 15px;
}
.mv-card .icon svg { width: 42px; height: 42px; fill: currentColor; }
.mv-card h3 {
  font-size: 26px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 12px;
}
.mv-card p { font-size: 16px; color: var(--color-text); }

.spotlight-grid {
  display: flex;
  gap: 50px;
  align-items: center;
}
.spotlight-grid > * { flex: 1; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
}
.why-item { display: flex; gap: 15px; }
.why-item .icon {
  width: 36px;
  height: 36px;
  color: var(--color-accent);
  flex: 0 0 36px;
}
.why-item .icon svg { width: 36px; height: 36px; fill: currentColor; }
.why-item h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.why-item p { font-size: 16px; color: var(--color-text); }

.preview-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 0;
}
.center { text-align: center; }
.center .btn { margin-top: 30px; }
.preview-gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Services page: 40% image / 60% copy, equal height */
.service-blocks { padding: 0; }
.service-block {
  display: flex;
  align-items: stretch;
  gap: 40px;
  padding: 100px 0 0;
}
.service-block:last-child { padding-bottom: 100px; }
.service-block .service-cover {
  flex: 0 0 40%;
  width: 40%;
  min-height: 200px;
  background-size: cover;
  background-position: center;
  align-self: stretch;
}
.service-block .service-copy {
  flex: 1 1 60%;
  width: 60%;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-block.reverse { flex-direction: row-reverse; }
.service-block h2 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 16px;
  max-width: 85%;
}
.service-block p {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 400;
}
.service-copy .check-list li { font-weight: 500; }
.service-copy .btn { margin-top: 30px; align-self: flex-start; }

.stats-split {
  display: flex;
  align-items: center;
  gap: 0;
}
.stats-split .stats-intro { width: 50%; padding-right: 30px; }
.stats-split .stats-row { width: 50%; margin-top: 0; }
.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  text-align: center;
  margin-top: 40px;
}
.stats-row .num {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--color-white);
}
.stats-row .label {
  font-size: 22px;
  font-weight: 600;
  line-height: 26px;
  color: var(--color-white);
  margin-top: 20px;
}

.progress { margin: 14px 0 22px; }
.progress-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.progress-bar {
  height: 20px;
  background: var(--color-muted);
  overflow: hidden;
}
.progress-bar > span {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 20px;
  line-height: 20px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 400;
  padding: 0 8px;
  box-sizing: border-box;
}
.progress-bar span.green { background: var(--color-secondary); }
.progress-bar span.gold { background: var(--color-accent); }
.progress-bar .pct { color: var(--color-white); font-size: 12px; line-height: 20px; }

.feature-list { margin: 20px 0 0; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.3;
}
.feature-list li + li { margin-top: 25px; }
.feature-list svg {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  color: var(--color-secondary);
  fill: var(--color-secondary);
  margin-top: 2px;
}
.feature-list svg path { fill: var(--color-secondary); }

/* Gallery — WP gallery-columns-4, padding 0 20px 20px 0, natural height */
.gallery {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
.gallery-item {
  width: 25%;
  padding: 0 20px 20px 0;
  margin: 0;
  float: none;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; }
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: 0;
  color: var(--color-white);
  font-size: 36px;
  cursor: pointer;
}

/* Engineering tabs: 40% title column, stacked image+copy on the right */
.eng-tabs {
  display: flex;
  gap: 0;
  align-items: stretch;
  padding-top: 50px;
}
.eng-tabs .tab-list {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-self: stretch;
}
.eng-tabs .tab-btn {
  background: var(--color-white);
  border: 1px solid var(--color-muted);
  color: var(--color-primary);
  font-size: 22px;
  font-weight: 600;
  text-align: left;
  padding: 15px 35px;
  cursor: pointer;
  width: 100%;
  line-height: 1.65;
  flex: 1 1 0;
  display: flex;
  align-items: flex-start;
}
.eng-tabs .tab-btn:hover { color: var(--color-secondary); }
.eng-tabs .tab-btn.active {
  background: var(--color-white);
  border-color: var(--color-muted);
  color: var(--color-secondary);
}
.eng-tabs .tab-panels {
  width: 60%;
  display: flex;
  align-items: stretch;
}
.tab-panel {
  display: none;
  border: 1px solid var(--color-muted);
  width: 100%;
}
.tab-panel.active {
  display: flex;
  flex-direction: column;
}
.tab-panel img {
  width: 100%;
  height: auto;
  display: block;
  flex: 1 1 auto;
  object-fit: cover;
}
.tab-body { padding: 20px 20px 10px; }
.tab-body .lead { padding: 0; margin-bottom: 16px; }
.tab-body .btn { display: table; margin: 10px auto 0; }
.tab-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
  margin: 0 0 16px;
}
.tab-lists ul {
  list-style: disc;
  padding-left: 1.2em;
  margin: 0 0 8px;
}
.tab-lists li {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.6;
  margin: 0 0 4px;
}
.tab-layout {
  display: block;
}
.tab-layout img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.chip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin: 16px 0 24px;
}
.chip {
  background: var(--color-light);
  padding: 12px 14px;
  font-size: 16px;
  font-weight: 500;
}

.eng-data {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 100px 0 0;
}
.eng-data-title {
  font-size: 42px;
  font-weight: 600;
  line-height: 50px;
  text-transform: uppercase;
  color: var(--color-white);
  margin: 0;
}
.data-band {
  position: relative;
  padding: 50px 0 100px;
}
.data-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50px;
  height: 2px;
  background: var(--color-muted);
  z-index: 0;
}
.data-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
.data-card {
  background: transparent;
  padding: 0 10px;
}
.data-dot {
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-bottom: 20px;
}
.data-dot svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: var(--color-accent);
  color: var(--color-accent);
}
.data-dot svg path { fill: var(--color-accent); }
.data-card h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  color: var(--color-white);
  margin: 0;
  padding: 0;
}
.data-card p {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-white);
  padding: 20px 0 0;
}

.it-photo {
  min-height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  align-self: stretch;
}
.it-list {
  list-style: disc;
  padding-left: 1.2em;
  margin: 16px 0 0;
}
.it-list li {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text);
  margin: 0 0 16px;
  line-height: 1.6;
}
.it-list strong { font-weight: 700; color: var(--color-primary); }

.flip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-top: 50px;
}
.flip {
  perspective: 1000px;
  height: 380px;
  transform-style: preserve-3d;
}
.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}
.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transition: transform 0.6s ease-in-out;
}
.flip-front {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  transform: rotateX(0deg) rotateY(0);
}
.flip-back {
  background: var(--color-navy);
  color: var(--color-white);
  transform: rotateX(-180deg) rotateY(0);
}
.flip:hover .flip-front,
.flip:focus-within .flip-front {
  transform: rotateX(180deg) rotateY(0);
}
.flip:hover .flip-back,
.flip:focus-within .flip-back {
  transform: rotateX(0deg) rotateY(0);
}
.flip-front .overlay,
.flip-back .overlay {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 30px;
  text-align: center;
  transform: translateZ(0.1px);
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-sizing: border-box;
}
.flip-front .overlay {
  background: var(--color-navy-60);
  justify-content: flex-end;
  align-items: center;
}
.flip-back .overlay {
  justify-content: center;
  align-items: center;
}
.flip-layer-inner {
  transform: translateZ(90px) scale(0.91);
  transform-style: preserve-3d;
}
.flip-front h3 {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-white);
  margin: 0;
}
.flip-back p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-white);
  margin: 0 0 16px;
}

/* Contact page cards */
.contact-info {
  display: flex;
  gap: 0;
  align-items: flex-start;
}
.contact-info-intro {
  width: 27%;
  flex: 0 0 27%;
  padding-right: 20px;
}
.contact-info-cards {
  width: 73%;
  flex: 1;
}
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0;
}
.contact-form-row {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}
.contact-form-col { width: 60%; flex: 0 0 60%; }
.contact-map { width: 40%; flex: 1; }
.contact-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}
.info-card {
  border: 1px solid var(--color-muted);
  padding: 20px;
}
.info-card h3 {
  font-size: 30px;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0 0 12px;
}
.info-card .icon {
  color: var(--color-accent);
  margin-bottom: 15px;
}
.info-card p {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
}
.info-card .icon svg {
  width: 35px;
  height: 35px;
  fill: currentColor;
}
.info-card p { font-size: 16px; }

/* Animations (Elementor) */
.anim {
  animation-duration: 1.25s;
  animation-timing-function: ease;
  animation-fill-mode: both;
}
.anim-pending {
  opacity: 0;
  animation: none !important;
}
@keyframes slideInLeft {
  from { transform: translate3d(-100%, 0, 0); opacity: 0; }
  to { transform: none; opacity: 1; }
}
@keyframes slideInRight {
  from { transform: translate3d(100%, 0, 0); opacity: 0; }
  to { transform: none; opacity: 1; }
}
@keyframes slideInUp {
  from { transform: translate3d(0, 100%, 0); opacity: 0; }
  to { transform: none; opacity: 1; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.anim-slideInLeft { animation-name: slideInLeft; }
.anim-slideInRight { animation-name: slideInRight; }
.anim-slideInUp { animation-name: slideInUp; }
.anim-fadeIn { animation-name: fadeIn; }

@media (max-width: 1024px) {
  .nav { display: none; }
  .menu-toggle { display: flex; align-items: center; justify-content: center; }
  .logo { width: 50%; flex-basis: 50%; }
  .logo img { width: 70%; }
  .hero-copy h2,
  .page-hero h1 { font-size: 35px; line-height: 1.2; }
  .services-intro h2,
  .split h2,
  .clients-head h2,
  .contact-grid h2,
  .service-block h2,
  .section-title,
  .divisions-intro h2 { font-size: 35px; }
  .services-grid,
  .divisions-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item { width: 33.33%; }
  .stats-row,
  .flip-grid,
  .info-cards { grid-template-columns: 1fr 1fr; }
  .stats-split { flex-direction: column; }
  .stats-split .stats-intro,
  .stats-split .stats-row { width: 100%; }
  .tab-lists { grid-template-columns: 1fr 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .carousel-slide { flex-basis: calc((100% - 10px) / 2); }
  .eng-tabs { flex-direction: column; }
  .eng-tabs .tab-list,
  .eng-tabs .tab-panels { width: 100%; }
  .eng-tabs .tab-btn { flex: 0 0 auto; }
  .tab-panel img { flex: 0 0 auto; }
  .contact-info,
  .contact-form-row { flex-direction: column; }
  .contact-info-intro,
  .contact-info-cards,
  .contact-form-col,
  .contact-map { width: 100%; flex: 1 1 auto; }
}

@media (max-width: 767px) {
  .container { padding: 0 15px; }
  body { font-size: 16px; }
  .hero, .page-hero, .section { padding: 40px 0; }
  .hero { padding-top: 40px; }
  .page-hero { padding-top: 40px; }
  .hero-copy, .page-hero-copy { padding-bottom: 40px; width: 100%; }
  .hero-grid,
  .page-hero-grid,
  .split,
  .split.reverse,
  .contact-grid,
  .spotlight-grid,
  .service-block,
  .service-block.reverse,
  .tab-layout,
  .footer-grid,
  .hero-art,
  .page-hero-logo { flex-direction: column; width: 100%; }
  .hero-copy, .hero-art, .page-hero-logo, .logo, .footer-brand, .footer-col, .footer-col.right,
  .service-block .service-cover, .service-block .service-copy,
  .split-media, .split-copy { width: 100%; flex: 1 1 auto; max-width: 100%; }
  .service-block { padding-top: 50px; }
  .service-block:last-child { padding-bottom: 50px; }
  .service-block .service-copy,
  .service-block.reverse .service-copy { padding: 24px 0; justify-content: flex-start; }
  .service-block .service-cover { min-height: 240px; }
  .service-block h2 { font-size: 28px; max-width: 100%; }
  .stats-row .num { font-size: 35px; }
  .stats-row .label { font-size: 18px; }
  .tab-lists { grid-template-columns: 1fr; }
  .it-photo { min-height: 240px; }
  .eng-data { padding: 40px 0 0; }
  .eng-data-title { font-size: 35px; line-height: 1.2; }
  .data-band { padding: 30px 0 40px; }
  .data-line { display: none; }
  .data-card { border-top: 2px solid var(--color-muted); }
  .data-dot { margin-top: -10px; }
  .flip-grid { padding-top: 24px; gap: 20px; }
  .split-copy { justify-content: flex-start; gap: 12px; }
  .logo img { width: 55%; }
  .services-grid,
  .divisions-grid,
  .stats-row,
  .flip-grid,
  .info-cards,
  .data-grid,
  .clients-grid,
  .why-grid,
  .chip-grid,
  .form,
  .preview-gallery { grid-template-columns: 1fr; }
  .gallery-item { width: 50%; }
  .counters-inner { flex-direction: column; }
  .footer-col.right, .footer-col.right .footer-list a { text-align: center; justify-content: center; }
  .footer-meta { flex-direction: column; gap: 12px; text-align: center; margin-top: 0; }
  .clients-head { flex-direction: column; align-items: flex-start; }
  .tab-layout img { width: 100%; max-width: none; }
  .eyebrow { width: 80% !important; min-width: 0; }
}
