:root {
  --primary-color: #ED5521;
  --dark-color: #151515;
  --white-color: #ffffff;
  --text-color: #222222;
  --muted-color: #666666;
}

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

html {
  overflow-x: clip;
}

body {
  font-family: "General Sans", sans-serif;
  background-color: #fff;
  color: var(--text-color);
  overflow-x: clip;
}

a {
  text-decoration: none;
}

section {
  padding: 90px 0;
}

.section-tag {
  color: var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-text {
  color: var(--muted-color);
  line-height: 1.8;
}

/* Buttons */
.theme-btn {
  display: inline-block;
  background-color: var(--white-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 14px 30px;
  font-weight: 700;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1;
}

.theme-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--primary-color);
  transform: translateX(-100%);
  transition: all 0.4s ease;
  z-index: -1;
}

.theme-btn:hover {
  color: var(--white-color);
}

.theme-btn:hover::before {
  transform: translateX(0);
}

.theme-btn-filled {
  background-color: var(--primary-color);
  color: var(--white-color);
  border: 2px solid var(--primary-color);
}

.theme-btn-filled::before {
  background-color: var(--white-color);
}

.theme-btn-filled:hover {
  color: var(--primary-color);
}

/* Site header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1050;
  transform: none;
  transition:
    background 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header--animate-in {
  animation: headerSlideDown 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes headerSlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: none;
    opacity: 1;
  }
}

.site-header .navbar {
  padding: 16px 0;
  transition: padding 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header--compact .navbar {
  padding: 10px 0;
}

.site-header--compact .brand-logo {
  height: 56px;
}

.site-header--compact .header-cta-btn {
  padding: 10px 20px;
  font-size: 13px;
}

.site-header--solid,
.site-header--hero.site-header--scrolled {
  background: #ffffff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.site-header--compact.site-header--solid,
.site-header--compact.site-header--hero.site-header--scrolled {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.site-header--solid .navbar,
.site-header--hero.site-header--scrolled .navbar {
  background: #ffffff;
}

.site-header--hero:not(.site-header--scrolled) {
  background: transparent;
  box-shadow: none;
}

.site-header--hero:not(.site-header--scrolled) .navbar {
  background: transparent;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.brand-logo {
  height: 72px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  transition: opacity 0.35s ease;
}

.brand-logo--white {
  display: none;
}

.brand-logo--black {
  display: block;
}

.site-header--hero:not(.site-header--scrolled) .brand-logo--white {
  display: block;
}

.site-header--hero:not(.site-header--scrolled) .brand-logo--black {
  display: none;
}

.site-header--hero.site-header--scrolled .brand-logo--white,
.site-header--solid .brand-logo--white {
  display: none;
}

.site-header--hero.site-header--scrolled .brand-logo--black,
.site-header--solid .brand-logo--black {
  display: block;
}

.site-header--hero.site-header--scrolled .navbar-toggler,
.site-header--solid .navbar-toggler {
  border-color: rgba(0, 0, 0, 0.12);
}

.site-header--hero.site-header--scrolled .navbar-toggler-icon,
.site-header--solid .navbar-toggler-icon {
  filter: none;
}

.site-header--hero.site-header--scrolled .navbar-nav .nav-link,
.site-header--solid .navbar-nav .nav-link {
  color: var(--dark-color);
}

.navbar-nav .nav-link {
  position: relative;
  color: var(--dark-color);
  font-size: 15px;
  font-weight: 600;
  padding: 8px 14px !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.nav-link-mega::after {
  right: 28px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.site-header--hero:not(.site-header--scrolled) .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.92);
}

.site-header--hero:not(.site-header--scrolled) .navbar-nav .nav-link:hover,
.site-header--hero:not(.site-header--scrolled) .navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.header-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: var(--white-color) !important;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  transition: all 0.35s ease;
  box-shadow: 0 8px 24px rgba(237, 85, 33, 0.3);
}

.header-cta-btn:hover {
  background: var(--dark-color);
  color: var(--white-color) !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.site-header--hero:not(.site-header--scrolled) .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.45);
}

.site-header--hero:not(.site-header--scrolled) .navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

@media (max-width: 991px) {
  html,
  body {
    overflow-x: hidden;
    max-width: 100%;
  }

  .site-header {
    overflow: visible;
  }

  .site-header .navbar {
    position: relative;
  }

  .site-header .navbar > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    max-width: 100%;
  }

  .site-header .navbar-brand {
    margin-right: auto;
  }

  .site-header .navbar-toggler {
    margin-left: auto;
    flex-shrink: 0;
    order: 2;
    position: relative;
    z-index: 1070;
  }

  .mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(21, 21, 21, 0.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 1045;
  }

  body.mobile-nav-open .mobile-nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.mobile-nav-open {
    overflow: hidden;
  }

  .navbar-collapse.mobile-nav-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(85vw, 320px);
    max-width: 100%;
    height: 100vh !important;
    height: 100dvh !important;
    max-height: 100vh;
    max-height: 100dvh;
    margin: 0 !important;
    padding: 0 !important;
    background: #ffffff !important;
    border: none !important;
    box-shadow: 12px 0 40px rgba(0, 0, 0, 0.18);
    z-index: 1060;
    display: grid !important;
    grid-template-rows: auto minmax(0, 1fr) auto;
    align-items: stretch !important;
    overflow: hidden;
    transform: translateX(-100%);
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    visibility: visible !important;
    pointer-events: none;
    -webkit-overflow-scrolling: touch;
  }

  body.mobile-nav-open .navbar-collapse.mobile-nav-drawer {
    transform: translateX(0);
    pointer-events: auto;
  }

  body.mobile-nav-open .navbar-collapse.mobile-nav-drawer a,
  body.mobile-nav-open .navbar-collapse.mobile-nav-drawer button {
    pointer-events: auto;
    touch-action: manipulation;
  }

  .mobile-nav-header {
    grid-row: 1;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 18px 20px;
    border-bottom: 1px solid #ececec;
    flex-shrink: 0;
  }

  .mobile-nav-brand {
    flex: 0 1 auto;
    margin-right: auto;
    line-height: 0;
  }

  .mobile-nav-brand img {
    height: 40px;
    width: auto;
    max-width: 160px;
    display: block;
    object-fit: contain;
  }

  .mobile-nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    margin-left: auto;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: #f3f3f3;
    color: var(--dark-color);
    font-size: 20px;
    padding: 0;
    transition: background 0.25s ease, color 0.25s ease;
  }

  .mobile-nav-close:hover {
    background: rgba(237, 85, 33, 0.12);
    color: var(--primary-color);
  }

  .mobile-nav-list {
    grid-row: 2;
    align-self: start;
    justify-content: flex-start !important;
    align-items: stretch !important;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0 20px !important;
    width: 100%;
    max-width: 100%;
    min-height: 0;
    max-height: 100%;
    flex-grow: 0 !important;
  }

  .navbar-collapse.mobile-nav-drawer .navbar-nav {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .mobile-nav-list .nav-item {
    width: 100%;
    max-width: 100%;
    border-bottom: 1px solid #ececec;
  }

  .mobile-nav-list .nav-item:last-child {
    border-bottom: none;
  }

  .navbar-nav .nav-link {
    margin: 0 !important;
    padding: 16px 0 !important;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.35px;
    text-transform: uppercase;
    color: var(--dark-color) !important;
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
  }

  .mobile-nav-footer {
    grid-row: 3;
    padding: 20px;
    padding-bottom: max(24px, env(safe-area-inset-bottom, 0px));
    border-top: 1px solid #ececec;
    background: #ffffff;
    flex-shrink: 0;
  }

  .mobile-nav-cta {
    display: block;
    width: 100%;
    padding: 16px 24px;
    line-height: 1.35;
    background: var(--primary-color);
    color: var(--white-color) !important;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    border: none;
    border-radius: 4px;
    box-sizing: border-box;
    overflow: visible;
    white-space: nowrap;
    transition: background 0.3s ease;
  }

  .mobile-nav-cta:hover {
    background: #d94a1a;
    color: var(--white-color);
  }

  .nav-item-mega {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .nav-item-mega.is-open {
    overflow: visible;
  }

  .nav-link-mega-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
  }

  .nav-link-mega-wrap .nav-link-mega {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
  }

  .nav-link-mega .mega-menu-chevron {
    display: none;
  }

  .mega-menu-mobile-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: var(--dark-color);
    font-size: 15px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
  }

  .nav-item-mega.is-open .mega-menu-mobile-btn {
    transform: rotate(180deg);
    background: rgba(237, 85, 33, 0.1);
    color: var(--primary-color);
  }

  .mega-menu-panel {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    display: none;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 4px;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    overflow: hidden;
  }

  .nav-item-mega.is-open .mega-menu-panel {
    display: block;
  }

  .mega-menu-backdrop,
  .mega-menu-bg,
  .mega-menu-intro,
  .mega-menu-nav {
    display: none !important;
  }

  .mega-menu-inner {
    transform: none;
    background: transparent !important;
    overflow: visible;
  }

  .mega-menu-inner > .container {
    max-width: 100%;
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
  }

  .mega-menu-layout {
    display: block;
    min-height: auto;
  }

  .mega-menu-mobile-list {
    list-style: none;
    margin: 0 0 8px;
    padding: 0;
    background: #f7f7f7;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    overflow: hidden;
  }

  .mega-menu-mobile-list li {
    border-bottom: 1px solid #e8e8e8;
  }

  .mega-menu-mobile-list li:last-child {
    border-bottom: none;
  }

  .mega-menu-mobile-list a {
    display: block;
    padding: 14px 16px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
    color: #151515 !important;
    text-decoration: none;
    text-transform: none;
    background: #ffffff;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .mega-menu-mobile-list a:hover,
  .mega-menu-mobile-list a:focus {
    color: var(--primary-color) !important;
    background: rgba(237, 85, 33, 0.08);
  }

  .mega-menu-mobile-list .mega-menu-mobile-all a {
    background: #f0f0f0;
    color: var(--primary-color) !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-size: 12px;
  }
}

/* ── Services mega menu (full-width) ── */
@media (min-width: 992px) {
  .navbar-collapse.mobile-nav-drawer {
    position: static;
    width: auto;
    max-width: none;
    height: auto !important;
    max-height: none;
    transform: none !important;
    pointer-events: auto;
    box-shadow: none;
    background: transparent !important;
    overflow: visible;
    z-index: auto;
    display: flex !important;
    flex-direction: row;
    grid-template-rows: none;
  }

  .nav-item-mega {
    position: static;
  }

  .nav-link-mega-wrap {
    display: block;
  }

  .mega-menu-mobile-btn {
    display: none !important;
  }

  .nav-link-mega {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .mega-menu-chevron {
    font-size: 11px;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav-item-mega:hover .mega-menu-chevron,
  .nav-item-mega.is-open .mega-menu-chevron {
    transform: rotate(180deg);
  }
}

.mega-menu-panel {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--header-height, 76px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s;
}

@media (min-width: 992px) {
  .nav-item-mega:hover .mega-menu-panel,
  .nav-item-mega.is-open .mega-menu-panel,
  .nav-item-mega:focus-within .mega-menu-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.mega-menu-backdrop {
  position: fixed;
  inset: 0;
  top: var(--header-height, 76px);
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
}

body.mega-menu-open .mega-menu-backdrop,
.nav-item-mega.is-open .mega-menu-backdrop {
  opacity: 1;
}

.mega-menu-inner {
  position: relative;
  background: #121212;
  overflow: hidden;
  transform: translateY(-8px);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-item-mega:hover .mega-menu-inner,
.nav-item-mega.is-open .mega-menu-inner {
  transform: translateY(0);
}

.mega-menu-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  pointer-events: none;
}

.mega-menu-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #121212 0%, rgba(18, 18, 18, 0.92) 45%, rgba(18, 18, 18, 0.88) 100%);
}

.mega-menu-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 42%) 1fr;
  gap: 0;
  min-height: 340px;
}

