@font-face {
  font-family: "Poppins";
  src: url("../assets/poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../assets/poppins/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../assets/poppins/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../assets/poppins/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../assets/poppins/Poppins-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue: #1565c0;
  --blue-dark: #0d4f9a;
  --blue-accent: #2c7bbd;
  --blue-label: #0c7bc0;
  --blue-nav: #3363ab;
  --navy: #1a1a2e;
  --navy-stat: #021c3b;
  --text: #272727;
  --muted: #64748b;
  --orange: #f5a623;
  --bg: #ffffff;
  --bg-soft: #f3f7fc;
  --about-tint: #a4d6ff1a;
  --about-gradient: linear-gradient(
    178.74deg,
    #ffffff 0%,
    rgba(164, 214, 255, 0.04) 10%,
    #a4d6ff1a 22%,
    rgba(164, 214, 255, 0.12) 45%,
    rgba(164, 214, 255, 0.2) 68%,
    rgba(164, 214, 255, 0.28) 88%,
    rgba(164, 214, 255, 0.38) 100%
  );
  --border: #d9d9d9;
  --radius: 12px;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.1);
  --container: 1200px;
  --stats-width: 920px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 14px;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

ul {
  list-style: none;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 10px 18px 9px 17px;
  border-radius: 15px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn:hover {
  transform: none;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: none;
}

.btn-primary:hover {
  background: var(--blue-dark);
}

.nav-cta,
.nav-cta-mobile {
  border-radius: 15px;
}

.section-label {
  display: inline-block;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.section-title .accent {
  color: var(--blue);
}

.section-center {
  text-align: center;
}

/* Header */
.header {
  position: relative;
  z-index: 50;
  background: #fff;
  padding: 0.75rem 0;
  overflow: visible;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 51px;
  overflow: visible;
}

.logo-img {
  width: 56px;
  height: 51px;
  object-fit: contain;
  transform: scale(2.25) translateY(3px);
  transform-origin: left center;
}

.nav-end {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-left: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.75rem;
}

.nav-links a:not(.btn) {
  font-family: "DM Sans", sans-serif;
  color: var(--blue-nav);
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  transition: color 0.2s ease;
}

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

.nav-cta-mobile {
  display: none;
}

.nav-cta {
  flex-shrink: 0;
  box-shadow: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--navy);
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

/* Hero */
.hero-zone {
  position: relative;
  margin-bottom: 4.5rem;
}

.hero {
  position: relative;
  min-height: min(683px, 85vh);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: transparent;
  padding-bottom: 5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../assets/home1.jpg") center / cover no-repeat;
  transform: scaleX(-1);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    268.58deg,
    rgba(217, 217, 217, 0.1625) 41.01%,
    rgba(240, 245, 251, 0.325) 60.97%
  );
}

.hero-blur {
  position: absolute;
  left: 0;
  top: 0;
  width: min(667px, 55%);
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(270deg, #d5d5d5 0%, #ffffff 100%);
  filter: blur(250px);
  opacity: 0.85;
}

.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2.5rem 0 3rem;
}

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-block;
  font-family: "Barlow", sans-serif;
  color: var(--orange);
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
  margin-bottom: 0.85rem;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 48px);
  line-height: 1.15;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-title .line {
  display: block;
}

.hero-title .accent {
  color: var(--blue-accent);
}

.hero-text {
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  max-width: 516px;
  margin-bottom: 1.75rem;
}

.stats-float {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -3.75rem;
  width: min(calc(100% - 2.5rem), var(--stats-width));
  z-index: 20;
}

.stats-card {
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  padding: 1.35rem 1.75rem;
  min-height: 120px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 0.25rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0 0.65rem;
  justify-content: flex-start;
  min-width: 0;
}

.stat-copy {
  min-width: 0;
}

.stat-item + .stat-item {
  border-left: 2px solid var(--border);
}

.stat-icon {
  width: 30px;
  height: 30px;
  border-radius: 0;
  background: transparent;
  color: var(--blue-label);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--blue-label);
}

.stat-value {
  font-size: 22px;
  font-weight: 600;
  line-height: 33px;
  color: var(--navy-stat);
}

.stat-label {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #000;
  margin-top: 0;
  white-space: nowrap;
}

/* About band — flush under hero; tint fades downward like reference gradient */
.about-band {
  position: relative;
  z-index: 1;
  margin-top: -4.5rem;
  background: var(--about-gradient);
}

