:root {
  --navy: #081d46;
  --navy-light: #0a285f;
  --blue: #173b96;
  --bright-blue: #1e56c7;
  --cyan: #26c3e7;
  --cyan-dark: #069bc4;

  --title: #071735;
  --text: #526078;
  --muted: #7c889d;

  --white: #ffffff;
  --light-background: #f3f6fa;
  --border: #dce3ec;

  --container: 1210px;

  --shadow:
    0 18px 48px rgba(8, 29, 70, 0.12);
}

/* Reset */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--title);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

/* Header */

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;

  height: 82px;

  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(10, 36, 86, 0.08);

  transition:
    box-shadow 0.25s ease,
    height 0.25s ease;
}

.site-header.scrolled {
  box-shadow:
    0 7px 24px rgba(8, 29, 70, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;

  height: 100%;
}

.brand {
  display: flex;
  align-items: center;

  width: 150px;
  height: 68px;

  overflow: hidden;
}

.brand img {
  width: 142px;
  max-height: 65px;

  object-fit: contain;
  object-position: left center;
}

/* Navigation */

.main-nav {
  display: flex;
  align-items: center;

  gap: 29px;

  color: #2e3d55;

  font-size: 13px;
  font-weight: 500;
}

.main-nav > a:not(.header-cta) {
  position: relative;

  padding: 31px 0 26px;
}

.main-nav > a:not(.header-cta)::after {
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;

  height: 2px;

  background: var(--cyan);

  content: "";

  transform: scaleX(0);

  transition: transform 0.2s ease;
}

.main-nav > a:hover,
.main-nav > a.active {
  color: var(--blue);
}

.main-nav > a:hover::after,
.main-nav > a.active::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 42px;

  margin-left: 10px;
  padding: 0 24px;

  background: var(--blue);
  color: var(--white);

  font-size: 12px;
  font-weight: 700;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.header-cta:hover {
  background: var(--navy);
  transform: translateY(-2px);
}

/* Mobile menu button */

.menu-toggle {
  display: none;

  width: 46px;
  height: 46px;

  background: transparent;
  border: 1px solid var(--border);

  cursor: pointer;
}

.menu-toggle span {
  display: block;

  width: 20px;
  height: 2px;

  margin: 5px auto;

  background: var(--navy);

  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

/* Shared */

.section {
  padding: 104px 0;
}

.eyebrow {
  margin-bottom: 16px;

  color: var(--cyan-dark);

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h2 {
  color: var(--title);

  font-size: clamp(32px, 3vw, 46px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading h2 {
  max-width: 760px;
}

/* Buttons */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 49px;

  padding: 0 24px;

  border: 1px solid transparent;

  font-size: 12px;
  font-weight: 700;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.button span {
  margin-left: 14px;

  font-size: 18px;
  line-height: 1;
}

.button:hover {
  transform: translateY(-3px);
}

.button-cyan {
  background: var(--cyan);
  color: var(--navy);
}

.button-cyan:hover {
  background: #5bd7f1;
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.button-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.small-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 45px;

  margin-top: 16px;
  padding: 0 22px;

  font-size: 12px;
  font-weight: 700;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.small-button span {
  margin-left: 13px;

  font-size: 16px;
}

.small-button:hover {
  transform: translateY(-2px);
}

.dark-button {
  background: var(--navy);
  color: var(--white);
}

.dark-button:hover {
  background: var(--blue);
}

.outline-button {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--title);
}

/* Hero */

.hero {
  position: relative;

  min-height: 616px;

  background-image:
    url("../assets/hero-power.jpg");

  background-position: center 52%;
  background-size: cover;

  color: var(--white);
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(4, 23, 61, 0.96) 0%,
      rgba(8, 34, 87, 0.88) 47%,
      rgba(8, 31, 76, 0.45) 76%,
      rgba(8, 29, 70, 0.34) 100%
    ),
    linear-gradient(
      0deg,
      rgba(5, 22, 57, 0.34),
      transparent 52%
    );
}

.hero-content {
  position: relative;
  z-index: 2;

  padding-top: 88px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;

  width: fit-content;

  margin-bottom: 22px;
  padding: 5px 13px;

  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50px;

  color: var(--white);

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 850px;

  margin-bottom: 24px;

  font-size: clamp(43px, 4.5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.047em;
  line-height: 1.05;
}

.hero-description {
  max-width: 690px;

  color: rgba(255, 255, 255, 0.82);

  font-size: 15px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;

  gap: 12px;

  margin-top: 34px;
}

.hero-note {
  display: flex;
  align-items: center;

  gap: 12px;

  margin-top: 27px;

  color: rgba(255, 255, 255, 0.7);

  font-size: 12px;
}

.hero-note-line {
  width: 28px;
  height: 1px;

  background: var(--cyan);
}

/* Statistics */

.statistics-position {
  position: absolute;
  z-index: 4;

  right: 0;
  bottom: -55px;
  left: 0;

  pointer-events: none;
}

.statistics {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  width: min(900px, 82%);

  margin-left: auto;

  background: var(--white);
  box-shadow: var(--shadow);

  color: var(--title);

  pointer-events: auto;
}

.statistic {
  min-height: 110px;

  padding: 28px 28px 20px;

  border-right: 1px solid var(--border);
}

.statistic:last-child {
  border-right: 0;
}

.statistic strong {
  display: block;

  margin-bottom: 2px;

  color: var(--blue);

  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.statistic span {
  display: block;

  color: var(--muted);

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* About */

.about-section {
  padding-top: 154px;
}

.about-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(380px, 0.92fr);

  align-items: center;

  gap: 92px;
}

.about-content h2 {
  margin-bottom: 25px;
}

.about-content > p:not(.eyebrow) {
  max-width: 650px;

  margin-bottom: 17px;

  color: var(--text);

  font-size: 14px;
  line-height: 1.82;
}

.about-image {
  position: relative;
}

.about-image::before {
  position: absolute;
  z-index: -1;

  top: -20px;
  right: -20px;

  width: 145px;
  height: 145px;

  border-top: 1px solid var(--cyan);
  border-right: 1px solid var(--cyan);

  content: "";
}

.about-image img {
  width: 100%;
  height: 430px;

  object-fit: cover;
}

.year-box {
  position: absolute;

  bottom: -1px;
  left: -48px;

  min-width: 190px;

  padding: 25px 28px;

  background: var(--blue);
  color: var(--white);
}

.year-box strong {
  display: block;

  font-size: 25px;
  line-height: 1;
}

.year-box span {
  display: block;

  margin-top: 9px;

  color: rgba(255, 255, 255, 0.72);

  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Services */

.services-section {
  background: var(--light-background);
}

.services-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;

  min-width: 0;

  background: var(--white);
  border: 1px solid #e1e6ed;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 20px 45px rgba(8, 29, 70, 0.1);
}

.service-image {
  position: relative;

  height: 190px;

  overflow: hidden;
}

.service-image::after {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      0deg,
      rgba(6, 28, 69, 0.34),
      transparent 70%
    );

  content: "";
}

.service-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.45s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-icon {
  position: absolute;
  z-index: 2;

  bottom: 0;
  left: 18px;

  display: grid;

  width: 42px;
  height: 42px;

  place-items: center;

  background: var(--cyan);
  color: var(--navy);
}

.service-icon svg {
  width: 20px;

  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.service-content {
  display: flex;
  flex: 1;
  flex-direction: column;

  padding: 24px 22px 23px;
}

.service-content h3 {
  min-height: 54px;

  margin-bottom: 13px;

  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.38;
}

.service-content p {
  margin-bottom: 20px;

  color: var(--text);

  font-size: 11px;
  line-height: 1.65;
}

.service-content a {
  margin-top: auto;

  color: var(--blue);

  font-size: 11px;
  font-weight: 700;
}

.services-section .small-button {
  margin-top: 36px;
}

/* Projects */

.projects-section {
  background: var(--white);
}

.projects-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 22px;

  margin-bottom: 18px;
}

.project-card {
  position: relative;
  isolation: isolate;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  min-height: 235px;

  padding: 28px;

  overflow: hidden;

  background-image:
    linear-gradient(
      0deg,
      rgba(4, 24, 63, 0.96) 0%,
      rgba(7, 31, 79, 0.7) 58%,
      rgba(10, 39, 92, 0.28) 100%
    ),
    var(--project-image);

  background-position: center;
  background-size: cover;

  color: var(--white);
}

.project-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;

  background: rgba(14, 67, 163, 0.32);

  content: "";

  opacity: 0;

  transition: opacity 0.3s ease;
}

.project-card:hover::before {
  opacity: 1;
}

.project-type {
  margin-bottom: 9px;

  color: var(--cyan);

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-card strong {
  max-width: 95%;

  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.project-card small {
  margin-top: 7px;

  color: rgba(255, 255, 255, 0.64);

  font-size: 10px;
}

.project-card i {
  width: 26px;
  height: 2px;

  margin-top: 14px;

  background: var(--cyan);

  transition: width 0.25s ease;
}

.project-card:hover i {
  width: 58px;
}

/* Clients */

.clients-section {
  background: var(--light-background);

  text-align: center;
}

.centered-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 10px;
}

.centered-eyebrow span {
  width: 28px;
  height: 1px;

  background: var(--cyan);
}

.center-heading h2 {
  margin-inline: auto;
}

.clients-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;

  gap: 36px 46px;

  margin: 50px auto 30px;
}

.clients-logos img {
  width: auto;
  max-width: 170px;
  height: 62px;
  object-fit: contain;

  filter: grayscale(1);
  opacity: 0.58;

  transition:
    filter 0.25s ease,
    opacity 0.25s ease,
    transform 0.25s ease;
}


.clients-logos img:hover {
  filter: grayscale(0);
  opacity: 1;

  transform: translateY(-4px);
}

.simple-link {
  display: inline-flex;
  align-items: center;

  gap: 10px;

  color: var(--blue);

  font-size: 11px;
  font-weight: 700;
}

/* Certifications */

.certifications-grid {
  display: grid;

  grid-template-columns: 0.8fr 1.2fr;

  align-items: center;

  gap: 105px;
}

.certifications-intro h2 {
  margin-bottom: 22px;
}

.certifications-intro > p:not(.eyebrow) {
  max-width: 445px;

  color: var(--text);

  font-size: 14px;
}

.left-link {
  margin-top: 15px;
}

.certificate-item {
  display: flex;
  align-items: center;

  gap: 19px;

  min-height: 70px;

  border-bottom: 1px solid var(--border);
}

.certificate-item:first-child {
  border-top: 1px solid var(--border);
}

.certificate-icon {
  display: grid;

  width: 23px;
  height: 23px;

  flex: 0 0 23px;

  place-items: center;

  border: 2px solid var(--cyan);
  border-radius: 50%;

  color: var(--cyan-dark);

  font-size: 11px;
  font-weight: 800;
}

.certificate-item strong,
.certificate-item small {
  display: block;
}

.certificate-item strong {
  font-size: 13px;
  font-weight: 600;
}

.certificate-item small {
  margin-top: 2px;

  color: var(--muted);

  font-size: 10px;
}

/* Contact section */

.contact-section {
  padding: 70px 0;

  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);

  color: var(--white);
}

.contact-content {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 60px;
}

.contact-content h2 {
  margin-bottom: 13px;

  color: var(--white);

  font-size: clamp(30px, 3vw, 42px);
}

.contact-content p {
  max-width: 680px;

  color: rgba(255, 255, 255, 0.68);

  font-size: 13px;
}

.contact-buttons {
  display: flex;
  flex: 0 0 auto;

  gap: 12px;
}

/* Footer */

.site-footer {
  padding-top: 70px;

  background: var(--navy);
  color: rgba(255, 255, 255, 0.67);
}

.footer-grid {
  display: grid;

  grid-template-columns:
    1.35fr
    0.65fr
    1fr
    1fr;

  gap: 65px;

  padding-bottom: 62px;
}

.footer-company img {
  width: 105px;
  max-height: 70px;
  margin-bottom: 22px;
  padding: 0;
  background: transparent;
  object-fit: contain;
}

.footer-grid h3 {
  margin-bottom: 18px;

  color: var(--cyan);

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid a {
  display: block;

  margin-bottom: 8px;

  font-size: 11px;
  line-height: 1.7;
}

.footer-grid a {
  transition: color 0.2s ease;
}

.footer-grid a:hover {
  color: var(--cyan);
}

.footer-slogan {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 65px;

  border-top: 1px solid rgba(255, 255, 255, 0.12);

  font-size: 10px;
}

/* Reveal animations */

.reveal {
  opacity: 0;

  transform: translateY(24px);

  transition:
    opacity 0.72s ease,
    transform 0.72s ease;
}

.reveal.visible {
  opacity: 1;

  transform: translateY(0);
}

/* Tablet */

@media (max-width: 1120px) {
  .main-nav {
    gap: 18px;
  }

  .main-nav > a:not(.header-cta) {
    font-size: 12px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    gap: 55px;
  }
}

/* Mobile navigation */

@media (max-width: 920px) {
  .container {
    width: min(100% - 36px, var(--container));
  }

  .menu-toggle {
    position: relative;
    z-index: 1002;

    display: block;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 1001;

    top: 82px;
    right: 0;
    bottom: 0;

    width: min(360px, 86vw);

    padding: 28px;

    flex-direction: column;
    align-items: stretch;

    gap: 0;

    background: var(--white);

    box-shadow:
      -18px 20px 40px rgba(8, 29, 70, 0.18);

    transform: translateX(104%);

    transition: transform 0.3s ease;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav > a:not(.header-cta) {
    padding: 14px 4px;

    border-bottom: 1px solid var(--border);

    font-size: 14px;
  }

  .main-nav > a:not(.header-cta)::after {
    display: none;
  }

  .header-cta {
    margin: 22px 0 0;
  }

  .statistics {
    grid-template-columns: repeat(2, 1fr);

    width: 100%;
  }

  .statistic:nth-child(2) {
    border-right: 0;
  }

  .statistic:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .about-grid,
  .certifications-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    width: min(620px, 94%);

    margin: 20px auto 0;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .certifications-grid {
    gap: 48px;
  }

  .contact-content {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small mobile */

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    height: 74px;
  }

  .brand {
    width: 125px;
    height: 60px;
  }

  .brand img {
    width: 120px;
  }

  .main-nav {
    top: 74px;
  }

  .hero {
    min-height: auto;

    background-position: 64% center;
  }

  .hero-content {
    padding-top: 70px;
    padding-bottom: 65px;
  }

  .hero h1 {
    font-size: 39px;
  }

  .hero h1 br,
  .center-heading h2 br,
  .section-heading h2 br,
  .about-content h2 br {
    display: none;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-buttons,
  .contact-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-buttons .button,
  .contact-buttons .button {
    width: 100%;
  }

  .statistics-position {
    position: relative;

    bottom: auto;

    width: 100%;
  }

  .statistics-position.container {
    width: 100%;
  }

  .statistics {
    grid-template-columns: 1fr 1fr;

    box-shadow: none;
  }

  .statistic {
    min-height: 95px;

    padding: 21px 15px;
  }

  .statistic strong {
    font-size: 23px;
  }

  .about-section {
    padding-top: 85px;
  }

  .section {
    padding: 78px 0;
  }

  h2 {
    font-size: 32px;
  }

  .about-grid {
    gap: 52px;
  }

  .about-image {
    width: calc(100% - 20px);
  }

  .about-image img {
    height: 340px;
  }

  .year-box {
    left: -10px;

    min-width: 165px;

    padding: 20px;
  }

  .services-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .service-image {
    height: 225px;
  }

  .project-card {
    min-height: 240px;
  }

  .clients-logos {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 35px 24px;
  }

  .clients-logos img {
    max-width: 120px;

    margin-inline: auto;
  }

  .contact-section {
    padding: 62px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;

    gap: 38px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;

    gap: 5px;

    padding: 20px 0;
  }
}

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;

    transition-duration: 0.01ms !important;

    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}


/* =========================================================
   ABOUT PAGE
========================================================= */

/* مطابقة مواقع عناوين هيدر About مع Home */
@media (min-width: 1121px) {
  body:has(.about-page-hero) .header-inner > .main-nav {
    margin-left: auto;
    gap: 34px;
  }

  body:has(.about-page-hero) .header-inner > .header-cta {
    margin-left: 40px;
  }
}

/* العناوين الصغيرة */
.inner-page-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.inner-page-eyebrow span {
  display: block;
  width: 32px;
  height: 1px;
  flex-shrink: 0;
  background: currentColor;
}

.inner-page-eyebrow-blue {
  color: var(--blue);
}

/* =========================================================
   ABOUT HERO
========================================================= */

.about-page-hero {
  position: relative;
  min-height: 405px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background-image: url("../assets/img-tower.jpg");
  background-position: center 44%;
  background-repeat: no-repeat;
  background-size: cover;
}

.about-page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(4, 27, 66, 0.98) 0%,
    rgba(6, 35, 80, 0.92) 50%,
    rgba(8, 38, 82, 0.62) 100%
  );
}

.about-page-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 64px;
  padding-bottom: 64px;
}

.about-page-hero h1 {
  max-width: 790px;
  margin-bottom: 23px;
  color: var(--white);
  font-size: clamp(42px, 3.7vw, 52px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.about-page-hero p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.7;
}

/* =========================================================
   COMPANY OVERVIEW
========================================================= */

.about-overview {
  padding-top: 90px;
  padding-bottom: 90px;
  background: var(--white);
}

.about-overview-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  align-items: center;
  gap: 75px;
}

.about-overview-text p {
  margin-bottom: 20px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
}

.about-overview-text p:last-child {
  margin-bottom: 0;
}

/* أرقام الشركة */
.about-page-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: var(--light-background);
}

.about-page-stat {
  min-height: 128px;
  padding: 29px 25px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-page-stat:nth-child(2n) {
  border-right: 0;
}

.about-page-stat:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.about-page-stat strong {
  display: block;
  margin-bottom: 8px;
  color: var(--bright-blue);
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
}

.about-page-stat span {
  display: block;
  color: #354463;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* =========================================================
   VISION AND MISSION
========================================================= */

.vision-mission-section {
  padding-top: 95px;
  padding-bottom: 95px;
  color: var(--white);
  background: var(--navy);
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
}

.vision-mission-card {
  padding-right: 25px;
}

.vision-mission-icon {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  color: var(--navy);
  background: #53cfdf;
}

.vision-mission-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vision-mission-card h2 {
  margin-bottom: 15px;
  color: var(--white);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.2;
}

.vision-mission-card p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.65;
}

/* =========================================================
   CORE VALUES
========================================================= */

.about-values-section {
  padding-top: 85px;
  padding-bottom: 30px;
  background: var(--white);
}

.about-section-title {
  margin-bottom: 45px;
  color: var(--title);
  font-size: clamp(32px, 3vw, 43px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.about-value-item {
  min-height: 168px;
  padding: 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.about-value-item:nth-child(3n) {
  border-right: 0;
}

.about-value-item:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.about-value-number {
  display: block;
  margin-bottom: 17px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 700;
}

.about-value-item h3 {
  margin-bottom: 10px;
  color: var(--title);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.3;
}

.about-value-item p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.55;
}

/* =========================================================
   OUR PHILOSOPHY
========================================================= */

.philosophy-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background: var(--light-background);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.philosophy-image {
  width: 100%;
  height: 380px;
  overflow: hidden;
}

.philosophy-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.philosophy-content h2 {
  max-width: 590px;
  margin-bottom: 24px;
  color: var(--title);
  font-size: clamp(35px, 3.2vw, 47px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.philosophy-content p {
  margin-bottom: 20px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.62;
}

.philosophy-content p:last-child {
  margin-bottom: 0;
}

/* =========================================================
   CUSTOMER COMMITMENT
========================================================= */

.commitments-section {
  padding-top: 74px;
  padding-bottom: 94px;
  background: var(--white);
}

.commitments-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.commitment-card {
  min-height: 250px;
  padding: 32px;
  border: 1px solid var(--border);
  background: var(--white);
}

.commitment-card-blue {
  border-top: 2px solid var(--blue);
}

.commitment-card-cyan {
  border-top: 2px solid var(--cyan);
}

.commitment-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--bright-blue);
  background: var(--light-background);
}

.commitment-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.commitment-card h3 {
  margin-bottom: 13px;
  color: var(--title);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.3;
}

.commitment-card p {
  max-width: 530px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.62;
}

/* =========================================================
   TEAM STRUCTURE
========================================================= */

.team-structure-section {
  padding-top: 75px;
  padding-bottom: 85px;
  background: var(--light-background);
}

.team-structure-heading {
  max-width: 850px;
  margin-bottom: 48px;
}

.team-structure-heading h2 {
  margin-bottom: 20px;
  color: var(--title);
  font-size: clamp(35px, 3.2vw, 47px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.team-structure-heading p {
  max-width: 820px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
}

.departments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.department-item {
  position: relative;
  min-height: 61px;
  display: flex;
  align-items: center;
  padding: 17px 20px 17px 41px;
  color: var(--title);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.department-item::before {
  position: absolute;
  left: 22px;
  width: 6px;
  height: 6px;
  background: var(--cyan);
  content: "";
}

.disciplines-box {
  margin-top: 40px;
  padding: 39px 40px 41px;
  color: var(--white);
  background: var(--navy);
}

.disciplines-label {
  display: block;
  margin-bottom: 25px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.disciplines-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.disciplines-list span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 920px) {
  .about-overview-grid,
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .about-values-grid,
  .departments-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-value-item:nth-child(3n) {
    border-right: 1px solid var(--border);
  }

  .about-value-item:nth-child(2n) {
    border-right: 0;
  }

  .about-value-item:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--border);
  }

  .about-value-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .philosophy-image {
    height: 430px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {
  .about-page-hero {
    min-height: 420px;
  }

  .about-page-hero-content {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .about-page-hero h1 {
    font-size: 40px;
    letter-spacing: -0.035em;
  }

  .about-page-hero h1 br,
  .team-structure-heading h2 br {
    display: none;
  }

  .about-page-hero p {
    font-size: 15px;
  }

  .about-overview {
    padding-top: 65px;
    padding-bottom: 65px;
  }

  .vision-mission-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .commitments-grid {
    grid-template-columns: 1fr;
  }

  .about-values-grid,
  .departments-grid {
    grid-template-columns: 1fr;
  }

  .about-value-item,
  .about-value-item:nth-child(2n),
  .about-value-item:nth-child(3n) {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .about-value-item:last-child {
    border-bottom: 0;
  }

  .philosophy-image {
    height: 320px;
  }

  .commitment-card {
    min-height: auto;
    padding: 27px;
  }

  .disciplines-box {
    padding: 30px 22px;
  }
}

@media (max-width: 480px) {
  .about-page-hero h1 {
    font-size: 35px;
  }

  .about-page-stats {
    grid-template-columns: 1fr;
  }

  .about-page-stat {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .about-page-stat:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .about-page-stat:last-child {
    border-bottom: 0;
  }

  .about-section-title,
  .philosophy-content h2,
  .team-structure-heading h2 {
    font-size: 32px;
  }
}




/* =========================================================
   SERVICES PAGE
   يستخدم نفس Header وFooter الموجودين في Home
========================================================= */

/* SERVICES HERO */

.services-page-hero {
  position: relative;
  min-height: 405px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background-image: url("../assets/img-control-room.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.services-page-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(4, 25, 61, 0.98) 0%,
      rgba(5, 31, 71, 0.94) 48%,
      rgba(7, 34, 75, 0.75) 100%
    );
}

.services-page-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 65px;
  padding-bottom: 65px;
}

.services-page-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.services-page-eyebrow span {
  display: block;
  width: 32px;
  height: 1px;
  background: currentColor;
}

.services-page-hero h1 {
  max-width: 760px;
  margin-bottom: 23px;
  color: var(--white);
  font-size: clamp(42px, 3.8vw, 54px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.services-page-hero-description {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.7;
}

/* SERVICE SECTIONS */

.service-detail-section {
  padding-top: 40px;
  padding-bottom: 80px;
  background: var(--white);
}

.service-detail-section + .service-detail-section {
  padding-top: 28px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 80px;
}

.service-detail-image {
  width: 100%;
  height: 380px;
  overflow: hidden;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.service-detail-image:hover img {
  transform: scale(1.025);
}

.service-detail-content {
  padding: 15px 0;
}

.service-detail-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 21px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-detail-label span {
  display: block;
  width: 32px;
  height: 1px;
  flex-shrink: 0;
  background: currentColor;
}

.service-detail-content h2 {
  margin-bottom: 20px;
  color: var(--title);
  font-size: clamp(27px, 2.3vw, 31px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.service-detail-description {
  margin-bottom: 27px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
}

/* SERVICE FEATURES */

.service-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 38px;
  row-gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-feature-list li {
  position: relative;
  min-height: 22px;
  padding-left: 26px;
  color: var(--title);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.service-feature-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  color: var(--cyan);
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  content: "✓";
}

/* QUICK CTA */

.services-quick-cta-section {
  padding-top: 32px;
  padding-bottom: 80px;
  background: var(--white);
}

.services-quick-cta {
  min-height: 139px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 35px 40px;
  color: var(--white);
  background: var(--navy);
}

.services-quick-cta h2 {
  max-width: 690px;
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
}

.services-quick-cta-button {
  min-width: 151px;
  min-height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-shrink: 0;
  padding: 0 24px;
  color: var(--navy);
  background: #50cadd;
  font-size: 13px;
  font-weight: 600;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.services-quick-cta-button:hover {
  background: #76d9e7;
  transform: translateY(-2px);
}

.services-quick-cta-button span {
  font-size: 18px;
  line-height: 1;
}

.services-final-quick-cta {
  padding-bottom: 112px;
}

/* BOTTOM CONTACT BAND */

.services-page-hero ~ .contact-band,
main > .contact-band {
  background: var(--navy);
}

.contact-band-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* =========================================================
   SERVICES TABLET
========================================================= */

@media (max-width: 920px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .service-detail-reverse .service-detail-image {
    order: -1;
  }

  .service-detail-image {
    height: 430px;
  }

  .service-detail-content {
    padding: 0;
  }

  .services-quick-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .services-quick-cta-button {
    min-width: 170px;
  }
}

/* =========================================================
   SERVICES MOBILE
========================================================= */

@media (max-width: 620px) {
  .services-page-hero {
    min-height: 420px;
  }

  .services-page-hero-content {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .services-page-hero h1 {
    font-size: 39px;
  }

  .services-page-hero h1 br {
    display: none;
  }

  .services-page-hero-description {
    font-size: 15px;
  }

  .service-detail-section {
    padding-top: 50px;
    padding-bottom: 65px;
  }

  .service-detail-section + .service-detail-section {
    padding-top: 50px;
  }

  .service-detail-grid {
    gap: 32px;
  }

  .service-detail-image {
    height: 280px;
  }

  .service-detail-content h2 {
    font-size: 27px;
  }

  .service-detail-description {
    font-size: 15px;
  }

  .service-feature-list {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .services-quick-cta-section {
    padding-top: 15px;
    padding-bottom: 65px;
  }

  .services-quick-cta {
    min-height: auto;
    gap: 25px;
    padding: 30px 25px;
  }

  .services-quick-cta h2 {
    font-size: 17px;
  }

  .services-quick-cta-button {
    width: 100%;
  }

  .services-final-quick-cta {
    padding-bottom: 80px;
  }

  .contact-band-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .contact-band-actions .btn {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .services-page-hero h1 {
    font-size: 34px;
  }

  .service-detail-image {
    height: 240px;
  }
}




/* =========================================================
   PROJECTS PAGE
========================================================= */

/* PROJECTS HERO */

.projects-page-hero {
  position: relative;
  min-height: 452px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background-image: url("../assets/img-transmission.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.projects-page-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(4, 26, 63, 0.98) 0%,
    rgba(7, 34, 77, 0.9) 50%,
    rgba(6, 28, 64, 0.7) 100%
  );
}

.projects-page-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 64px;
  padding-bottom: 64px;
}

.projects-page-eyebrow,
.projects-catalog-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.projects-page-eyebrow span,
.projects-catalog-eyebrow span {
  display: block;
  width: 32px;
  height: 1px;
  flex-shrink: 0;
  background: currentColor;
}

.projects-page-hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(43px, 4vw, 55px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.projects-page-hero-description {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  line-height: 1.7;
}

/* PROJECTS CATALOG */

.projects-catalog-section {
  padding-top: 70px;
  padding-bottom: 90px;
  background: var(--white);
}

.projects-catalog-heading {
  margin-bottom: 37px;
}

.projects-catalog-eyebrow {
  margin-bottom: 19px;
  color: var(--blue);
}

.projects-catalog-heading h2 {
  color: var(--title);
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.045em;
}

/* FILTER BUTTONS */

.projects-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.projects-filter-button {
  min-height: 38px;
  padding: 0 17px;
  flex: 0 0 auto;
  border: 1px solid var(--border);
  background: var(--white);
  color: #2f4260;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.projects-filter-button:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.projects-filter-button.active {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

/* PROJECT CARDS */

.projects-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.projects-page-card {
  position: relative;
  height: 256px;
  overflow: hidden;
  background: var(--navy);
}

.projects-page-card[hidden] {
  display: none;
}

.projects-page-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.projects-page-card:hover > img {
  transform: scale(1.04);
}

.projects-page-card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 28, 65, 0.12) 0%,
    rgba(7, 29, 69, 0.45) 45%,
    rgba(5, 25, 61, 0.96) 100%
  );
}

.projects-page-card-content {
  position: absolute;
  z-index: 2;
  right: 23px;
  bottom: 22px;
  left: 23px;
}

.projects-page-card-content span {
  display: block;
  margin-bottom: 11px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.projects-page-card-content h3 {
  margin-bottom: 7px;
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -0.025em;
}

.projects-page-card-content p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.4;
}

.projects-page-card-content i {
  display: block;
  width: 41px;
  height: 2px;
  margin-top: 17px;
  background: var(--cyan);
}

/* SHOW MORE BUTTON */

.projects-toggle-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
  padding: 0 23px;
  border: 1px solid #afbac9;
  background: var(--white);
  color: var(--title);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.projects-toggle-button:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.projects-toggle-arrow {
  font-size: 19px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.projects-toggle-button[aria-expanded="true"] .projects-toggle-arrow {
  transform: rotate(180deg);
}

/* PROJECTS RESPONSIVE */

@media (max-width: 920px) {
  .projects-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .projects-page-card {
    height: 270px;
  }

  .projects-filter {
    padding-bottom: 8px;
  }
}

@media (max-width: 620px) {
  .projects-page-hero {
    min-height: 440px;
  }

  .projects-page-hero-content {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .projects-page-hero h1 {
    font-size: 39px;
  }

  .projects-page-hero h1 br {
    display: none;
  }

  .projects-page-hero-description {
    font-size: 15px;
  }

  .projects-catalog-section {
    padding-top: 60px;
    padding-bottom: 70px;
  }

  .projects-catalog-heading h2 {
    font-size: 34px;
  }

  .projects-page-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .projects-page-card {
    height: 275px;
  }

  .projects-toggle-button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .projects-page-hero h1 {
    font-size: 34px;
  }

  .projects-page-card {
    height: 250px;
  }

  .projects-page-card-content {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }
}




/* ==================================================
   CLIENTS PAGE
================================================== */

/* Clients Hero */

.clients-page-hero {
  position: relative;

  display: flex;
  align-items: center;

  min-height: 405px;

  overflow: hidden;

  background-image: url("../assets/img-design-team.jpg");
  background-position: center 42%;
  background-size: cover;

  color: var(--white);
}

.clients-page-hero-shade {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(4, 23, 58, 0.98) 0%,
      rgba(5, 29, 70, 0.94) 42%,
      rgba(8, 35, 79, 0.77) 70%,
      rgba(8, 29, 70, 0.66) 100%
    );
}

.clients-page-hero-content {
  position: relative;
  z-index: 2;

  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;

  padding-top: 62px;
  padding-bottom: 67px;
}

.clients-page-eyebrow {
  display: flex;
  align-items: center;

  gap: 12px;

  margin-bottom: 18px;

  color: var(--cyan);

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.clients-page-eyebrow span {
  width: 32px;
  height: 1px;

  flex: 0 0 32px;

  background: var(--cyan);
}

.clients-page-eyebrow p {
  margin: 0;
}

.clients-page-hero h1 {
  max-width: 790px;

  margin: 0 0 23px;

  color: var(--white);

  font-size: clamp(43px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.clients-page-description {
  max-width: 700px;

  margin: 0;

  color: rgba(255, 255, 255, 0.79);

  font-size: 16px;
  line-height: 1.8;
}


/* ==================================================
   CLIENT ORGANIZATIONS
================================================== */

.clients-organizations-section {
  padding: 72px 0 88px;

  background: var(--white);
}

.clients-section-heading {
  max-width: 930px;

  margin: 0 auto 56px;

  text-align: center;
}

.clients-section-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  margin-bottom: 17px;

  color: var(--blue);

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.clients-section-eyebrow span {
  width: 31px;
  height: 1px;

  background: #809bd2;
}

.clients-section-eyebrow p {
  margin: 0;
}

.clients-section-heading h2 {
  margin: 0 0 18px;

  color: var(--title);

  font-size: clamp(34px, 3.2vw, 43px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.clients-section-heading > p {
  max-width: 790px;

  margin: 0 auto;

  color: var(--text);

  font-size: 15px;
  line-height: 1.75;
}


/* ==================================================
   CLIENT LOGOS GRID
================================================== */

.clients-logo-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.client-logo-card,
.client-logo-empty {
  min-height: 216px;

  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.client-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  padding: 34px 24px 25px;

  background: var(--white);
}

.client-logo-card img {
  width: auto;
  height: auto;

  max-width: 190px;
  max-height: 70px;

  object-fit: contain;

  filter: grayscale(1);
  opacity: 0.58;

  transition:
    filter 0.25s ease,
    opacity 0.25s ease,
    transform 0.25s ease;
}

.client-logo-card:hover img {
  filter: grayscale(0);
  opacity: 1;

  transform: translateY(-3px);
}

.client-logo-card h3 {
  margin-top: 25px;

  color: var(--title);

  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  text-align: center;
}


/* Individual Logo Sizes */

.client-logo-saudi-energy {
  max-width: 95px !important;
  max-height: 70px !important;
}

.client-logo-aramco {
  max-width: 180px !important;
  max-height: 62px !important;
}

.client-logo-neom {
  max-width: 190px !important;
  max-height: 64px !important;
}

.client-logo-sabic {
  max-width: 135px !important;
  max-height: 67px !important;
}

.client-logo-principal {
  max-width: 180px !important;
  max-height: 64px !important;
}

.client-logo-national-grid {
  max-width: 170px !important;
  max-height: 68px !important;
}

.client-logo-pdc {
  max-width: 190px !important;
  max-height: 67px !important;
}

.client-logo-empty {
  background: #e5eaf1;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 920px) {
  .clients-page-hero {
    min-height: 390px;

    background-position: 58% center;
  }

  .clients-page-hero-content {
    width: min(100% - 36px, var(--container));
  }

  .clients-page-hero h1 {
    font-size: 45px;
  }

  .clients-page-description {
    max-width: 620px;

    font-size: 15px;
  }

  .clients-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 620px) {
  .clients-page-hero {
    min-height: auto;

    background-position: 65% center;
  }

  .clients-page-hero-content {
    width: min(100% - 28px, var(--container));

    padding-top: 70px;
    padding-bottom: 72px;
  }

  .clients-page-hero h1 {
    font-size: 38px;
  }

  .clients-page-hero h1 br {
    display: none;
  }

  .clients-page-description {
    font-size: 14px;
    line-height: 1.75;
  }

  .clients-organizations-section {
    padding: 68px 0 75px;
  }

  .clients-section-heading {
    margin-bottom: 42px;
  }

  .clients-section-heading h2 {
    font-size: 32px;
  }

  .clients-section-heading > p {
    font-size: 14px;
  }

  .clients-logo-grid {
    grid-template-columns: 1fr;
  }

  .client-logo-card {
    min-height: 195px;
  }

  .client-logo-empty {
    display: none;
  }
}




/* ==================================================
   CERTIFICATIONS PAGE
================================================== */

/* Certifications Hero */

.certifications-page-hero {
  position: relative;

  display: flex;
  align-items: center;

  min-height: 405px;

  overflow: hidden;

  background-image: url("../assets/img-site-supervision.jpg");
  background-position: center 47%;
  background-size: cover;

  color: var(--white);
}

.certifications-page-hero-shade {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(4, 23, 58, 0.98) 0%,
      rgba(5, 29, 70, 0.94) 43%,
      rgba(8, 35, 79, 0.73) 70%,
      rgba(8, 29, 70, 0.61) 100%
    );
}

.certifications-page-hero-content {
  position: relative;
  z-index: 2;

  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;

  padding-top: 62px;
  padding-bottom: 67px;
}

.certifications-page-eyebrow {
  display: flex;
  align-items: center;

  gap: 12px;

  margin-bottom: 18px;

  color: var(--cyan);

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.certifications-page-eyebrow span {
  width: 32px;
  height: 1px;

  flex: 0 0 32px;

  background: var(--cyan);
}

.certifications-page-eyebrow p {
  margin: 0;
}

.certifications-page-hero h1 {
  max-width: 720px;

  margin: 0 0 23px;

  color: var(--white);

  font-size: clamp(43px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.certifications-page-description {
  max-width: 700px;

  margin: 0;

  color: rgba(255, 255, 255, 0.8);

  font-size: 16px;
  line-height: 1.8;
}


/* ==================================================
   ACCREDITATIONS
================================================== */

.accreditations-section {
  padding: 31px 0 0;

  background: var(--white);
}

.accreditations-heading {
  margin-bottom: 46px;
}

.accreditations-eyebrow {
  display: flex;
  align-items: center;

  gap: 10px;

  margin-bottom: 18px;

  color: var(--blue);

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.accreditations-eyebrow span {
  width: 31px;
  height: 1px;

  background: #809bd2;
}

.accreditations-eyebrow p {
  margin: 0;
}

.accreditations-heading h2 {
  max-width: 850px;

  margin: 0;

  color: var(--title);

  font-size: clamp(34px, 3.2vw, 43px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.08;
}


/* Certifications Grid */

.accreditations-grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.accreditation-card,
.accreditation-empty {
  min-height: 250px;

  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.accreditation-card {
  padding: 31px;

  background: var(--white);
}

.accreditation-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;

  margin-bottom: 25px;

  background: var(--navy);
  color: var(--cyan);
}

.accreditation-icon svg {
  width: 21px;
  height: 21px;

  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.accreditation-card h3 {
  margin: 0 0 2px;

  color: var(--title);

  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.4;
}

.accreditation-type {
  margin: 0 0 11px;

  color: #1747c5;

  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.accreditation-description {
  max-width: 520px;

  margin: 0;

  color: var(--text);

  font-size: 14px;
  line-height: 1.7;
}

.accreditation-empty {
  background: #e5eaf1;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 920px) {
  .certifications-page-hero {
    min-height: 390px;

    background-position: 62% center;
  }

  .certifications-page-hero-content {
    width: min(100% - 36px, var(--container));
  }

  .certifications-page-hero h1 {
    font-size: 45px;
  }

  .certifications-page-description {
    max-width: 620px;

    font-size: 15px;
  }

  .accreditation-card {
    padding: 28px;
  }
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 620px) {
  .certifications-page-hero {
    min-height: auto;

    background-position: 68% center;
  }

  .certifications-page-hero-content {
    width: min(100% - 28px, var(--container));

    padding-top: 70px;
    padding-bottom: 72px;
  }

  .certifications-page-hero h1 {
    font-size: 38px;
  }

  .certifications-page-hero h1 br {
    display: none;
  }

  .certifications-page-description {
    font-size: 14px;
    line-height: 1.75;
  }

  .accreditations-section {
    padding-top: 65px;
  }

  .accreditations-heading {
    margin-bottom: 38px;
  }

  .accreditations-heading h2 {
    font-size: 32px;
  }

  .accreditations-grid {
    grid-template-columns: 1fr;
  }

  .accreditation-card {
    min-height: auto;

    padding: 30px 25px 35px;
  }

  .accreditation-card h3 {
    font-size: 17px;
  }

  .accreditation-empty {
    display: none;
  }
}




/* ==================================================
   CONTACT PAGE
================================================== */

/* Contact Hero */

.contact-page-hero {
  position: relative;

  display: flex;
  align-items: center;

  min-height: 405px;

  overflow: hidden;

  background-image: url("../assets/img-tower.jpg");
  background-position: center 46%;
  background-size: cover;

  color: var(--white);
}

.contact-page-hero-shade {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(4, 23, 58, 0.98) 0%,
      rgba(5, 29, 70, 0.94) 43%,
      rgba(8, 35, 79, 0.73) 72%,
      rgba(8, 29, 70, 0.62) 100%
    );
}

.contact-page-hero-content {
  position: relative;
  z-index: 2;

  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;

  padding-top: 62px;
  padding-bottom: 67px;
}

.contact-page-eyebrow {
  display: flex;
  align-items: center;

  gap: 12px;

  margin-bottom: 18px;

  color: var(--cyan);

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-page-eyebrow span {
  width: 32px;
  height: 1px;

  flex: 0 0 32px;

  background: var(--cyan);
}

.contact-page-eyebrow p {
  margin: 0;
}

.contact-page-hero h1 {
  max-width: 760px;

  margin: 0 0 22px;

  color: var(--white);

  font-size: clamp(43px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.contact-page-description {
  max-width: 690px;

  margin: 0;

  color: rgba(255, 255, 255, 0.8);

  font-size: 16px;
  line-height: 1.8;
}


/* ==================================================
   CONTACT DETAILS AND FORM
================================================== */

.contact-main-section {
  padding: 10px 0 90px;

  background: var(--white);
}

.contact-main-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 0.78fr)
    minmax(520px, 1.22fr);

  align-items: start;

  gap: 65px;
}


/* Head Office */

.contact-office {
  padding-top: 15px;
}

.contact-office-eyebrow,
.contact-branches-eyebrow {
  display: flex;
  align-items: center;

  gap: 10px;

  margin-bottom: 19px;

  color: var(--blue);

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-office-eyebrow span,
.contact-branches-eyebrow span {
  width: 31px;
  height: 1px;

  flex: 0 0 31px;

  background: #809bd2;
}

.contact-office-eyebrow p,
.contact-branches-eyebrow p {
  margin: 0;
}

.contact-office h2 {
  margin: 0 0 23px;

  color: var(--title);

  font-size: clamp(32px, 3vw, 39px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.1;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;

  gap: 14px;

  margin-bottom: 14px;

  color: var(--title);
}

.contact-detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 14px;
  height: 23px;

  flex: 0 0 14px;

  color: var(--cyan);
}

.contact-detail-icon svg {
  width: 16px;
  height: 16px;

  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.contact-detail-item p,
.contact-detail-item a {
  margin: 0;

  font-size: 14px;
  line-height: 1.75;
}

.contact-detail-item a {
  font-weight: 500;

  transition: color 0.2s ease;
}

.contact-detail-item a:hover {
  color: var(--blue);
}

.contact-phone-list {
  display: flex;
  flex-direction: column;
}

.contact-muted-link {
  color: var(--text);
}


/* Contact Form */

.contact-form-box {
  padding: 38px 40px 40px;

  background: var(--light-background);
  border: 1px solid var(--border);
}

.contact-form-box h2 {
  margin: 0 0 2px;

  color: var(--title);

  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.3;
}

.contact-form-intro {
  margin: 0 0 27px;

  color: var(--text);

  font-size: 14px;
  line-height: 1.7;
}

.contact-form {
  display: flex;
  flex-direction: column;

  gap: 17px;
}

.contact-form-row {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 20px;
}

.contact-form-field {
  display: flex;
  flex-direction: column;

  gap: 7px;
}

.contact-form-field label {
  color: var(--title);

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-transform: uppercase;
}

.contact-form-field input,
.contact-form-field select,
.contact-form-field textarea {
  width: 100%;

  background: var(--white);
  border: 1px solid #d3dbe7;
  border-radius: 0;
  outline: none;

  color: var(--title);

  font-size: 14px;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form-field input,
.contact-form-field select {
  height: 46px;

  padding: 0 20px;
}

.contact-form-field select {
  cursor: pointer;
}

.contact-form-field textarea {
  min-height: 126px;

  padding: 14px 20px;

  resize: vertical;
}

.contact-form-field input:focus,
.contact-form-field select:focus,
.contact-form-field textarea:focus {
  border-color: var(--bright-blue);

  box-shadow: 0 0 0 3px rgba(30, 86, 199, 0.1);
}

.contact-submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: fit-content;
  min-width: 148px;
  min-height: 49px;

  margin-top: 8px;
  padding: 0 24px;

  background: var(--bright-blue);
  border: 0;
  border-radius: 0;

  color: var(--white);

  font-size: 13px;
  font-weight: 700;

  cursor: pointer;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.contact-submit-button:hover {
  background: var(--navy);

  transform: translateY(-2px);
}

.contact-form-note {
  max-width: 570px;

  margin: 0;

  color: var(--text);

  font-size: 12px;
  line-height: 1.7;
}


/* ==================================================
   BRANCHES
================================================== */

.contact-branches-section {
  padding: 100px 0 96px;

  background: var(--light-background);
}

.contact-branches-heading {
  margin-bottom: 44px;
}

.contact-branches-heading h2 {
  max-width: 830px;

  margin: 0;

  color: var(--title);

  font-size: clamp(34px, 3.2vw, 42px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.contact-branches-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.contact-branch-card {
  min-height: 264px;

  padding: 34px 31px;

  background: var(--white);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.contact-branch-icon {
  width: 25px;
  height: 25px;

  margin-bottom: 20px;

  color: var(--bright-blue);
}

.contact-branch-icon svg,
.contact-branch-phone svg {
  width: 100%;
  height: 100%;

  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.contact-branch-card h3 {
  margin: 0 0 10px;

  color: var(--title);

  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.4;
}

.contact-branch-card p {
  margin: 0;

  color: var(--text);

  font-size: 14px;
  line-height: 1.9;
}

.contact-branch-phone {
  display: flex;
  align-items: center;

  gap: 10px;

  margin-top: 12px;

  color: var(--bright-blue);

  font-size: 14px;
  font-weight: 500;
}

.contact-branch-phone svg {
  width: 16px;
  height: 16px;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 920px) {
  .contact-page-hero {
    min-height: 390px;

    background-position: 60% center;
  }

  .contact-page-hero-content {
    width: min(100% - 36px, var(--container));
  }

  .contact-page-hero h1 {
    font-size: 45px;
  }

  .contact-page-description {
    max-width: 620px;

    font-size: 15px;
  }

  .contact-main-section {
    padding-top: 70px;
  }

  .contact-main-grid {
    grid-template-columns: 1fr;

    gap: 55px;
  }

  .contact-office {
    padding-top: 0;
  }

  .contact-branches-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 620px) {
  .contact-page-hero {
    min-height: auto;

    background-position: 68% center;
  }

  .contact-page-hero-content {
    width: min(100% - 28px, var(--container));

    padding-top: 70px;
    padding-bottom: 72px;
  }

  .contact-page-hero h1 {
    font-size: 38px;
  }

  .contact-page-description {
    font-size: 14px;
    line-height: 1.75;
  }

  .contact-main-section {
    padding: 65px 0 72px;
  }

  .contact-office h2 {
    font-size: 32px;
  }

  .contact-form-box {
    padding: 30px 22px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-submit-button {
    width: 100%;
  }

  .contact-branches-section {
    padding: 70px 0 75px;
  }

  .contact-branches-heading {
    margin-bottom: 38px;
  }

  .contact-branches-heading h2 {
    font-size: 32px;
  }

  .contact-branches-grid {
    grid-template-columns: 1fr;
  }

  .contact-branch-card {
    min-height: auto;

    padding: 30px 25px 34px;
  }
}




/* ==================================================
   ORA HOLDING PAGE
================================================== */

/* Hero */

.ora-page-hero {
  position: relative;

  display: flex;
  align-items: center;

  min-height: 435px;

  overflow: hidden;

  background-image: url("../assets/img-tower.jpg");
  background-position: center 45%;
  background-size: cover;

  color: var(--white);
}

.ora-page-hero-shade {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(4, 23, 58, 0.98) 0%,
      rgba(5, 29, 70, 0.94) 44%,
      rgba(8, 35, 79, 0.75) 73%,
      rgba(8, 29, 70, 0.62) 100%
    );
}

.ora-page-hero-content {
  position: relative;
  z-index: 2;

  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;

  padding-top: 62px;
  padding-bottom: 67px;
}

.ora-page-eyebrow {
  display: flex;
  align-items: center;

  gap: 12px;

  margin-bottom: 18px;

  color: var(--cyan);

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.ora-page-eyebrow span {
  width: 32px;
  height: 1px;

  flex: 0 0 32px;

  background: var(--cyan);
}

.ora-page-eyebrow p {
  margin: 0;
}

.ora-page-hero h1 {
  max-width: 800px;

  margin: 0 0 23px;

  color: var(--white);

  font-size: clamp(43px, 4vw, 53px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.ora-page-description {
  max-width: 700px;

  margin: 0;

  color: rgba(255, 255, 255, 0.81);

  font-size: 16px;
  line-height: 1.8;
}


/* ==================================================
   GROUP OVERVIEW
================================================== */

.ora-overview-section {
  padding: 95px 0;

  background: var(--white);
}

.ora-overview-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(480px, 0.95fr);

  align-items: center;

  gap: 68px;
}

.ora-overview-eyebrow {
  display: flex;
  align-items: center;

  gap: 10px;

  margin-bottom: 19px;

  color: var(--blue);

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.ora-overview-eyebrow span {
  width: 31px;
  height: 1px;

  background: #809bd2;
}

.ora-overview-eyebrow p {
  margin: 0;
}

.ora-overview-content h2 {
  margin: 0 0 24px;

  color: var(--title);

  font-size: clamp(34px, 3.2vw, 43px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.ora-overview-content > p {
  max-width: 600px;

  margin: 0 0 20px;

  color: var(--text);

  font-size: 15px;
  line-height: 1.75;
}

.ora-overview-details {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  margin-top: 36px;

  border-top: 1px solid var(--border);
}

.ora-overview-details > div {
  padding: 24px 23px 0;
}

.ora-overview-details > div:first-child {
  padding-left: 0;

  border-right: 1px solid var(--border);
}

.ora-overview-details h3 {
  margin: 0 0 10px;

  color: var(--blue);

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.ora-overview-details p {
  margin: 0;

  color: var(--text);

  font-size: 13px;
  line-height: 1.75;
}

.ora-overview-image {
  position: relative;
}

.ora-overview-image::before {
  position: absolute;
  z-index: -1;

  top: -18px;
  right: -18px;

  width: 140px;
  height: 140px;

  border-top: 1px solid var(--cyan);
  border-right: 1px solid var(--cyan);

  content: "";
}

.ora-overview-image img {
  width: 100%;
  height: 415px;

  object-fit: cover;
  object-position: center;
}


/* ==================================================
   GROUP COMPANIES
================================================== */

.ora-companies-section {
  padding: 90px 0 100px;

  background: var(--light-background);
}

.ora-companies-heading {
  max-width: 850px;

  margin: 0 auto 52px;

  text-align: center;
}

.ora-companies-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  margin-bottom: 17px;

  color: var(--blue);

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.ora-companies-eyebrow span {
  width: 31px;
  height: 1px;

  background: #809bd2;
}

.ora-companies-eyebrow p {
  margin: 0;
}

.ora-companies-heading h2 {
  margin: 0 0 17px;

  color: var(--title);

  font-size: clamp(34px, 3.2vw, 43px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.ora-companies-heading > p {
  max-width: 740px;

  margin: 0 auto;

  color: var(--text);

  font-size: 15px;
  line-height: 1.75;
}


/* Company Cards */

.ora-companies-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 20px;
}

.ora-company-card {
  position: relative;

  display: flex;
  flex-direction: column;

  min-height: 335px;

  padding: 27px 27px 30px;

  overflow: hidden;

  background: var(--white);
  border: 1px solid var(--border);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.ora-company-card::before {
  position: absolute;

  top: 0;
  right: 0;
  left: 0;

  height: 3px;

  background: var(--cyan);

  content: "";

  transform: scaleX(0);
  transform-origin: left;

  transition: transform 0.28s ease;
}

.ora-company-card:hover {
  border-color: rgba(38, 195, 231, 0.65);

  box-shadow: 0 20px 45px rgba(8, 29, 70, 0.1);

  transform: translateY(-6px);
}

.ora-company-card:hover::before {
  transform: scaleX(1);
}

.ora-company-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 20px;

  min-height: 91px;

  margin-bottom: 20px;
}

.ora-company-number {
  color: var(--cyan-dark);

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.ora-company-logo {
  display: flex;
  align-items: center;
  justify-content: flex-end;

  width: 180px;
  height: 82px;
}

.ora-company-logo img {
  width: auto;
  height: auto;

  max-width: 165px;
  max-height: 75px;

  object-fit: contain;

  transition: transform 0.25s ease;
}

.ora-company-card:hover .ora-company-logo img {
  transform: scale(1.04);
}

.ora-company-content {
  margin-top: auto;
}

.ora-company-category {
  margin: 0 0 8px !important;

  color: var(--cyan-dark) !important;

  font-size: 9px !important;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.4 !important;
  text-transform: uppercase;
}

.ora-company-content h3 {
  min-height: 48px;

  margin: 0 0 10px;

  color: var(--title);

  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.35;
}

.ora-company-content > p:last-child {
  margin: 0;

  color: var(--text);

  font-size: 13px;
  line-height: 1.7;
}


/* Individual Logo Sizes */

.ora-logo-aoc {
  max-width: 115px !important;
  max-height: 78px !important;
}

.ora-logo-cost {
  max-width: 140px !important;
  max-height: 75px !important;
}

.ora-logo-pa-cost {
  max-width: 150px !important;
  max-height: 70px !important;
}

.ora-logo-it {
  max-width: 120px !important;
  max-height: 78px !important;
}

.ora-logo-fire {
  max-width: 78px !important;
  max-height: 78px !important;
}

.ora-logo-air {
  max-width: 150px !important;
  max-height: 70px !important;
}

.ora-logo-fuel {
  max-width: 145px !important;
  max-height: 65px !important;
}

.ora-logo-trading {
  max-width: 155px !important;
  max-height: 67px !important;
}

.ora-logo-eastern {
  max-width: 125px !important;
  max-height: 78px !important;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 1120px) {
  .ora-companies-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ora-overview-grid {
    grid-template-columns: 1fr 1fr;

    gap: 45px;
  }
}

@media (max-width: 920px) {
  .ora-page-hero {
    min-height: 410px;

    background-position: 61% center;
  }

  .ora-page-hero-content {
    width: min(100% - 36px, var(--container));
  }

  .ora-page-hero h1 {
    font-size: 45px;
  }

  .ora-page-description {
    max-width: 640px;

    font-size: 15px;
  }

  .ora-overview-grid {
    grid-template-columns: 1fr;

    gap: 55px;
  }

  .ora-overview-image {
    width: min(650px, 95%);

    margin-inline: auto;
  }
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 620px) {
  .ora-page-hero {
    min-height: auto;

    background-position: 68% center;
  }

  .ora-page-hero-content {
    width: min(100% - 28px, var(--container));

    padding-top: 70px;
    padding-bottom: 72px;
  }

  .ora-page-hero h1 {
    font-size: 38px;
  }

  .ora-page-hero h1 br,
  .ora-overview-content h2 br {
    display: none;
  }

  .ora-page-description {
    font-size: 14px;
    line-height: 1.75;
  }

  .ora-overview-section {
    padding: 75px 0;
  }

  .ora-overview-content h2 {
    font-size: 32px;
  }

  .ora-overview-details {
    grid-template-columns: 1fr;
  }

  .ora-overview-details > div {
    padding: 22px 0;
  }

  .ora-overview-details > div:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .ora-overview-image {
    width: calc(100% - 16px);
  }

  .ora-overview-image img {
    height: 340px;
  }

  .ora-companies-section {
    padding: 72px 0 78px;
  }

  .ora-companies-heading {
    margin-bottom: 40px;
  }

  .ora-companies-heading h2 {
    font-size: 32px;
  }

  .ora-companies-heading > p {
    font-size: 14px;
  }

  .ora-companies-grid {
    grid-template-columns: 1fr;
  }

  .ora-company-card {
    min-height: 315px;
  }
}

/* =========================================================
   AOC CONTACT FORM STATUS / LOADING
========================================================= */

.contact-submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-submit-button:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.contact-submit-button.loading {
  pointer-events: none;
}

.contact-status {
  margin-top: 18px;
  min-height: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
}

.contact-status.loading {
  color: #0b5ed7;
}

.contact-loader {
  width: 18px;
  height: 18px;
  border: 3px solid rgba(11, 94, 215, 0.20);
  border-top-color: #0b5ed7;
  border-radius: 50%;
  display: inline-block;
  animation: aocContactSpinner 0.75s linear infinite;
}

@keyframes aocContactSpinner {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.contact-status.success {
  color: #16803a;
}

.contact-status.error {
  color: #c62828;
}

.contact-response-icon {
  width: 23px;
  height: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 23px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.contact-status.success .contact-response-icon {
  background: #16803a;
}

.contact-status.error .contact-response-icon {
  background: #c62828;
}