.mega-menu-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 56px 52px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.mega-menu-label {
  display: inline-block;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 22px;
}

.mega-menu-label::before {
  content: "— ";
}

.mega-menu-intro h3 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--white-color);
  margin-bottom: 32px;
  max-width: 480px;
}

.mega-menu-learn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--white-color);
  font-size: 16px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.mega-menu-learn i {
  color: var(--primary-color);
  font-size: 18px;
  transition: transform 0.3s ease;
}

.mega-menu-learn:hover {
  color: var(--primary-color);
}

.mega-menu-learn:hover i {
  transform: translate(3px, -3px);
}

@media (min-width: 992px) {
  .mega-menu-nav {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 48px;
    padding: 36px 0 36px 56px;
  }

  .mega-menu-col {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mega-menu-col li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    opacity: 0;
    transform: translateY(8px);
    transition:
      opacity 0.4s ease,
      transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--mega-delay, 0s);
  }

  .nav-item-mega:hover .mega-menu-col li,
  .nav-item-mega.is-open .mega-menu-col li {
    opacity: 1;
    transform: translateY(0);
  }

  .mega-menu-col a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.35;
    transition: color 0.25s ease;
  }

  .mega-menu-col a i {
    flex-shrink: 0;
    color: var(--primary-color);
    font-size: 16px;
    transition: transform 0.25s ease;
  }

  .mega-menu-col a:hover {
    color: var(--primary-color);
  }

  .mega-menu-col a:hover i {
    transform: translate(2px, -2px);
  }
}