.about {
  padding: 6.5rem 0 4.5rem;
  background: transparent;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.about-label {
  color: var(--blue-label);
  font-size: 22px;
  font-weight: 500;
  line-height: 33px;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.about-heading {
  font-size: clamp(2rem, 4vw, 44px);
  font-weight: 500;
  line-height: 1;
  color: #000;
  max-width: 466px;
}

.about-heading .accent {
  color: var(--blue-accent);
}

.about-body {
  color: #000;
  margin-top: 1.25rem;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  max-width: 557px;
}

.about-copy .btn {
  margin-top: 1.75rem;
}

.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-truck {
  width: min(100%, 538px);
  height: auto;
  object-fit: contain;
  transform: scaleX(-1);
}

.img-flip-x {
  transform: scaleX(-1);
}

/* Services */
.services {
  padding: 4.5rem 0 0;
  background: #ffffff;
}

.services-header {
  text-align: left;
  margin-bottom: 2.25rem;
}

.services-label {
  display: block;
  color: var(--blue-label);
  font-size: 22px;
  font-weight: 500;
  line-height: 33px;
  margin-bottom: 0.35rem;
}

.services-title {
  font-size: clamp(1.75rem, 3.5vw, 44px);
  font-weight: 500;
  line-height: 1.1;
  color: #000;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: #a4d6ff26;
  border: 1px solid rgba(164, 214, 255, 0.35);
  border-radius: 20px;
  padding: 1.15rem;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
}

.service-media {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 0.9rem;
}

.service-card img {
  width: 100%;
  height: 172px;
  object-fit: cover;
  display: block;
}

.service-body {
  padding: 0 0.25rem 0.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  min-height: 148px;
  text-align: left;
}

.service-body h3 {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.45rem;
  text-align: left;
}

.service-body p {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-align: left;
  margin: 0;
  padding-right: 2.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 63px;
  max-height: 63px;
}

.service-arrow {
  position: absolute;
  right: 0.25rem;
  bottom: 0.25rem;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--blue-label);
  color: #fff;
  display: grid;
  place-items: center;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.service-card:hover .service-arrow {
  background: var(--blue);
}

.services-partners {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  /* ~1.5× service text block height (see .service-body min-height) */
  margin-top: calc(148px * 1.5);
  padding-top: 0;
  /* Slightly less than gap above logos → portfolio header */
  margin-bottom: calc(148px * 1.2);
}

.partner-logo {
  height: 34px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  flex: 0 1 auto;
}

/* Services page */
.services-page {
  background: #ffffff;
  --services-hero-bg-aspect: calc(1666 / 2500);
  --services-hero-bg-h: calc(100vw * var(--services-hero-bg-aspect));
}

.services-page-hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 0;
  background: #ffffff;
}

.services-page-hero::before,
.works-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--services-hero-bg-h);
  z-index: 0;
  background: url("../assets/serviceht.jpg") center center / 100% 100% no-repeat;
  transform: scaleX(-1);
  opacity: 0.42;
}

.services-page-hero::after,
.works-page::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--services-hero-bg-h);
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.55) 0%,
      rgba(255, 255, 255, 0.75) 50%,
      rgba(255, 255, 255, 0.85) 100%
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 31px,
      rgba(21, 101, 192, 0.045) 31px,
      rgba(21, 101, 192, 0.045) 32px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 31px,
      rgba(21, 101, 192, 0.045) 31px,
      rgba(21, 101, 192, 0.045) 32px
    ),
    linear-gradient(
      268.58deg,
      rgba(217, 217, 217, 0.14) 41.01%,
      rgba(240, 245, 251, 0.28) 60.97%
    );
}

.services-page-hero-blur,
.works-page-blur {
  position: absolute;
  left: 0;
  top: 0;
  width: min(667px, 55%);
  height: var(--services-hero-bg-h);
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(270deg, #d5d5d5 0%, #ffffff 100%);
  filter: blur(250px);
  opacity: 0.85;
}

.services-page-hero .container {
  position: relative;
  z-index: 2;
}

.services-page-hero-content {
  width: min(100%, 1120px);
  max-width: 95%;
  margin-inline: auto;
  padding-inline: clamp(0.85rem, 2.25vw, 1.5rem);
}

.services-page-title {
  text-align: center;
  font-size: clamp(1.85rem, 3.6vw, 44px);
  font-weight: 500;
  line-height: 1.12;
  color: var(--navy);
  margin: 0;
  padding-bottom: 0.25rem;
}

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.85rem 2rem;
  margin-top: 3.25rem;
}