body.mega-menu-open .site-header--hero,
body.mega-menu-open .site-header--hero .navbar {
  background: #ffffff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

body.mega-menu-open .site-header--hero .navbar-brand,
body.mega-menu-open .site-header--hero .navbar-nav .nav-link {
  color: var(--dark-color);
}

body.mega-menu-open .site-header--hero .brand-logo--white {
  display: none;
}

body.mega-menu-open .site-header--hero .brand-logo--black {
  display: block;
}

body.mega-menu-open .site-header--hero .navbar-toggler {
  border-color: rgba(0, 0, 0, 0.12);
}

body.mega-menu-open .site-header--hero .navbar-toggler-icon {
  filter: none;
}

@media (max-width: 1199px) and (min-width: 992px) {
  .mega-menu-intro {
    padding-right: 36px;
  }

  .mega-menu-nav {
    padding-left: 36px;
    gap: 0 28px;
  }

  .mega-menu-col a {
    font-size: 15px;
    padding: 18px 0;
  }
}

@media (max-width: 991px) {
  .mega-menu-panel {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: none;
  }
}

/* Hero banner */
.hero-carousel {
  margin-top: 0;
}

.hero-carousel .carousel-item {
  height: 100vh;
  min-height: 640px;
  max-height: 900px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-carousel .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(21, 21, 21, 0.88) 0%,
    rgba(21, 21, 21, 0.65) 50%,
    rgba(21, 21, 21, 0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100vh;
  min-height: 640px;
  max-height: 900px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: var(--white-color);
  padding-top: 90px;
  padding-bottom: 60px;
}

.hero-content-inner {
  max-width: 600px;
  flex: 1;
}

.hero-logo-side {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-logo-img {
  width: 280px;
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.hero-eyebrow {
  display: inline-block;
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  max-width: 620px;
  margin-bottom: 24px;
}

.hero-content p {
  max-width: 600px;
  font-size: 18px;
  line-height: 1.85;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 30px;
  transition: all 0.35s ease;
}

.hero-btn i {
  font-size: 17px;
  transition: transform 0.3s ease;
}

.hero-btn:hover i {
  transform: translate(3px, -3px);
}

.hero-btn-primary {
  background: var(--primary-color);
  color: var(--white-color);
  box-shadow: 0 12px 32px rgba(237, 85, 33, 0.35);
}

.hero-btn-primary:hover {
  background: var(--white-color);
  color: var(--dark-color);
}

.hero-btn-outline {
  background: transparent;
  color: var(--white-color);
  border: 2px solid rgba(255, 255, 255, 0.55);
}

.hero-btn-outline:hover {
  background: var(--white-color);
  color: var(--dark-color);
  border-color: var(--white-color);
}

.hero-carousel-indicators {
  margin-bottom: 36px;
  gap: 8px;
}

.hero-carousel-indicators [data-bs-target] {
  width: 42px;
  height: 4px;
  border: none;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.35);
  opacity: 1;
  transition: background 0.3s ease, width 0.3s ease;
}

.hero-carousel-indicators .active {
  background: var(--primary-color);
  width: 56px;
}

.hero-carousel-nav {
  width: 54px;
  height: 54px;
  background: var(--primary-color);
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.hero-carousel-nav i {
  color: var(--white-color);
  font-size: 22px;
}

.hero-carousel-nav:hover {
  background: var(--dark-color);
}

.carousel-control-prev.hero-carousel-nav {
  left: 24px;
}

.carousel-control-next.hero-carousel-nav {
  right: 24px;
}

/* About */
.about-img {
  position: relative;
}

.about-img img {
  width: 100%;
  min-height: 450px;
  object-fit: cover;
}

.experience-box {
  position: absolute;
  right: 25px;
  bottom: 25px;
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 28px;
  max-width: 220px;
}

.experience-box h3 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 5px;
}

/* Services */
.services {
  background-color: #f8f8f8;
}

.service-card {
  background-color: var(--white-color);
  padding: 35px;
  height: 100%;
  transition: all 0.4s ease;
  border-bottom: 4px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.service-icon {
  width: 72px;
  height: 72px;
  background-color: rgba(237, 85, 33, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin-bottom: 25px;
}

.service-card h4 {
  font-weight: 700;
  margin-bottom: 15px;
}

/* Get Quote */
.quote-section {
  background:
    linear-gradient(rgba(21, 21, 21, 0.88), rgba(21, 21, 21, 0.88)),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: var(--white-color);
}

.quote-form {
  background-color: var(--white-color);
  padding: 40px;
}

.quote-form .form-control,
.quote-form .form-select {
  border-radius: 0;
  padding: 14px;
  border: 1px solid #dddddd;
}

.quote-form .form-control:focus,
.quote-form .form-select:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

/* Why Us */
.why-box {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.why-icon {
  min-width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.why-box h5 {
  font-weight: 700;
  margin-bottom: 8px;
}

.why-image img {
  width: 100%;
  min-height: 480px;
  object-fit: cover;
}

/* Testimonials */
.testimonials {
  background-color: #f8f8f8;
}

.testimonials-slider-wrap {
  position: relative;
}

.testimonials-slider-controls {
  margin-top: 8px;
}

.testimonial-card {
  background-color: var(--white-color);
  padding: 35px;
  height: 100%;
  border-left: 5px solid var(--primary-color);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.testimonial-card p {
  color: var(--muted-color);
  line-height: 1.8;
  margin-bottom: 25px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.client-info h5 {
  margin-bottom: 2px;
  font-weight: 700;
}

.stars {
  color: var(--primary-color);
  margin-bottom: 18px;
}

/* Footer & Newsletter */
.site-footer {
  --footer-text-size: 16px;
  --footer-text-line: 26px;
  background: var(--dark-color);
  color: var(--white-color);
  font-family: Inter, "General Sans", sans-serif;
  font-size: var(--footer-text-size);
  line-height: var(--footer-text-line);
}

.footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 50px 0;
}

.footer-info-item {
  position: relative;
  display: flex;
  gap: 26px;
  align-items: flex-start;
  min-height: 112px;
  padding: 0 42px;
}

.footer-info-item:first-child {
  padding-left: 0;
}

.footer-info-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 112px;
  background: rgba(255, 255, 255, 0.13);
}

.footer-info-icon {
  font-size: 54px;
  line-height: 1;
  color: #545454;
  flex: 0 0 auto;
}

.footer-info-label {
  margin-bottom: 8px;
  color: #8d8d8d;
  font-size: 16px;
  line-height: 22px;
  font-weight: 800;
}

.footer-info-title {
  margin: 0;
  color: var(--white-color);
  font-size: 24px;
  line-height: 39px;
  font-weight: 600;
}

.footer-main {
  padding: 72px 0 62px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 32px;
}

.footer-logo-img {
  height: 56px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.footer-logo-mark {
  color: var(--primary-color);
  font-size: 44px;
  line-height: 1;
  font-weight: 800;
  transform: rotate(-12deg);
  display: inline-block;
  margin-right: 2px;
}

.footer-logo-text {
  color: var(--white-color);
  font-size: 43px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -2px;
}

.site-footer .footer-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.site-footer .footer-social a {
  width: 56px;
  height: 56px;
  background: #222222;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #777777;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  margin-right: 0;
  padding-left: 0;
  transition: 0.3s ease;
}

.site-footer .footer-social a:hover {
  background: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li:not(:last-child) {
  margin-bottom: 22px;
}

.footer-menu a {
  color: var(--white-color);
  text-decoration: none;
  font-size: var(--footer-text-size);
  line-height: var(--footer-text-line);
  font-weight: 500;
  transition: 0.1s ease;
}

.footer-menu a:hover {
  color: var(--primary-color);
}

.footer-contact-title {
  margin: 0 0 24px;
  color: var(--white-color);
  font-size: var(--footer-text-size);
  line-height: var(--footer-text-line);
  font-weight: 700;
  letter-spacing: 0;
}

.footer-contact-text {
  margin: 0 0 36px;
  color: #8d8d8d;
  font-size: var(--footer-text-size);
  line-height: var(--footer-text-line);
  font-weight: 400;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  color: var(--white-color);
  text-decoration: none;
  font-size: var(--footer-text-size);
  font-weight: 700;
}

.footer-btn span {
  height: 48px;
  min-width: 235px;
  padding: 0 34px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.footer-btn i {
  width: 48px;
  height: 48px;
  margin-left: -10px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  transition: 0.3s ease;
}

.footer-btn:hover {
  color: var(--white-color);
}

.footer-btn:hover span {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 48px 0;
}

.footer-copy {
  margin: 0;
  color: #8d8d8d;
  font-size: var(--footer-text-size);
  line-height: var(--footer-text-line);
  font-weight: 500;
}

.footer-copy a {
  color: var(--primary-color);
  font-size: inherit;
  line-height: inherit;
  text-decoration: none;
}

.footer-bottom-links {
  display: flex;
  justify-content: flex-end;
  gap: 34px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: #8d8d8d;
  text-decoration: none;
  font-size: var(--footer-text-size);
  line-height: var(--footer-text-line);
  font-weight: 500;
  transition: 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--primary-color);
}

.scroll-top {
  position: fixed;
  right: 50px;
  bottom: 70px;
  width: 66px;
  height: 66px;
  border: 0;
  border-radius: 50%;
  background: #636363;
  color: var(--white-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px);
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.3s ease;
}

.scroll-top.scroll-top--visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--primary-color);
}

.newsletter-section {
  position: relative;
  overflow: hidden;
  min-height: 425px;
  background: #000000;
  color: var(--white-color);
  display: flex;
  align-items: center;
  border-bottom: 8px solid var(--primary-color);
}

.newsletter-section::after {
  content: "";
  position: absolute;
  right: 6%;
  bottom: 0;
  width: min(780px, 52vw);
  height: 92%;
  background-image: url("https://demo2.wpopal.com/rebuilto/wp-content/uploads/2024/03/h1_img-5.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  opacity: 0.92;
  z-index: 1;
  pointer-events: none;
}

.newsletter-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0.96) 42%, rgba(0, 0, 0, 0.55) 72%, rgba(0, 0, 0, 0.25) 100%);
  z-index: 2;
  pointer-events: none;
}

.newsletter-container {
  position: relative;
  z-index: 3;
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 265px minmax(0, 1fr);
  gap: 65px;
  align-items: start;
  max-width: 1220px;
  margin: 0 auto;
}

.newsletter-label {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 72px;
  color: var(--primary-color);
  font-size: 18px;
  line-height: 26px;
  font-weight: 800;
  white-space: nowrap;
}

.newsletter-label span {
  width: 34px;
  height: 2px;
  display: inline-block;
  background: var(--primary-color);
  flex: 0 0 auto;
}

.newsletter-title {
  margin: 0 0 52px;
  font-family: Unbounded, "General Sans", sans-serif;
  font-size: clamp(42px, 4.8vw, 60px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -2.5px;
  text-transform: uppercase;
  color: var(--white-color);
  max-width: 760px;
}

.newsletter-form {
  position: relative;
  width: min(60%, 950px);
  height: 90px;
  display: flex;
  align-items: center;
}

.newsletter-input {
  width: 100%;
  height: 90px;
  border: 0;
  outline: none;
  border-radius: 999px;
  background: var(--white-color);
  padding: 0 124px 0 40px;
  color: #111111;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
}

.newsletter-input::placeholder {
  color: #8b8b8b;
  opacity: 1;
}

.newsletter-submit {
  position: absolute;
  right: -1px;
  top: 50%;
  width: 90px;
  height: 90px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  line-height: 1;
  transition: 0.25s ease;
}

.newsletter-submit:hover {
  background: var(--white-color);
  color: var(--primary-color);
  box-shadow: 0 0 0 2px var(--primary-color) inset;
}

@media (max-width: 1199px) {
  .newsletter-section {
    min-height: 560px;
  }

  .newsletter-section::after {
    right: -5%;
    width: 62vw;
    opacity: 0.55;
  }

  .newsletter-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 82px 0 110px;
  }

  .newsletter-label {
    padding-top: 0;
  }

  .footer-info-item {
    padding: 0;
  }

  .footer-info-item:not(:last-child)::after {
    display: none;
  }

  .footer-main {
    padding: 58px 0;
  }
}

@media (max-width: 991px) {
  .footer-top {
    padding: 42px 0;
  }

  .footer-info-item {
    min-height: auto;
  }

  .footer-info-title {
    font-size: 24px;
    line-height: 34px;
  }

  .footer-main {
    padding: 52px 0;
  }

  .footer-bottom {
    padding: 34px 0;
  }

  .footer-bottom-links {
    justify-content: flex-start;
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .newsletter-section {
    min-height: auto;
  }

  .newsletter-section::after {
    right: -120px;
    width: 620px;
    height: 72%;
    opacity: 0.28;
  }

  .newsletter-inner {
    padding: 68px 0 82px;
  }

  .newsletter-label {
    gap: 16px;
    font-size: 15px;
    line-height: 24px;
  }

  .newsletter-label span {
    width: 30px;
  }

  .newsletter-title {
    margin-bottom: 34px;
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.15;
    letter-spacing: -1.4px;
  }

  .newsletter-form,
  .newsletter-input {
    height: 70px;
  }

  .newsletter-form {
    width: 100%;
  }

  .newsletter-input {
    padding: 0 86px 0 26px;
    font-size: 15px;
  }

  .newsletter-submit {
    width: 70px;
    height: 70px;
    font-size: 30px;
  }

  .footer-info-item {
    gap: 18px;
  }

  .footer-info-icon {
    font-size: 42px;
  }

  .footer-info-label {
    font-size: 15px;
  }

  .footer-info-title {
    font-size: 21px;
    line-height: 31px;
  }

  .footer-logo-img {
    height: 48px;
  }

  .footer-logo-text {
    font-size: 36px;
  }

  .footer-logo-mark {
    font-size: 37px;
  }

  .site-footer .footer-social a {
    width: 50px;
    height: 50px;
  }

  .footer-menu li:not(:last-child) {
    margin-bottom: 17px;
  }

  .site-footer {
    --footer-text-size: 15px;
    --footer-text-line: 24px;
  }

  .scroll-top {
    right: 20px;
    bottom: 24px;
    width: 54px;
    height: 54px;
    font-size: 23px;
  }
}

@media (max-width: 575px) {
  .site-footer {
    text-align: left;
  }

  .footer-top {
    padding: 36px 0;
  }

  .footer-main {
    padding: 44px 0;
  }

  .footer-btn span {
    min-width: 140px;
    padding: 0 26px;
  }
}

@media (max-width: 480px) {
  .newsletter-inner {
    padding: 56px 0 72px;
  }

  .newsletter-title {
    font-size: 31px;
  }

  .newsletter-form,
  .newsletter-input {
    height: 62px;
  }

  .newsletter-input {
    padding: 0 74px 0 22px;
  }

  .newsletter-submit {
    width: 62px;
    height: 62px;
    font-size: 26px;
  }
}

/* Responsive */
@media (max-width: 991px) {
  section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 34px;
  }

  .hero-carousel-nav {
    display: none;
  }

  .hero-logo-side {
    display: none;
  }

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

@media (max-width: 575px) {
  .hero-carousel .carousel-item,
  .hero-content {
    min-height: 580px;
    height: 100svh;
    max-height: none;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-btn {
    width: 100%;
    justify-content: center;
  }

  .section-title {
    font-size: 30px;
  }

  .quote-form {
    padding: 25px;
  }

  .experience-box {
    position: static;
    margin-top: 20px;
    max-width: 100%;
  }

  .page-banner {
    padding: 90px 0;
  }

  .page-banner h1 {
    font-size: 38px;
  }

  .contact-form,
  .contact-info-box {
    padding: 28px;
  }

  .faq-section-modern {
    padding: 70px 0;
  }

  .faq-heading {
    margin-bottom: 42px;
  }

  .faq-label {
    font-size: 17px;
  }

  .faq-heading h2 {
    font-size: 34px;
  }

  .faq-heading p {
    font-size: 16px;
  }

  .faq-card {
    margin-bottom: 18px;
  }

  .faq-button {
    padding: 26px 22px;
    gap: 16px;
    font-size: 17px;
  }

  .faq-button:not(.collapsed) {
    padding-bottom: 10px;
  }

  .faq-toggle-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .faq-toggle-icon::before {
    width: 19px;
  }

  .faq-toggle-icon::after {
    height: 19px;
  }

  .faq-question {
    padding-top: 5px;
  }

  .faq-answer {
    padding: 0 22px 28px 76px;
    font-size: 15px;
  }
}

/* Contact Page */
.page-banner {
  background:
    linear-gradient(rgba(21, 21, 21, 0.78), rgba(21, 21, 21, 0.78)),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  padding: 160px 0 120px;
  color: var(--white-color);
}

.page-banner .section-tag {
  color: var(--primary-color);
}

.page-banner h1 {
  font-size: 64px;
  font-weight: 700;
}

.contact-info-box {
  background-color: var(--dark-color);
  color: var(--white-color);
  padding: 40px;
  height: 100%;
}

.contact-info-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}

.contact-info-item i {
  min-width: 54px;
  height: 54px;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.contact-info-item h5 {
  font-weight: 700;
  margin-bottom: 5px;
}

.contact-info-item p {
  color: #cfcfcf;
  margin-bottom: 0;
}

.contact-form {
  background-color: #f8f8f8;
  padding: 40px;
  height: 100%;
}

.contact-form .form-control,
.contact-form .form-select {
  border-radius: 0;
  border: 1px solid #dddddd;
  padding: 15px;
  background-color: var(--white-color);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

.contact-alert {
  border-radius: 0;
  margin-bottom: 24px;
  font-size: 15px;
}

/* Modern FAQ Section */
.faq-section-modern {
  background: #ffffff;
  padding: 110px 0;
}

.faq-heading {
  text-align: center;
  margin-bottom: 64px;
}

.faq-label {
  display: inline-block;
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
}

.faq-heading h2 {
  color: var(--dark-color);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 28px;
}

.faq-heading p {
  max-width: 660px;
  margin: 0 auto;
  color: #7d7d7d;
  font-size: 21px;
  line-height: 1.6;
}

.faq-accordion {
  max-width: 960px;
  margin: 0 auto;
}

.faq-card {
  background: #ffffff;
  border: 1px solid #e2e2e2 !important;
  border-radius: 0 !important;
  margin-bottom: 28px;
  overflow: hidden;
  box-shadow: none;
}

.faq-card:last-child {
  margin-bottom: 0;
}

.faq-button {
  width: 100%;
  background: #ffffff !important;
  color: var(--dark-color) !important;
  border: 0;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 52px 58px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
}

.faq-button::after {
  display: none;
}

.faq-button:not(.collapsed) {
  padding-bottom: 12px;
}

.faq-button:focus {
  box-shadow: none !important;
}

.faq-toggle-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: #e8e8e8;
  position: relative;
  transition: all 0.3s ease;
}

.faq-toggle-icon::before,
.faq-toggle-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #999999;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.faq-toggle-icon::before {
  width: 24px;
  height: 2px;
}

.faq-toggle-icon::after {
  width: 2px;
  height: 24px;
}

.faq-button:not(.collapsed) .faq-toggle-icon {
  background: var(--primary-color);
}

.faq-button:not(.collapsed) .faq-toggle-icon::before {
  background: #ffffff;
}

.faq-button:not(.collapsed) .faq-toggle-icon::after {
  opacity: 0;
}

.faq-question {
  padding-top: 10px;
}

.faq-answer {
  padding: 0 70px 50px 146px;
  color: #7d7d7d;
  font-size: 18px;
  line-height: 1.8;
  max-width: 860px;
}

@media (max-width: 991px) {
  .page-banner h1 {
    font-size: 48px;
  }

  .faq-section-modern {
    padding: 85px 0;
  }

  .faq-heading h2 {
    font-size: 42px;
  }

  .faq-heading p {
    font-size: 18px;
  }

  .faq-button {
    padding: 40px 34px;
    gap: 26px;
  }

  .faq-button:not(.collapsed) {
    padding-bottom: 12px;
  }

  .faq-answer {
    padding: 0 34px 40px 108px;
  }
}

/* Services Page */
.page-banner-services {
  background:
    linear-gradient(rgba(21, 21, 21, 0.70), rgba(21, 21, 21, 0.70)),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1600&q=80");
}

.page-banner p {
  max-width: 700px;
  font-size: 18px;
  line-height: 1.8;
  color: #efefef;
}

.services-section {
  background: #ffffff;
}

.services-heading {
  text-align: center;
  margin-bottom: 60px;
}

.services-heading p {
  max-width: 700px;
  margin: 0 auto;
}

.service-card-page {
  background: #fff;
  border: 1px solid #dcdcdc;
  position: relative;
  height: 100%;
  transition: all 0.35s ease;
  overflow: hidden;
  border-bottom: 6px solid var(--primary-color);
  padding: 0;
}

.service-card-page:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.service-image {
  position: relative;
  overflow: hidden;
}

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

.service-icon-box {
  width: 88px;
  height: 88px;
  background: var(--primary-color);
  position: absolute;
  left: 34px;
  bottom: -44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.service-icon-box i {
  color: #fff;
  font-size: 38px;
  line-height: 1;
}

.service-content {
  padding: 74px 34px 42px;
}

.service-content h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--dark-color);
}

.service-content p {
  color: #7b7b7b;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 26px;
}

.service-link {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 500;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: var(--dark-color);
}

.cta-section {
  background: #f8f8f8;
}

.cta-box {
  background: var(--dark-color);
  color: var(--white-color);
  padding: 60px;
}

.cta-box h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-box p {
  color: #d0d0d0;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 0;
}

/* About Page */
html {
  scroll-behavior: smooth;
}

.about-hero {
  position: relative;
  padding: 160px 0 120px;
  margin-top: 0;
  background:
    linear-gradient(rgba(21, 21, 21, 0.72), rgba(21, 21, 21, 0.72)),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  color: var(--white-color);
}

.page-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.page-banner-text {
  flex: 1;
}

.page-banner-logo {
  flex: 0 0 auto;
}

.page-banner-logo img {
  height: 150px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  opacity: 0.9;
}

.page-banner-iso {
  flex: 0 0 auto;
  background: #ffffff;
  padding: 24px 28px;
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.page-banner-iso img {
  width: 300px;
  max-width: 100%;
  height: auto;
  display: block;
}

.about-hero h1 {
  color: var(--white-color);
  font-size: clamp(46px, 7vw, 76px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -2px;
  max-width: 850px;
  margin-bottom: 24px;
}

.about-hero p {
  max-width: 680px;
  color: #eeeeee;
  font-size: 19px;
  line-height: 1.8;
  margin-bottom: 34px;
}

.hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #eeeeee;
  font-weight: 600;
}

.hero-breadcrumb a {
  color: var(--white-color);
  transition: all 0.3s ease;
}

.hero-breadcrumb a:hover {
  color: var(--primary-color);
}

.hero-breadcrumb i {
  color: var(--primary-color);
  flex-shrink: 0;
}

.hero-breadcrumb span {
  color: rgba(255, 255, 255, 0.92);
}

.page-banner .hero-breadcrumb {
  margin-top: 28px;
}

.who-image-wrap {
  position: relative;
  padding-right: 28px;
  padding-bottom: 28px;
}

.who-image-wrap::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 72%;
  height: 72%;
  background: var(--primary-color);
  z-index: -1;
}

.who-image-wrap img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.about-experience-box {
  position: absolute;
  left: 35px;
  bottom: 65px;
  right: auto;
  width: 205px;
  max-width: none;
  background: var(--dark-color);
  color: var(--white-color);
  padding: 28px 24px;
}

.about-experience-box h3 {
  color: var(--primary-color);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 5px;
}

.about-experience-box p {
  color: #dddddd;
  line-height: 1.5;
  margin-bottom: 0;
}

.feature-list {
  margin-top: 32px;
  display: grid;
  gap: 18px;
}

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

.feature-icon {
  min-width: 46px;
  height: 46px;
  background: rgba(237, 85, 33, 0.12);
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.feature-item h5 {
  color: var(--dark-color);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 5px;
}

.feature-item p {
  color: var(--muted-color);
  line-height: 1.65;
  margin-bottom: 0;
}

.story-section {
  background: #f8f8f8;
}

.story-card {
  background: var(--white-color);
  border-left: 6px solid var(--primary-color);
  padding: 38px;
  height: 100%;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.05);
}

.story-year {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
}

.story-card h4 {
  color: var(--dark-color);
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 14px;
}

.story-card p {
  color: var(--muted-color);
  line-height: 1.8;
  margin-bottom: 0;
}

.about-mission-text {
  max-width: 720px;
}

.mission-card {
  border: 1px solid #e3e3e3;
  padding: 42px 34px;
  height: 100%;
  transition: all 0.35s ease;
  background: var(--white-color);
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.35s ease;
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.mission-card:hover::before {
  transform: scaleX(1);
}

.mission-icon {
  width: 74px;
  height: 74px;
  background: var(--primary-color);
  color: var(--white-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin-bottom: 26px;
}

.mission-card h4 {
  color: var(--dark-color);
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 15px;
}

.mission-card p {
  color: var(--muted-color);
  line-height: 1.8;
  margin-bottom: 0;
}

.work-section {
  background:
    linear-gradient(rgba(21, 21, 21, 0.82), rgba(21, 21, 21, 0.82)),
    url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  color: var(--white-color);
}

.work-section .section-title {
  color: var(--white-color);
}

.work-section-text {
  color: #dddddd;
  max-width: 710px;
  margin-left: auto;
  margin-right: auto;
}

.work-steps {
  margin-top: 58px;
}

.work-steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 58px;
}

@media (max-width: 991px) {
  .work-steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 575px) {
  .work-steps-grid {
    grid-template-columns: 1fr;
  }
}

.work-step {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 34px 28px;
  height: 100%;
  backdrop-filter: blur(3px);
  transition: all 0.35s ease;
}

.work-step:hover {
  background: rgba(237, 85, 33, 0.9);
  transform: translateY(-8px);
}

.work-number {
  width: 58px;
  height: 58px;
  background: var(--primary-color);
  color: var(--white-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  transition: all 0.35s ease;
}

.work-step:hover .work-number {
  background: var(--white-color);
  color: var(--primary-color);
}

.work-step h4 {
  color: var(--white-color);
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 12px;
}

.work-step p {
  color: #dddddd;
  line-height: 1.75;
  margin-bottom: 0;
}

.work-step:hover p {
  color: var(--white-color);
}

/* Home HSEQ — premium (same background, elevated UI) */
.home-hseq-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background:
    linear-gradient(
      105deg,
      rgba(21, 21, 21, 0.94) 0%,
      rgba(21, 21, 21, 0.84) 48%,
      rgba(21, 21, 21, 0.72) 100%
    ),
    url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.home-hseq-label {
  display: inline-block;
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.home-hseq-title {
  color: var(--white-color);
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 24px;
  max-width: 520px;
}

.home-hseq-lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 480px;
}

.home-hseq-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--primary-color);
  color: var(--white-color);
  font-size: 15px;
  font-weight: 700;
  padding: 18px 34px;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 12px 32px rgba(237, 85, 33, 0.35);
}

.home-hseq-cta:hover {
  background: var(--white-color);
  color: var(--dark-color);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.home-hseq-cta i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.home-hseq-cta:hover i {
  transform: translate(3px, -3px);
}

.home-hseq-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 32px 28px 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, border-color 0.35s ease;
}

.home-hseq-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 0;
  background: var(--primary-color);
  transition: height 0.45s ease;
}

.home-hseq-card:hover {
  transform: translateY(-8px);
  border-color: rgba(237, 85, 33, 0.45);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
  background: rgba(255, 255, 255, 0.1);
}

.home-hseq-card:hover::before {
  height: 100%;
}

.home-hseq-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.home-hseq-num {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.12);
  transition: color 0.35s ease;
}

.home-hseq-card:hover .home-hseq-num {
  color: rgba(237, 85, 33, 0.35);
}

.home-hseq-icon {
  width: 52px;
  height: 52px;
  background: rgba(237, 85, 33, 0.15);
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.35s ease;
}

.home-hseq-card:hover .home-hseq-icon {
  background: var(--primary-color);
  color: var(--white-color);
}

.home-hseq-card h4 {
  color: var(--white-color);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.home-hseq-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
  transition: color 0.35s ease;
}

.home-hseq-card:hover p {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 991px) {
  .home-hseq-section {
    padding: 80px 0;
    background-attachment: scroll;
  }

  .home-hseq-title {
    max-width: none;
  }
}

.about-quote-section {
  background: var(--white-color);
}

.quote-wrapper {
  background: #f8f8f8;
  border: 1px solid #e3e3e3;
}

.quote-content {
  padding: 58px;
}

.about-quote-form {
  background: var(--dark-color);
  padding: 48px;
  height: 100%;
}

.about-quote-form h3 {
  color: var(--white-color);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 28px;
}

.about-quote-form .form-control,
.about-quote-form .form-select {
  border-radius: 0;
  border: 1px solid #dddddd;
  padding: 15px 16px;
  font-size: 15px;
  color: var(--dark-color);
}

.about-quote-form .form-control:focus,
.about-quote-form .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

.about-quote-form textarea.form-control {
  resize: none;
}

.about-quote-form .contact-alert {
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .page-banner-services {
    padding: 100px 0;
  }

  .service-image img {
    height: 280px;
  }

  .cta-box {
    padding: 40px;
  }

  .cta-box h2 {
    font-size: 34px;
  }

  .about-hero {
    padding: 115px 0;
  }

  .about-hero h1 {
    letter-spacing: -1px;
  }

  .page-banner-logo {
    display: none;
  }

  .page-banner-iso {
    display: none;
  }

  .who-image-wrap {
    padding-right: 18px;
    padding-bottom: 18px;
  }

  .who-image-wrap img {
    min-height: 420px;
  }

  .about-experience-box {
    left: 25px;
    bottom: 45px;
  }

  .quote-wrapper {
    border: 0;
  }

  .quote-content,
  .about-quote-form {
    padding: 36px;
  }
}

@media (max-width: 575px) {
  .page-banner p,
  .service-content p {
    font-size: 16px;
  }

  .service-image img {
    height: 240px;
  }

  .service-icon-box {
    width: 76px;
    height: 76px;
    left: 24px;
    bottom: -38px;
  }

  .service-icon-box i {
    font-size: 32px;
  }

  .service-content {
    padding: 62px 24px 30px;
  }

  .service-content h3 {
    font-size: 22px;
  }

  .cta-box {
    padding: 28px;
  }

  .cta-box h2 {
    font-size: 28px;
  }

  .about-hero {
    padding: 90px 0;
  }

  .about-hero h1 {
    font-size: 42px;
  }

  .about-hero p {
    font-size: 16px;
  }

  .who-image-wrap {
    padding-right: 0;
    padding-bottom: 0;
  }

  .who-image-wrap::after {
    display: none;
  }

  .who-image-wrap img {
    min-height: 330px;
  }

  .about-experience-box {
    position: static;
    width: 100%;
    margin-top: 18px;
  }

  .story-card,
  .mission-card,
  .work-step,
  .quote-content,
  .about-quote-form {
    padding: 28px;
  }

  .about-quote-form h3 {
    font-size: 25px;
  }
}

/* Team Section */
.team-section {
  position: relative;
  width: 100%;
  background: #F3F5FA;
  padding: 80px 20px 90px;
  overflow: hidden;
  isolation: isolate;
}

.team-bg-shape {
  position: absolute;
  top: -250px;
  left: -145px;
  width: 900px;
  height: auto;
  z-index: 0;
  pointer-events: none;
}

.team-bg-shape svg {
  width: 100%;
  height: auto;
  display: block;
}

.team-container {
  max-width: 1560px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.team-header {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  align-items: center;
  gap: 40px;
  margin-bottom: 75px;
}

.team-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--primary-color);
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
  text-transform: lowercase;
}

.team-label span {
  width: 42px;
  height: 1px;
  background: var(--primary-color);
  display: inline-block;
  flex: 0 0 auto;
}

.team-header h2 {
  font-family: Unbounded, "General Sans", sans-serif;
  font-style: normal;
  font-weight: 600;
  color: #000000;
  font-size: 50px;
  line-height: 54px;
  margin: 0;
  max-width: 620px;
  letter-spacing: -1.5px;
}

.team-cta {
  justify-self: end;
  position: relative;
  display: flex;
  align-items: center;
  width: 520px;
  height: 132px;
}

.team-cta-pill {
  position: relative;
  width: 375px;
  height: 94px;
  background: #ffffff;
  border-radius: 999px;
  display: flex;
  align-items: center;
  padding-left: 188px;
  padding-right: 40px;
  overflow: visible;
}

.team-cta-person {
  position: absolute;
  left: 38px;
  bottom: 0;
  width: 110px;
  height: 140px;
  object-fit: contain;
  z-index: 2;
}

.team-cta-text {
  position: relative;
  z-index: 3;
}

.team-cta-text strong {
  display: block;
  font-family: "General Sans", Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  color: #000000;
}

.team-cta-text p {
  margin: 8px 0 0;
  font-family: "General Sans", Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 18px;
  font-weight: 800;
  color: rgb(122, 122, 122);
}

.team-cta-icon {
  position: absolute;
  right: 45px;
  top: 50%;
  width: 100px;
  height: 100px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 50%;
  background: var(--primary-color);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.team-cta-icon:hover {
  color: #ffffff;
  opacity: 0.9;
}

.team-cta-icon svg {
  width: 36px;
  height: 36px;
}

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

.team-card {
  min-width: 0;
}

.team-image {
  position: relative;
  aspect-ratio: 1 / 1.14;
  overflow: visible;
  background: transparent;
}

.team-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #dce2e8;
}

.team-img-wrap > img:not(.hover-team-icon) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hover-team-icon {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72%;
  max-width: 285px;
  height: auto;
  z-index: 2;
  pointer-events: none;
  transform: translate(-110%, 110%);
  opacity: 0;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.team-card:hover .hover-team-icon {
  transform: translate(0, 0);
  opacity: 1;
}

.plus-btn {
  position: absolute;
  right: 24px;
  bottom: -21px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #000000;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease;
}

.team-card:hover .plus-btn {
  background: var(--primary-color);
  color: #ffffff;
}

.team-card p {
  margin: 28px 0 8px;
  color: #8e9096;
  font-size: 12px;
  line-height: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.team-card h3 {
  margin: 0;
  font-family: Unbounded, "General Sans", sans-serif;
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  color: #000000;
}

@media (max-width: 1399px) {
  .team-cta {
    width: 450px;
  }

  .team-cta-pill {
    width: 365px;
    padding-left: 150px;
  }

  .team-cta-person {
    left: 26px;
    width: 115px;
    height: 150px;
  }

  .team-cta-text strong,
  .team-cta-text p {
    font-size: 16px;
  }

  .team-cta-icon {
    width: 110px;
    height: 110px;
  }
}

@media (max-width: 1199px) {
  .team-bg-shape {
    top: -190px;
    left: -260px;
    width: 820px;
  }

  .team-header {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
    margin-bottom: 55px;
  }

  .team-header h2 {
    margin: 0 auto;
    font-size: 42px;
    line-height: 48px;
  }

  .team-cta {
    justify-self: center;
  }

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

@media (max-width: 767px) {
  .team-section {
    padding: 55px 14px 65px;
  }

  .team-bg-shape {
    top: -120px;
    left: -280px;
    width: 620px;
  }

  .team-header h2 {
    font-size: 32px;
    line-height: 39px;
  }

  .team-cta {
    justify-self: center;
    width: 100%;
    max-width: 420px;
    height: 112px;
  }

  .team-cta-pill {
    width: calc(100% - 88px);
    height: 78px;
    padding-left: 130px;
    padding-right: 22px;
  }

  .team-cta-person {
    left: 22px;
    width: 96px;
    height: 132px;
  }

  .team-cta-text strong {
    font-size: 14px;
    line-height: 22px;
  }

  .team-cta-text p {
    font-size: 14px;
    line-height: 20px;
  }

  .team-cta-icon {
    width: 96px;
    height: 96px;
  }

  .team-cta-icon svg {
    width: 30px;
    height: 30px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .team-image {
    aspect-ratio: 1 / 1.16;
  }

  .plus-btn {
    right: 18px;
    bottom: -16px;
  }
}

@media (max-width: 420px) {
  .team-header h2 {
    font-size: 28px;
    line-height: 35px;
  }

  .team-cta {
    max-width: 340px;
  }

  .team-cta-pill {
    width: calc(100% - 72px);
    padding-left: 92px;
  }

  .team-cta-person {
    left: 14px;
    width: 78px;
    height: 108px;
  }

  .team-cta-icon {
    width: 82px;
    height: 82px;
  }

  .team-card h3 {
    font-size: 20px;
  }
}

/* Group, Projects & shared components */

.footer-group-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--footer-text-size);
  line-height: var(--footer-text-line);
  margin: 18px 0 22px;
  max-width: 280px;
}

.page-banner-projects {
  background:
    linear-gradient(rgba(21, 21, 21, 0.72), rgba(21, 21, 21, 0.72)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
}

.page-banner-hseq {
  background:
    linear-gradient(rgba(21, 21, 21, 0.72), rgba(21, 21, 21, 0.72)),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
}

.legal-section {
  padding: 80px 0 100px;
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
}

.legal-updated {
  color: #888;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 36px;
}

.legal-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-color);
  margin: 40px 0 16px;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: #666;
  font-size: 16px;
  line-height: 1.85;
}

.legal-content ul {
  padding-left: 22px;
  margin-bottom: 16px;
}

.legal-content li {
  margin-bottom: 10px;
}

.legal-content a {
  color: var(--primary-color);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.stat-block {
  background: var(--dark-color);
  color: var(--white-color);
  padding: 28px 20px;
  text-align: center;
}

.stat-block h3 {
  color: var(--primary-color);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 6px;
}

.stat-block p {
  color: #cccccc;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.company-card {
  background: var(--white-color);
  border: 1px solid #e3e3e3;
  padding: 38px 34px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.company-card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.35s ease;
}

.company-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.company-card:hover::before {
  transform: scaleX(1);
}

.company-card-active {
  border-left: 6px solid var(--primary-color);
}

.company-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.company-card-icon {
  width: 180px;
  height: 96px;
  background: #ffffff;
  border: 1px solid #ececec;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  overflow: hidden;
  flex-shrink: 0;
}

.company-card-icon img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  image-rendering: -webkit-optimize-contrast;
}

.company-card-year {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 700;
}

.company-card-soon {
  color: #e53935;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.company-card-coming-soon {
  border-color: #f0c4c4;
}

.company-card-location-soon {
  color: #e53935;
}

.company-card-location-soon i {
  color: #e53935;
}

.company-card h4 {
  color: var(--dark-color);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.company-card-location {
  color: var(--muted-color);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
}

.company-card-location i {
  color: var(--primary-color);
  margin-right: 4px;
}

.company-card p {
  color: var(--muted-color);
  line-height: 1.8;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .company-card h4 {
    font-size: 20px;
  }
}

/* Past Projects — reference layout */
.past-projects-section {
  background-color: #ffffff;
  padding: 90px 0;
}

.past-projects-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.past-projects-label {
  display: block;
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
}

.past-projects-title {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark-color);
  margin: 0;
  max-width: 520px;
}

.past-projects-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.past-projects-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.past-projects-btn-primary {
  background-color: var(--primary-color);
  color: var(--white-color);
  border: 2px solid var(--primary-color);
}

.past-projects-btn-primary:hover {
  background-color: var(--dark-color);
  border-color: var(--dark-color);
  color: var(--white-color);
}

.past-projects-btn-outline {
  background-color: var(--white-color);
  color: var(--dark-color);
  border: 1px solid #d8d8d8;
}

.past-projects-btn-outline:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

/* Premium project cards */
.premium-project-card-link {
  display: block;
  color: inherit;
  height: 100%;
}

.premium-project-card-link:hover {
  color: inherit;
}

.premium-project-card {
  background: var(--white-color);
  height: 100%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 40px rgba(21, 21, 21, 0.06);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

.premium-project-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0;
  background: var(--primary-color);
  z-index: 3;
  transition: height 0.45s ease;
}

.premium-project-card-link:hover .premium-project-card {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(21, 21, 21, 0.14);
}

.premium-project-card-link:hover .premium-project-card::before {
  height: 100%;
}

.premium-project-card-media {
  position: relative;
  overflow: hidden;
  height: 340px;
}

.premium-project-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.premium-project-card-link:hover .premium-project-card-media img {
  transform: scale(1.08);
}

.premium-project-card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(21, 21, 21, 0.55) 0%,
    rgba(21, 21, 21, 0.1) 45%,
    transparent 70%
  );
  opacity: 0.85;
  transition: opacity 0.4s ease;
}

.premium-project-card-link:hover .premium-project-card-shade {
  opacity: 1;
}

.premium-project-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  background: var(--primary-color);
  color: var(--white-color);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 8px 14px;
  z-index: 2;
}

.premium-project-date {
  position: absolute;
  top: 22px;
  right: 22px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark-color);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.premium-project-date i {
  color: var(--primary-color);
}

.premium-project-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.premium-project-card-link:hover .premium-project-hover {
  opacity: 1;
}

.premium-project-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white-color);
  color: var(--dark-color);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 24px;
  transform: translateY(16px);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.premium-project-card-link:hover .premium-project-view-btn {
  transform: translateY(0);
}

.premium-project-view-btn i {
  color: var(--primary-color);
  font-size: 18px;
}

.premium-project-card-body {
  padding: 30px 32px 28px;
  background: var(--white-color);
}

.premium-project-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 12px;
}

.premium-project-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--dark-color);
  margin-bottom: 14px;
  transition: color 0.3s ease;
}

.premium-project-card-link:hover .premium-project-title {
  color: var(--primary-color);
}

.premium-project-desc {
  color: #777;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.premium-project-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid #efefef;
}

.premium-project-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-color);
}

.premium-project-tag i {
  width: 36px;
  height: 36px;
  background: rgba(237, 85, 33, 0.1);
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.premium-project-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid #e5e5e5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-color);
  transition: all 0.35s ease;
}

.premium-project-card-link:hover .premium-project-arrow {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white-color);
}

@media (max-width: 991px) {
  .past-projects-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .past-projects-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .premium-project-card-media {
    height: 280px;
  }
}