.service-detail-card {
  background: #ffffff;
  border: 1px solid #e3e8ef;
  border-radius: 20px;
  padding: 1.5rem 1.6rem;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  min-height: 480px;
}

.service-detail-card .service-media {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.service-detail-card img {
  width: 100%;
  height: 255px;
  object-fit: cover;
  display: block;
}

.service-detail-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.65rem;
}

.service-detail-body h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--blue-label);
  margin-bottom: 0.35rem;
  text-align: left;
}

.service-detail-body p {
  color: #1a1a2e;
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
  margin: 0;
  text-align: left;
  padding-bottom: 0.15rem;
  flex: 1;
  min-height: 69px;
}

.services-page-cta {
  text-align: center;
  margin-top: 2.5rem;
  margin-bottom: 0;
}

.btn-services-quote {
  width: min(100%, 480px);
  padding: 0.95rem 2.75rem;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
}

/* Projects / Our Works page */
.page-projects {
  --services-hero-bg-aspect: calc(1666 / 2500);
  --services-hero-bg-h: calc(100vw * var(--services-hero-bg-aspect));
}

.works-page {
  position: relative;
  padding: 4.5rem 0 5.5rem;
  background: #ffffff;
  overflow: hidden;
}

.works-page-inner {
  position: relative;
  z-index: 2;
  width: min(100%, var(--container));
  max-width: 96%;
  margin-inline: auto;
  padding-inline: clamp(0.75rem, 2vw, 1.25rem);
}

.works-page-title {
  text-align: center;
  font-size: clamp(1.85rem, 3.6vw, 44px);
  font-weight: 500;
  line-height: 1.12;
  color: var(--navy);
  margin: 0 0 3rem;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 2.25rem;
}

.work-card {
  background: #ffffff;
  border: 1px solid #e8edf3;
  border-radius: 20px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 520px;
}

.work-card-media {
  padding: 1.15rem 1.15rem 0;
}

.work-card-media img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.work-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1rem;
}

.work-card-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.work-client-badge {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1;
}

.work-client-badge--gcc {
  background: linear-gradient(135deg, #1565c0 0%, #0c7bc0 100%);
}

.work-client-badge--staar {
  background: linear-gradient(135deg, #1a1a2e 0%, #3363ab 100%);
  font-size: 9px;
}

.work-client-badge--arish {
  background: linear-gradient(135deg, #0d4f9a 0%, #2c7bbd 100%);
  font-size: 9px;
}

.work-card-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--blue-label);
  margin: 0;
}

.work-card-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #272727;
  margin: 0;
  flex: 1;
  min-height: 88px;
}

.work-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.25rem;
}

.work-meta-item {
  background: #f3f5f8;
  border-radius: 10px;
  padding: 0.65rem 0.7rem;
  text-align: left;
  min-height: 58px;
}

.work-meta-item dt {
  font-size: 11px;
  font-weight: 500;
  line-height: 16px;
  color: var(--blue-label);
  margin-bottom: 0.25rem;
}

.work-meta-item dd {
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  color: var(--navy);
  margin: 0;
}

/* Portfolio */
.portfolio {
  padding: 0 0 4.5rem;
  background: #ffffff;
}

.portfolio-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.portfolio-head {
  text-align: left;
  flex: 1 1 280px;
}

.portfolio-label {
  display: block;
  color: var(--blue-label);
  font-size: 22px;
  font-weight: 500;
  line-height: 33px;
  margin-bottom: 0.35rem;
}

.portfolio-title {
  font-size: clamp(1.75rem, 3.5vw, 44px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--navy);
}

.filters {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.65rem;
  flex: 1 1 320px;
}

.filter-btn {
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid #b8c4d4;
  background: #f3f5f8;
  color: #1a1a2e;
  font-family: inherit;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.filter-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.filter-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.project-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 5 / 6;
  display: block;
}

.project-card.hidden {
  display: none;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.project-card:hover img {
  transform: scale(1.04);
}

.project-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 3rem 1rem 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.35) 55%, transparent 100%);
  color: #fff;
  text-align: left;
}

.project-overlay h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 0.15rem;
}

.project-overlay p {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  opacity: 0.95;
}

.portfolio-cta {
  text-align: center;
  margin-top: 2.25rem;
}

.btn-portfolio-all {
  min-width: 220px;
  padding-inline: 2rem;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
}