.past-projects-slider-wrap {
  position: relative;
}

.past-projects-carousel .carousel-item {
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.past-projects-slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid #e0e0e0;
}

.past-projects-slide-counter {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: Unbounded, "General Sans", sans-serif;
}

.past-projects-slide-current {
  font-size: 42px;
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1;
  letter-spacing: -1px;
}

.past-projects-slide-divider {
  width: 48px;
  height: 2px;
  background: #d8d8d8;
}

.past-projects-slide-total {
  font-size: 18px;
  font-weight: 600;
  color: #999;
  line-height: 1;
}

.past-projects-nav-group {
  display: flex;
  gap: 12px;
}

.past-projects-nav {
  width: 56px;
  height: 56px;
  border: none;
  background: var(--dark-color);
  color: var(--white-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.35s ease;
}

.past-projects-nav:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.service-card-link {
  display: block;
  color: inherit;
  height: 100%;
}

.service-card-link:hover {
  color: inherit;
}

/* Single project page — reference layout */
.project-single-hero {
  background: #fff;
  padding: 64px 0 80px;
  margin-top: 0;
}

.project-single-hero-wrap {
  position: relative;
}

.project-single-hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.project-info-bar {
  position: absolute;
  left: 48px;
  right: 48px;
  bottom: -48px;
  background: var(--white-color);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--primary-color);
  z-index: 2;
}

.project-info-item {
  padding: 28px 24px;
  border-right: 1px solid #ececec;
  height: 100%;
}

.project-info-item:last-child {
  border-right: none;
}

.project-info-label {
  display: block;
  font-size: 13px;
  color: #999;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.project-info-value {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--dark-color);
  line-height: 1.35;
}

.project-single-body {
  padding: 100px 0 90px;
  background: #fff;
}

.project-content-heading {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 24px;
  line-height: 1.2;
}

.project-content-subheading {
  font-size: 26px;
  font-weight: 700;
  color: var(--dark-color);
  margin: 48px 0 20px;
  line-height: 1.3;
}

.project-content-text {
  color: #6b6b6b;
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 20px;
}

.project-numbered-list {
  margin: 32px 0 0;
  padding-left: 22px;
  color: #6b6b6b;
  font-size: 17px;
  line-height: 1.85;
}

.project-numbered-list li {
  margin-bottom: 14px;
  padding-left: 8px;
}

.project-numbered-list li::marker {
  color: var(--primary-color);
  font-weight: 700;
}

.project-bullet-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.project-bullet-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: #6b6b6b;
  font-size: 17px;
  line-height: 1.75;
}

.project-bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  background: var(--primary-color);
}

.project-secondary-image {
  margin-top: 48px;
}