/* FAQ */
.faq {
  padding: 4.5rem 0 5rem;
  background: #ffffff;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(320px, 1.05fr);
  gap: 3.5rem;
  align-items: start;
}

.faq-heading {
  font-size: clamp(1.85rem, 3.2vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
}

.faq-intro p {
  color: var(--blue-label);
  margin-top: 1rem;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  max-width: 320px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: #fff;
  border: 1px solid #e3e8ef;
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
}

.faq-q-text {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--navy);
  flex: 1;
}

.faq-toggle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  color: var(--navy);
}

.faq-toggle .icon-minus {
  display: none;
}

.faq-item.open .faq-toggle .icon-plus {
  display: none;
}

.faq-item.open .faq-toggle .icon-minus {
  display: block;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
  min-height: 0;
}

.faq-answer p {
  color: var(--blue-label);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  padding: 0 1.25rem 1.25rem;
  margin: 0;
  text-align: left;
}

/* Footer */
.footer {
  background: #051a2f;
  color: rgba(255, 255, 255, 0.88);
  padding: 4.25rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.85fr 1.15fr;
  gap: 2.5rem;
  padding-bottom: 3.25rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.6rem;
}

.footer-logo-img {
  width: 88px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-logo-text {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--orange);
}

.footer-brand p {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  max-width: 300px;
  margin-bottom: 1.35rem;
  color: rgba(255, 255, 255, 0.88);
}

.socials {
  display: flex;
  gap: 0.65rem;
}

.socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: grid;
  place-items: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.socials a:hover {
  background: var(--blue);
  border-color: var(--blue);
}

.socials svg {
  width: 14px;
  height: 14px;
  fill: #fff;
}

.footer h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.88);
}

.contact-list svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: #fff;
  fill: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.35rem 0 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.88);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: #fff;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 1100px) {
  .services-grid,
  .services-page-grid,
  .works-grid,
  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-item:nth-child(3) {
    border-left: none;
  }

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

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-end {
    position: static;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 1.25rem;
    left: 1.25rem;
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    display: none;
    z-index: 60;
  }

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

  .nav-links a:not(.btn) {
    padding: 0.75rem 0.85rem;
    border-radius: 8px;
  }

  .nav-links a:not(.btn).active,
  .nav-links a:not(.btn):hover {
    background: var(--bg-soft);
  }

  .nav-cta {
    display: none;
  }

  .nav-cta-mobile {
    display: inline-flex;
    margin-top: 0.5rem;
    width: 100%;
  }

  .hero-zone {
    margin-bottom: 3rem;
  }

  .stats-float {
    position: relative;
    left: auto;
    transform: none;
    bottom: auto;
    width: min(calc(100% - 2.5rem), var(--stats-width));
    margin: -2.5rem auto 0;
  }

  .hero {
    min-height: auto;
    padding-bottom: 1rem;
  }

  .hero-inner {
    padding: 2rem 0 1.5rem;
  }

  .hero::after {
    background: linear-gradient(
      268.58deg,
      rgba(217, 217, 217, 0.25) 30%,
      rgba(240, 245, 251, 0.45) 70%
    );
  }

  .about-band {
    margin-top: -3rem;
  }

  .about {
    padding-top: 4rem;
  }

  .portfolio-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .filters {
    justify-content: flex-start;
    width: 100%;
  }

  .about-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-visual {
    order: -1;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.5rem, var(--container));
  }

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

  .stat-item,
  .stat-item + .stat-item {
    border-left: none;
    border-top: 1px solid var(--border);
    padding: 0.85rem 0.35rem;
  }

  .stat-item:first-child {
    border-top: none;
  }

  .services-grid,
  .services-page-grid,
  .works-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .work-meta {
    grid-template-columns: 1fr;
  }

  .work-card {
    min-height: 0;
  }

  .work-card-media img {
    height: 220px;
  }

  .services-page-hero-content {
    max-width: 100%;
  }

  .service-detail-card {
    min-height: 0;
  }

  .service-detail-card img {
    height: 210px;
  }

  .project-card {
    aspect-ratio: 16 / 11;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-partners {
    justify-content: center;
    gap: 1.25rem 2rem;
    margin-top: clamp(3.5rem, 18vw, calc(148px * 1.5));
    margin-bottom: clamp(2.75rem, 14vw, calc(148px * 1.2));
  }

  .partner-logo {
    height: 28px;
  }
}