.project-secondary-image img {
  width: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
}

.project-call-form-box {
  background: var(--white-color);
  border: 1px solid #e8e8e8;
  border-top: 4px solid var(--primary-color);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  padding: 36px 32px;
  position: sticky;
  top: 100px;
}

.project-call-form-box h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 12px;
  line-height: 1.3;
}

.project-form-intro {
  color: #777;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.project-sidebar-card {
  margin-bottom: 24px;
}

.project-form-field {
  position: relative;
  margin-bottom: 16px;
}

.project-form-field i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 18px;
  z-index: 1;
}

.project-form-field input {
  width: 100%;
  border: 1px solid #ddd;
  padding: 15px 16px 15px 48px;
  font-size: 15px;
  color: var(--dark-color);
  background: #fff;
  border-radius: 0;
}

.project-form-field input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: none;
}

.project-form-field input.is-invalid {
  border-color: #dc3545;
}

.project-call-submit {
  width: 100%;
  background: var(--primary-color);
  color: var(--white-color);
  border: none;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  margin-top: 8px;
  transition: all 0.3s ease;
  border-radius: 0;
}

.project-call-submit:hover {
  background: var(--dark-color);
}

.project-call-form-box .contact-alert {
  margin-bottom: 16px;
  font-size: 14px;
}

@media (max-width: 991px) {
  .project-single-hero-img {
    height: 380px;
  }

  .project-info-bar {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: -1px;
  }

  .project-info-item {
    border-right: none;
    border-bottom: 1px solid #ececec;
  }

  .project-info-item:nth-child(odd) {
    border-right: 1px solid #ececec;
  }

  .project-single-body {
    padding: 60px 0 70px;
  }

  .project-call-form-box {
    position: static;
    margin-top: 20px;
  }

  .project-content-heading {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .project-info-item:nth-child(odd) {
    border-right: none;
  }

  .project-single-hero-img {
    height: 280px;
  }

  .project-content-heading {
    font-size: 26px;
  }

  .project-content-subheading {
    font-size: 22px;
  }
}

/* Single service page */
.service-single-body {
  padding-top: 80px;
}

.service-process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 32px 0 0;
}

.service-process-step {
  background: #f8f8f8;
  padding: 28px 24px;
  border-left: 3px solid var(--primary-color);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-process-step:hover {
  box-shadow: 0 12px 32px rgba(21, 21, 21, 0.08);
  transform: translateY(-3px);
}

.service-process-num {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.service-process-step h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.service-process-step p {
  color: #6b6b6b;
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}

.service-sidebar-card {
  background: var(--dark-color);
  color: var(--white-color);
  padding: 32px 28px;
  margin-bottom: 24px;
}

.service-sidebar-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-color);
  color: var(--white-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.service-sidebar-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}

.service-sidebar-card > p {
  color: #ccc;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.service-sidebar-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
}

.service-sidebar-meta li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #e0e0e0;
  margin-bottom: 12px;
}

.service-sidebar-meta li i {
  color: var(--primary-color);
  font-size: 16px;
}

.project-form-field-textarea textarea {
  width: 100%;
  border: 1px solid #ddd;
  padding: 15px 16px 15px 48px;
  font-size: 15px;
  color: var(--dark-color);
  background: #fff;
  border-radius: 0;
  resize: vertical;
  min-height: 100px;
}

.project-form-field-textarea textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: none;
}

.project-form-field-textarea i {
  top: 18px;
  transform: none;
}

.service-highlights-section {
  padding: 80px 0;
  background: #f3f3f3;
}

.service-highlight-card {
  background: var(--white-color);
  padding: 32px 28px;
  height: 100%;
  border-bottom: 3px solid transparent;
  transition: all 0.35s ease;
}

.service-highlight-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 16px 40px rgba(21, 21, 21, 0.08);
  transform: translateY(-5px);
}

.service-highlight-icon {
  width: 52px;
  height: 52px;
  background: rgba(237, 85, 33, 0.1);
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  transition: all 0.35s ease;
}

.service-highlight-card:hover .service-highlight-icon {
  background: var(--primary-color);
  color: var(--white-color);
}

.service-highlight-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.service-highlight-card p {
  color: #777;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 991px) {
  .service-process-grid {
    grid-template-columns: 1fr;
  }
}

/* Project gallery */
.project-gallery-section {
  padding: 80px 0 90px;
  background: #fff;
}

.project-gallery-intro {
  max-width: 620px;
}

.project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 20px;
}

.project-gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  background: #e8e8e8;
}

.project-gallery-featured {
  grid-column: span 2;
  grid-row: span 2;
}

.project-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(21, 21, 21, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.project-gallery-overlay i {
  color: var(--white-color);
  font-size: 32px;
  transform: scale(0.8);
  transition: transform 0.35s ease;
}

.project-gallery-item:hover img {
  transform: scale(1.06);
}

.project-gallery-item:hover .project-gallery-overlay {
  opacity: 1;
}

.project-gallery-item:hover .project-gallery-overlay i {
  transform: scale(1);
}

@media (max-width: 991px) {
  .project-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .project-gallery-featured {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 575px) {
  .project-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .project-gallery-featured {
    grid-column: span 1;
  }
}

@media (max-width: 575px) {
  .past-projects-section {
    padding: 70px 0;
  }

  .past-projects-btn {
    width: 100%;
  }

  .premium-project-card-body {
    padding: 24px 22px 22px;
  }

  .premium-project-title {
    font-size: 19px;
  }

  .premium-project-card-media {
    height: 240px;
  }

  .past-projects-slide-current {
    font-size: 32px;
  }

  .past-projects-slider-controls {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

/* Home About — premium */
.home-about-section {
  padding: 90px 0;
  background: #fff;
}

.home-about-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 52px;
}

.home-about-header-text {
  flex: 1;
  min-width: 0;
}

.home-about-header .past-projects-title {
  max-width: 780px;
}

.home-about-intro {
  flex-shrink: 0;
  width: 380px;
  max-width: 38%;
  color: #666;
  font-size: 17px;
  line-height: 1.85;
  margin: 0;
  align-self: center;
}

.home-about-showcase {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 520px;
  margin-bottom: 56px;
  box-shadow: 0 28px 70px rgba(21, 21, 21, 0.12);
}

.home-about-showcase-media {
  position: relative;
  overflow: hidden;
}

.home-about-showcase-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-about-showcase:hover .home-about-showcase-media img {
  transform: scale(1.04);
}

.home-about-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(21, 21, 21, 0.75) 0%,
    rgba(21, 21, 21, 0.15) 50%,
    transparent 80%
  );
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 32px;
  gap: 16px;
}

.home-about-heritage,
.home-about-founded {
  background: rgba(255, 255, 255, 0.95);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
}

.home-about-badge-logo {
  height: 72px !important;
  width: auto !important;
  max-width: 240px !important;
  min-height: auto !important;
  object-fit: contain !important;
  display: block;
  image-rendering: -webkit-optimize-contrast;
}

.home-about-heritage span,
.home-about-founded span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
  opacity: 0.85;
}

.home-about-heritage strong,
.home-about-founded strong {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.home-about-founded {
  background: var(--primary-color);
  color: var(--white-color);
}

.home-about-founded span {
  color: rgba(255, 255, 255, 0.85);
}

.home-about-showcase-panel {
  background: var(--dark-color);
  color: var(--white-color);
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-about-panel-lead {
  font-size: 17px;
  line-height: 1.85;
  color: #ccc;
  margin-bottom: 36px;
}

.home-about-panel-stats {
  display: flex;
  gap: 0;
  margin-bottom: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.home-about-panel-stat {
  flex: 1;
  padding: 24px 16px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.home-about-panel-stat:last-child {
  border-right: none;
}

.home-about-panel-stat h4 {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 6px;
  line-height: 1;
}

.home-about-panel-stat span {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #999;
}

.home-about-panel-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
}

.home-about-panel-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  font-size: 15px;
  font-weight: 600;
  color: #e8e8e8;
}

.home-about-panel-list li i {
  width: 28px;
  height: 28px;
  background: var(--primary-color);
  color: var(--white-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.home-about-panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
  background: var(--primary-color);
  color: var(--white-color);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  transition: all 0.35s ease;
}

.home-about-panel-cta:hover {
  background: var(--white-color);
  color: var(--dark-color);
}

.home-about-panel-cta i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.home-about-panel-cta:hover i {
  transform: translate(3px, -3px);
}

.home-about-pillars {
  margin-top: 0;
}

.home-about-pillar {
  background: #f8f8f8;
  padding: 36px 32px;
  height: 100%;
  border-bottom: 3px solid transparent;
  transition: all 0.4s ease;
}

.home-about-pillar:hover {
  background: var(--white-color);
  border-color: var(--primary-color);
  box-shadow: 0 20px 50px rgba(21, 21, 21, 0.08);
  transform: translateY(-6px);
}

.home-about-pillar-icon {
  width: 56px;
  height: 56px;
  background: rgba(237, 85, 33, 0.1);
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
  transition: all 0.35s ease;
}

.home-about-pillar:hover .home-about-pillar-icon {
  background: var(--primary-color);
  color: var(--white-color);
}

.home-about-pillar h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 12px;
}

.home-about-pillar p {
  color: #777;
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}

/* Home Group — premium */
.home-group-section {
  padding: 90px 0;
  background: #f3f3f3;
}

.premium-group-card {
  background: var(--white-color);
  height: 100%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 40px rgba(21, 21, 21, 0.06);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

.premium-group-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0;
  background: var(--primary-color);
  z-index: 3;
  transition: height 0.45s ease;
}

.premium-group-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(21, 21, 21, 0.14);
}

.premium-group-card:hover::before {
  height: 100%;
}

.premium-group-card-active {
  box-shadow: 0 12px 48px rgba(237, 85, 33, 0.12);
}

.premium-group-card-media {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.premium-group-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.premium-group-card:hover .premium-group-card-media img {
  transform: scale(1.08);
}

.premium-group-card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(21, 21, 21, 0.5) 0%,
    transparent 60%
  );
}

.premium-group-card-year {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark-color);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  z-index: 2;
}

.premium-group-card-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--primary-color);
  color: var(--white-color);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 8px 14px;
  z-index: 2;
}

.premium-group-card-body {
  padding: 28px 30px 30px;
}

.premium-group-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.premium-group-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(237, 85, 33, 0.1);
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all 0.35s ease;
}

.premium-group-card:hover .premium-group-card-icon {
  background: var(--primary-color);
  color: var(--white-color);
}

.premium-group-card-loc {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.premium-group-card-loc i {
  margin-right: 4px;
}

.premium-group-card-body h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 12px;
  line-height: 1.3;
}

.premium-group-card-body p {
  color: #777;
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}

.premium-section-label {
  display: inline-block;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.premium-section-title {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark-color);
  margin-bottom: 22px;
}

/* Home Why — premium */
.home-why-section {
  padding: 100px 0;
  background: #f3f3f3;
  border-top: 1px solid #ececec;
}

.premium-why-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}

.premium-why-intro {
  max-width: 420px;
  color: #666;
  font-size: 17px;
  line-height: 1.85;
  margin: 0;
}

.premium-why-card {
  background: var(--white-color);
  padding: 32px 28px 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(21, 21, 21, 0.05);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

.premium-why-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
}

.premium-why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 56px rgba(21, 21, 21, 0.12);
}

.premium-why-card:hover::after {
  transform: scaleX(1);
}

.premium-why-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.premium-why-num {
  font-family: Unbounded, "General Sans", sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #ececec;
  line-height: 1;
  letter-spacing: -1px;
  transition: color 0.35s ease;
}

.premium-why-card:hover .premium-why-num {
  color: rgba(237, 85, 33, 0.2);
}

.premium-why-icon {
  width: 52px;
  height: 52px;
  background: rgba(237, 85, 33, 0.1);
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.35s ease;
}

.premium-why-card:hover .premium-why-icon {
  background: var(--primary-color);
  color: var(--white-color);
}

.premium-why-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 12px;
}

.premium-why-card p {
  color: #777;
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}

.premium-why-banner {
  margin-top: 56px;
  background: var(--dark-color);
  color: var(--white-color);
  padding: 48px 52px;
}

.premium-why-banner h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.25;
}

.premium-why-banner p {
  color: #bbb;
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 991px) {
  .home-about-section,
  .home-why-section,
  .home-group-section {
    padding: 80px 0;
  }

  .home-about-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
  }

  .home-about-header .past-projects-title {
    max-width: 100%;
  }

  .home-about-intro {
    width: 100%;
    max-width: 100%;
    align-self: flex-start;
  }

  .home-about-showcase {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .home-about-showcase-media img {
    min-height: 360px;
  }

  .home-about-showcase-overlay {
    flex-direction: row;
    align-items: stretch;
    justify-content: stretch;
    padding: 0;
    gap: 0;
  }

  .home-about-heritage,
  .home-about-founded {
    flex: 1 1 50%;
    min-width: 0;
    width: 50%;
    padding: 20px 16px;
  }

  .home-about-badge-logo {
    height: 56px !important;
    max-width: 100% !important;
    margin: 0 auto;
  }

  .home-about-showcase-panel {
    padding: 40px 32px;
  }

  .premium-why-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
  }

  .premium-why-intro {
    max-width: 100%;
  }

  .premium-why-banner {
    padding: 36px 28px;
    text-align: center;
  }

  .premium-why-banner .text-lg-end {
    text-align: center !important;
  }
}

@media (max-width: 575px) {
  .home-about-panel-stats {
    flex-direction: column;
  }

  .home-about-panel-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .home-about-panel-stat:last-child {
    border-bottom: none;
  }

  .home-about-heritage,
  .home-about-founded {
    padding: 18px 14px;
  }

  .home-about-badge-logo {
    height: 52px !important;
  }

  .premium-section-title br {
    display: none;
  }

  .premium-group-card-media {
    height: 200px;
  }

  .premium-service-card-media {
    height: 220px;
  }
}

/* Home Services — premium */
.home-services-section {
  padding: 90px 0;
  background: #fff;
}

.home-services-header {
  text-align: center;
  margin-bottom: 48px;
}

.home-services-title {
  max-width: 720px;
  margin: 0 auto 28px;
}

.home-services-actions {
  display: flex;
  justify-content: center;
}

.premium-service-card-link {
  display: block;
  color: inherit;
  height: 100%;
}

.premium-service-card-link:hover {
  color: inherit;
}

.premium-service-card {
  background: var(--white-color);
  height: 100%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 40px rgba(21, 21, 21, 0.06);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

.premium-service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0;
  background: var(--primary-color);
  z-index: 3;
  transition: height 0.45s ease;
}

.premium-service-card-link:hover .premium-service-card {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(21, 21, 21, 0.14);
}

.premium-service-card-link:hover .premium-service-card::before {
  height: 100%;
}

.premium-service-card-media {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.premium-service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.premium-service-card-link:hover .premium-service-card-media img {
  transform: scale(1.08);
}

.premium-service-card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(21, 21, 21, 0.55) 0%,
    rgba(21, 21, 21, 0.08) 50%,
    transparent 75%
  );
  transition: opacity 0.4s ease;
}

.premium-service-card-num {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: Unbounded, "General Sans", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1;
  z-index: 2;
  letter-spacing: -1px;
}

.premium-service-card-icon {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 52px;
  height: 52px;
  background: var(--primary-color);
  color: var(--white-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  z-index: 2;
  transition: transform 0.35s ease;
}

.premium-service-card-link:hover .premium-service-card-icon {
  transform: scale(1.08);
}

.premium-service-card-body {
  padding: 28px 30px 26px;
  background: var(--white-color);
}

.premium-service-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--dark-color);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.premium-service-card-link:hover .premium-service-title {
  color: var(--primary-color);
}

.premium-service-desc {
  color: #777;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.premium-service-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid #efefef;
}

.premium-service-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
  transition: gap 0.3s ease;
}

.premium-service-card-link:hover .premium-service-tag {
  gap: 10px;
}

.premium-service-tag i {
  font-size: 16px;
  line-height: 1;
}

.premium-service-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid #e5e5e5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-color);
  transition: all 0.35s ease;
}

.premium-service-card-link:hover .premium-service-arrow {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white-color);
}

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translate3d(0, 56px, 0);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, filter;
}

.reveal.reveal-up {
  transform: translate3d(0, 56px, 0);
}

.reveal.reveal-scale {
  transform: translate3d(0, 36px, 0) scale(0.94);
}

.reveal.reveal-blur {
  transform: translate3d(0, 40px, 0);
  filter: blur(8px);
}

.reveal.reveal-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.reveal-group.reveal {
  opacity: 1;
  transform: none;
  filter: none;
  transition: none;
}

.reveal-group .reveal-item {
  opacity: 0;
  transform: translate3d(0, 36px, 0);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal-group .reveal-heading.reveal-item {
  transform: translate3d(0, 24px, 0);
}

.reveal-group.reveal-visible .reveal-item {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .site-header--animate-in {
    animation: none;
  }

  .reveal,
  .reveal-group .reveal-item {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}
